func fmt.Errorf

19761 uses

	fmt (current package)
		errors.go#L22: func Errorf(format string, a ...any) error {

	compress/flate
		deflate.go#L596: 		return fmt.Errorf("flate: invalid compression level %d: want value in range [-2, 9]", level)

	compress/gzip
		gzip.go#L62: 		return nil, fmt.Errorf("gzip: invalid compression level: %d", level)

	crypto/tls
		auth.go#L27: 			return fmt.Errorf("expected an ECDSA public key, got %T", pubkey)
		auth.go#L35: 			return fmt.Errorf("expected an Ed25519 public key, got %T", pubkey)
		auth.go#L43: 			return fmt.Errorf("expected an RSA public key, got %T", pubkey)
		auth.go#L51: 			return fmt.Errorf("expected an RSA public key, got %T", pubkey)
		auth.go#L109: 		return 0, 0, fmt.Errorf("unsupported signature algorithm: %v", signatureAlgorithm)
		auth.go#L123: 		return 0, 0, fmt.Errorf("unsupported signature algorithm: %v", signatureAlgorithm)
		auth.go#L142: 		return 0, 0, fmt.Errorf("tls: Ed25519 public keys are not supported before TLS 1.2")
		auth.go#L144: 		return 0, 0, fmt.Errorf("tls: unsupported public key: %T", pub)
		auth.go#L260: 		return fmt.Errorf("tls: unsupported certificate: private key is %T, expected *%T",
		auth.go#L263: 		return fmt.Errorf("tls: unsupported certificate: private key is *ed25519.PrivateKey, expected ed25519.PrivateKey")
		auth.go#L268: 		return fmt.Errorf("tls: certificate private key (%T) does not implement crypto.Signer",
		auth.go#L279: 			return fmt.Errorf("tls: unsupported certificate curve (%s)", pub.Curve.Params().Name)
		auth.go#L282: 		return fmt.Errorf("tls: certificate RSA key size too small for supported signature algorithms")
		auth.go#L285: 		return fmt.Errorf("tls: unsupported certificate key (%T)", pub)
		auth.go#L289: 		return fmt.Errorf("tls: peer doesn't support the certificate custom signature algorithms")
		auth.go#L292: 	return fmt.Errorf("tls: internal error: unsupported key (%T)", cert.PrivateKey)
		common.go#L1187: 			return fmt.Errorf("failed to parse certificate: %w", err)
		common.go#L1190: 			return fmt.Errorf("certificate is not valid for requested server name: %w", err)
		common.go#L1336: 				return fmt.Errorf("failed to parse certificate #%d in the chain: %w", j, err)
		common.go#L1522: 	return fmt.Errorf("tls: received unexpected handshake message of type %T when waiting for %T", got, wanted)
		conn.go#L1092: 		return nil, c.in.setErrorLocked(fmt.Errorf("tls: handshake message of length %d bytes exceeds maximum of %d bytes", n, maxHandshake))
		conn.go#L1309: 	return fmt.Errorf("tls: received unexpected handshake message of type %T", msg)
		conn.go#L1424: 			alertErr = fmt.Errorf("tls: failed to send closeNotify alert (but connection was closed anyway): %w", err)
		conn.go#L1586: 			c.handshakeErr = fmt.Errorf("%w%.0w", c.handshakeErr, AlertError(a))
		handshake_client.go#L426: 		return fmt.Errorf("tls: server selected unsupported protocol version %x", peerVersion)
		handshake_client.go#L673: 			return fmt.Errorf("tls: client certificate private key of type %T does not implement crypto.Signer", chainToSend.PrivateKey)
		handshake_client.go#L974: 				return fmt.Errorf("tls: server sent certificate containing RSA key larger than %d bits", max)
		handshake_client.go#L1005: 		return fmt.Errorf("tls: server's certificate contains an unsupported type of public key: %T", certs[0].PublicKey)
		handshake_messages.go#L28: 			return fmt.Errorf("invalid value length: expected %d, got %d", n, len(v))
		handshake_server.go#L165: 		return nil, fmt.Errorf("tls: client offered only unsupported versions: %x", clientVersions)
		handshake_server.go#L266: 			return fmt.Errorf("tls: unsupported signing key type (%T)", priv.Public())
		handshake_server.go#L275: 			return fmt.Errorf("tls: unsupported decryption key type (%T)", priv.Public())
		handshake_server.go#L289: 			return "", fmt.Errorf("tls: client did not request an application protocol")
		handshake_server.go#L311: 	return "", fmt.Errorf("tls: client requested unsupported application protocols (%s)", clientProtos)
		handshake_server.go#L871: 				return fmt.Errorf("tls: client sent certificate containing RSA key larger than %d bits", max)
		handshake_server.go#L922: 			return fmt.Errorf("tls: client certificate contains an unsupported public key of type %T", certs[0].PublicKey)
		key_agreement.go#L202: 		return nil, fmt.Errorf("tls: certificate private key of type %T does not implement crypto.Signer", cert.PrivateKey)
		key_schedule.go#L59: 		panic(fmt.Errorf("failed to construct HKDF label: %s", err))
		prf.go#L268: 			return nil, fmt.Errorf("crypto/tls: reserved ExportKeyingMaterial label: %s", label)
		prf.go#L282: 				return nil, fmt.Errorf("crypto/tls: ExportKeyingMaterial context too long")
		quic.go#L239: 			q.conn.handshakeErr = fmt.Errorf("tls: handshake message of length %d bytes exceeds maximum of %d bytes", n, maxHandshake)
		quic.go#L314: 	return fmt.Errorf("%w%.0w", err, AlertError(a))
		tls.go#L270: 		return fail(fmt.Errorf("tls: failed to find \"CERTIFICATE\" PEM block in certificate input after skipping PEM blocks of the following types: %v", skippedBlockTypes))
		tls.go#L284: 			return fail(fmt.Errorf("tls: failed to find PEM block with type ending in \"PRIVATE KEY\" in key input after skipping PEM blocks of the following types: %v", skippedBlockTypes))

	crypto/x509
		parser.go#L106: 	return "", fmt.Errorf("unsupported string type: %v", tag)
		parser.go#L140: 				return nil, fmt.Errorf("x509: invalid RDNSequence: invalid attribute value: %s", err)
		parser.go#L395: 				return fmt.Errorf("x509: cannot parse URI %q: %s", uriStr, err)
		parser.go#L399: 					return fmt.Errorf("x509: cannot parse URI %q: invalid domain", uriStr)
		parser.go#L524: 				return nil, nil, nil, nil, fmt.Errorf("x509: invalid NameConstraints extension")
		parser.go#L550: 					return nil, nil, nil, nil, fmt.Errorf("x509: failed to parse dnsName constraint %q", domain)
		parser.go#L568: 					return nil, nil, nil, nil, fmt.Errorf("x509: IP constraint contained value of length %d", l)
		parser.go#L572: 					return nil, nil, nil, nil, fmt.Errorf("x509: IP constraint contained invalid mask %x", mask)
		parser.go#L587: 						return nil, nil, nil, nil, fmt.Errorf("x509: failed to parse rfc822Name constraint %q", constraint)
		parser.go#L596: 						return nil, nil, nil, nil, fmt.Errorf("x509: failed to parse rfc822Name constraint %q", constraint)
		parser.go#L608: 					return nil, nil, nil, nil, fmt.Errorf("x509: failed to parse URI constraint %q: cannot be IP address", domain)
		parser.go#L620: 					return nil, nil, nil, nil, fmt.Errorf("x509: failed to parse URI constraint %q", domain)
		parser.go#L1050: 		return nil, fmt.Errorf("x509: unsupported crl version: %d", version)
		parser.go#L1144: 							return nil, fmt.Errorf("x509: malformed reasonCode extension")
		pkcs8.go#L72: 			return nil, fmt.Errorf("x509: invalid Ed25519 private key: %v", err)
		pkcs8.go#L75: 			return nil, fmt.Errorf("x509: invalid Ed25519 private key length: %d", l)
		pkcs8.go#L85: 			return nil, fmt.Errorf("x509: invalid X25519 private key: %v", err)
		pkcs8.go#L90: 		return nil, fmt.Errorf("x509: PKCS#8 wrapping contained private key with unknown algorithm: %v", privKey.Algo.Algorithm)
		pkcs8.go#L137: 			return nil, fmt.Errorf("x509: failed to marshal private key: %v", err)
		pkcs8.go#L148: 				return nil, fmt.Errorf("x509: failed to marshal private key: %v", err)
		pkcs8.go#L171: 		return nil, fmt.Errorf("x509: unknown key type while marshaling PKCS#8: %T", key)
		sec1.go#L96: 		return nil, fmt.Errorf("x509: unknown EC private key version %d", privKey.Version)
		verify.go#L400: 			return false, fmt.Errorf("x509: internal error: cannot parse constraint %q", constraint)
		verify.go#L421: 		return false, fmt.Errorf("URI with empty host (%q) cannot be matched against constraints", uri.String())
		verify.go#L434: 		return false, fmt.Errorf("URI with IP (%q) cannot be matched against constraints", uri.String())
		verify.go#L463: 		return false, fmt.Errorf("x509: internal error: cannot parse domain %q", domain)
		verify.go#L479: 		return false, fmt.Errorf("x509: internal error: cannot parse domain %q", constraint)
		verify.go#L615: 						return fmt.Errorf("x509: cannot parse rfc822Name %q", mailbox)
		verify.go#L628: 						return fmt.Errorf("x509: cannot parse dnsName %q", name)
		verify.go#L642: 						return fmt.Errorf("x509: internal error: URI SAN %q failed to parse", name)
		verify.go#L655: 						return fmt.Errorf("x509: internal error: IP SAN %x failed to parse", data)
		verify.go#L757: 			return nil, fmt.Errorf("crypto/x509: error fetching intermediate: %w", err)
		x509.go#L135: 		return nil, pkix.AlgorithmIdentifier{}, fmt.Errorf("x509: unsupported public key type: %T", pub)
		x509.go#L869: 	return fmt.Errorf("x509: signature algorithm specifies an %s public key, but have public key of type %T", expectedPubKeyAlgo.String(), pubKey)
		x509.go#L1088: 			return fmt.Errorf("x509: %q cannot be encoded as an IA5String", s)
		x509.go#L1571: 		return nil, fmt.Errorf("x509: unsupported public key type: %T", pub)
		x509.go#L1664: 		return nil, fmt.Errorf("x509: signature over certificate returned by signer is invalid: %w", err)

	encoding/asn1
		asn1.go#L356: 		err = fmt.Errorf("asn1: time did not serialize back to the original value and may be invalid: given %q, but serialized as %q", s, serialized)
		asn1.go#L379: 		err = fmt.Errorf("asn1: time did not serialize back to the original value and may be invalid: given %q, but serialized as %q", s, serialized)
		marshal.go#L581: 		return nil, fmt.Errorf("asn1: cannot marshal nil value")

	encoding/json
		decode.go#L709: 								d.saveError(fmt.Errorf("json: cannot set embedded pointer to unexported struct: %v", subv.Type().Elem()))
		decode.go#L728: 				d.saveError(fmt.Errorf("json: unknown field %q", key))
		decode.go#L752: 				d.saveError(fmt.Errorf("json: invalid use of ,string struct tag, trying to unmarshal unquoted value into %v", subv.Type()))
		decode.go#L846: 		d.saveError(fmt.Errorf("json: invalid use of ,string struct tag, trying to unmarshal %q into %v", item, v.Type()))
		decode.go#L857: 				d.saveError(fmt.Errorf("json: invalid use of ,string struct tag, trying to unmarshal %q into %v", item, v.Type()))
		decode.go#L873: 				return fmt.Errorf("json: invalid use of ,string struct tag, trying to unmarshal %q into %v", item, v.Type())
		decode.go#L887: 			d.saveError(fmt.Errorf("json: invalid use of ,string struct tag, trying to unmarshal %q into %v", item, v.Type()))
		decode.go#L900: 			d.saveError(fmt.Errorf("json: invalid use of ,string struct tag, trying to unmarshal %q into %v", item, v.Type()))
		decode.go#L906: 				d.saveError(fmt.Errorf("json: invalid use of ,string struct tag, trying to unmarshal %q into %v", item, v.Type()))
		decode.go#L924: 				return fmt.Errorf("json: invalid use of ,string struct tag, trying to unmarshal %q into %v", item, v.Type())
		decode.go#L945: 				return fmt.Errorf("json: invalid number literal, trying to unmarshal %q into Number", item)
		decode.go#L959: 				return fmt.Errorf("json: invalid use of ,string struct tag, trying to unmarshal %q into %v", item, v.Type())
		decode.go#L973: 				return fmt.Errorf("json: invalid use of ,string struct tag, trying to unmarshal %q into %v", item, v.Type())
		encode.go#L578: 			e.error(fmt.Errorf("json: invalid number literal %q", numStr))
		encode.go#L748: 			e.error(fmt.Errorf("json: encoding error for type %q: %q", v.Type().String(), err.Error()))

	flag
		flag.go#L518: 		return fmt.Errorf("no such flag -%v", name)
		flag.go#L557: 			err = fmt.Errorf("panic calling String method on zero %v for flag %s: %v", typ, flag.Name, e)

	github.com/go-faster/errors
		format.go#L44: 		return fmt.Errorf(format, a...)

	github.com/gotd/td/internal/mt
		tl_bad_msg_notification_gen.go#L128: 		return fmt.Errorf("can't encode bad_msg_notification#a7eff811 as nil")
		tl_bad_msg_notification_gen.go#L137: 		return fmt.Errorf("can't encode bad_msg_notification#a7eff811 as nil")
		tl_bad_msg_notification_gen.go#L148: 		return fmt.Errorf("can't decode bad_msg_notification#a7eff811 to nil")
		tl_bad_msg_notification_gen.go#L151: 		return fmt.Errorf("unable to decode bad_msg_notification#a7eff811: %w", err)
		tl_bad_msg_notification_gen.go#L159: 		return fmt.Errorf("can't decode bad_msg_notification#a7eff811 to nil")
		tl_bad_msg_notification_gen.go#L164: 			return fmt.Errorf("unable to decode bad_msg_notification#a7eff811: field bad_msg_id: %w", err)
		tl_bad_msg_notification_gen.go#L171: 			return fmt.Errorf("unable to decode bad_msg_notification#a7eff811: field bad_msg_seqno: %w", err)
		tl_bad_msg_notification_gen.go#L178: 			return fmt.Errorf("unable to decode bad_msg_notification#a7eff811: field error_code: %w", err)
		tl_bad_msg_notification_gen.go#L312: 		return fmt.Errorf("can't encode bad_server_salt#edab447b as nil")
		tl_bad_msg_notification_gen.go#L321: 		return fmt.Errorf("can't encode bad_server_salt#edab447b as nil")
		tl_bad_msg_notification_gen.go#L333: 		return fmt.Errorf("can't decode bad_server_salt#edab447b to nil")
		tl_bad_msg_notification_gen.go#L336: 		return fmt.Errorf("unable to decode bad_server_salt#edab447b: %w", err)
		tl_bad_msg_notification_gen.go#L344: 		return fmt.Errorf("can't decode bad_server_salt#edab447b to nil")
		tl_bad_msg_notification_gen.go#L349: 			return fmt.Errorf("unable to decode bad_server_salt#edab447b: field bad_msg_id: %w", err)
		tl_bad_msg_notification_gen.go#L356: 			return fmt.Errorf("unable to decode bad_server_salt#edab447b: field bad_msg_seqno: %w", err)
		tl_bad_msg_notification_gen.go#L363: 			return fmt.Errorf("unable to decode bad_server_salt#edab447b: field error_code: %w", err)
		tl_bad_msg_notification_gen.go#L370: 			return fmt.Errorf("unable to decode bad_server_salt#edab447b: field new_server_salt: %w", err)
		tl_bad_msg_notification_gen.go#L462: 			return nil, fmt.Errorf("unable to decode BadMsgNotificationClass: %w", err)
		tl_bad_msg_notification_gen.go#L469: 			return nil, fmt.Errorf("unable to decode BadMsgNotificationClass: %w", err)
		tl_bad_msg_notification_gen.go#L473: 		return nil, fmt.Errorf("unable to decode BadMsgNotificationClass: %w", bin.NewUnexpectedID(id))
		tl_bad_msg_notification_gen.go#L485: 		return fmt.Errorf("unable to decode BadMsgNotificationBox to nil")
		tl_bad_msg_notification_gen.go#L489: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_bad_msg_notification_gen.go#L498: 		return fmt.Errorf("unable to encode BadMsgNotificationClass as nil")
		tl_client_d_h_inner_data_gen.go#L132: 		return fmt.Errorf("can't encode client_DH_inner_data#6643b654 as nil")
		tl_client_d_h_inner_data_gen.go#L141: 		return fmt.Errorf("can't encode client_DH_inner_data#6643b654 as nil")
		tl_client_d_h_inner_data_gen.go#L153: 		return fmt.Errorf("can't decode client_DH_inner_data#6643b654 to nil")
		tl_client_d_h_inner_data_gen.go#L156: 		return fmt.Errorf("unable to decode client_DH_inner_data#6643b654: %w", err)
		tl_client_d_h_inner_data_gen.go#L164: 		return fmt.Errorf("can't decode client_DH_inner_data#6643b654 to nil")
		tl_client_d_h_inner_data_gen.go#L169: 			return fmt.Errorf("unable to decode client_DH_inner_data#6643b654: field nonce: %w", err)
		tl_client_d_h_inner_data_gen.go#L176: 			return fmt.Errorf("unable to decode client_DH_inner_data#6643b654: field server_nonce: %w", err)
		tl_client_d_h_inner_data_gen.go#L183: 			return fmt.Errorf("unable to decode client_DH_inner_data#6643b654: field retry_id: %w", err)
		tl_client_d_h_inner_data_gen.go#L190: 			return fmt.Errorf("unable to decode client_DH_inner_data#6643b654: field g_b: %w", err)
		tl_destroy_session_gen.go#L105: 		return fmt.Errorf("can't encode destroy_session#e7512126 as nil")
		tl_destroy_session_gen.go#L114: 		return fmt.Errorf("can't encode destroy_session#e7512126 as nil")
		tl_destroy_session_gen.go#L123: 		return fmt.Errorf("can't decode destroy_session#e7512126 to nil")
		tl_destroy_session_gen.go#L126: 		return fmt.Errorf("unable to decode destroy_session#e7512126: %w", err)
		tl_destroy_session_gen.go#L134: 		return fmt.Errorf("can't decode destroy_session#e7512126 to nil")
		tl_destroy_session_gen.go#L139: 			return fmt.Errorf("unable to decode destroy_session#e7512126: field session_id: %w", err)
		tl_destroy_session_res_gen.go#L110: 		return fmt.Errorf("can't encode destroy_session_ok#e22045fc as nil")
		tl_destroy_session_res_gen.go#L119: 		return fmt.Errorf("can't encode destroy_session_ok#e22045fc as nil")
		tl_destroy_session_res_gen.go#L128: 		return fmt.Errorf("can't decode destroy_session_ok#e22045fc to nil")
		tl_destroy_session_res_gen.go#L131: 		return fmt.Errorf("unable to decode destroy_session_ok#e22045fc: %w", err)
		tl_destroy_session_res_gen.go#L139: 		return fmt.Errorf("can't decode destroy_session_ok#e22045fc to nil")
		tl_destroy_session_res_gen.go#L144: 			return fmt.Errorf("unable to decode destroy_session_ok#e22045fc: field session_id: %w", err)
		tl_destroy_session_res_gen.go#L235: 		return fmt.Errorf("can't encode destroy_session_none#62d350c9 as nil")
		tl_destroy_session_res_gen.go#L244: 		return fmt.Errorf("can't encode destroy_session_none#62d350c9 as nil")
		tl_destroy_session_res_gen.go#L253: 		return fmt.Errorf("can't decode destroy_session_none#62d350c9 to nil")
		tl_destroy_session_res_gen.go#L256: 		return fmt.Errorf("unable to decode destroy_session_none#62d350c9: %w", err)
		tl_destroy_session_res_gen.go#L264: 		return fmt.Errorf("can't decode destroy_session_none#62d350c9 to nil")
		tl_destroy_session_res_gen.go#L269: 			return fmt.Errorf("unable to decode destroy_session_none#62d350c9: field session_id: %w", err)
		tl_destroy_session_res_gen.go#L333: 			return nil, fmt.Errorf("unable to decode DestroySessionResClass: %w", err)
		tl_destroy_session_res_gen.go#L340: 			return nil, fmt.Errorf("unable to decode DestroySessionResClass: %w", err)
		tl_destroy_session_res_gen.go#L344: 		return nil, fmt.Errorf("unable to decode DestroySessionResClass: %w", bin.NewUnexpectedID(id))
		tl_destroy_session_res_gen.go#L356: 		return fmt.Errorf("unable to decode DestroySessionResBox to nil")
		tl_destroy_session_res_gen.go#L360: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_destroy_session_res_gen.go#L369: 		return fmt.Errorf("unable to encode DestroySessionResClass as nil")
		tl_future_salt_gen.go#L123: 		return fmt.Errorf("can't encode future_salt#949d9dc as nil")
		tl_future_salt_gen.go#L132: 		return fmt.Errorf("can't encode future_salt#949d9dc as nil")
		tl_future_salt_gen.go#L143: 		return fmt.Errorf("can't decode future_salt#949d9dc to nil")
		tl_future_salt_gen.go#L146: 		return fmt.Errorf("unable to decode future_salt#949d9dc: %w", err)
		tl_future_salt_gen.go#L154: 		return fmt.Errorf("can't decode future_salt#949d9dc to nil")
		tl_future_salt_gen.go#L159: 			return fmt.Errorf("unable to decode future_salt#949d9dc: field valid_since: %w", err)
		tl_future_salt_gen.go#L166: 			return fmt.Errorf("unable to decode future_salt#949d9dc: field valid_until: %w", err)
		tl_future_salt_gen.go#L173: 			return fmt.Errorf("unable to decode future_salt#949d9dc: field salt: %w", err)
		tl_future_salts_gen.go#L123: 		return fmt.Errorf("can't encode future_salts#ae500895 as nil")
		tl_future_salts_gen.go#L132: 		return fmt.Errorf("can't encode future_salts#ae500895 as nil")
		tl_future_salts_gen.go#L139: 			return fmt.Errorf("unable to encode bare future_salts#ae500895: field salts element with index %d: %w", idx, err)
		tl_future_salts_gen.go#L148: 		return fmt.Errorf("can't decode future_salts#ae500895 to nil")
		tl_future_salts_gen.go#L151: 		return fmt.Errorf("unable to decode future_salts#ae500895: %w", err)
		tl_future_salts_gen.go#L159: 		return fmt.Errorf("can't decode future_salts#ae500895 to nil")
		tl_future_salts_gen.go#L164: 			return fmt.Errorf("unable to decode future_salts#ae500895: field req_msg_id: %w", err)
		tl_future_salts_gen.go#L171: 			return fmt.Errorf("unable to decode future_salts#ae500895: field now: %w", err)
		tl_future_salts_gen.go#L178: 			return fmt.Errorf("unable to decode future_salts#ae500895: field salts: %w", err)
		tl_future_salts_gen.go#L187: 				return fmt.Errorf("unable to decode bare future_salts#ae500895: field salts: %w", err)
		tl_get_future_salts_gen.go#L105: 		return fmt.Errorf("can't encode get_future_salts#b921bd04 as nil")
		tl_get_future_salts_gen.go#L114: 		return fmt.Errorf("can't encode get_future_salts#b921bd04 as nil")
		tl_get_future_salts_gen.go#L123: 		return fmt.Errorf("can't decode get_future_salts#b921bd04 to nil")
		tl_get_future_salts_gen.go#L126: 		return fmt.Errorf("unable to decode get_future_salts#b921bd04: %w", err)
		tl_get_future_salts_gen.go#L134: 		return fmt.Errorf("can't decode get_future_salts#b921bd04 to nil")
		tl_get_future_salts_gen.go#L139: 			return fmt.Errorf("unable to decode get_future_salts#b921bd04: field num: %w", err)
		tl_gzip_packed_gen.go#L105: 		return fmt.Errorf("can't encode gzip_packed#3072cfa1 as nil")
		tl_gzip_packed_gen.go#L114: 		return fmt.Errorf("can't encode gzip_packed#3072cfa1 as nil")
		tl_gzip_packed_gen.go#L123: 		return fmt.Errorf("can't decode gzip_packed#3072cfa1 to nil")
		tl_gzip_packed_gen.go#L126: 		return fmt.Errorf("unable to decode gzip_packed#3072cfa1: %w", err)
		tl_gzip_packed_gen.go#L134: 		return fmt.Errorf("can't decode gzip_packed#3072cfa1 to nil")
		tl_gzip_packed_gen.go#L139: 			return fmt.Errorf("unable to decode gzip_packed#3072cfa1: field packed_data: %w", err)
		tl_http_wait_gen.go#L123: 		return fmt.Errorf("can't encode http_wait#9299359f as nil")
		tl_http_wait_gen.go#L132: 		return fmt.Errorf("can't encode http_wait#9299359f as nil")
		tl_http_wait_gen.go#L143: 		return fmt.Errorf("can't decode http_wait#9299359f to nil")
		tl_http_wait_gen.go#L146: 		return fmt.Errorf("unable to decode http_wait#9299359f: %w", err)
		tl_http_wait_gen.go#L154: 		return fmt.Errorf("can't decode http_wait#9299359f to nil")
		tl_http_wait_gen.go#L159: 			return fmt.Errorf("unable to decode http_wait#9299359f: field max_delay: %w", err)
		tl_http_wait_gen.go#L166: 			return fmt.Errorf("unable to decode http_wait#9299359f: field wait_after: %w", err)
		tl_http_wait_gen.go#L173: 			return fmt.Errorf("unable to decode http_wait#9299359f: field max_wait: %w", err)
		tl_message_gen.go#L132: 		return fmt.Errorf("can't encode message#5bb8e511 as nil")
		tl_message_gen.go#L141: 		return fmt.Errorf("can't encode message#5bb8e511 as nil")
		tl_message_gen.go#L147: 		return fmt.Errorf("unable to encode message#5bb8e511: field body: %w", err)
		tl_message_gen.go#L155: 		return fmt.Errorf("can't decode message#5bb8e511 to nil")
		tl_message_gen.go#L158: 		return fmt.Errorf("unable to decode message#5bb8e511: %w", err)
		tl_message_gen.go#L166: 		return fmt.Errorf("can't decode message#5bb8e511 to nil")
		tl_message_gen.go#L171: 			return fmt.Errorf("unable to decode message#5bb8e511: field msg_id: %w", err)
		tl_message_gen.go#L178: 			return fmt.Errorf("unable to decode message#5bb8e511: field seqno: %w", err)
		tl_message_gen.go#L185: 			return fmt.Errorf("unable to decode message#5bb8e511: field bytes: %w", err)
		tl_message_gen.go#L191: 			return fmt.Errorf("unable to decode message#5bb8e511: field body: %w", err)
		tl_msg_container_gen.go#L105: 		return fmt.Errorf("can't encode msg_container#73f1f8dc as nil")
		tl_msg_container_gen.go#L114: 		return fmt.Errorf("can't encode msg_container#73f1f8dc as nil")
		tl_msg_container_gen.go#L119: 			return fmt.Errorf("unable to encode bare msg_container#73f1f8dc: field messages element with index %d: %w", idx, err)
		tl_msg_container_gen.go#L128: 		return fmt.Errorf("can't decode msg_container#73f1f8dc to nil")
		tl_msg_container_gen.go#L131: 		return fmt.Errorf("unable to decode msg_container#73f1f8dc: %w", err)
		tl_msg_container_gen.go#L139: 		return fmt.Errorf("can't decode msg_container#73f1f8dc to nil")
		tl_msg_container_gen.go#L144: 			return fmt.Errorf("unable to decode msg_container#73f1f8dc: field messages: %w", err)
		tl_msg_container_gen.go#L153: 				return fmt.Errorf("unable to decode bare msg_container#73f1f8dc: field messages: %w", err)
		tl_msg_copy_gen.go#L105: 		return fmt.Errorf("can't encode msg_copy#e06046b2 as nil")
		tl_msg_copy_gen.go#L114: 		return fmt.Errorf("can't encode msg_copy#e06046b2 as nil")
		tl_msg_copy_gen.go#L117: 		return fmt.Errorf("unable to encode msg_copy#e06046b2: field orig_message: %w", err)
		tl_msg_copy_gen.go#L125: 		return fmt.Errorf("can't decode msg_copy#e06046b2 to nil")
		tl_msg_copy_gen.go#L128: 		return fmt.Errorf("unable to decode msg_copy#e06046b2: %w", err)
		tl_msg_copy_gen.go#L136: 		return fmt.Errorf("can't decode msg_copy#e06046b2 to nil")
		tl_msg_copy_gen.go#L140: 			return fmt.Errorf("unable to decode msg_copy#e06046b2: field orig_message: %w", err)
		tl_msg_detailed_info_gen.go#L137: 		return fmt.Errorf("can't encode msg_detailed_info#276d3ec6 as nil")
		tl_msg_detailed_info_gen.go#L146: 		return fmt.Errorf("can't encode msg_detailed_info#276d3ec6 as nil")
		tl_msg_detailed_info_gen.go#L158: 		return fmt.Errorf("can't decode msg_detailed_info#276d3ec6 to nil")
		tl_msg_detailed_info_gen.go#L161: 		return fmt.Errorf("unable to decode msg_detailed_info#276d3ec6: %w", err)
		tl_msg_detailed_info_gen.go#L169: 		return fmt.Errorf("can't decode msg_detailed_info#276d3ec6 to nil")
		tl_msg_detailed_info_gen.go#L174: 			return fmt.Errorf("unable to decode msg_detailed_info#276d3ec6: field msg_id: %w", err)
		tl_msg_detailed_info_gen.go#L181: 			return fmt.Errorf("unable to decode msg_detailed_info#276d3ec6: field answer_msg_id: %w", err)
		tl_msg_detailed_info_gen.go#L188: 			return fmt.Errorf("unable to decode msg_detailed_info#276d3ec6: field bytes: %w", err)
		tl_msg_detailed_info_gen.go#L195: 			return fmt.Errorf("unable to decode msg_detailed_info#276d3ec6: field status: %w", err)
		tl_msg_detailed_info_gen.go#L328: 		return fmt.Errorf("can't encode msg_new_detailed_info#809db6df as nil")
		tl_msg_detailed_info_gen.go#L337: 		return fmt.Errorf("can't encode msg_new_detailed_info#809db6df as nil")
		tl_msg_detailed_info_gen.go#L348: 		return fmt.Errorf("can't decode msg_new_detailed_info#809db6df to nil")
		tl_msg_detailed_info_gen.go#L351: 		return fmt.Errorf("unable to decode msg_new_detailed_info#809db6df: %w", err)
		tl_msg_detailed_info_gen.go#L359: 		return fmt.Errorf("can't decode msg_new_detailed_info#809db6df to nil")
		tl_msg_detailed_info_gen.go#L364: 			return fmt.Errorf("unable to decode msg_new_detailed_info#809db6df: field answer_msg_id: %w", err)
		tl_msg_detailed_info_gen.go#L371: 			return fmt.Errorf("unable to decode msg_new_detailed_info#809db6df: field bytes: %w", err)
		tl_msg_detailed_info_gen.go#L378: 			return fmt.Errorf("unable to decode msg_new_detailed_info#809db6df: field status: %w", err)
		tl_msg_detailed_info_gen.go#L462: 			return nil, fmt.Errorf("unable to decode MsgDetailedInfoClass: %w", err)
		tl_msg_detailed_info_gen.go#L469: 			return nil, fmt.Errorf("unable to decode MsgDetailedInfoClass: %w", err)
		tl_msg_detailed_info_gen.go#L473: 		return nil, fmt.Errorf("unable to decode MsgDetailedInfoClass: %w", bin.NewUnexpectedID(id))
		tl_msg_detailed_info_gen.go#L485: 		return fmt.Errorf("unable to decode MsgDetailedInfoBox to nil")
		tl_msg_detailed_info_gen.go#L489: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_msg_detailed_info_gen.go#L498: 		return fmt.Errorf("unable to encode MsgDetailedInfoClass as nil")
		tl_msg_resend_req_gen.go#L105: 		return fmt.Errorf("can't encode msg_resend_req#7d861a08 as nil")
		tl_msg_resend_req_gen.go#L114: 		return fmt.Errorf("can't encode msg_resend_req#7d861a08 as nil")
		tl_msg_resend_req_gen.go#L126: 		return fmt.Errorf("can't decode msg_resend_req#7d861a08 to nil")
		tl_msg_resend_req_gen.go#L129: 		return fmt.Errorf("unable to decode msg_resend_req#7d861a08: %w", err)
		tl_msg_resend_req_gen.go#L137: 		return fmt.Errorf("can't decode msg_resend_req#7d861a08 to nil")
		tl_msg_resend_req_gen.go#L142: 			return fmt.Errorf("unable to decode msg_resend_req#7d861a08: field msg_ids: %w", err)
		tl_msg_resend_req_gen.go#L151: 				return fmt.Errorf("unable to decode msg_resend_req#7d861a08: field msg_ids: %w", err)
		tl_msgs_ack_gen.go#L105: 		return fmt.Errorf("can't encode msgs_ack#62d6b459 as nil")
		tl_msgs_ack_gen.go#L114: 		return fmt.Errorf("can't encode msgs_ack#62d6b459 as nil")
		tl_msgs_ack_gen.go#L126: 		return fmt.Errorf("can't decode msgs_ack#62d6b459 to nil")
		tl_msgs_ack_gen.go#L129: 		return fmt.Errorf("unable to decode msgs_ack#62d6b459: %w", err)
		tl_msgs_ack_gen.go#L137: 		return fmt.Errorf("can't decode msgs_ack#62d6b459 to nil")
		tl_msgs_ack_gen.go#L142: 			return fmt.Errorf("unable to decode msgs_ack#62d6b459: field msg_ids: %w", err)
		tl_msgs_ack_gen.go#L151: 				return fmt.Errorf("unable to decode msgs_ack#62d6b459: field msg_ids: %w", err)
		tl_msgs_all_info_gen.go#L114: 		return fmt.Errorf("can't encode msgs_all_info#8cc0d131 as nil")
		tl_msgs_all_info_gen.go#L123: 		return fmt.Errorf("can't encode msgs_all_info#8cc0d131 as nil")
		tl_msgs_all_info_gen.go#L136: 		return fmt.Errorf("can't decode msgs_all_info#8cc0d131 to nil")
		tl_msgs_all_info_gen.go#L139: 		return fmt.Errorf("unable to decode msgs_all_info#8cc0d131: %w", err)
		tl_msgs_all_info_gen.go#L147: 		return fmt.Errorf("can't decode msgs_all_info#8cc0d131 to nil")
		tl_msgs_all_info_gen.go#L152: 			return fmt.Errorf("unable to decode msgs_all_info#8cc0d131: field msg_ids: %w", err)
		tl_msgs_all_info_gen.go#L161: 				return fmt.Errorf("unable to decode msgs_all_info#8cc0d131: field msg_ids: %w", err)
		tl_msgs_all_info_gen.go#L169: 			return fmt.Errorf("unable to decode msgs_all_info#8cc0d131: field info: %w", err)
		tl_msgs_state_info_gen.go#L114: 		return fmt.Errorf("can't encode msgs_state_info#4deb57d as nil")
		tl_msgs_state_info_gen.go#L123: 		return fmt.Errorf("can't encode msgs_state_info#4deb57d as nil")
		tl_msgs_state_info_gen.go#L133: 		return fmt.Errorf("can't decode msgs_state_info#4deb57d to nil")
		tl_msgs_state_info_gen.go#L136: 		return fmt.Errorf("unable to decode msgs_state_info#4deb57d: %w", err)
		tl_msgs_state_info_gen.go#L144: 		return fmt.Errorf("can't decode msgs_state_info#4deb57d to nil")
		tl_msgs_state_info_gen.go#L149: 			return fmt.Errorf("unable to decode msgs_state_info#4deb57d: field req_msg_id: %w", err)
		tl_msgs_state_info_gen.go#L156: 			return fmt.Errorf("unable to decode msgs_state_info#4deb57d: field info: %w", err)
		tl_msgs_state_req_gen.go#L105: 		return fmt.Errorf("can't encode msgs_state_req#da69fb52 as nil")
		tl_msgs_state_req_gen.go#L114: 		return fmt.Errorf("can't encode msgs_state_req#da69fb52 as nil")
		tl_msgs_state_req_gen.go#L126: 		return fmt.Errorf("can't decode msgs_state_req#da69fb52 to nil")
		tl_msgs_state_req_gen.go#L129: 		return fmt.Errorf("unable to decode msgs_state_req#da69fb52: %w", err)
		tl_msgs_state_req_gen.go#L137: 		return fmt.Errorf("can't decode msgs_state_req#da69fb52 to nil")
		tl_msgs_state_req_gen.go#L142: 			return fmt.Errorf("unable to decode msgs_state_req#da69fb52: field msg_ids: %w", err)
		tl_msgs_state_req_gen.go#L151: 				return fmt.Errorf("unable to decode msgs_state_req#da69fb52: field msg_ids: %w", err)
		tl_new_session_created_gen.go#L123: 		return fmt.Errorf("can't encode new_session_created#9ec20908 as nil")
		tl_new_session_created_gen.go#L132: 		return fmt.Errorf("can't encode new_session_created#9ec20908 as nil")
		tl_new_session_created_gen.go#L143: 		return fmt.Errorf("can't decode new_session_created#9ec20908 to nil")
		tl_new_session_created_gen.go#L146: 		return fmt.Errorf("unable to decode new_session_created#9ec20908: %w", err)
		tl_new_session_created_gen.go#L154: 		return fmt.Errorf("can't decode new_session_created#9ec20908 to nil")
		tl_new_session_created_gen.go#L159: 			return fmt.Errorf("unable to decode new_session_created#9ec20908: field first_msg_id: %w", err)
		tl_new_session_created_gen.go#L166: 			return fmt.Errorf("unable to decode new_session_created#9ec20908: field unique_id: %w", err)
		tl_new_session_created_gen.go#L173: 			return fmt.Errorf("unable to decode new_session_created#9ec20908: field server_salt: %w", err)
		tl_p_q_inner_data_gen.go#L155: 		return fmt.Errorf("can't encode p_q_inner_data#83c95aec as nil")
		tl_p_q_inner_data_gen.go#L164: 		return fmt.Errorf("can't encode p_q_inner_data#83c95aec as nil")
		tl_p_q_inner_data_gen.go#L178: 		return fmt.Errorf("can't decode p_q_inner_data#83c95aec to nil")
		tl_p_q_inner_data_gen.go#L181: 		return fmt.Errorf("unable to decode p_q_inner_data#83c95aec: %w", err)
		tl_p_q_inner_data_gen.go#L189: 		return fmt.Errorf("can't decode p_q_inner_data#83c95aec to nil")
		tl_p_q_inner_data_gen.go#L194: 			return fmt.Errorf("unable to decode p_q_inner_data#83c95aec: field pq: %w", err)
		tl_p_q_inner_data_gen.go#L201: 			return fmt.Errorf("unable to decode p_q_inner_data#83c95aec: field p: %w", err)
		tl_p_q_inner_data_gen.go#L208: 			return fmt.Errorf("unable to decode p_q_inner_data#83c95aec: field q: %w", err)
		tl_p_q_inner_data_gen.go#L215: 			return fmt.Errorf("unable to decode p_q_inner_data#83c95aec: field nonce: %w", err)
		tl_p_q_inner_data_gen.go#L222: 			return fmt.Errorf("unable to decode p_q_inner_data#83c95aec: field server_nonce: %w", err)
		tl_p_q_inner_data_gen.go#L229: 			return fmt.Errorf("unable to decode p_q_inner_data#83c95aec: field new_nonce: %w", err)
		tl_p_q_inner_data_gen.go#L414: 		return fmt.Errorf("can't encode p_q_inner_data_dc#a9f55f95 as nil")
		tl_p_q_inner_data_gen.go#L423: 		return fmt.Errorf("can't encode p_q_inner_data_dc#a9f55f95 as nil")
		tl_p_q_inner_data_gen.go#L438: 		return fmt.Errorf("can't decode p_q_inner_data_dc#a9f55f95 to nil")
		tl_p_q_inner_data_gen.go#L441: 		return fmt.Errorf("unable to decode p_q_inner_data_dc#a9f55f95: %w", err)
		tl_p_q_inner_data_gen.go#L449: 		return fmt.Errorf("can't decode p_q_inner_data_dc#a9f55f95 to nil")
		tl_p_q_inner_data_gen.go#L454: 			return fmt.Errorf("unable to decode p_q_inner_data_dc#a9f55f95: field pq: %w", err)
		tl_p_q_inner_data_gen.go#L461: 			return fmt.Errorf("unable to decode p_q_inner_data_dc#a9f55f95: field p: %w", err)
		tl_p_q_inner_data_gen.go#L468: 			return fmt.Errorf("unable to decode p_q_inner_data_dc#a9f55f95: field q: %w", err)
		tl_p_q_inner_data_gen.go#L475: 			return fmt.Errorf("unable to decode p_q_inner_data_dc#a9f55f95: field nonce: %w", err)
		tl_p_q_inner_data_gen.go#L482: 			return fmt.Errorf("unable to decode p_q_inner_data_dc#a9f55f95: field server_nonce: %w", err)
		tl_p_q_inner_data_gen.go#L489: 			return fmt.Errorf("unable to decode p_q_inner_data_dc#a9f55f95: field new_nonce: %w", err)
		tl_p_q_inner_data_gen.go#L496: 			return fmt.Errorf("unable to decode p_q_inner_data_dc#a9f55f95: field dc: %w", err)
		tl_p_q_inner_data_gen.go#L698: 		return fmt.Errorf("can't encode p_q_inner_data_temp_dc#56fddf88 as nil")
		tl_p_q_inner_data_gen.go#L707: 		return fmt.Errorf("can't encode p_q_inner_data_temp_dc#56fddf88 as nil")
		tl_p_q_inner_data_gen.go#L723: 		return fmt.Errorf("can't decode p_q_inner_data_temp_dc#56fddf88 to nil")
		tl_p_q_inner_data_gen.go#L726: 		return fmt.Errorf("unable to decode p_q_inner_data_temp_dc#56fddf88: %w", err)
		tl_p_q_inner_data_gen.go#L734: 		return fmt.Errorf("can't decode p_q_inner_data_temp_dc#56fddf88 to nil")
		tl_p_q_inner_data_gen.go#L739: 			return fmt.Errorf("unable to decode p_q_inner_data_temp_dc#56fddf88: field pq: %w", err)
		tl_p_q_inner_data_gen.go#L746: 			return fmt.Errorf("unable to decode p_q_inner_data_temp_dc#56fddf88: field p: %w", err)
		tl_p_q_inner_data_gen.go#L753: 			return fmt.Errorf("unable to decode p_q_inner_data_temp_dc#56fddf88: field q: %w", err)
		tl_p_q_inner_data_gen.go#L760: 			return fmt.Errorf("unable to decode p_q_inner_data_temp_dc#56fddf88: field nonce: %w", err)
		tl_p_q_inner_data_gen.go#L767: 			return fmt.Errorf("unable to decode p_q_inner_data_temp_dc#56fddf88: field server_nonce: %w", err)
		tl_p_q_inner_data_gen.go#L774: 			return fmt.Errorf("unable to decode p_q_inner_data_temp_dc#56fddf88: field new_nonce: %w", err)
		tl_p_q_inner_data_gen.go#L781: 			return fmt.Errorf("unable to decode p_q_inner_data_temp_dc#56fddf88: field dc: %w", err)
		tl_p_q_inner_data_gen.go#L788: 			return fmt.Errorf("unable to decode p_q_inner_data_temp_dc#56fddf88: field expires_in: %w", err)
		tl_p_q_inner_data_gen.go#L919: 			return nil, fmt.Errorf("unable to decode PQInnerDataClass: %w", err)
		tl_p_q_inner_data_gen.go#L926: 			return nil, fmt.Errorf("unable to decode PQInnerDataClass: %w", err)
		tl_p_q_inner_data_gen.go#L933: 			return nil, fmt.Errorf("unable to decode PQInnerDataClass: %w", err)
		tl_p_q_inner_data_gen.go#L937: 		return nil, fmt.Errorf("unable to decode PQInnerDataClass: %w", bin.NewUnexpectedID(id))
		tl_p_q_inner_data_gen.go#L949: 		return fmt.Errorf("unable to decode PQInnerDataBox to nil")
		tl_p_q_inner_data_gen.go#L953: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_p_q_inner_data_gen.go#L962: 		return fmt.Errorf("unable to encode PQInnerDataClass as nil")
		tl_ping_delay_disconnect_gen.go#L114: 		return fmt.Errorf("can't encode ping_delay_disconnect#f3427b8c as nil")
		tl_ping_delay_disconnect_gen.go#L123: 		return fmt.Errorf("can't encode ping_delay_disconnect#f3427b8c as nil")
		tl_ping_delay_disconnect_gen.go#L133: 		return fmt.Errorf("can't decode ping_delay_disconnect#f3427b8c to nil")
		tl_ping_delay_disconnect_gen.go#L136: 		return fmt.Errorf("unable to decode ping_delay_disconnect#f3427b8c: %w", err)
		tl_ping_delay_disconnect_gen.go#L144: 		return fmt.Errorf("can't decode ping_delay_disconnect#f3427b8c to nil")
		tl_ping_delay_disconnect_gen.go#L149: 			return fmt.Errorf("unable to decode ping_delay_disconnect#f3427b8c: field ping_id: %w", err)
		tl_ping_delay_disconnect_gen.go#L156: 			return fmt.Errorf("unable to decode ping_delay_disconnect#f3427b8c: field disconnect_delay: %w", err)
		tl_ping_gen.go#L105: 		return fmt.Errorf("can't encode ping#7abe77ec as nil")
		tl_ping_gen.go#L114: 		return fmt.Errorf("can't encode ping#7abe77ec as nil")
		tl_ping_gen.go#L123: 		return fmt.Errorf("can't decode ping#7abe77ec to nil")
		tl_ping_gen.go#L126: 		return fmt.Errorf("unable to decode ping#7abe77ec: %w", err)
		tl_ping_gen.go#L134: 		return fmt.Errorf("can't decode ping#7abe77ec to nil")
		tl_ping_gen.go#L139: 			return fmt.Errorf("unable to decode ping#7abe77ec: field ping_id: %w", err)
		tl_pong_gen.go#L114: 		return fmt.Errorf("can't encode pong#347773c5 as nil")
		tl_pong_gen.go#L123: 		return fmt.Errorf("can't encode pong#347773c5 as nil")
		tl_pong_gen.go#L133: 		return fmt.Errorf("can't decode pong#347773c5 to nil")
		tl_pong_gen.go#L136: 		return fmt.Errorf("unable to decode pong#347773c5: %w", err)
		tl_pong_gen.go#L144: 		return fmt.Errorf("can't decode pong#347773c5 to nil")
		tl_pong_gen.go#L149: 			return fmt.Errorf("unable to decode pong#347773c5: field msg_id: %w", err)
		tl_pong_gen.go#L156: 			return fmt.Errorf("unable to decode pong#347773c5: field ping_id: %w", err)
		tl_req_d_h_params_gen.go#L150: 		return fmt.Errorf("can't encode req_DH_params#d712e4be as nil")
		tl_req_d_h_params_gen.go#L159: 		return fmt.Errorf("can't encode req_DH_params#d712e4be as nil")
		tl_req_d_h_params_gen.go#L173: 		return fmt.Errorf("can't decode req_DH_params#d712e4be to nil")
		tl_req_d_h_params_gen.go#L176: 		return fmt.Errorf("unable to decode req_DH_params#d712e4be: %w", err)
		tl_req_d_h_params_gen.go#L184: 		return fmt.Errorf("can't decode req_DH_params#d712e4be to nil")
		tl_req_d_h_params_gen.go#L189: 			return fmt.Errorf("unable to decode req_DH_params#d712e4be: field nonce: %w", err)
		tl_req_d_h_params_gen.go#L196: 			return fmt.Errorf("unable to decode req_DH_params#d712e4be: field server_nonce: %w", err)
		tl_req_d_h_params_gen.go#L203: 			return fmt.Errorf("unable to decode req_DH_params#d712e4be: field p: %w", err)
		tl_req_d_h_params_gen.go#L210: 			return fmt.Errorf("unable to decode req_DH_params#d712e4be: field q: %w", err)
		tl_req_d_h_params_gen.go#L217: 			return fmt.Errorf("unable to decode req_DH_params#d712e4be: field public_key_fingerprint: %w", err)
		tl_req_d_h_params_gen.go#L224: 			return fmt.Errorf("unable to decode req_DH_params#d712e4be: field encrypted_data: %w", err)
		tl_req_pq_gen.go#L105: 		return fmt.Errorf("can't encode req_pq#60469778 as nil")
		tl_req_pq_gen.go#L114: 		return fmt.Errorf("can't encode req_pq#60469778 as nil")
		tl_req_pq_gen.go#L123: 		return fmt.Errorf("can't decode req_pq#60469778 to nil")
		tl_req_pq_gen.go#L126: 		return fmt.Errorf("unable to decode req_pq#60469778: %w", err)
		tl_req_pq_gen.go#L134: 		return fmt.Errorf("can't decode req_pq#60469778 to nil")
		tl_req_pq_gen.go#L139: 			return fmt.Errorf("unable to decode req_pq#60469778: field nonce: %w", err)
		tl_req_pq_multi_gen.go#L105: 		return fmt.Errorf("can't encode req_pq_multi#be7e8ef1 as nil")
		tl_req_pq_multi_gen.go#L114: 		return fmt.Errorf("can't encode req_pq_multi#be7e8ef1 as nil")
		tl_req_pq_multi_gen.go#L123: 		return fmt.Errorf("can't decode req_pq_multi#be7e8ef1 to nil")
		tl_req_pq_multi_gen.go#L126: 		return fmt.Errorf("unable to decode req_pq_multi#be7e8ef1: %w", err)
		tl_req_pq_multi_gen.go#L134: 		return fmt.Errorf("can't decode req_pq_multi#be7e8ef1 to nil")
		tl_req_pq_multi_gen.go#L139: 			return fmt.Errorf("unable to decode req_pq_multi#be7e8ef1: field nonce: %w", err)
		tl_res_p_q_gen.go#L132: 		return fmt.Errorf("can't encode resPQ#5162463 as nil")
		tl_res_p_q_gen.go#L141: 		return fmt.Errorf("can't encode resPQ#5162463 as nil")
		tl_res_p_q_gen.go#L156: 		return fmt.Errorf("can't decode resPQ#5162463 to nil")
		tl_res_p_q_gen.go#L159: 		return fmt.Errorf("unable to decode resPQ#5162463: %w", err)
		tl_res_p_q_gen.go#L167: 		return fmt.Errorf("can't decode resPQ#5162463 to nil")
		tl_res_p_q_gen.go#L172: 			return fmt.Errorf("unable to decode resPQ#5162463: field nonce: %w", err)
		tl_res_p_q_gen.go#L179: 			return fmt.Errorf("unable to decode resPQ#5162463: field server_nonce: %w", err)
		tl_res_p_q_gen.go#L186: 			return fmt.Errorf("unable to decode resPQ#5162463: field pq: %w", err)
		tl_res_p_q_gen.go#L193: 			return fmt.Errorf("unable to decode resPQ#5162463: field server_public_key_fingerprints: %w", err)
		tl_res_p_q_gen.go#L202: 				return fmt.Errorf("unable to decode resPQ#5162463: field server_public_key_fingerprints: %w", err)
		tl_rpc_drop_answer_const_gen.go#L105: 		return fmt.Errorf("can't encode rpc_drop_answer#58e4a740 as nil")
		tl_rpc_drop_answer_const_gen.go#L114: 		return fmt.Errorf("can't encode rpc_drop_answer#58e4a740 as nil")
		tl_rpc_drop_answer_const_gen.go#L123: 		return fmt.Errorf("can't decode rpc_drop_answer#58e4a740 to nil")
		tl_rpc_drop_answer_const_gen.go#L126: 		return fmt.Errorf("unable to decode rpc_drop_answer#58e4a740: %w", err)
		tl_rpc_drop_answer_const_gen.go#L134: 		return fmt.Errorf("can't decode rpc_drop_answer#58e4a740 to nil")
		tl_rpc_drop_answer_const_gen.go#L139: 			return fmt.Errorf("unable to decode rpc_drop_answer#58e4a740: field req_msg_id: %w", err)
		tl_rpc_drop_answer_gen.go#L100: 		return fmt.Errorf("can't encode rpc_answer_unknown#5e2ad36e as nil")
		tl_rpc_drop_answer_gen.go#L109: 		return fmt.Errorf("can't encode rpc_answer_unknown#5e2ad36e as nil")
		tl_rpc_drop_answer_gen.go#L117: 		return fmt.Errorf("can't decode rpc_answer_unknown#5e2ad36e to nil")
		tl_rpc_drop_answer_gen.go#L120: 		return fmt.Errorf("unable to decode rpc_answer_unknown#5e2ad36e: %w", err)
		tl_rpc_drop_answer_gen.go#L128: 		return fmt.Errorf("can't decode rpc_answer_unknown#5e2ad36e to nil")
		tl_rpc_drop_answer_gen.go#L199: 		return fmt.Errorf("can't encode rpc_answer_dropped_running#cd78e586 as nil")
		tl_rpc_drop_answer_gen.go#L208: 		return fmt.Errorf("can't encode rpc_answer_dropped_running#cd78e586 as nil")
		tl_rpc_drop_answer_gen.go#L216: 		return fmt.Errorf("can't decode rpc_answer_dropped_running#cd78e586 to nil")
		tl_rpc_drop_answer_gen.go#L219: 		return fmt.Errorf("unable to decode rpc_answer_dropped_running#cd78e586: %w", err)
		tl_rpc_drop_answer_gen.go#L227: 		return fmt.Errorf("can't decode rpc_answer_dropped_running#cd78e586 to nil")
		tl_rpc_drop_answer_gen.go#L326: 		return fmt.Errorf("can't encode rpc_answer_dropped#a43ad8b7 as nil")
		tl_rpc_drop_answer_gen.go#L335: 		return fmt.Errorf("can't encode rpc_answer_dropped#a43ad8b7 as nil")
		tl_rpc_drop_answer_gen.go#L346: 		return fmt.Errorf("can't decode rpc_answer_dropped#a43ad8b7 to nil")
		tl_rpc_drop_answer_gen.go#L349: 		return fmt.Errorf("unable to decode rpc_answer_dropped#a43ad8b7: %w", err)
		tl_rpc_drop_answer_gen.go#L357: 		return fmt.Errorf("can't decode rpc_answer_dropped#a43ad8b7 to nil")
		tl_rpc_drop_answer_gen.go#L362: 			return fmt.Errorf("unable to decode rpc_answer_dropped#a43ad8b7: field msg_id: %w", err)
		tl_rpc_drop_answer_gen.go#L369: 			return fmt.Errorf("unable to decode rpc_answer_dropped#a43ad8b7: field seq_no: %w", err)
		tl_rpc_drop_answer_gen.go#L376: 			return fmt.Errorf("unable to decode rpc_answer_dropped#a43ad8b7: field bytes: %w", err)
		tl_rpc_drop_answer_gen.go#L454: 			return nil, fmt.Errorf("unable to decode RPCDropAnswerClass: %w", err)
		tl_rpc_drop_answer_gen.go#L461: 			return nil, fmt.Errorf("unable to decode RPCDropAnswerClass: %w", err)
		tl_rpc_drop_answer_gen.go#L468: 			return nil, fmt.Errorf("unable to decode RPCDropAnswerClass: %w", err)
		tl_rpc_drop_answer_gen.go#L472: 		return nil, fmt.Errorf("unable to decode RPCDropAnswerClass: %w", bin.NewUnexpectedID(id))
		tl_rpc_drop_answer_gen.go#L484: 		return fmt.Errorf("unable to decode RPCDropAnswerBox to nil")
		tl_rpc_drop_answer_gen.go#L488: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_rpc_drop_answer_gen.go#L497: 		return fmt.Errorf("unable to encode RPCDropAnswerClass as nil")
		tl_rpc_error_gen.go#L114: 		return fmt.Errorf("can't encode rpc_error#2144ca19 as nil")
		tl_rpc_error_gen.go#L123: 		return fmt.Errorf("can't encode rpc_error#2144ca19 as nil")
		tl_rpc_error_gen.go#L133: 		return fmt.Errorf("can't decode rpc_error#2144ca19 to nil")
		tl_rpc_error_gen.go#L136: 		return fmt.Errorf("unable to decode rpc_error#2144ca19: %w", err)
		tl_rpc_error_gen.go#L144: 		return fmt.Errorf("can't decode rpc_error#2144ca19 to nil")
		tl_rpc_error_gen.go#L149: 			return fmt.Errorf("unable to decode rpc_error#2144ca19: field error_code: %w", err)
		tl_rpc_error_gen.go#L156: 			return fmt.Errorf("unable to decode rpc_error#2144ca19: field error_message: %w", err)
		tl_rpc_result_gen.go#L114: 		return fmt.Errorf("can't encode rpc_result#f35c6d01 as nil")
		tl_rpc_result_gen.go#L123: 		return fmt.Errorf("can't encode rpc_result#f35c6d01 as nil")
		tl_rpc_result_gen.go#L127: 		return fmt.Errorf("unable to encode rpc_result#f35c6d01: field result: %w", err)
		tl_rpc_result_gen.go#L135: 		return fmt.Errorf("can't decode rpc_result#f35c6d01 to nil")
		tl_rpc_result_gen.go#L138: 		return fmt.Errorf("unable to decode rpc_result#f35c6d01: %w", err)
		tl_rpc_result_gen.go#L146: 		return fmt.Errorf("can't decode rpc_result#f35c6d01 to nil")
		tl_rpc_result_gen.go#L151: 			return fmt.Errorf("unable to decode rpc_result#f35c6d01: field req_msg_id: %w", err)
		tl_rpc_result_gen.go#L157: 			return fmt.Errorf("unable to decode rpc_result#f35c6d01: field result: %w", err)
		tl_server_d_h_inner_data_gen.go#L150: 		return fmt.Errorf("can't encode server_DH_inner_data#b5890dba as nil")
		tl_server_d_h_inner_data_gen.go#L159: 		return fmt.Errorf("can't encode server_DH_inner_data#b5890dba as nil")
		tl_server_d_h_inner_data_gen.go#L173: 		return fmt.Errorf("can't decode server_DH_inner_data#b5890dba to nil")
		tl_server_d_h_inner_data_gen.go#L176: 		return fmt.Errorf("unable to decode server_DH_inner_data#b5890dba: %w", err)
		tl_server_d_h_inner_data_gen.go#L184: 		return fmt.Errorf("can't decode server_DH_inner_data#b5890dba to nil")
		tl_server_d_h_inner_data_gen.go#L189: 			return fmt.Errorf("unable to decode server_DH_inner_data#b5890dba: field nonce: %w", err)
		tl_server_d_h_inner_data_gen.go#L196: 			return fmt.Errorf("unable to decode server_DH_inner_data#b5890dba: field server_nonce: %w", err)
		tl_server_d_h_inner_data_gen.go#L203: 			return fmt.Errorf("unable to decode server_DH_inner_data#b5890dba: field g: %w", err)
		tl_server_d_h_inner_data_gen.go#L210: 			return fmt.Errorf("unable to decode server_DH_inner_data#b5890dba: field dh_prime: %w", err)
		tl_server_d_h_inner_data_gen.go#L217: 			return fmt.Errorf("unable to decode server_DH_inner_data#b5890dba: field g_a: %w", err)
		tl_server_d_h_inner_data_gen.go#L224: 			return fmt.Errorf("unable to decode server_DH_inner_data#b5890dba: field server_time: %w", err)
		tl_server_d_h_params_gen.go#L128: 		return fmt.Errorf("can't encode server_DH_params_fail#79cb045d as nil")
		tl_server_d_h_params_gen.go#L137: 		return fmt.Errorf("can't encode server_DH_params_fail#79cb045d as nil")
		tl_server_d_h_params_gen.go#L148: 		return fmt.Errorf("can't decode server_DH_params_fail#79cb045d to nil")
		tl_server_d_h_params_gen.go#L151: 		return fmt.Errorf("unable to decode server_DH_params_fail#79cb045d: %w", err)
		tl_server_d_h_params_gen.go#L159: 		return fmt.Errorf("can't decode server_DH_params_fail#79cb045d to nil")
		tl_server_d_h_params_gen.go#L164: 			return fmt.Errorf("unable to decode server_DH_params_fail#79cb045d: field nonce: %w", err)
		tl_server_d_h_params_gen.go#L171: 			return fmt.Errorf("unable to decode server_DH_params_fail#79cb045d: field server_nonce: %w", err)
		tl_server_d_h_params_gen.go#L178: 			return fmt.Errorf("unable to decode server_DH_params_fail#79cb045d: field new_nonce_hash: %w", err)
		tl_server_d_h_params_gen.go#L303: 		return fmt.Errorf("can't encode server_DH_params_ok#d0e8075c as nil")
		tl_server_d_h_params_gen.go#L312: 		return fmt.Errorf("can't encode server_DH_params_ok#d0e8075c as nil")
		tl_server_d_h_params_gen.go#L323: 		return fmt.Errorf("can't decode server_DH_params_ok#d0e8075c to nil")
		tl_server_d_h_params_gen.go#L326: 		return fmt.Errorf("unable to decode server_DH_params_ok#d0e8075c: %w", err)
		tl_server_d_h_params_gen.go#L334: 		return fmt.Errorf("can't decode server_DH_params_ok#d0e8075c to nil")
		tl_server_d_h_params_gen.go#L339: 			return fmt.Errorf("unable to decode server_DH_params_ok#d0e8075c: field nonce: %w", err)
		tl_server_d_h_params_gen.go#L346: 			return fmt.Errorf("unable to decode server_DH_params_ok#d0e8075c: field server_nonce: %w", err)
		tl_server_d_h_params_gen.go#L353: 			return fmt.Errorf("unable to decode server_DH_params_ok#d0e8075c: field encrypted_answer: %w", err)
		tl_server_d_h_params_gen.go#L435: 			return nil, fmt.Errorf("unable to decode ServerDHParamsClass: %w", err)
		tl_server_d_h_params_gen.go#L442: 			return nil, fmt.Errorf("unable to decode ServerDHParamsClass: %w", err)
		tl_server_d_h_params_gen.go#L446: 		return nil, fmt.Errorf("unable to decode ServerDHParamsClass: %w", bin.NewUnexpectedID(id))
		tl_server_d_h_params_gen.go#L458: 		return fmt.Errorf("unable to decode ServerDHParamsBox to nil")
		tl_server_d_h_params_gen.go#L462: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_server_d_h_params_gen.go#L471: 		return fmt.Errorf("unable to encode ServerDHParamsClass as nil")
		tl_set_client_d_h_params_answer_gen.go#L128: 		return fmt.Errorf("can't encode dh_gen_ok#3bcbf734 as nil")
		tl_set_client_d_h_params_answer_gen.go#L137: 		return fmt.Errorf("can't encode dh_gen_ok#3bcbf734 as nil")
		tl_set_client_d_h_params_answer_gen.go#L148: 		return fmt.Errorf("can't decode dh_gen_ok#3bcbf734 to nil")
		tl_set_client_d_h_params_answer_gen.go#L151: 		return fmt.Errorf("unable to decode dh_gen_ok#3bcbf734: %w", err)
		tl_set_client_d_h_params_answer_gen.go#L159: 		return fmt.Errorf("can't decode dh_gen_ok#3bcbf734 to nil")
		tl_set_client_d_h_params_answer_gen.go#L164: 			return fmt.Errorf("unable to decode dh_gen_ok#3bcbf734: field nonce: %w", err)
		tl_set_client_d_h_params_answer_gen.go#L171: 			return fmt.Errorf("unable to decode dh_gen_ok#3bcbf734: field server_nonce: %w", err)
		tl_set_client_d_h_params_answer_gen.go#L178: 			return fmt.Errorf("unable to decode dh_gen_ok#3bcbf734: field new_nonce_hash1: %w", err)
		tl_set_client_d_h_params_answer_gen.go#L303: 		return fmt.Errorf("can't encode dh_gen_retry#46dc1fb9 as nil")
		tl_set_client_d_h_params_answer_gen.go#L312: 		return fmt.Errorf("can't encode dh_gen_retry#46dc1fb9 as nil")
		tl_set_client_d_h_params_answer_gen.go#L323: 		return fmt.Errorf("can't decode dh_gen_retry#46dc1fb9 to nil")
		tl_set_client_d_h_params_answer_gen.go#L326: 		return fmt.Errorf("unable to decode dh_gen_retry#46dc1fb9: %w", err)
		tl_set_client_d_h_params_answer_gen.go#L334: 		return fmt.Errorf("can't decode dh_gen_retry#46dc1fb9 to nil")
		tl_set_client_d_h_params_answer_gen.go#L339: 			return fmt.Errorf("unable to decode dh_gen_retry#46dc1fb9: field nonce: %w", err)
		tl_set_client_d_h_params_answer_gen.go#L346: 			return fmt.Errorf("unable to decode dh_gen_retry#46dc1fb9: field server_nonce: %w", err)
		tl_set_client_d_h_params_answer_gen.go#L353: 			return fmt.Errorf("unable to decode dh_gen_retry#46dc1fb9: field new_nonce_hash2: %w", err)
		tl_set_client_d_h_params_answer_gen.go#L478: 		return fmt.Errorf("can't encode dh_gen_fail#a69dae02 as nil")
		tl_set_client_d_h_params_answer_gen.go#L487: 		return fmt.Errorf("can't encode dh_gen_fail#a69dae02 as nil")
		tl_set_client_d_h_params_answer_gen.go#L498: 		return fmt.Errorf("can't decode dh_gen_fail#a69dae02 to nil")
		tl_set_client_d_h_params_answer_gen.go#L501: 		return fmt.Errorf("unable to decode dh_gen_fail#a69dae02: %w", err)
		tl_set_client_d_h_params_answer_gen.go#L509: 		return fmt.Errorf("can't decode dh_gen_fail#a69dae02 to nil")
		tl_set_client_d_h_params_answer_gen.go#L514: 			return fmt.Errorf("unable to decode dh_gen_fail#a69dae02: field nonce: %w", err)
		tl_set_client_d_h_params_answer_gen.go#L521: 			return fmt.Errorf("unable to decode dh_gen_fail#a69dae02: field server_nonce: %w", err)
		tl_set_client_d_h_params_answer_gen.go#L528: 			return fmt.Errorf("unable to decode dh_gen_fail#a69dae02: field new_nonce_hash3: %w", err)
		tl_set_client_d_h_params_answer_gen.go#L611: 			return nil, fmt.Errorf("unable to decode SetClientDHParamsAnswerClass: %w", err)
		tl_set_client_d_h_params_answer_gen.go#L618: 			return nil, fmt.Errorf("unable to decode SetClientDHParamsAnswerClass: %w", err)
		tl_set_client_d_h_params_answer_gen.go#L625: 			return nil, fmt.Errorf("unable to decode SetClientDHParamsAnswerClass: %w", err)
		tl_set_client_d_h_params_answer_gen.go#L629: 		return nil, fmt.Errorf("unable to decode SetClientDHParamsAnswerClass: %w", bin.NewUnexpectedID(id))
		tl_set_client_d_h_params_answer_gen.go#L641: 		return fmt.Errorf("unable to decode SetClientDHParamsAnswerBox to nil")
		tl_set_client_d_h_params_answer_gen.go#L645: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_set_client_d_h_params_answer_gen.go#L654: 		return fmt.Errorf("unable to encode SetClientDHParamsAnswerClass as nil")
		tl_set_client_d_h_params_gen.go#L123: 		return fmt.Errorf("can't encode set_client_DH_params#f5045f1f as nil")
		tl_set_client_d_h_params_gen.go#L132: 		return fmt.Errorf("can't encode set_client_DH_params#f5045f1f as nil")
		tl_set_client_d_h_params_gen.go#L143: 		return fmt.Errorf("can't decode set_client_DH_params#f5045f1f to nil")
		tl_set_client_d_h_params_gen.go#L146: 		return fmt.Errorf("unable to decode set_client_DH_params#f5045f1f: %w", err)
		tl_set_client_d_h_params_gen.go#L154: 		return fmt.Errorf("can't decode set_client_DH_params#f5045f1f to nil")
		tl_set_client_d_h_params_gen.go#L159: 			return fmt.Errorf("unable to decode set_client_DH_params#f5045f1f: field nonce: %w", err)
		tl_set_client_d_h_params_gen.go#L166: 			return fmt.Errorf("unable to decode set_client_DH_params#f5045f1f: field server_nonce: %w", err)
		tl_set_client_d_h_params_gen.go#L173: 			return fmt.Errorf("unable to decode set_client_DH_params#f5045f1f: field encrypted_data: %w", err)

	github.com/gotd/td/tg
		tl_access_point_rule_gen.go#L136: 		return fmt.Errorf("can't encode accessPointRule#4679b65f as nil")
		tl_access_point_rule_gen.go#L145: 		return fmt.Errorf("can't encode accessPointRule#4679b65f as nil")
		tl_access_point_rule_gen.go#L152: 			return fmt.Errorf("unable to encode accessPointRule#4679b65f: field ips element with index %d is nil", idx)
		tl_access_point_rule_gen.go#L155: 			return fmt.Errorf("unable to encode bare accessPointRule#4679b65f: field ips element with index %d: %w", idx, err)
		tl_access_point_rule_gen.go#L164: 		return fmt.Errorf("can't decode accessPointRule#4679b65f to nil")
		tl_access_point_rule_gen.go#L167: 		return fmt.Errorf("unable to decode accessPointRule#4679b65f: %w", err)
		tl_access_point_rule_gen.go#L175: 		return fmt.Errorf("can't decode accessPointRule#4679b65f to nil")
		tl_access_point_rule_gen.go#L180: 			return fmt.Errorf("unable to decode accessPointRule#4679b65f: field phone_prefix_rules: %w", err)
		tl_access_point_rule_gen.go#L187: 			return fmt.Errorf("unable to decode accessPointRule#4679b65f: field dc_id: %w", err)
		tl_access_point_rule_gen.go#L194: 			return fmt.Errorf("unable to decode accessPointRule#4679b65f: field ips: %w", err)
		tl_access_point_rule_gen.go#L203: 				return fmt.Errorf("unable to decode accessPointRule#4679b65f: field ips: %w", err)
		tl_account_accept_authorization_gen.go#L160: 		return fmt.Errorf("can't encode account.acceptAuthorization#f3ed4c73 as nil")
		tl_account_accept_authorization_gen.go#L169: 		return fmt.Errorf("can't encode account.acceptAuthorization#f3ed4c73 as nil")
		tl_account_accept_authorization_gen.go#L177: 			return fmt.Errorf("unable to encode account.acceptAuthorization#f3ed4c73: field value_hashes element with index %d: %w", idx, err)
		tl_account_accept_authorization_gen.go#L181: 		return fmt.Errorf("unable to encode account.acceptAuthorization#f3ed4c73: field credentials: %w", err)
		tl_account_accept_authorization_gen.go#L189: 		return fmt.Errorf("can't decode account.acceptAuthorization#f3ed4c73 to nil")
		tl_account_accept_authorization_gen.go#L192: 		return fmt.Errorf("unable to decode account.acceptAuthorization#f3ed4c73: %w", err)
		tl_account_accept_authorization_gen.go#L200: 		return fmt.Errorf("can't decode account.acceptAuthorization#f3ed4c73 to nil")
		tl_account_accept_authorization_gen.go#L205: 			return fmt.Errorf("unable to decode account.acceptAuthorization#f3ed4c73: field bot_id: %w", err)
		tl_account_accept_authorization_gen.go#L212: 			return fmt.Errorf("unable to decode account.acceptAuthorization#f3ed4c73: field scope: %w", err)
		tl_account_accept_authorization_gen.go#L219: 			return fmt.Errorf("unable to decode account.acceptAuthorization#f3ed4c73: field public_key: %w", err)
		tl_account_accept_authorization_gen.go#L226: 			return fmt.Errorf("unable to decode account.acceptAuthorization#f3ed4c73: field value_hashes: %w", err)
		tl_account_accept_authorization_gen.go#L235: 				return fmt.Errorf("unable to decode account.acceptAuthorization#f3ed4c73: field value_hashes: %w", err)
		tl_account_accept_authorization_gen.go#L242: 			return fmt.Errorf("unable to decode account.acceptAuthorization#f3ed4c73: field credentials: %w", err)
		tl_account_authorization_form_gen.go#L192: 		return fmt.Errorf("can't encode account.authorizationForm#ad2e1cd8 as nil")
		tl_account_authorization_form_gen.go#L201: 		return fmt.Errorf("can't encode account.authorizationForm#ad2e1cd8 as nil")
		tl_account_authorization_form_gen.go#L205: 		return fmt.Errorf("unable to encode account.authorizationForm#ad2e1cd8: field flags: %w", err)
		tl_account_authorization_form_gen.go#L210: 			return fmt.Errorf("unable to encode account.authorizationForm#ad2e1cd8: field required_types element with index %d is nil", idx)
		tl_account_authorization_form_gen.go#L213: 			return fmt.Errorf("unable to encode account.authorizationForm#ad2e1cd8: field required_types element with index %d: %w", idx, err)
		tl_account_authorization_form_gen.go#L219: 			return fmt.Errorf("unable to encode account.authorizationForm#ad2e1cd8: field values element with index %d: %w", idx, err)
		tl_account_authorization_form_gen.go#L225: 			return fmt.Errorf("unable to encode account.authorizationForm#ad2e1cd8: field errors element with index %d is nil", idx)
		tl_account_authorization_form_gen.go#L228: 			return fmt.Errorf("unable to encode account.authorizationForm#ad2e1cd8: field errors element with index %d: %w", idx, err)
		tl_account_authorization_form_gen.go#L234: 			return fmt.Errorf("unable to encode account.authorizationForm#ad2e1cd8: field users element with index %d is nil", idx)
		tl_account_authorization_form_gen.go#L237: 			return fmt.Errorf("unable to encode account.authorizationForm#ad2e1cd8: field users element with index %d: %w", idx, err)
		tl_account_authorization_form_gen.go#L249: 		return fmt.Errorf("can't decode account.authorizationForm#ad2e1cd8 to nil")
		tl_account_authorization_form_gen.go#L252: 		return fmt.Errorf("unable to decode account.authorizationForm#ad2e1cd8: %w", err)
		tl_account_authorization_form_gen.go#L260: 		return fmt.Errorf("can't decode account.authorizationForm#ad2e1cd8 to nil")
		tl_account_authorization_form_gen.go#L264: 			return fmt.Errorf("unable to decode account.authorizationForm#ad2e1cd8: field flags: %w", err)
		tl_account_authorization_form_gen.go#L270: 			return fmt.Errorf("unable to decode account.authorizationForm#ad2e1cd8: field required_types: %w", err)
		tl_account_authorization_form_gen.go#L279: 				return fmt.Errorf("unable to decode account.authorizationForm#ad2e1cd8: field required_types: %w", err)
		tl_account_authorization_form_gen.go#L287: 			return fmt.Errorf("unable to decode account.authorizationForm#ad2e1cd8: field values: %w", err)
		tl_account_authorization_form_gen.go#L296: 				return fmt.Errorf("unable to decode account.authorizationForm#ad2e1cd8: field values: %w", err)
		tl_account_authorization_form_gen.go#L304: 			return fmt.Errorf("unable to decode account.authorizationForm#ad2e1cd8: field errors: %w", err)
		tl_account_authorization_form_gen.go#L313: 				return fmt.Errorf("unable to decode account.authorizationForm#ad2e1cd8: field errors: %w", err)
		tl_account_authorization_form_gen.go#L321: 			return fmt.Errorf("unable to decode account.authorizationForm#ad2e1cd8: field users: %w", err)
		tl_account_authorization_form_gen.go#L330: 				return fmt.Errorf("unable to decode account.authorizationForm#ad2e1cd8: field users: %w", err)
		tl_account_authorization_form_gen.go#L338: 			return fmt.Errorf("unable to decode account.authorizationForm#ad2e1cd8: field privacy_policy_url: %w", err)
		tl_account_authorizations_gen.go#L126: 		return fmt.Errorf("can't encode account.authorizations#4bff8ea0 as nil")
		tl_account_authorizations_gen.go#L135: 		return fmt.Errorf("can't encode account.authorizations#4bff8ea0 as nil")
		tl_account_authorizations_gen.go#L141: 			return fmt.Errorf("unable to encode account.authorizations#4bff8ea0: field authorizations element with index %d: %w", idx, err)
		tl_account_authorizations_gen.go#L150: 		return fmt.Errorf("can't decode account.authorizations#4bff8ea0 to nil")
		tl_account_authorizations_gen.go#L153: 		return fmt.Errorf("unable to decode account.authorizations#4bff8ea0: %w", err)
		tl_account_authorizations_gen.go#L161: 		return fmt.Errorf("can't decode account.authorizations#4bff8ea0 to nil")
		tl_account_authorizations_gen.go#L166: 			return fmt.Errorf("unable to decode account.authorizations#4bff8ea0: field authorization_ttl_days: %w", err)
		tl_account_authorizations_gen.go#L173: 			return fmt.Errorf("unable to decode account.authorizations#4bff8ea0: field authorizations: %w", err)
		tl_account_authorizations_gen.go#L182: 				return fmt.Errorf("unable to decode account.authorizations#4bff8ea0: field authorizations: %w", err)
		tl_account_auto_download_settings_gen.go#L137: 		return fmt.Errorf("can't encode account.autoDownloadSettings#63cacf26 as nil")
		tl_account_auto_download_settings_gen.go#L146: 		return fmt.Errorf("can't encode account.autoDownloadSettings#63cacf26 as nil")
		tl_account_auto_download_settings_gen.go#L149: 		return fmt.Errorf("unable to encode account.autoDownloadSettings#63cacf26: field low: %w", err)
		tl_account_auto_download_settings_gen.go#L152: 		return fmt.Errorf("unable to encode account.autoDownloadSettings#63cacf26: field medium: %w", err)
		tl_account_auto_download_settings_gen.go#L155: 		return fmt.Errorf("unable to encode account.autoDownloadSettings#63cacf26: field high: %w", err)
		tl_account_auto_download_settings_gen.go#L163: 		return fmt.Errorf("can't decode account.autoDownloadSettings#63cacf26 to nil")
		tl_account_auto_download_settings_gen.go#L166: 		return fmt.Errorf("unable to decode account.autoDownloadSettings#63cacf26: %w", err)
		tl_account_auto_download_settings_gen.go#L174: 		return fmt.Errorf("can't decode account.autoDownloadSettings#63cacf26 to nil")
		tl_account_auto_download_settings_gen.go#L178: 			return fmt.Errorf("unable to decode account.autoDownloadSettings#63cacf26: field low: %w", err)
		tl_account_auto_download_settings_gen.go#L183: 			return fmt.Errorf("unable to decode account.autoDownloadSettings#63cacf26: field medium: %w", err)
		tl_account_auto_download_settings_gen.go#L188: 			return fmt.Errorf("unable to decode account.autoDownloadSettings#63cacf26: field high: %w", err)
		tl_account_auto_save_settings_gen.go#L176: 		return fmt.Errorf("can't encode account.autoSaveSettings#4c3e069d as nil")
		tl_account_auto_save_settings_gen.go#L185: 		return fmt.Errorf("can't encode account.autoSaveSettings#4c3e069d as nil")
		tl_account_auto_save_settings_gen.go#L188: 		return fmt.Errorf("unable to encode account.autoSaveSettings#4c3e069d: field users_settings: %w", err)
		tl_account_auto_save_settings_gen.go#L191: 		return fmt.Errorf("unable to encode account.autoSaveSettings#4c3e069d: field chats_settings: %w", err)
		tl_account_auto_save_settings_gen.go#L194: 		return fmt.Errorf("unable to encode account.autoSaveSettings#4c3e069d: field broadcasts_settings: %w", err)
		tl_account_auto_save_settings_gen.go#L199: 			return fmt.Errorf("unable to encode account.autoSaveSettings#4c3e069d: field exceptions element with index %d: %w", idx, err)
		tl_account_auto_save_settings_gen.go#L205: 			return fmt.Errorf("unable to encode account.autoSaveSettings#4c3e069d: field chats element with index %d is nil", idx)
		tl_account_auto_save_settings_gen.go#L208: 			return fmt.Errorf("unable to encode account.autoSaveSettings#4c3e069d: field chats element with index %d: %w", idx, err)
		tl_account_auto_save_settings_gen.go#L214: 			return fmt.Errorf("unable to encode account.autoSaveSettings#4c3e069d: field users element with index %d is nil", idx)
		tl_account_auto_save_settings_gen.go#L217: 			return fmt.Errorf("unable to encode account.autoSaveSettings#4c3e069d: field users element with index %d: %w", idx, err)
		tl_account_auto_save_settings_gen.go#L226: 		return fmt.Errorf("can't decode account.autoSaveSettings#4c3e069d to nil")
		tl_account_auto_save_settings_gen.go#L229: 		return fmt.Errorf("unable to decode account.autoSaveSettings#4c3e069d: %w", err)
		tl_account_auto_save_settings_gen.go#L237: 		return fmt.Errorf("can't decode account.autoSaveSettings#4c3e069d to nil")
		tl_account_auto_save_settings_gen.go#L241: 			return fmt.Errorf("unable to decode account.autoSaveSettings#4c3e069d: field users_settings: %w", err)
		tl_account_auto_save_settings_gen.go#L246: 			return fmt.Errorf("unable to decode account.autoSaveSettings#4c3e069d: field chats_settings: %w", err)
		tl_account_auto_save_settings_gen.go#L251: 			return fmt.Errorf("unable to decode account.autoSaveSettings#4c3e069d: field broadcasts_settings: %w", err)
		tl_account_auto_save_settings_gen.go#L257: 			return fmt.Errorf("unable to decode account.autoSaveSettings#4c3e069d: field exceptions: %w", err)
		tl_account_auto_save_settings_gen.go#L266: 				return fmt.Errorf("unable to decode account.autoSaveSettings#4c3e069d: field exceptions: %w", err)
		tl_account_auto_save_settings_gen.go#L274: 			return fmt.Errorf("unable to decode account.autoSaveSettings#4c3e069d: field chats: %w", err)
		tl_account_auto_save_settings_gen.go#L283: 				return fmt.Errorf("unable to decode account.autoSaveSettings#4c3e069d: field chats: %w", err)
		tl_account_auto_save_settings_gen.go#L291: 			return fmt.Errorf("unable to decode account.autoSaveSettings#4c3e069d: field users: %w", err)
		tl_account_auto_save_settings_gen.go#L300: 				return fmt.Errorf("unable to decode account.autoSaveSettings#4c3e069d: field users: %w", err)
		tl_account_cancel_password_email_gen.go#L101: 		return fmt.Errorf("can't encode account.cancelPasswordEmail#c1cbd5b6 as nil")
		tl_account_cancel_password_email_gen.go#L110: 		return fmt.Errorf("can't encode account.cancelPasswordEmail#c1cbd5b6 as nil")
		tl_account_cancel_password_email_gen.go#L118: 		return fmt.Errorf("can't decode account.cancelPasswordEmail#c1cbd5b6 to nil")
		tl_account_cancel_password_email_gen.go#L121: 		return fmt.Errorf("unable to decode account.cancelPasswordEmail#c1cbd5b6: %w", err)
		tl_account_cancel_password_email_gen.go#L129: 		return fmt.Errorf("can't decode account.cancelPasswordEmail#c1cbd5b6 to nil")
		tl_account_change_authorization_settings_gen.go#L192: 		return fmt.Errorf("can't encode account.changeAuthorizationSettings#40f48462 as nil")
		tl_account_change_authorization_settings_gen.go#L201: 		return fmt.Errorf("can't encode account.changeAuthorizationSettings#40f48462 as nil")
		tl_account_change_authorization_settings_gen.go#L205: 		return fmt.Errorf("unable to encode account.changeAuthorizationSettings#40f48462: field flags: %w", err)
		tl_account_change_authorization_settings_gen.go#L220: 		return fmt.Errorf("can't decode account.changeAuthorizationSettings#40f48462 to nil")
		tl_account_change_authorization_settings_gen.go#L223: 		return fmt.Errorf("unable to decode account.changeAuthorizationSettings#40f48462: %w", err)
		tl_account_change_authorization_settings_gen.go#L231: 		return fmt.Errorf("can't decode account.changeAuthorizationSettings#40f48462 to nil")
		tl_account_change_authorization_settings_gen.go#L235: 			return fmt.Errorf("unable to decode account.changeAuthorizationSettings#40f48462: field flags: %w", err)
		tl_account_change_authorization_settings_gen.go#L242: 			return fmt.Errorf("unable to decode account.changeAuthorizationSettings#40f48462: field hash: %w", err)
		tl_account_change_authorization_settings_gen.go#L249: 			return fmt.Errorf("unable to decode account.changeAuthorizationSettings#40f48462: field encrypted_requests_disabled: %w", err)
		tl_account_change_authorization_settings_gen.go#L256: 			return fmt.Errorf("unable to decode account.changeAuthorizationSettings#40f48462: field call_requests_disabled: %w", err)
		tl_account_change_phone_gen.go#L143: 		return fmt.Errorf("can't encode account.changePhone#70c32edb as nil")
		tl_account_change_phone_gen.go#L152: 		return fmt.Errorf("can't encode account.changePhone#70c32edb as nil")
		tl_account_change_phone_gen.go#L163: 		return fmt.Errorf("can't decode account.changePhone#70c32edb to nil")
		tl_account_change_phone_gen.go#L166: 		return fmt.Errorf("unable to decode account.changePhone#70c32edb: %w", err)
		tl_account_change_phone_gen.go#L174: 		return fmt.Errorf("can't decode account.changePhone#70c32edb to nil")
		tl_account_change_phone_gen.go#L179: 			return fmt.Errorf("unable to decode account.changePhone#70c32edb: field phone_number: %w", err)
		tl_account_change_phone_gen.go#L186: 			return fmt.Errorf("unable to decode account.changePhone#70c32edb: field phone_code_hash: %w", err)
		tl_account_change_phone_gen.go#L193: 			return fmt.Errorf("unable to decode account.changePhone#70c32edb: field phone_code: %w", err)
		tl_account_check_username_gen.go#L116: 		return fmt.Errorf("can't encode account.checkUsername#2714d86c as nil")
		tl_account_check_username_gen.go#L125: 		return fmt.Errorf("can't encode account.checkUsername#2714d86c as nil")
		tl_account_check_username_gen.go#L134: 		return fmt.Errorf("can't decode account.checkUsername#2714d86c to nil")
		tl_account_check_username_gen.go#L137: 		return fmt.Errorf("unable to decode account.checkUsername#2714d86c: %w", err)
		tl_account_check_username_gen.go#L145: 		return fmt.Errorf("can't decode account.checkUsername#2714d86c to nil")
		tl_account_check_username_gen.go#L150: 			return fmt.Errorf("unable to decode account.checkUsername#2714d86c: field username: %w", err)
		tl_account_clear_recent_emoji_statuses_gen.go#L101: 		return fmt.Errorf("can't encode account.clearRecentEmojiStatuses#18201aae as nil")
		tl_account_clear_recent_emoji_statuses_gen.go#L110: 		return fmt.Errorf("can't encode account.clearRecentEmojiStatuses#18201aae as nil")
		tl_account_clear_recent_emoji_statuses_gen.go#L118: 		return fmt.Errorf("can't decode account.clearRecentEmojiStatuses#18201aae to nil")
		tl_account_clear_recent_emoji_statuses_gen.go#L121: 		return fmt.Errorf("unable to decode account.clearRecentEmojiStatuses#18201aae: %w", err)
		tl_account_clear_recent_emoji_statuses_gen.go#L129: 		return fmt.Errorf("can't decode account.clearRecentEmojiStatuses#18201aae to nil")
		tl_account_confirm_password_email_gen.go#L121: 		return fmt.Errorf("can't encode account.confirmPasswordEmail#8fdf1920 as nil")
		tl_account_confirm_password_email_gen.go#L130: 		return fmt.Errorf("can't encode account.confirmPasswordEmail#8fdf1920 as nil")
		tl_account_confirm_password_email_gen.go#L139: 		return fmt.Errorf("can't decode account.confirmPasswordEmail#8fdf1920 to nil")
		tl_account_confirm_password_email_gen.go#L142: 		return fmt.Errorf("unable to decode account.confirmPasswordEmail#8fdf1920: %w", err)
		tl_account_confirm_password_email_gen.go#L150: 		return fmt.Errorf("can't decode account.confirmPasswordEmail#8fdf1920 to nil")
		tl_account_confirm_password_email_gen.go#L155: 			return fmt.Errorf("unable to decode account.confirmPasswordEmail#8fdf1920: field code: %w", err)
		tl_account_confirm_phone_gen.go#L135: 		return fmt.Errorf("can't encode account.confirmPhone#5f2178c3 as nil")
		tl_account_confirm_phone_gen.go#L144: 		return fmt.Errorf("can't encode account.confirmPhone#5f2178c3 as nil")
		tl_account_confirm_phone_gen.go#L154: 		return fmt.Errorf("can't decode account.confirmPhone#5f2178c3 to nil")
		tl_account_confirm_phone_gen.go#L157: 		return fmt.Errorf("unable to decode account.confirmPhone#5f2178c3: %w", err)
		tl_account_confirm_phone_gen.go#L165: 		return fmt.Errorf("can't decode account.confirmPhone#5f2178c3 to nil")
		tl_account_confirm_phone_gen.go#L170: 			return fmt.Errorf("unable to decode account.confirmPhone#5f2178c3: field phone_code_hash: %w", err)
		tl_account_confirm_phone_gen.go#L177: 			return fmt.Errorf("unable to decode account.confirmPhone#5f2178c3: field phone_code: %w", err)
		tl_account_content_settings_gen.go#L147: 		return fmt.Errorf("can't encode account.contentSettings#57e28221 as nil")
		tl_account_content_settings_gen.go#L156: 		return fmt.Errorf("can't encode account.contentSettings#57e28221 as nil")
		tl_account_content_settings_gen.go#L160: 		return fmt.Errorf("unable to encode account.contentSettings#57e28221: field flags: %w", err)
		tl_account_content_settings_gen.go#L168: 		return fmt.Errorf("can't decode account.contentSettings#57e28221 to nil")
		tl_account_content_settings_gen.go#L171: 		return fmt.Errorf("unable to decode account.contentSettings#57e28221: %w", err)
		tl_account_content_settings_gen.go#L179: 		return fmt.Errorf("can't decode account.contentSettings#57e28221 to nil")
		tl_account_content_settings_gen.go#L183: 			return fmt.Errorf("unable to decode account.contentSettings#57e28221: field flags: %w", err)
		tl_account_create_theme_gen.go#L183: 		return fmt.Errorf("can't encode account.createTheme#652e4400 as nil")
		tl_account_create_theme_gen.go#L192: 		return fmt.Errorf("can't encode account.createTheme#652e4400 as nil")
		tl_account_create_theme_gen.go#L196: 		return fmt.Errorf("unable to encode account.createTheme#652e4400: field flags: %w", err)
		tl_account_create_theme_gen.go#L202: 			return fmt.Errorf("unable to encode account.createTheme#652e4400: field document is nil")
		tl_account_create_theme_gen.go#L205: 			return fmt.Errorf("unable to encode account.createTheme#652e4400: field document: %w", err)
		tl_account_create_theme_gen.go#L212: 				return fmt.Errorf("unable to encode account.createTheme#652e4400: field settings element with index %d: %w", idx, err)
		tl_account_create_theme_gen.go#L222: 		return fmt.Errorf("can't decode account.createTheme#652e4400 to nil")
		tl_account_create_theme_gen.go#L225: 		return fmt.Errorf("unable to decode account.createTheme#652e4400: %w", err)
		tl_account_create_theme_gen.go#L233: 		return fmt.Errorf("can't decode account.createTheme#652e4400 to nil")
		tl_account_create_theme_gen.go#L237: 			return fmt.Errorf("unable to decode account.createTheme#652e4400: field flags: %w", err)
		tl_account_create_theme_gen.go#L243: 			return fmt.Errorf("unable to decode account.createTheme#652e4400: field slug: %w", err)
		tl_account_create_theme_gen.go#L250: 			return fmt.Errorf("unable to decode account.createTheme#652e4400: field title: %w", err)
		tl_account_create_theme_gen.go#L257: 			return fmt.Errorf("unable to decode account.createTheme#652e4400: field document: %w", err)
		tl_account_create_theme_gen.go#L264: 			return fmt.Errorf("unable to decode account.createTheme#652e4400: field settings: %w", err)
		tl_account_create_theme_gen.go#L273: 				return fmt.Errorf("unable to decode account.createTheme#652e4400: field settings: %w", err)
		tl_account_days_ttl_gen.go#L115: 		return fmt.Errorf("can't encode accountDaysTTL#b8d0afdf as nil")
		tl_account_days_ttl_gen.go#L124: 		return fmt.Errorf("can't encode accountDaysTTL#b8d0afdf as nil")
		tl_account_days_ttl_gen.go#L133: 		return fmt.Errorf("can't decode accountDaysTTL#b8d0afdf to nil")
		tl_account_days_ttl_gen.go#L136: 		return fmt.Errorf("unable to decode accountDaysTTL#b8d0afdf: %w", err)
		tl_account_days_ttl_gen.go#L144: 		return fmt.Errorf("can't decode accountDaysTTL#b8d0afdf to nil")
		tl_account_days_ttl_gen.go#L149: 			return fmt.Errorf("unable to decode accountDaysTTL#b8d0afdf: field days: %w", err)
		tl_account_decline_password_reset_gen.go#L101: 		return fmt.Errorf("can't encode account.declinePasswordReset#4c9409f6 as nil")
		tl_account_decline_password_reset_gen.go#L110: 		return fmt.Errorf("can't encode account.declinePasswordReset#4c9409f6 as nil")
		tl_account_decline_password_reset_gen.go#L118: 		return fmt.Errorf("can't decode account.declinePasswordReset#4c9409f6 to nil")
		tl_account_decline_password_reset_gen.go#L121: 		return fmt.Errorf("unable to decode account.declinePasswordReset#4c9409f6: %w", err)
		tl_account_decline_password_reset_gen.go#L129: 		return fmt.Errorf("can't decode account.declinePasswordReset#4c9409f6 to nil")
		tl_account_delete_account_gen.go#L159: 		return fmt.Errorf("can't encode account.deleteAccount#a2c0cf74 as nil")
		tl_account_delete_account_gen.go#L168: 		return fmt.Errorf("can't encode account.deleteAccount#a2c0cf74 as nil")
		tl_account_delete_account_gen.go#L172: 		return fmt.Errorf("unable to encode account.deleteAccount#a2c0cf74: field flags: %w", err)
		tl_account_delete_account_gen.go#L177: 			return fmt.Errorf("unable to encode account.deleteAccount#a2c0cf74: field password is nil")
		tl_account_delete_account_gen.go#L180: 			return fmt.Errorf("unable to encode account.deleteAccount#a2c0cf74: field password: %w", err)
		tl_account_delete_account_gen.go#L189: 		return fmt.Errorf("can't decode account.deleteAccount#a2c0cf74 to nil")
		tl_account_delete_account_gen.go#L192: 		return fmt.Errorf("unable to decode account.deleteAccount#a2c0cf74: %w", err)
		tl_account_delete_account_gen.go#L200: 		return fmt.Errorf("can't decode account.deleteAccount#a2c0cf74 to nil")
		tl_account_delete_account_gen.go#L204: 			return fmt.Errorf("unable to decode account.deleteAccount#a2c0cf74: field flags: %w", err)
		tl_account_delete_account_gen.go#L210: 			return fmt.Errorf("unable to decode account.deleteAccount#a2c0cf74: field reason: %w", err)
		tl_account_delete_account_gen.go#L217: 			return fmt.Errorf("unable to decode account.deleteAccount#a2c0cf74: field password: %w", err)
		tl_account_delete_auto_save_exceptions_gen.go#L98: 		return fmt.Errorf("can't encode account.deleteAutoSaveExceptions#53bc0020 as nil")
		tl_account_delete_auto_save_exceptions_gen.go#L107: 		return fmt.Errorf("can't encode account.deleteAutoSaveExceptions#53bc0020 as nil")
		tl_account_delete_auto_save_exceptions_gen.go#L115: 		return fmt.Errorf("can't decode account.deleteAutoSaveExceptions#53bc0020 to nil")
		tl_account_delete_auto_save_exceptions_gen.go#L118: 		return fmt.Errorf("unable to decode account.deleteAutoSaveExceptions#53bc0020: %w", err)
		tl_account_delete_auto_save_exceptions_gen.go#L126: 		return fmt.Errorf("can't decode account.deleteAutoSaveExceptions#53bc0020 to nil")
		tl_account_delete_secure_value_gen.go#L119: 		return fmt.Errorf("can't encode account.deleteSecureValue#b880bc4b as nil")
		tl_account_delete_secure_value_gen.go#L128: 		return fmt.Errorf("can't encode account.deleteSecureValue#b880bc4b as nil")
		tl_account_delete_secure_value_gen.go#L133: 			return fmt.Errorf("unable to encode account.deleteSecureValue#b880bc4b: field types element with index %d is nil", idx)
		tl_account_delete_secure_value_gen.go#L136: 			return fmt.Errorf("unable to encode account.deleteSecureValue#b880bc4b: field types element with index %d: %w", idx, err)
		tl_account_delete_secure_value_gen.go#L145: 		return fmt.Errorf("can't decode account.deleteSecureValue#b880bc4b to nil")
		tl_account_delete_secure_value_gen.go#L148: 		return fmt.Errorf("unable to decode account.deleteSecureValue#b880bc4b: %w", err)
		tl_account_delete_secure_value_gen.go#L156: 		return fmt.Errorf("can't decode account.deleteSecureValue#b880bc4b to nil")
		tl_account_delete_secure_value_gen.go#L161: 			return fmt.Errorf("unable to decode account.deleteSecureValue#b880bc4b: field types: %w", err)
		tl_account_delete_secure_value_gen.go#L170: 				return fmt.Errorf("unable to decode account.deleteSecureValue#b880bc4b: field types: %w", err)
		tl_account_email_verified_gen.go#L120: 		return fmt.Errorf("can't encode account.emailVerified#2b96cd1b as nil")
		tl_account_email_verified_gen.go#L129: 		return fmt.Errorf("can't encode account.emailVerified#2b96cd1b as nil")
		tl_account_email_verified_gen.go#L138: 		return fmt.Errorf("can't decode account.emailVerified#2b96cd1b to nil")
		tl_account_email_verified_gen.go#L141: 		return fmt.Errorf("unable to decode account.emailVerified#2b96cd1b: %w", err)
		tl_account_email_verified_gen.go#L149: 		return fmt.Errorf("can't decode account.emailVerified#2b96cd1b to nil")
		tl_account_email_verified_gen.go#L154: 			return fmt.Errorf("unable to decode account.emailVerified#2b96cd1b: field email: %w", err)
		tl_account_email_verified_gen.go#L269: 		return fmt.Errorf("can't encode account.emailVerifiedLogin#e1bb0d61 as nil")
		tl_account_email_verified_gen.go#L278: 		return fmt.Errorf("can't encode account.emailVerifiedLogin#e1bb0d61 as nil")
		tl_account_email_verified_gen.go#L282: 		return fmt.Errorf("unable to encode account.emailVerifiedLogin#e1bb0d61: field sent_code is nil")
		tl_account_email_verified_gen.go#L285: 		return fmt.Errorf("unable to encode account.emailVerifiedLogin#e1bb0d61: field sent_code: %w", err)
		tl_account_email_verified_gen.go#L293: 		return fmt.Errorf("can't decode account.emailVerifiedLogin#e1bb0d61 to nil")
		tl_account_email_verified_gen.go#L296: 		return fmt.Errorf("unable to decode account.emailVerifiedLogin#e1bb0d61: %w", err)
		tl_account_email_verified_gen.go#L304: 		return fmt.Errorf("can't decode account.emailVerifiedLogin#e1bb0d61 to nil")
		tl_account_email_verified_gen.go#L309: 			return fmt.Errorf("unable to decode account.emailVerifiedLogin#e1bb0d61: field email: %w", err)
		tl_account_email_verified_gen.go#L316: 			return fmt.Errorf("unable to decode account.emailVerifiedLogin#e1bb0d61: field sent_code: %w", err)
		tl_account_email_verified_gen.go#L390: 			return nil, fmt.Errorf("unable to decode AccountEmailVerifiedClass: %w", err)
		tl_account_email_verified_gen.go#L397: 			return nil, fmt.Errorf("unable to decode AccountEmailVerifiedClass: %w", err)
		tl_account_email_verified_gen.go#L401: 		return nil, fmt.Errorf("unable to decode AccountEmailVerifiedClass: %w", bin.NewUnexpectedID(id))
		tl_account_email_verified_gen.go#L413: 		return fmt.Errorf("unable to decode AccountEmailVerifiedBox to nil")
		tl_account_email_verified_gen.go#L417: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_account_email_verified_gen.go#L426: 		return fmt.Errorf("unable to encode AccountEmailVerifiedClass as nil")
		tl_account_emoji_statuses_gen.go#L106: 		return fmt.Errorf("can't encode account.emojiStatusesNotModified#d08ce645 as nil")
		tl_account_emoji_statuses_gen.go#L115: 		return fmt.Errorf("can't encode account.emojiStatusesNotModified#d08ce645 as nil")
		tl_account_emoji_statuses_gen.go#L123: 		return fmt.Errorf("can't decode account.emojiStatusesNotModified#d08ce645 to nil")
		tl_account_emoji_statuses_gen.go#L126: 		return fmt.Errorf("unable to decode account.emojiStatusesNotModified#d08ce645: %w", err)
		tl_account_emoji_statuses_gen.go#L134: 		return fmt.Errorf("can't decode account.emojiStatusesNotModified#d08ce645 to nil")
		tl_account_emoji_statuses_gen.go#L245: 		return fmt.Errorf("can't encode account.emojiStatuses#90c467d1 as nil")
		tl_account_emoji_statuses_gen.go#L254: 		return fmt.Errorf("can't encode account.emojiStatuses#90c467d1 as nil")
		tl_account_emoji_statuses_gen.go#L260: 			return fmt.Errorf("unable to encode account.emojiStatuses#90c467d1: field statuses element with index %d is nil", idx)
		tl_account_emoji_statuses_gen.go#L263: 			return fmt.Errorf("unable to encode account.emojiStatuses#90c467d1: field statuses element with index %d: %w", idx, err)
		tl_account_emoji_statuses_gen.go#L272: 		return fmt.Errorf("can't decode account.emojiStatuses#90c467d1 to nil")
		tl_account_emoji_statuses_gen.go#L275: 		return fmt.Errorf("unable to decode account.emojiStatuses#90c467d1: %w", err)
		tl_account_emoji_statuses_gen.go#L283: 		return fmt.Errorf("can't decode account.emojiStatuses#90c467d1 to nil")
		tl_account_emoji_statuses_gen.go#L288: 			return fmt.Errorf("unable to decode account.emojiStatuses#90c467d1: field hash: %w", err)
		tl_account_emoji_statuses_gen.go#L295: 			return fmt.Errorf("unable to decode account.emojiStatuses#90c467d1: field statuses: %w", err)
		tl_account_emoji_statuses_gen.go#L304: 				return fmt.Errorf("unable to decode account.emojiStatuses#90c467d1: field statuses: %w", err)
		tl_account_emoji_statuses_gen.go#L394: 			return nil, fmt.Errorf("unable to decode AccountEmojiStatusesClass: %w", err)
		tl_account_emoji_statuses_gen.go#L401: 			return nil, fmt.Errorf("unable to decode AccountEmojiStatusesClass: %w", err)
		tl_account_emoji_statuses_gen.go#L405: 		return nil, fmt.Errorf("unable to decode AccountEmojiStatusesClass: %w", bin.NewUnexpectedID(id))
		tl_account_emoji_statuses_gen.go#L417: 		return fmt.Errorf("unable to decode AccountEmojiStatusesBox to nil")
		tl_account_emoji_statuses_gen.go#L421: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_account_emoji_statuses_gen.go#L430: 		return fmt.Errorf("unable to encode AccountEmojiStatusesClass as nil")
		tl_account_finish_takeout_session_gen.go#L134: 		return fmt.Errorf("can't encode account.finishTakeoutSession#1d2652ee as nil")
		tl_account_finish_takeout_session_gen.go#L143: 		return fmt.Errorf("can't encode account.finishTakeoutSession#1d2652ee as nil")
		tl_account_finish_takeout_session_gen.go#L147: 		return fmt.Errorf("unable to encode account.finishTakeoutSession#1d2652ee: field flags: %w", err)
		tl_account_finish_takeout_session_gen.go#L155: 		return fmt.Errorf("can't decode account.finishTakeoutSession#1d2652ee to nil")
		tl_account_finish_takeout_session_gen.go#L158: 		return fmt.Errorf("unable to decode account.finishTakeoutSession#1d2652ee: %w", err)
		tl_account_finish_takeout_session_gen.go#L166: 		return fmt.Errorf("can't decode account.finishTakeoutSession#1d2652ee to nil")
		tl_account_finish_takeout_session_gen.go#L170: 			return fmt.Errorf("unable to decode account.finishTakeoutSession#1d2652ee: field flags: %w", err)
		tl_account_get_account_ttl_gen.go#L98: 		return fmt.Errorf("can't encode account.getAccountTTL#8fc711d as nil")
		tl_account_get_account_ttl_gen.go#L107: 		return fmt.Errorf("can't encode account.getAccountTTL#8fc711d as nil")
		tl_account_get_account_ttl_gen.go#L115: 		return fmt.Errorf("can't decode account.getAccountTTL#8fc711d to nil")
		tl_account_get_account_ttl_gen.go#L118: 		return fmt.Errorf("unable to decode account.getAccountTTL#8fc711d: %w", err)
		tl_account_get_account_ttl_gen.go#L126: 		return fmt.Errorf("can't decode account.getAccountTTL#8fc711d to nil")
		tl_account_get_all_secure_values_gen.go#L102: 		return fmt.Errorf("can't encode account.getAllSecureValues#b288bc7d as nil")
		tl_account_get_all_secure_values_gen.go#L111: 		return fmt.Errorf("can't encode account.getAllSecureValues#b288bc7d as nil")
		tl_account_get_all_secure_values_gen.go#L119: 		return fmt.Errorf("can't decode account.getAllSecureValues#b288bc7d to nil")
		tl_account_get_all_secure_values_gen.go#L122: 		return fmt.Errorf("unable to decode account.getAllSecureValues#b288bc7d: %w", err)
		tl_account_get_all_secure_values_gen.go#L130: 		return fmt.Errorf("can't decode account.getAllSecureValues#b288bc7d to nil")
		tl_account_get_authorization_form_gen.go#L137: 		return fmt.Errorf("can't encode account.getAuthorizationForm#a929597a as nil")
		tl_account_get_authorization_form_gen.go#L146: 		return fmt.Errorf("can't encode account.getAuthorizationForm#a929597a as nil")
		tl_account_get_authorization_form_gen.go#L157: 		return fmt.Errorf("can't decode account.getAuthorizationForm#a929597a to nil")
		tl_account_get_authorization_form_gen.go#L160: 		return fmt.Errorf("unable to decode account.getAuthorizationForm#a929597a: %w", err)
		tl_account_get_authorization_form_gen.go#L168: 		return fmt.Errorf("can't decode account.getAuthorizationForm#a929597a to nil")
		tl_account_get_authorization_form_gen.go#L173: 			return fmt.Errorf("unable to decode account.getAuthorizationForm#a929597a: field bot_id: %w", err)
		tl_account_get_authorization_form_gen.go#L180: 			return fmt.Errorf("unable to decode account.getAuthorizationForm#a929597a: field scope: %w", err)
		tl_account_get_authorization_form_gen.go#L187: 			return fmt.Errorf("unable to decode account.getAuthorizationForm#a929597a: field public_key: %w", err)
		tl_account_get_authorizations_gen.go#L98: 		return fmt.Errorf("can't encode account.getAuthorizations#e320c158 as nil")
		tl_account_get_authorizations_gen.go#L107: 		return fmt.Errorf("can't encode account.getAuthorizations#e320c158 as nil")
		tl_account_get_authorizations_gen.go#L115: 		return fmt.Errorf("can't decode account.getAuthorizations#e320c158 to nil")
		tl_account_get_authorizations_gen.go#L118: 		return fmt.Errorf("unable to decode account.getAuthorizations#e320c158: %w", err)
		tl_account_get_authorizations_gen.go#L126: 		return fmt.Errorf("can't decode account.getAuthorizations#e320c158 to nil")
		tl_account_get_auto_download_settings_gen.go#L98: 		return fmt.Errorf("can't encode account.getAutoDownloadSettings#56da0b3f as nil")
		tl_account_get_auto_download_settings_gen.go#L107: 		return fmt.Errorf("can't encode account.getAutoDownloadSettings#56da0b3f as nil")
		tl_account_get_auto_download_settings_gen.go#L115: 		return fmt.Errorf("can't decode account.getAutoDownloadSettings#56da0b3f to nil")
		tl_account_get_auto_download_settings_gen.go#L118: 		return fmt.Errorf("unable to decode account.getAutoDownloadSettings#56da0b3f: %w", err)
		tl_account_get_auto_download_settings_gen.go#L126: 		return fmt.Errorf("can't decode account.getAutoDownloadSettings#56da0b3f to nil")
		tl_account_get_auto_save_settings_gen.go#L98: 		return fmt.Errorf("can't encode account.getAutoSaveSettings#adcbbcda as nil")
		tl_account_get_auto_save_settings_gen.go#L107: 		return fmt.Errorf("can't encode account.getAutoSaveSettings#adcbbcda as nil")
		tl_account_get_auto_save_settings_gen.go#L115: 		return fmt.Errorf("can't decode account.getAutoSaveSettings#adcbbcda to nil")
		tl_account_get_auto_save_settings_gen.go#L118: 		return fmt.Errorf("unable to decode account.getAutoSaveSettings#adcbbcda: %w", err)
		tl_account_get_auto_save_settings_gen.go#L126: 		return fmt.Errorf("can't decode account.getAutoSaveSettings#adcbbcda to nil")
		tl_account_get_channel_default_emoji_statuses_gen.go#L114: 		return fmt.Errorf("can't encode account.getChannelDefaultEmojiStatuses#7727a7d5 as nil")
		tl_account_get_channel_default_emoji_statuses_gen.go#L123: 		return fmt.Errorf("can't encode account.getChannelDefaultEmojiStatuses#7727a7d5 as nil")
		tl_account_get_channel_default_emoji_statuses_gen.go#L132: 		return fmt.Errorf("can't decode account.getChannelDefaultEmojiStatuses#7727a7d5 to nil")
		tl_account_get_channel_default_emoji_statuses_gen.go#L135: 		return fmt.Errorf("unable to decode account.getChannelDefaultEmojiStatuses#7727a7d5: %w", err)
		tl_account_get_channel_default_emoji_statuses_gen.go#L143: 		return fmt.Errorf("can't decode account.getChannelDefaultEmojiStatuses#7727a7d5 to nil")
		tl_account_get_channel_default_emoji_statuses_gen.go#L148: 			return fmt.Errorf("unable to decode account.getChannelDefaultEmojiStatuses#7727a7d5: field hash: %w", err)
		tl_account_get_channel_restricted_status_emojis_gen.go#L114: 		return fmt.Errorf("can't encode account.getChannelRestrictedStatusEmojis#35a9e0d5 as nil")
		tl_account_get_channel_restricted_status_emojis_gen.go#L123: 		return fmt.Errorf("can't encode account.getChannelRestrictedStatusEmojis#35a9e0d5 as nil")
		tl_account_get_channel_restricted_status_emojis_gen.go#L132: 		return fmt.Errorf("can't decode account.getChannelRestrictedStatusEmojis#35a9e0d5 to nil")
		tl_account_get_channel_restricted_status_emojis_gen.go#L135: 		return fmt.Errorf("unable to decode account.getChannelRestrictedStatusEmojis#35a9e0d5: %w", err)
		tl_account_get_channel_restricted_status_emojis_gen.go#L143: 		return fmt.Errorf("can't decode account.getChannelRestrictedStatusEmojis#35a9e0d5 to nil")
		tl_account_get_channel_restricted_status_emojis_gen.go#L148: 			return fmt.Errorf("unable to decode account.getChannelRestrictedStatusEmojis#35a9e0d5: field hash: %w", err)
		tl_account_get_chat_themes_gen.go#L118: 		return fmt.Errorf("can't encode account.getChatThemes#d638de89 as nil")
		tl_account_get_chat_themes_gen.go#L127: 		return fmt.Errorf("can't encode account.getChatThemes#d638de89 as nil")
		tl_account_get_chat_themes_gen.go#L136: 		return fmt.Errorf("can't decode account.getChatThemes#d638de89 to nil")
		tl_account_get_chat_themes_gen.go#L139: 		return fmt.Errorf("unable to decode account.getChatThemes#d638de89: %w", err)
		tl_account_get_chat_themes_gen.go#L147: 		return fmt.Errorf("can't decode account.getChatThemes#d638de89 to nil")
		tl_account_get_chat_themes_gen.go#L152: 			return fmt.Errorf("unable to decode account.getChatThemes#d638de89: field hash: %w", err)
		tl_account_get_contact_sign_up_notification_gen.go#L98: 		return fmt.Errorf("can't encode account.getContactSignUpNotification#9f07c728 as nil")
		tl_account_get_contact_sign_up_notification_gen.go#L107: 		return fmt.Errorf("can't encode account.getContactSignUpNotification#9f07c728 as nil")
		tl_account_get_contact_sign_up_notification_gen.go#L115: 		return fmt.Errorf("can't decode account.getContactSignUpNotification#9f07c728 to nil")
		tl_account_get_contact_sign_up_notification_gen.go#L118: 		return fmt.Errorf("unable to decode account.getContactSignUpNotification#9f07c728: %w", err)
		tl_account_get_contact_sign_up_notification_gen.go#L126: 		return fmt.Errorf("can't decode account.getContactSignUpNotification#9f07c728 to nil")
		tl_account_get_content_settings_gen.go#L98: 		return fmt.Errorf("can't encode account.getContentSettings#8b9b4dae as nil")
		tl_account_get_content_settings_gen.go#L107: 		return fmt.Errorf("can't encode account.getContentSettings#8b9b4dae as nil")
		tl_account_get_content_settings_gen.go#L115: 		return fmt.Errorf("can't decode account.getContentSettings#8b9b4dae to nil")
		tl_account_get_content_settings_gen.go#L118: 		return fmt.Errorf("unable to decode account.getContentSettings#8b9b4dae: %w", err)
		tl_account_get_content_settings_gen.go#L126: 		return fmt.Errorf("can't decode account.getContentSettings#8b9b4dae to nil")
		tl_account_get_default_background_emojis_gen.go#L123: 		return fmt.Errorf("can't encode account.getDefaultBackgroundEmojis#a60ab9ce as nil")
		tl_account_get_default_background_emojis_gen.go#L132: 		return fmt.Errorf("can't encode account.getDefaultBackgroundEmojis#a60ab9ce as nil")
		tl_account_get_default_background_emojis_gen.go#L141: 		return fmt.Errorf("can't decode account.getDefaultBackgroundEmojis#a60ab9ce to nil")
		tl_account_get_default_background_emojis_gen.go#L144: 		return fmt.Errorf("unable to decode account.getDefaultBackgroundEmojis#a60ab9ce: %w", err)
		tl_account_get_default_background_emojis_gen.go#L152: 		return fmt.Errorf("can't decode account.getDefaultBackgroundEmojis#a60ab9ce to nil")
		tl_account_get_default_background_emojis_gen.go#L157: 			return fmt.Errorf("unable to decode account.getDefaultBackgroundEmojis#a60ab9ce: field hash: %w", err)
		tl_account_get_default_emoji_statuses_gen.go#L121: 		return fmt.Errorf("can't encode account.getDefaultEmojiStatuses#d6753386 as nil")
		tl_account_get_default_emoji_statuses_gen.go#L130: 		return fmt.Errorf("can't encode account.getDefaultEmojiStatuses#d6753386 as nil")
		tl_account_get_default_emoji_statuses_gen.go#L139: 		return fmt.Errorf("can't decode account.getDefaultEmojiStatuses#d6753386 to nil")
		tl_account_get_default_emoji_statuses_gen.go#L142: 		return fmt.Errorf("unable to decode account.getDefaultEmojiStatuses#d6753386: %w", err)
		tl_account_get_default_emoji_statuses_gen.go#L150: 		return fmt.Errorf("can't decode account.getDefaultEmojiStatuses#d6753386 to nil")
		tl_account_get_default_emoji_statuses_gen.go#L155: 			return fmt.Errorf("unable to decode account.getDefaultEmojiStatuses#d6753386: field hash: %w", err)
		tl_account_get_default_group_photo_emojis_gen.go#L122: 		return fmt.Errorf("can't encode account.getDefaultGroupPhotoEmojis#915860ae as nil")
		tl_account_get_default_group_photo_emojis_gen.go#L131: 		return fmt.Errorf("can't encode account.getDefaultGroupPhotoEmojis#915860ae as nil")
		tl_account_get_default_group_photo_emojis_gen.go#L140: 		return fmt.Errorf("can't decode account.getDefaultGroupPhotoEmojis#915860ae to nil")
		tl_account_get_default_group_photo_emojis_gen.go#L143: 		return fmt.Errorf("unable to decode account.getDefaultGroupPhotoEmojis#915860ae: %w", err)
		tl_account_get_default_group_photo_emojis_gen.go#L151: 		return fmt.Errorf("can't decode account.getDefaultGroupPhotoEmojis#915860ae to nil")
		tl_account_get_default_group_photo_emojis_gen.go#L156: 			return fmt.Errorf("unable to decode account.getDefaultGroupPhotoEmojis#915860ae: field hash: %w", err)
		tl_account_get_default_profile_photo_emojis_gen.go#L122: 		return fmt.Errorf("can't encode account.getDefaultProfilePhotoEmojis#e2750328 as nil")
		tl_account_get_default_profile_photo_emojis_gen.go#L131: 		return fmt.Errorf("can't encode account.getDefaultProfilePhotoEmojis#e2750328 as nil")
		tl_account_get_default_profile_photo_emojis_gen.go#L140: 		return fmt.Errorf("can't decode account.getDefaultProfilePhotoEmojis#e2750328 to nil")
		tl_account_get_default_profile_photo_emojis_gen.go#L143: 		return fmt.Errorf("unable to decode account.getDefaultProfilePhotoEmojis#e2750328: %w", err)
		tl_account_get_default_profile_photo_emojis_gen.go#L151: 		return fmt.Errorf("can't decode account.getDefaultProfilePhotoEmojis#e2750328 to nil")
		tl_account_get_default_profile_photo_emojis_gen.go#L156: 			return fmt.Errorf("unable to decode account.getDefaultProfilePhotoEmojis#e2750328: field hash: %w", err)
		tl_account_get_global_privacy_settings_gen.go#L98: 		return fmt.Errorf("can't encode account.getGlobalPrivacySettings#eb2b4cf6 as nil")
		tl_account_get_global_privacy_settings_gen.go#L107: 		return fmt.Errorf("can't encode account.getGlobalPrivacySettings#eb2b4cf6 as nil")
		tl_account_get_global_privacy_settings_gen.go#L115: 		return fmt.Errorf("can't decode account.getGlobalPrivacySettings#eb2b4cf6 to nil")
		tl_account_get_global_privacy_settings_gen.go#L118: 		return fmt.Errorf("unable to decode account.getGlobalPrivacySettings#eb2b4cf6: %w", err)
		tl_account_get_global_privacy_settings_gen.go#L126: 		return fmt.Errorf("can't decode account.getGlobalPrivacySettings#eb2b4cf6 to nil")
		tl_account_get_multi_wall_papers_gen.go#L121: 		return fmt.Errorf("can't encode account.getMultiWallPapers#65ad71dc as nil")
		tl_account_get_multi_wall_papers_gen.go#L130: 		return fmt.Errorf("can't encode account.getMultiWallPapers#65ad71dc as nil")
		tl_account_get_multi_wall_papers_gen.go#L135: 			return fmt.Errorf("unable to encode account.getMultiWallPapers#65ad71dc: field wallpapers element with index %d is nil", idx)
		tl_account_get_multi_wall_papers_gen.go#L138: 			return fmt.Errorf("unable to encode account.getMultiWallPapers#65ad71dc: field wallpapers element with index %d: %w", idx, err)
		tl_account_get_multi_wall_papers_gen.go#L147: 		return fmt.Errorf("can't decode account.getMultiWallPapers#65ad71dc to nil")
		tl_account_get_multi_wall_papers_gen.go#L150: 		return fmt.Errorf("unable to decode account.getMultiWallPapers#65ad71dc: %w", err)
		tl_account_get_multi_wall_papers_gen.go#L158: 		return fmt.Errorf("can't decode account.getMultiWallPapers#65ad71dc to nil")
		tl_account_get_multi_wall_papers_gen.go#L163: 			return fmt.Errorf("unable to decode account.getMultiWallPapers#65ad71dc: field wallpapers: %w", err)
		tl_account_get_multi_wall_papers_gen.go#L172: 				return fmt.Errorf("unable to decode account.getMultiWallPapers#65ad71dc: field wallpapers: %w", err)
		tl_account_get_notify_exceptions_gen.go#L166: 		return fmt.Errorf("can't encode account.getNotifyExceptions#53577479 as nil")
		tl_account_get_notify_exceptions_gen.go#L175: 		return fmt.Errorf("can't encode account.getNotifyExceptions#53577479 as nil")
		tl_account_get_notify_exceptions_gen.go#L179: 		return fmt.Errorf("unable to encode account.getNotifyExceptions#53577479: field flags: %w", err)
		tl_account_get_notify_exceptions_gen.go#L183: 			return fmt.Errorf("unable to encode account.getNotifyExceptions#53577479: field peer is nil")
		tl_account_get_notify_exceptions_gen.go#L186: 			return fmt.Errorf("unable to encode account.getNotifyExceptions#53577479: field peer: %w", err)
		tl_account_get_notify_exceptions_gen.go#L195: 		return fmt.Errorf("can't decode account.getNotifyExceptions#53577479 to nil")
		tl_account_get_notify_exceptions_gen.go#L198: 		return fmt.Errorf("unable to decode account.getNotifyExceptions#53577479: %w", err)
		tl_account_get_notify_exceptions_gen.go#L206: 		return fmt.Errorf("can't decode account.getNotifyExceptions#53577479 to nil")
		tl_account_get_notify_exceptions_gen.go#L210: 			return fmt.Errorf("unable to decode account.getNotifyExceptions#53577479: field flags: %w", err)
		tl_account_get_notify_exceptions_gen.go#L218: 			return fmt.Errorf("unable to decode account.getNotifyExceptions#53577479: field peer: %w", err)
		tl_account_get_notify_settings_gen.go#L115: 		return fmt.Errorf("can't encode account.getNotifySettings#12b3ad31 as nil")
		tl_account_get_notify_settings_gen.go#L124: 		return fmt.Errorf("can't encode account.getNotifySettings#12b3ad31 as nil")
		tl_account_get_notify_settings_gen.go#L127: 		return fmt.Errorf("unable to encode account.getNotifySettings#12b3ad31: field peer is nil")
		tl_account_get_notify_settings_gen.go#L130: 		return fmt.Errorf("unable to encode account.getNotifySettings#12b3ad31: field peer: %w", err)
		tl_account_get_notify_settings_gen.go#L138: 		return fmt.Errorf("can't decode account.getNotifySettings#12b3ad31 to nil")
		tl_account_get_notify_settings_gen.go#L141: 		return fmt.Errorf("unable to decode account.getNotifySettings#12b3ad31: %w", err)
		tl_account_get_notify_settings_gen.go#L149: 		return fmt.Errorf("can't decode account.getNotifySettings#12b3ad31 to nil")
		tl_account_get_notify_settings_gen.go#L154: 			return fmt.Errorf("unable to decode account.getNotifySettings#12b3ad31: field peer: %w", err)
		tl_account_get_password_gen.go#L98: 		return fmt.Errorf("can't encode account.getPassword#548a30f5 as nil")
		tl_account_get_password_gen.go#L107: 		return fmt.Errorf("can't encode account.getPassword#548a30f5 as nil")
		tl_account_get_password_gen.go#L115: 		return fmt.Errorf("can't decode account.getPassword#548a30f5 to nil")
		tl_account_get_password_gen.go#L118: 		return fmt.Errorf("unable to decode account.getPassword#548a30f5: %w", err)
		tl_account_get_password_gen.go#L126: 		return fmt.Errorf("can't decode account.getPassword#548a30f5 to nil")
		tl_account_get_password_settings_gen.go#L122: 		return fmt.Errorf("can't encode account.getPasswordSettings#9cd4eaf9 as nil")
		tl_account_get_password_settings_gen.go#L131: 		return fmt.Errorf("can't encode account.getPasswordSettings#9cd4eaf9 as nil")
		tl_account_get_password_settings_gen.go#L134: 		return fmt.Errorf("unable to encode account.getPasswordSettings#9cd4eaf9: field password is nil")
		tl_account_get_password_settings_gen.go#L137: 		return fmt.Errorf("unable to encode account.getPasswordSettings#9cd4eaf9: field password: %w", err)
		tl_account_get_password_settings_gen.go#L145: 		return fmt.Errorf("can't decode account.getPasswordSettings#9cd4eaf9 to nil")
		tl_account_get_password_settings_gen.go#L148: 		return fmt.Errorf("unable to decode account.getPasswordSettings#9cd4eaf9: %w", err)
		tl_account_get_password_settings_gen.go#L156: 		return fmt.Errorf("can't decode account.getPasswordSettings#9cd4eaf9 to nil")
		tl_account_get_password_settings_gen.go#L161: 			return fmt.Errorf("unable to decode account.getPasswordSettings#9cd4eaf9: field password: %w", err)
		tl_account_get_privacy_gen.go#L115: 		return fmt.Errorf("can't encode account.getPrivacy#dadbc950 as nil")
		tl_account_get_privacy_gen.go#L124: 		return fmt.Errorf("can't encode account.getPrivacy#dadbc950 as nil")
		tl_account_get_privacy_gen.go#L127: 		return fmt.Errorf("unable to encode account.getPrivacy#dadbc950: field key is nil")
		tl_account_get_privacy_gen.go#L130: 		return fmt.Errorf("unable to encode account.getPrivacy#dadbc950: field key: %w", err)
		tl_account_get_privacy_gen.go#L138: 		return fmt.Errorf("can't decode account.getPrivacy#dadbc950 to nil")
		tl_account_get_privacy_gen.go#L141: 		return fmt.Errorf("unable to decode account.getPrivacy#dadbc950: %w", err)
		tl_account_get_privacy_gen.go#L149: 		return fmt.Errorf("can't decode account.getPrivacy#dadbc950 to nil")
		tl_account_get_privacy_gen.go#L154: 			return fmt.Errorf("unable to decode account.getPrivacy#dadbc950: field key: %w", err)
		tl_account_get_recent_emoji_statuses_gen.go#L121: 		return fmt.Errorf("can't encode account.getRecentEmojiStatuses#f578105 as nil")
		tl_account_get_recent_emoji_statuses_gen.go#L130: 		return fmt.Errorf("can't encode account.getRecentEmojiStatuses#f578105 as nil")
		tl_account_get_recent_emoji_statuses_gen.go#L139: 		return fmt.Errorf("can't decode account.getRecentEmojiStatuses#f578105 to nil")
		tl_account_get_recent_emoji_statuses_gen.go#L142: 		return fmt.Errorf("unable to decode account.getRecentEmojiStatuses#f578105: %w", err)
		tl_account_get_recent_emoji_statuses_gen.go#L150: 		return fmt.Errorf("can't decode account.getRecentEmojiStatuses#f578105 to nil")
		tl_account_get_recent_emoji_statuses_gen.go#L155: 			return fmt.Errorf("unable to decode account.getRecentEmojiStatuses#f578105: field hash: %w", err)
		tl_account_get_saved_ringtones_gen.go#L118: 		return fmt.Errorf("can't encode account.getSavedRingtones#e1902288 as nil")
		tl_account_get_saved_ringtones_gen.go#L127: 		return fmt.Errorf("can't encode account.getSavedRingtones#e1902288 as nil")
		tl_account_get_saved_ringtones_gen.go#L136: 		return fmt.Errorf("can't decode account.getSavedRingtones#e1902288 to nil")
		tl_account_get_saved_ringtones_gen.go#L139: 		return fmt.Errorf("unable to decode account.getSavedRingtones#e1902288: %w", err)
		tl_account_get_saved_ringtones_gen.go#L147: 		return fmt.Errorf("can't decode account.getSavedRingtones#e1902288 to nil")
		tl_account_get_saved_ringtones_gen.go#L152: 			return fmt.Errorf("unable to decode account.getSavedRingtones#e1902288: field hash: %w", err)
		tl_account_get_secure_value_gen.go#L119: 		return fmt.Errorf("can't encode account.getSecureValue#73665bc2 as nil")
		tl_account_get_secure_value_gen.go#L128: 		return fmt.Errorf("can't encode account.getSecureValue#73665bc2 as nil")
		tl_account_get_secure_value_gen.go#L133: 			return fmt.Errorf("unable to encode account.getSecureValue#73665bc2: field types element with index %d is nil", idx)
		tl_account_get_secure_value_gen.go#L136: 			return fmt.Errorf("unable to encode account.getSecureValue#73665bc2: field types element with index %d: %w", idx, err)
		tl_account_get_secure_value_gen.go#L145: 		return fmt.Errorf("can't decode account.getSecureValue#73665bc2 to nil")
		tl_account_get_secure_value_gen.go#L148: 		return fmt.Errorf("unable to decode account.getSecureValue#73665bc2: %w", err)
		tl_account_get_secure_value_gen.go#L156: 		return fmt.Errorf("can't decode account.getSecureValue#73665bc2 to nil")
		tl_account_get_secure_value_gen.go#L161: 			return fmt.Errorf("unable to decode account.getSecureValue#73665bc2: field types: %w", err)
		tl_account_get_secure_value_gen.go#L170: 				return fmt.Errorf("unable to decode account.getSecureValue#73665bc2: field types: %w", err)
		tl_account_get_theme_gen.go#L126: 		return fmt.Errorf("can't encode account.getTheme#3a5869ec as nil")
		tl_account_get_theme_gen.go#L135: 		return fmt.Errorf("can't encode account.getTheme#3a5869ec as nil")
		tl_account_get_theme_gen.go#L139: 		return fmt.Errorf("unable to encode account.getTheme#3a5869ec: field theme is nil")
		tl_account_get_theme_gen.go#L142: 		return fmt.Errorf("unable to encode account.getTheme#3a5869ec: field theme: %w", err)
		tl_account_get_theme_gen.go#L150: 		return fmt.Errorf("can't decode account.getTheme#3a5869ec to nil")
		tl_account_get_theme_gen.go#L153: 		return fmt.Errorf("unable to decode account.getTheme#3a5869ec: %w", err)
		tl_account_get_theme_gen.go#L161: 		return fmt.Errorf("can't decode account.getTheme#3a5869ec to nil")
		tl_account_get_theme_gen.go#L166: 			return fmt.Errorf("unable to decode account.getTheme#3a5869ec: field format: %w", err)
		tl_account_get_theme_gen.go#L173: 			return fmt.Errorf("unable to decode account.getTheme#3a5869ec: field theme: %w", err)
		tl_account_get_themes_gen.go#L129: 		return fmt.Errorf("can't encode account.getThemes#7206e458 as nil")
		tl_account_get_themes_gen.go#L138: 		return fmt.Errorf("can't encode account.getThemes#7206e458 as nil")
		tl_account_get_themes_gen.go#L148: 		return fmt.Errorf("can't decode account.getThemes#7206e458 to nil")
		tl_account_get_themes_gen.go#L151: 		return fmt.Errorf("unable to decode account.getThemes#7206e458: %w", err)
		tl_account_get_themes_gen.go#L159: 		return fmt.Errorf("can't decode account.getThemes#7206e458 to nil")
		tl_account_get_themes_gen.go#L164: 			return fmt.Errorf("unable to decode account.getThemes#7206e458: field format: %w", err)
		tl_account_get_themes_gen.go#L171: 			return fmt.Errorf("unable to decode account.getThemes#7206e458: field hash: %w", err)
		tl_account_get_tmp_password_gen.go#L127: 		return fmt.Errorf("can't encode account.getTmpPassword#449e0b51 as nil")
		tl_account_get_tmp_password_gen.go#L136: 		return fmt.Errorf("can't encode account.getTmpPassword#449e0b51 as nil")
		tl_account_get_tmp_password_gen.go#L139: 		return fmt.Errorf("unable to encode account.getTmpPassword#449e0b51: field password is nil")
		tl_account_get_tmp_password_gen.go#L142: 		return fmt.Errorf("unable to encode account.getTmpPassword#449e0b51: field password: %w", err)
		tl_account_get_tmp_password_gen.go#L151: 		return fmt.Errorf("can't decode account.getTmpPassword#449e0b51 to nil")
		tl_account_get_tmp_password_gen.go#L154: 		return fmt.Errorf("unable to decode account.getTmpPassword#449e0b51: %w", err)
		tl_account_get_tmp_password_gen.go#L162: 		return fmt.Errorf("can't decode account.getTmpPassword#449e0b51 to nil")
		tl_account_get_tmp_password_gen.go#L167: 			return fmt.Errorf("unable to decode account.getTmpPassword#449e0b51: field password: %w", err)
		tl_account_get_tmp_password_gen.go#L174: 			return fmt.Errorf("unable to decode account.getTmpPassword#449e0b51: field period: %w", err)
		tl_account_get_wall_paper_gen.go#L121: 		return fmt.Errorf("can't encode account.getWallPaper#fc8ddbea as nil")
		tl_account_get_wall_paper_gen.go#L130: 		return fmt.Errorf("can't encode account.getWallPaper#fc8ddbea as nil")
		tl_account_get_wall_paper_gen.go#L133: 		return fmt.Errorf("unable to encode account.getWallPaper#fc8ddbea: field wallpaper is nil")
		tl_account_get_wall_paper_gen.go#L136: 		return fmt.Errorf("unable to encode account.getWallPaper#fc8ddbea: field wallpaper: %w", err)
		tl_account_get_wall_paper_gen.go#L144: 		return fmt.Errorf("can't decode account.getWallPaper#fc8ddbea to nil")
		tl_account_get_wall_paper_gen.go#L147: 		return fmt.Errorf("unable to decode account.getWallPaper#fc8ddbea: %w", err)
		tl_account_get_wall_paper_gen.go#L155: 		return fmt.Errorf("can't decode account.getWallPaper#fc8ddbea to nil")
		tl_account_get_wall_paper_gen.go#L160: 			return fmt.Errorf("unable to decode account.getWallPaper#fc8ddbea: field wallpaper: %w", err)
		tl_account_get_wall_papers_gen.go#L121: 		return fmt.Errorf("can't encode account.getWallPapers#7967d36 as nil")
		tl_account_get_wall_papers_gen.go#L130: 		return fmt.Errorf("can't encode account.getWallPapers#7967d36 as nil")
		tl_account_get_wall_papers_gen.go#L139: 		return fmt.Errorf("can't decode account.getWallPapers#7967d36 to nil")
		tl_account_get_wall_papers_gen.go#L142: 		return fmt.Errorf("unable to decode account.getWallPapers#7967d36: %w", err)
		tl_account_get_wall_papers_gen.go#L150: 		return fmt.Errorf("can't decode account.getWallPapers#7967d36 to nil")
		tl_account_get_wall_papers_gen.go#L155: 			return fmt.Errorf("unable to decode account.getWallPapers#7967d36: field hash: %w", err)
		tl_account_get_web_authorizations_gen.go#L101: 		return fmt.Errorf("can't encode account.getWebAuthorizations#182e6d6f as nil")
		tl_account_get_web_authorizations_gen.go#L110: 		return fmt.Errorf("can't encode account.getWebAuthorizations#182e6d6f as nil")
		tl_account_get_web_authorizations_gen.go#L118: 		return fmt.Errorf("can't decode account.getWebAuthorizations#182e6d6f to nil")
		tl_account_get_web_authorizations_gen.go#L121: 		return fmt.Errorf("unable to decode account.getWebAuthorizations#182e6d6f: %w", err)
		tl_account_get_web_authorizations_gen.go#L129: 		return fmt.Errorf("can't decode account.getWebAuthorizations#182e6d6f to nil")
		tl_account_init_takeout_session_gen.go#L238: 		return fmt.Errorf("can't encode account.initTakeoutSession#8ef3eab0 as nil")
		tl_account_init_takeout_session_gen.go#L247: 		return fmt.Errorf("can't encode account.initTakeoutSession#8ef3eab0 as nil")
		tl_account_init_takeout_session_gen.go#L251: 		return fmt.Errorf("unable to encode account.initTakeoutSession#8ef3eab0: field flags: %w", err)
		tl_account_init_takeout_session_gen.go#L262: 		return fmt.Errorf("can't decode account.initTakeoutSession#8ef3eab0 to nil")
		tl_account_init_takeout_session_gen.go#L265: 		return fmt.Errorf("unable to decode account.initTakeoutSession#8ef3eab0: %w", err)
		tl_account_init_takeout_session_gen.go#L273: 		return fmt.Errorf("can't decode account.initTakeoutSession#8ef3eab0 to nil")
		tl_account_init_takeout_session_gen.go#L277: 			return fmt.Errorf("unable to decode account.initTakeoutSession#8ef3eab0: field flags: %w", err)
		tl_account_init_takeout_session_gen.go#L289: 			return fmt.Errorf("unable to decode account.initTakeoutSession#8ef3eab0: field file_max_size: %w", err)
		tl_account_install_theme_gen.go#L191: 		return fmt.Errorf("can't encode account.installTheme#c727bb3b as nil")
		tl_account_install_theme_gen.go#L200: 		return fmt.Errorf("can't encode account.installTheme#c727bb3b as nil")
		tl_account_install_theme_gen.go#L204: 		return fmt.Errorf("unable to encode account.installTheme#c727bb3b: field flags: %w", err)
		tl_account_install_theme_gen.go#L208: 			return fmt.Errorf("unable to encode account.installTheme#c727bb3b: field theme is nil")
		tl_account_install_theme_gen.go#L211: 			return fmt.Errorf("unable to encode account.installTheme#c727bb3b: field theme: %w", err)
		tl_account_install_theme_gen.go#L219: 			return fmt.Errorf("unable to encode account.installTheme#c727bb3b: field base_theme is nil")
		tl_account_install_theme_gen.go#L222: 			return fmt.Errorf("unable to encode account.installTheme#c727bb3b: field base_theme: %w", err)
		tl_account_install_theme_gen.go#L231: 		return fmt.Errorf("can't decode account.installTheme#c727bb3b to nil")
		tl_account_install_theme_gen.go#L234: 		return fmt.Errorf("unable to decode account.installTheme#c727bb3b: %w", err)
		tl_account_install_theme_gen.go#L242: 		return fmt.Errorf("can't decode account.installTheme#c727bb3b to nil")
		tl_account_install_theme_gen.go#L246: 			return fmt.Errorf("unable to decode account.installTheme#c727bb3b: field flags: %w", err)
		tl_account_install_theme_gen.go#L253: 			return fmt.Errorf("unable to decode account.installTheme#c727bb3b: field theme: %w", err)
		tl_account_install_theme_gen.go#L260: 			return fmt.Errorf("unable to decode account.installTheme#c727bb3b: field format: %w", err)
		tl_account_install_theme_gen.go#L267: 			return fmt.Errorf("unable to decode account.installTheme#c727bb3b: field base_theme: %w", err)
		tl_account_install_wall_paper_gen.go#L135: 		return fmt.Errorf("can't encode account.installWallPaper#feed5769 as nil")
		tl_account_install_wall_paper_gen.go#L144: 		return fmt.Errorf("can't encode account.installWallPaper#feed5769 as nil")
		tl_account_install_wall_paper_gen.go#L147: 		return fmt.Errorf("unable to encode account.installWallPaper#feed5769: field wallpaper is nil")
		tl_account_install_wall_paper_gen.go#L150: 		return fmt.Errorf("unable to encode account.installWallPaper#feed5769: field wallpaper: %w", err)
		tl_account_install_wall_paper_gen.go#L153: 		return fmt.Errorf("unable to encode account.installWallPaper#feed5769: field settings: %w", err)
		tl_account_install_wall_paper_gen.go#L161: 		return fmt.Errorf("can't decode account.installWallPaper#feed5769 to nil")
		tl_account_install_wall_paper_gen.go#L164: 		return fmt.Errorf("unable to decode account.installWallPaper#feed5769: %w", err)
		tl_account_install_wall_paper_gen.go#L172: 		return fmt.Errorf("can't decode account.installWallPaper#feed5769 to nil")
		tl_account_install_wall_paper_gen.go#L177: 			return fmt.Errorf("unable to decode account.installWallPaper#feed5769: field wallpaper: %w", err)
		tl_account_install_wall_paper_gen.go#L183: 			return fmt.Errorf("unable to decode account.installWallPaper#feed5769: field settings: %w", err)
		tl_account_invalidate_sign_in_codes_gen.go#L118: 		return fmt.Errorf("can't encode account.invalidateSignInCodes#ca8ae8ba as nil")
		tl_account_invalidate_sign_in_codes_gen.go#L127: 		return fmt.Errorf("can't encode account.invalidateSignInCodes#ca8ae8ba as nil")
		tl_account_invalidate_sign_in_codes_gen.go#L139: 		return fmt.Errorf("can't decode account.invalidateSignInCodes#ca8ae8ba to nil")
		tl_account_invalidate_sign_in_codes_gen.go#L142: 		return fmt.Errorf("unable to decode account.invalidateSignInCodes#ca8ae8ba: %w", err)
		tl_account_invalidate_sign_in_codes_gen.go#L150: 		return fmt.Errorf("can't decode account.invalidateSignInCodes#ca8ae8ba to nil")
		tl_account_invalidate_sign_in_codes_gen.go#L155: 			return fmt.Errorf("unable to decode account.invalidateSignInCodes#ca8ae8ba: field codes: %w", err)
		tl_account_invalidate_sign_in_codes_gen.go#L164: 				return fmt.Errorf("unable to decode account.invalidateSignInCodes#ca8ae8ba: field codes: %w", err)
		tl_account_password_gen.go#L362: 		return fmt.Errorf("can't encode account.password#957b50fb as nil")
		tl_account_password_gen.go#L371: 		return fmt.Errorf("can't encode account.password#957b50fb as nil")
		tl_account_password_gen.go#L375: 		return fmt.Errorf("unable to encode account.password#957b50fb: field flags: %w", err)
		tl_account_password_gen.go#L379: 			return fmt.Errorf("unable to encode account.password#957b50fb: field current_algo is nil")
		tl_account_password_gen.go#L382: 			return fmt.Errorf("unable to encode account.password#957b50fb: field current_algo: %w", err)
		tl_account_password_gen.go#L398: 		return fmt.Errorf("unable to encode account.password#957b50fb: field new_algo is nil")
		tl_account_password_gen.go#L401: 		return fmt.Errorf("unable to encode account.password#957b50fb: field new_algo: %w", err)
		tl_account_password_gen.go#L404: 		return fmt.Errorf("unable to encode account.password#957b50fb: field new_secure_algo is nil")
		tl_account_password_gen.go#L407: 		return fmt.Errorf("unable to encode account.password#957b50fb: field new_secure_algo: %w", err)
		tl_account_password_gen.go#L422: 		return fmt.Errorf("can't decode account.password#957b50fb to nil")
		tl_account_password_gen.go#L425: 		return fmt.Errorf("unable to decode account.password#957b50fb: %w", err)
		tl_account_password_gen.go#L433: 		return fmt.Errorf("can't decode account.password#957b50fb to nil")
		tl_account_password_gen.go#L437: 			return fmt.Errorf("unable to decode account.password#957b50fb: field flags: %w", err)
		tl_account_password_gen.go#L446: 			return fmt.Errorf("unable to decode account.password#957b50fb: field current_algo: %w", err)
		tl_account_password_gen.go#L453: 			return fmt.Errorf("unable to decode account.password#957b50fb: field srp_B: %w", err)
		tl_account_password_gen.go#L460: 			return fmt.Errorf("unable to decode account.password#957b50fb: field srp_id: %w", err)
		tl_account_password_gen.go#L467: 			return fmt.Errorf("unable to decode account.password#957b50fb: field hint: %w", err)
		tl_account_password_gen.go#L474: 			return fmt.Errorf("unable to decode account.password#957b50fb: field email_unconfirmed_pattern: %w", err)
		tl_account_password_gen.go#L481: 			return fmt.Errorf("unable to decode account.password#957b50fb: field new_algo: %w", err)
		tl_account_password_gen.go#L488: 			return fmt.Errorf("unable to decode account.password#957b50fb: field new_secure_algo: %w", err)
		tl_account_password_gen.go#L495: 			return fmt.Errorf("unable to decode account.password#957b50fb: field secure_random: %w", err)
		tl_account_password_gen.go#L502: 			return fmt.Errorf("unable to decode account.password#957b50fb: field pending_reset_date: %w", err)
		tl_account_password_gen.go#L509: 			return fmt.Errorf("unable to decode account.password#957b50fb: field login_email_pattern: %w", err)
		tl_account_password_input_settings_gen.go#L225: 		return fmt.Errorf("can't encode account.passwordInputSettings#c23727c9 as nil")
		tl_account_password_input_settings_gen.go#L234: 		return fmt.Errorf("can't encode account.passwordInputSettings#c23727c9 as nil")
		tl_account_password_input_settings_gen.go#L238: 		return fmt.Errorf("unable to encode account.passwordInputSettings#c23727c9: field flags: %w", err)
		tl_account_password_input_settings_gen.go#L242: 			return fmt.Errorf("unable to encode account.passwordInputSettings#c23727c9: field new_algo is nil")
		tl_account_password_input_settings_gen.go#L245: 			return fmt.Errorf("unable to encode account.passwordInputSettings#c23727c9: field new_algo: %w", err)
		tl_account_password_input_settings_gen.go#L259: 			return fmt.Errorf("unable to encode account.passwordInputSettings#c23727c9: field new_secure_settings: %w", err)
		tl_account_password_input_settings_gen.go#L268: 		return fmt.Errorf("can't decode account.passwordInputSettings#c23727c9 to nil")
		tl_account_password_input_settings_gen.go#L271: 		return fmt.Errorf("unable to decode account.passwordInputSettings#c23727c9: %w", err)
		tl_account_password_input_settings_gen.go#L279: 		return fmt.Errorf("can't decode account.passwordInputSettings#c23727c9 to nil")
		tl_account_password_input_settings_gen.go#L283: 			return fmt.Errorf("unable to decode account.passwordInputSettings#c23727c9: field flags: %w", err)
		tl_account_password_input_settings_gen.go#L289: 			return fmt.Errorf("unable to decode account.passwordInputSettings#c23727c9: field new_algo: %w", err)
		tl_account_password_input_settings_gen.go#L296: 			return fmt.Errorf("unable to decode account.passwordInputSettings#c23727c9: field new_password_hash: %w", err)
		tl_account_password_input_settings_gen.go#L303: 			return fmt.Errorf("unable to decode account.passwordInputSettings#c23727c9: field hint: %w", err)
		tl_account_password_input_settings_gen.go#L310: 			return fmt.Errorf("unable to decode account.passwordInputSettings#c23727c9: field email: %w", err)
		tl_account_password_input_settings_gen.go#L316: 			return fmt.Errorf("unable to decode account.passwordInputSettings#c23727c9: field new_secure_settings: %w", err)
		tl_account_password_settings_gen.go#L166: 		return fmt.Errorf("can't encode account.passwordSettings#9a5c33e5 as nil")
		tl_account_password_settings_gen.go#L175: 		return fmt.Errorf("can't encode account.passwordSettings#9a5c33e5 as nil")
		tl_account_password_settings_gen.go#L179: 		return fmt.Errorf("unable to encode account.passwordSettings#9a5c33e5: field flags: %w", err)
		tl_account_password_settings_gen.go#L186: 			return fmt.Errorf("unable to encode account.passwordSettings#9a5c33e5: field secure_settings: %w", err)
		tl_account_password_settings_gen.go#L195: 		return fmt.Errorf("can't decode account.passwordSettings#9a5c33e5 to nil")
		tl_account_password_settings_gen.go#L198: 		return fmt.Errorf("unable to decode account.passwordSettings#9a5c33e5: %w", err)
		tl_account_password_settings_gen.go#L206: 		return fmt.Errorf("can't decode account.passwordSettings#9a5c33e5 to nil")
		tl_account_password_settings_gen.go#L210: 			return fmt.Errorf("unable to decode account.passwordSettings#9a5c33e5: field flags: %w", err)
		tl_account_password_settings_gen.go#L216: 			return fmt.Errorf("unable to decode account.passwordSettings#9a5c33e5: field email: %w", err)
		tl_account_password_settings_gen.go#L222: 			return fmt.Errorf("unable to decode account.passwordSettings#9a5c33e5: field secure_settings: %w", err)
		tl_account_privacy_rules_gen.go#L137: 		return fmt.Errorf("can't encode account.privacyRules#50a04e45 as nil")
		tl_account_privacy_rules_gen.go#L146: 		return fmt.Errorf("can't encode account.privacyRules#50a04e45 as nil")
		tl_account_privacy_rules_gen.go#L151: 			return fmt.Errorf("unable to encode account.privacyRules#50a04e45: field rules element with index %d is nil", idx)
		tl_account_privacy_rules_gen.go#L154: 			return fmt.Errorf("unable to encode account.privacyRules#50a04e45: field rules element with index %d: %w", idx, err)
		tl_account_privacy_rules_gen.go#L160: 			return fmt.Errorf("unable to encode account.privacyRules#50a04e45: field chats element with index %d is nil", idx)
		tl_account_privacy_rules_gen.go#L163: 			return fmt.Errorf("unable to encode account.privacyRules#50a04e45: field chats element with index %d: %w", idx, err)
		tl_account_privacy_rules_gen.go#L169: 			return fmt.Errorf("unable to encode account.privacyRules#50a04e45: field users element with index %d is nil", idx)
		tl_account_privacy_rules_gen.go#L172: 			return fmt.Errorf("unable to encode account.privacyRules#50a04e45: field users element with index %d: %w", idx, err)
		tl_account_privacy_rules_gen.go#L181: 		return fmt.Errorf("can't decode account.privacyRules#50a04e45 to nil")
		tl_account_privacy_rules_gen.go#L184: 		return fmt.Errorf("unable to decode account.privacyRules#50a04e45: %w", err)
		tl_account_privacy_rules_gen.go#L192: 		return fmt.Errorf("can't decode account.privacyRules#50a04e45 to nil")
		tl_account_privacy_rules_gen.go#L197: 			return fmt.Errorf("unable to decode account.privacyRules#50a04e45: field rules: %w", err)
		tl_account_privacy_rules_gen.go#L206: 				return fmt.Errorf("unable to decode account.privacyRules#50a04e45: field rules: %w", err)
		tl_account_privacy_rules_gen.go#L214: 			return fmt.Errorf("unable to decode account.privacyRules#50a04e45: field chats: %w", err)
		tl_account_privacy_rules_gen.go#L223: 				return fmt.Errorf("unable to decode account.privacyRules#50a04e45: field chats: %w", err)
		tl_account_privacy_rules_gen.go#L231: 			return fmt.Errorf("unable to decode account.privacyRules#50a04e45: field users: %w", err)
		tl_account_privacy_rules_gen.go#L240: 				return fmt.Errorf("unable to decode account.privacyRules#50a04e45: field users: %w", err)
		tl_account_register_device_gen.go#L199: 		return fmt.Errorf("can't encode account.registerDevice#ec86017a as nil")
		tl_account_register_device_gen.go#L208: 		return fmt.Errorf("can't encode account.registerDevice#ec86017a as nil")
		tl_account_register_device_gen.go#L212: 		return fmt.Errorf("unable to encode account.registerDevice#ec86017a: field flags: %w", err)
		tl_account_register_device_gen.go#L228: 		return fmt.Errorf("can't decode account.registerDevice#ec86017a to nil")
		tl_account_register_device_gen.go#L231: 		return fmt.Errorf("unable to decode account.registerDevice#ec86017a: %w", err)
		tl_account_register_device_gen.go#L239: 		return fmt.Errorf("can't decode account.registerDevice#ec86017a to nil")
		tl_account_register_device_gen.go#L243: 			return fmt.Errorf("unable to decode account.registerDevice#ec86017a: field flags: %w", err)
		tl_account_register_device_gen.go#L250: 			return fmt.Errorf("unable to decode account.registerDevice#ec86017a: field token_type: %w", err)
		tl_account_register_device_gen.go#L257: 			return fmt.Errorf("unable to decode account.registerDevice#ec86017a: field token: %w", err)
		tl_account_register_device_gen.go#L264: 			return fmt.Errorf("unable to decode account.registerDevice#ec86017a: field app_sandbox: %w", err)
		tl_account_register_device_gen.go#L271: 			return fmt.Errorf("unable to decode account.registerDevice#ec86017a: field secret: %w", err)
		tl_account_register_device_gen.go#L278: 			return fmt.Errorf("unable to decode account.registerDevice#ec86017a: field other_uids: %w", err)
		tl_account_register_device_gen.go#L287: 				return fmt.Errorf("unable to decode account.registerDevice#ec86017a: field other_uids: %w", err)
		tl_account_reorder_usernames_gen.go#L115: 		return fmt.Errorf("can't encode account.reorderUsernames#ef500eab as nil")
		tl_account_reorder_usernames_gen.go#L124: 		return fmt.Errorf("can't encode account.reorderUsernames#ef500eab as nil")
		tl_account_reorder_usernames_gen.go#L136: 		return fmt.Errorf("can't decode account.reorderUsernames#ef500eab to nil")
		tl_account_reorder_usernames_gen.go#L139: 		return fmt.Errorf("unable to decode account.reorderUsernames#ef500eab: %w", err)
		tl_account_reorder_usernames_gen.go#L147: 		return fmt.Errorf("can't decode account.reorderUsernames#ef500eab to nil")
		tl_account_reorder_usernames_gen.go#L152: 			return fmt.Errorf("unable to decode account.reorderUsernames#ef500eab: field order: %w", err)
		tl_account_reorder_usernames_gen.go#L161: 				return fmt.Errorf("unable to decode account.reorderUsernames#ef500eab: field order: %w", err)
		tl_account_report_peer_gen.go#L137: 		return fmt.Errorf("can't encode account.reportPeer#c5ba3d86 as nil")
		tl_account_report_peer_gen.go#L146: 		return fmt.Errorf("can't encode account.reportPeer#c5ba3d86 as nil")
		tl_account_report_peer_gen.go#L149: 		return fmt.Errorf("unable to encode account.reportPeer#c5ba3d86: field peer is nil")
		tl_account_report_peer_gen.go#L152: 		return fmt.Errorf("unable to encode account.reportPeer#c5ba3d86: field peer: %w", err)
		tl_account_report_peer_gen.go#L155: 		return fmt.Errorf("unable to encode account.reportPeer#c5ba3d86: field reason is nil")
		tl_account_report_peer_gen.go#L158: 		return fmt.Errorf("unable to encode account.reportPeer#c5ba3d86: field reason: %w", err)
		tl_account_report_peer_gen.go#L167: 		return fmt.Errorf("can't decode account.reportPeer#c5ba3d86 to nil")
		tl_account_report_peer_gen.go#L170: 		return fmt.Errorf("unable to decode account.reportPeer#c5ba3d86: %w", err)
		tl_account_report_peer_gen.go#L178: 		return fmt.Errorf("can't decode account.reportPeer#c5ba3d86 to nil")
		tl_account_report_peer_gen.go#L183: 			return fmt.Errorf("unable to decode account.reportPeer#c5ba3d86: field peer: %w", err)
		tl_account_report_peer_gen.go#L190: 			return fmt.Errorf("unable to decode account.reportPeer#c5ba3d86: field reason: %w", err)
		tl_account_report_peer_gen.go#L197: 			return fmt.Errorf("unable to decode account.reportPeer#c5ba3d86: field message: %w", err)
		tl_account_report_profile_photo_gen.go#L148: 		return fmt.Errorf("can't encode account.reportProfilePhoto#fa8cc6f5 as nil")
		tl_account_report_profile_photo_gen.go#L157: 		return fmt.Errorf("can't encode account.reportProfilePhoto#fa8cc6f5 as nil")
		tl_account_report_profile_photo_gen.go#L160: 		return fmt.Errorf("unable to encode account.reportProfilePhoto#fa8cc6f5: field peer is nil")
		tl_account_report_profile_photo_gen.go#L163: 		return fmt.Errorf("unable to encode account.reportProfilePhoto#fa8cc6f5: field peer: %w", err)
		tl_account_report_profile_photo_gen.go#L166: 		return fmt.Errorf("unable to encode account.reportProfilePhoto#fa8cc6f5: field photo_id is nil")
		tl_account_report_profile_photo_gen.go#L169: 		return fmt.Errorf("unable to encode account.reportProfilePhoto#fa8cc6f5: field photo_id: %w", err)
		tl_account_report_profile_photo_gen.go#L172: 		return fmt.Errorf("unable to encode account.reportProfilePhoto#fa8cc6f5: field reason is nil")
		tl_account_report_profile_photo_gen.go#L175: 		return fmt.Errorf("unable to encode account.reportProfilePhoto#fa8cc6f5: field reason: %w", err)
		tl_account_report_profile_photo_gen.go#L184: 		return fmt.Errorf("can't decode account.reportProfilePhoto#fa8cc6f5 to nil")
		tl_account_report_profile_photo_gen.go#L187: 		return fmt.Errorf("unable to decode account.reportProfilePhoto#fa8cc6f5: %w", err)
		tl_account_report_profile_photo_gen.go#L195: 		return fmt.Errorf("can't decode account.reportProfilePhoto#fa8cc6f5 to nil")
		tl_account_report_profile_photo_gen.go#L200: 			return fmt.Errorf("unable to decode account.reportProfilePhoto#fa8cc6f5: field peer: %w", err)
		tl_account_report_profile_photo_gen.go#L207: 			return fmt.Errorf("unable to decode account.reportProfilePhoto#fa8cc6f5: field photo_id: %w", err)
		tl_account_report_profile_photo_gen.go#L214: 			return fmt.Errorf("unable to decode account.reportProfilePhoto#fa8cc6f5: field reason: %w", err)
		tl_account_report_profile_photo_gen.go#L221: 			return fmt.Errorf("unable to decode account.reportProfilePhoto#fa8cc6f5: field message: %w", err)
		tl_account_resend_password_email_gen.go#L101: 		return fmt.Errorf("can't encode account.resendPasswordEmail#7a7f2a15 as nil")
		tl_account_resend_password_email_gen.go#L110: 		return fmt.Errorf("can't encode account.resendPasswordEmail#7a7f2a15 as nil")
		tl_account_resend_password_email_gen.go#L118: 		return fmt.Errorf("can't decode account.resendPasswordEmail#7a7f2a15 to nil")
		tl_account_resend_password_email_gen.go#L121: 		return fmt.Errorf("unable to decode account.resendPasswordEmail#7a7f2a15: %w", err)
		tl_account_resend_password_email_gen.go#L129: 		return fmt.Errorf("can't decode account.resendPasswordEmail#7a7f2a15 to nil")
		tl_account_reset_authorization_gen.go#L118: 		return fmt.Errorf("can't encode account.resetAuthorization#df77f3bc as nil")
		tl_account_reset_authorization_gen.go#L127: 		return fmt.Errorf("can't encode account.resetAuthorization#df77f3bc as nil")
		tl_account_reset_authorization_gen.go#L136: 		return fmt.Errorf("can't decode account.resetAuthorization#df77f3bc to nil")
		tl_account_reset_authorization_gen.go#L139: 		return fmt.Errorf("unable to decode account.resetAuthorization#df77f3bc: %w", err)
		tl_account_reset_authorization_gen.go#L147: 		return fmt.Errorf("can't decode account.resetAuthorization#df77f3bc to nil")
		tl_account_reset_authorization_gen.go#L152: 			return fmt.Errorf("unable to decode account.resetAuthorization#df77f3bc: field hash: %w", err)
		tl_account_reset_notify_settings_gen.go#L98: 		return fmt.Errorf("can't encode account.resetNotifySettings#db7e1747 as nil")
		tl_account_reset_notify_settings_gen.go#L107: 		return fmt.Errorf("can't encode account.resetNotifySettings#db7e1747 as nil")
		tl_account_reset_notify_settings_gen.go#L115: 		return fmt.Errorf("can't decode account.resetNotifySettings#db7e1747 to nil")
		tl_account_reset_notify_settings_gen.go#L118: 		return fmt.Errorf("unable to decode account.resetNotifySettings#db7e1747: %w", err)
		tl_account_reset_notify_settings_gen.go#L126: 		return fmt.Errorf("can't decode account.resetNotifySettings#db7e1747 to nil")
		tl_account_reset_password_gen.go#L102: 		return fmt.Errorf("can't encode account.resetPassword#9308ce1b as nil")
		tl_account_reset_password_gen.go#L111: 		return fmt.Errorf("can't encode account.resetPassword#9308ce1b as nil")
		tl_account_reset_password_gen.go#L119: 		return fmt.Errorf("can't decode account.resetPassword#9308ce1b to nil")
		tl_account_reset_password_gen.go#L122: 		return fmt.Errorf("unable to decode account.resetPassword#9308ce1b: %w", err)
		tl_account_reset_password_gen.go#L130: 		return fmt.Errorf("can't decode account.resetPassword#9308ce1b to nil")
		tl_account_reset_password_result_gen.go#L121: 		return fmt.Errorf("can't encode account.resetPasswordFailedWait#e3779861 as nil")
		tl_account_reset_password_result_gen.go#L130: 		return fmt.Errorf("can't encode account.resetPasswordFailedWait#e3779861 as nil")
		tl_account_reset_password_result_gen.go#L139: 		return fmt.Errorf("can't decode account.resetPasswordFailedWait#e3779861 to nil")
		tl_account_reset_password_result_gen.go#L142: 		return fmt.Errorf("unable to decode account.resetPasswordFailedWait#e3779861: %w", err)
		tl_account_reset_password_result_gen.go#L150: 		return fmt.Errorf("can't decode account.resetPasswordFailedWait#e3779861 to nil")
		tl_account_reset_password_result_gen.go#L155: 			return fmt.Errorf("unable to decode account.resetPasswordFailedWait#e3779861: field retry_date: %w", err)
		tl_account_reset_password_result_gen.go#L257: 		return fmt.Errorf("can't encode account.resetPasswordRequestedWait#e9effc7d as nil")
		tl_account_reset_password_result_gen.go#L266: 		return fmt.Errorf("can't encode account.resetPasswordRequestedWait#e9effc7d as nil")
		tl_account_reset_password_result_gen.go#L275: 		return fmt.Errorf("can't decode account.resetPasswordRequestedWait#e9effc7d to nil")
		tl_account_reset_password_result_gen.go#L278: 		return fmt.Errorf("unable to decode account.resetPasswordRequestedWait#e9effc7d: %w", err)
		tl_account_reset_password_result_gen.go#L286: 		return fmt.Errorf("can't decode account.resetPasswordRequestedWait#e9effc7d to nil")
		tl_account_reset_password_result_gen.go#L291: 			return fmt.Errorf("unable to decode account.resetPasswordRequestedWait#e9effc7d: field until_date: %w", err)
		tl_account_reset_password_result_gen.go#L375: 		return fmt.Errorf("can't encode account.resetPasswordOk#e926d63e as nil")
		tl_account_reset_password_result_gen.go#L384: 		return fmt.Errorf("can't encode account.resetPasswordOk#e926d63e as nil")
		tl_account_reset_password_result_gen.go#L392: 		return fmt.Errorf("can't decode account.resetPasswordOk#e926d63e to nil")
		tl_account_reset_password_result_gen.go#L395: 		return fmt.Errorf("unable to decode account.resetPasswordOk#e926d63e: %w", err)
		tl_account_reset_password_result_gen.go#L403: 		return fmt.Errorf("can't decode account.resetPasswordOk#e926d63e to nil")
		tl_account_reset_password_result_gen.go#L457: 			return nil, fmt.Errorf("unable to decode AccountResetPasswordResultClass: %w", err)
		tl_account_reset_password_result_gen.go#L464: 			return nil, fmt.Errorf("unable to decode AccountResetPasswordResultClass: %w", err)
		tl_account_reset_password_result_gen.go#L471: 			return nil, fmt.Errorf("unable to decode AccountResetPasswordResultClass: %w", err)
		tl_account_reset_password_result_gen.go#L475: 		return nil, fmt.Errorf("unable to decode AccountResetPasswordResultClass: %w", bin.NewUnexpectedID(id))
		tl_account_reset_password_result_gen.go#L487: 		return fmt.Errorf("unable to decode AccountResetPasswordResultBox to nil")
		tl_account_reset_password_result_gen.go#L491: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_account_reset_password_result_gen.go#L500: 		return fmt.Errorf("unable to encode AccountResetPasswordResultClass as nil")
		tl_account_reset_wall_papers_gen.go#L101: 		return fmt.Errorf("can't encode account.resetWallPapers#bb3b9804 as nil")
		tl_account_reset_wall_papers_gen.go#L110: 		return fmt.Errorf("can't encode account.resetWallPapers#bb3b9804 as nil")
		tl_account_reset_wall_papers_gen.go#L118: 		return fmt.Errorf("can't decode account.resetWallPapers#bb3b9804 to nil")
		tl_account_reset_wall_papers_gen.go#L121: 		return fmt.Errorf("unable to decode account.resetWallPapers#bb3b9804: %w", err)
		tl_account_reset_wall_papers_gen.go#L129: 		return fmt.Errorf("can't decode account.resetWallPapers#bb3b9804 to nil")
		tl_account_reset_web_authorization_gen.go#L121: 		return fmt.Errorf("can't encode account.resetWebAuthorization#2d01b9ef as nil")
		tl_account_reset_web_authorization_gen.go#L130: 		return fmt.Errorf("can't encode account.resetWebAuthorization#2d01b9ef as nil")
		tl_account_reset_web_authorization_gen.go#L139: 		return fmt.Errorf("can't decode account.resetWebAuthorization#2d01b9ef to nil")
		tl_account_reset_web_authorization_gen.go#L142: 		return fmt.Errorf("unable to decode account.resetWebAuthorization#2d01b9ef: %w", err)
		tl_account_reset_web_authorization_gen.go#L150: 		return fmt.Errorf("can't decode account.resetWebAuthorization#2d01b9ef to nil")
		tl_account_reset_web_authorization_gen.go#L155: 			return fmt.Errorf("unable to decode account.resetWebAuthorization#2d01b9ef: field hash: %w", err)
		tl_account_reset_web_authorizations_gen.go#L101: 		return fmt.Errorf("can't encode account.resetWebAuthorizations#682d2594 as nil")
		tl_account_reset_web_authorizations_gen.go#L110: 		return fmt.Errorf("can't encode account.resetWebAuthorizations#682d2594 as nil")
		tl_account_reset_web_authorizations_gen.go#L118: 		return fmt.Errorf("can't decode account.resetWebAuthorizations#682d2594 to nil")
		tl_account_reset_web_authorizations_gen.go#L121: 		return fmt.Errorf("unable to decode account.resetWebAuthorizations#682d2594: %w", err)
		tl_account_reset_web_authorizations_gen.go#L129: 		return fmt.Errorf("can't decode account.resetWebAuthorizations#682d2594 to nil")
		tl_account_save_auto_download_settings_gen.go#L157: 		return fmt.Errorf("can't encode account.saveAutoDownloadSettings#76f36233 as nil")
		tl_account_save_auto_download_settings_gen.go#L166: 		return fmt.Errorf("can't encode account.saveAutoDownloadSettings#76f36233 as nil")
		tl_account_save_auto_download_settings_gen.go#L170: 		return fmt.Errorf("unable to encode account.saveAutoDownloadSettings#76f36233: field flags: %w", err)
		tl_account_save_auto_download_settings_gen.go#L173: 		return fmt.Errorf("unable to encode account.saveAutoDownloadSettings#76f36233: field settings: %w", err)
		tl_account_save_auto_download_settings_gen.go#L181: 		return fmt.Errorf("can't decode account.saveAutoDownloadSettings#76f36233 to nil")
		tl_account_save_auto_download_settings_gen.go#L184: 		return fmt.Errorf("unable to decode account.saveAutoDownloadSettings#76f36233: %w", err)
		tl_account_save_auto_download_settings_gen.go#L192: 		return fmt.Errorf("can't decode account.saveAutoDownloadSettings#76f36233 to nil")
		tl_account_save_auto_download_settings_gen.go#L196: 			return fmt.Errorf("unable to decode account.saveAutoDownloadSettings#76f36233: field flags: %w", err)
		tl_account_save_auto_download_settings_gen.go#L203: 			return fmt.Errorf("unable to decode account.saveAutoDownloadSettings#76f36233: field settings: %w", err)
		tl_account_save_auto_save_settings_gen.go#L195: 		return fmt.Errorf("can't encode account.saveAutoSaveSettings#d69b8361 as nil")
		tl_account_save_auto_save_settings_gen.go#L204: 		return fmt.Errorf("can't encode account.saveAutoSaveSettings#d69b8361 as nil")
		tl_account_save_auto_save_settings_gen.go#L208: 		return fmt.Errorf("unable to encode account.saveAutoSaveSettings#d69b8361: field flags: %w", err)
		tl_account_save_auto_save_settings_gen.go#L212: 			return fmt.Errorf("unable to encode account.saveAutoSaveSettings#d69b8361: field peer is nil")
		tl_account_save_auto_save_settings_gen.go#L215: 			return fmt.Errorf("unable to encode account.saveAutoSaveSettings#d69b8361: field peer: %w", err)
		tl_account_save_auto_save_settings_gen.go#L219: 		return fmt.Errorf("unable to encode account.saveAutoSaveSettings#d69b8361: field settings: %w", err)
		tl_account_save_auto_save_settings_gen.go#L227: 		return fmt.Errorf("can't decode account.saveAutoSaveSettings#d69b8361 to nil")
		tl_account_save_auto_save_settings_gen.go#L230: 		return fmt.Errorf("unable to decode account.saveAutoSaveSettings#d69b8361: %w", err)
		tl_account_save_auto_save_settings_gen.go#L238: 		return fmt.Errorf("can't decode account.saveAutoSaveSettings#d69b8361 to nil")
		tl_account_save_auto_save_settings_gen.go#L242: 			return fmt.Errorf("unable to decode account.saveAutoSaveSettings#d69b8361: field flags: %w", err)
		tl_account_save_auto_save_settings_gen.go#L251: 			return fmt.Errorf("unable to decode account.saveAutoSaveSettings#d69b8361: field peer: %w", err)
		tl_account_save_auto_save_settings_gen.go#L257: 			return fmt.Errorf("unable to decode account.saveAutoSaveSettings#d69b8361: field settings: %w", err)
		tl_account_save_ringtone_gen.go#L140: 		return fmt.Errorf("can't encode account.saveRingtone#3dea5b03 as nil")
		tl_account_save_ringtone_gen.go#L149: 		return fmt.Errorf("can't encode account.saveRingtone#3dea5b03 as nil")
		tl_account_save_ringtone_gen.go#L152: 		return fmt.Errorf("unable to encode account.saveRingtone#3dea5b03: field id is nil")
		tl_account_save_ringtone_gen.go#L155: 		return fmt.Errorf("unable to encode account.saveRingtone#3dea5b03: field id: %w", err)
		tl_account_save_ringtone_gen.go#L164: 		return fmt.Errorf("can't decode account.saveRingtone#3dea5b03 to nil")
		tl_account_save_ringtone_gen.go#L167: 		return fmt.Errorf("unable to decode account.saveRingtone#3dea5b03: %w", err)
		tl_account_save_ringtone_gen.go#L175: 		return fmt.Errorf("can't decode account.saveRingtone#3dea5b03 to nil")
		tl_account_save_ringtone_gen.go#L180: 			return fmt.Errorf("unable to decode account.saveRingtone#3dea5b03: field id: %w", err)
		tl_account_save_ringtone_gen.go#L187: 			return fmt.Errorf("unable to decode account.saveRingtone#3dea5b03: field unsave: %w", err)
		tl_account_save_secure_value_gen.go#L136: 		return fmt.Errorf("can't encode account.saveSecureValue#899fe31d as nil")
		tl_account_save_secure_value_gen.go#L145: 		return fmt.Errorf("can't encode account.saveSecureValue#899fe31d as nil")
		tl_account_save_secure_value_gen.go#L148: 		return fmt.Errorf("unable to encode account.saveSecureValue#899fe31d: field value: %w", err)
		tl_account_save_secure_value_gen.go#L157: 		return fmt.Errorf("can't decode account.saveSecureValue#899fe31d to nil")
		tl_account_save_secure_value_gen.go#L160: 		return fmt.Errorf("unable to decode account.saveSecureValue#899fe31d: %w", err)
		tl_account_save_secure_value_gen.go#L168: 		return fmt.Errorf("can't decode account.saveSecureValue#899fe31d to nil")
		tl_account_save_secure_value_gen.go#L172: 			return fmt.Errorf("unable to decode account.saveSecureValue#899fe31d: field value: %w", err)
		tl_account_save_secure_value_gen.go#L178: 			return fmt.Errorf("unable to decode account.saveSecureValue#899fe31d: field secure_secret_id: %w", err)
		tl_account_save_theme_gen.go#L126: 		return fmt.Errorf("can't encode account.saveTheme#f257106c as nil")
		tl_account_save_theme_gen.go#L135: 		return fmt.Errorf("can't encode account.saveTheme#f257106c as nil")
		tl_account_save_theme_gen.go#L138: 		return fmt.Errorf("unable to encode account.saveTheme#f257106c: field theme is nil")
		tl_account_save_theme_gen.go#L141: 		return fmt.Errorf("unable to encode account.saveTheme#f257106c: field theme: %w", err)
		tl_account_save_theme_gen.go#L150: 		return fmt.Errorf("can't decode account.saveTheme#f257106c to nil")
		tl_account_save_theme_gen.go#L153: 		return fmt.Errorf("unable to decode account.saveTheme#f257106c: %w", err)
		tl_account_save_theme_gen.go#L161: 		return fmt.Errorf("can't decode account.saveTheme#f257106c to nil")
		tl_account_save_theme_gen.go#L166: 			return fmt.Errorf("unable to decode account.saveTheme#f257106c: field theme: %w", err)
		tl_account_save_theme_gen.go#L173: 			return fmt.Errorf("unable to decode account.saveTheme#f257106c: field unsave: %w", err)
		tl_account_save_wall_paper_gen.go#L143: 		return fmt.Errorf("can't encode account.saveWallPaper#6c5a5b37 as nil")
		tl_account_save_wall_paper_gen.go#L152: 		return fmt.Errorf("can't encode account.saveWallPaper#6c5a5b37 as nil")
		tl_account_save_wall_paper_gen.go#L155: 		return fmt.Errorf("unable to encode account.saveWallPaper#6c5a5b37: field wallpaper is nil")
		tl_account_save_wall_paper_gen.go#L158: 		return fmt.Errorf("unable to encode account.saveWallPaper#6c5a5b37: field wallpaper: %w", err)
		tl_account_save_wall_paper_gen.go#L162: 		return fmt.Errorf("unable to encode account.saveWallPaper#6c5a5b37: field settings: %w", err)
		tl_account_save_wall_paper_gen.go#L170: 		return fmt.Errorf("can't decode account.saveWallPaper#6c5a5b37 to nil")
		tl_account_save_wall_paper_gen.go#L173: 		return fmt.Errorf("unable to decode account.saveWallPaper#6c5a5b37: %w", err)
		tl_account_save_wall_paper_gen.go#L181: 		return fmt.Errorf("can't decode account.saveWallPaper#6c5a5b37 to nil")
		tl_account_save_wall_paper_gen.go#L186: 			return fmt.Errorf("unable to decode account.saveWallPaper#6c5a5b37: field wallpaper: %w", err)
		tl_account_save_wall_paper_gen.go#L193: 			return fmt.Errorf("unable to decode account.saveWallPaper#6c5a5b37: field unsave: %w", err)
		tl_account_save_wall_paper_gen.go#L199: 			return fmt.Errorf("unable to decode account.saveWallPaper#6c5a5b37: field settings: %w", err)
		tl_account_saved_ringtone_gen.go#L104: 		return fmt.Errorf("can't encode account.savedRingtone#b7263f6d as nil")
		tl_account_saved_ringtone_gen.go#L113: 		return fmt.Errorf("can't encode account.savedRingtone#b7263f6d as nil")
		tl_account_saved_ringtone_gen.go#L121: 		return fmt.Errorf("can't decode account.savedRingtone#b7263f6d to nil")
		tl_account_saved_ringtone_gen.go#L124: 		return fmt.Errorf("unable to decode account.savedRingtone#b7263f6d: %w", err)
		tl_account_saved_ringtone_gen.go#L132: 		return fmt.Errorf("can't decode account.savedRingtone#b7263f6d to nil")
		tl_account_saved_ringtone_gen.go#L227: 		return fmt.Errorf("can't encode account.savedRingtoneConverted#1f307eb7 as nil")
		tl_account_saved_ringtone_gen.go#L236: 		return fmt.Errorf("can't encode account.savedRingtoneConverted#1f307eb7 as nil")
		tl_account_saved_ringtone_gen.go#L239: 		return fmt.Errorf("unable to encode account.savedRingtoneConverted#1f307eb7: field document is nil")
		tl_account_saved_ringtone_gen.go#L242: 		return fmt.Errorf("unable to encode account.savedRingtoneConverted#1f307eb7: field document: %w", err)
		tl_account_saved_ringtone_gen.go#L250: 		return fmt.Errorf("can't decode account.savedRingtoneConverted#1f307eb7 to nil")
		tl_account_saved_ringtone_gen.go#L253: 		return fmt.Errorf("unable to decode account.savedRingtoneConverted#1f307eb7: %w", err)
		tl_account_saved_ringtone_gen.go#L261: 		return fmt.Errorf("can't decode account.savedRingtoneConverted#1f307eb7 to nil")
		tl_account_saved_ringtone_gen.go#L266: 			return fmt.Errorf("unable to decode account.savedRingtoneConverted#1f307eb7: field document: %w", err)
		tl_account_saved_ringtone_gen.go#L329: 			return nil, fmt.Errorf("unable to decode AccountSavedRingtoneClass: %w", err)
		tl_account_saved_ringtone_gen.go#L336: 			return nil, fmt.Errorf("unable to decode AccountSavedRingtoneClass: %w", err)
		tl_account_saved_ringtone_gen.go#L340: 		return nil, fmt.Errorf("unable to decode AccountSavedRingtoneClass: %w", bin.NewUnexpectedID(id))
		tl_account_saved_ringtone_gen.go#L352: 		return fmt.Errorf("unable to decode AccountSavedRingtoneBox to nil")
		tl_account_saved_ringtone_gen.go#L356: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_account_saved_ringtone_gen.go#L365: 		return fmt.Errorf("unable to encode AccountSavedRingtoneClass as nil")
		tl_account_saved_ringtones_gen.go#L103: 		return fmt.Errorf("can't encode account.savedRingtonesNotModified#fbf6e8b1 as nil")
		tl_account_saved_ringtones_gen.go#L112: 		return fmt.Errorf("can't encode account.savedRingtonesNotModified#fbf6e8b1 as nil")
		tl_account_saved_ringtones_gen.go#L120: 		return fmt.Errorf("can't decode account.savedRingtonesNotModified#fbf6e8b1 to nil")
		tl_account_saved_ringtones_gen.go#L123: 		return fmt.Errorf("unable to decode account.savedRingtonesNotModified#fbf6e8b1: %w", err)
		tl_account_saved_ringtones_gen.go#L131: 		return fmt.Errorf("can't decode account.savedRingtonesNotModified#fbf6e8b1 to nil")
		tl_account_saved_ringtones_gen.go#L236: 		return fmt.Errorf("can't encode account.savedRingtones#c1e92cc5 as nil")
		tl_account_saved_ringtones_gen.go#L245: 		return fmt.Errorf("can't encode account.savedRingtones#c1e92cc5 as nil")
		tl_account_saved_ringtones_gen.go#L251: 			return fmt.Errorf("unable to encode account.savedRingtones#c1e92cc5: field ringtones element with index %d is nil", idx)
		tl_account_saved_ringtones_gen.go#L254: 			return fmt.Errorf("unable to encode account.savedRingtones#c1e92cc5: field ringtones element with index %d: %w", idx, err)
		tl_account_saved_ringtones_gen.go#L263: 		return fmt.Errorf("can't decode account.savedRingtones#c1e92cc5 to nil")
		tl_account_saved_ringtones_gen.go#L266: 		return fmt.Errorf("unable to decode account.savedRingtones#c1e92cc5: %w", err)
		tl_account_saved_ringtones_gen.go#L274: 		return fmt.Errorf("can't decode account.savedRingtones#c1e92cc5 to nil")
		tl_account_saved_ringtones_gen.go#L279: 			return fmt.Errorf("unable to decode account.savedRingtones#c1e92cc5: field hash: %w", err)
		tl_account_saved_ringtones_gen.go#L286: 			return fmt.Errorf("unable to decode account.savedRingtones#c1e92cc5: field ringtones: %w", err)
		tl_account_saved_ringtones_gen.go#L295: 				return fmt.Errorf("unable to decode account.savedRingtones#c1e92cc5: field ringtones: %w", err)
		tl_account_saved_ringtones_gen.go#L385: 			return nil, fmt.Errorf("unable to decode AccountSavedRingtonesClass: %w", err)
		tl_account_saved_ringtones_gen.go#L392: 			return nil, fmt.Errorf("unable to decode AccountSavedRingtonesClass: %w", err)
		tl_account_saved_ringtones_gen.go#L396: 		return nil, fmt.Errorf("unable to decode AccountSavedRingtonesClass: %w", bin.NewUnexpectedID(id))
		tl_account_saved_ringtones_gen.go#L408: 		return fmt.Errorf("unable to decode AccountSavedRingtonesBox to nil")
		tl_account_saved_ringtones_gen.go#L412: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_account_saved_ringtones_gen.go#L421: 		return fmt.Errorf("unable to encode AccountSavedRingtonesClass as nil")
		tl_account_send_change_phone_code_gen.go#L126: 		return fmt.Errorf("can't encode account.sendChangePhoneCode#82574ae5 as nil")
		tl_account_send_change_phone_code_gen.go#L135: 		return fmt.Errorf("can't encode account.sendChangePhoneCode#82574ae5 as nil")
		tl_account_send_change_phone_code_gen.go#L139: 		return fmt.Errorf("unable to encode account.sendChangePhoneCode#82574ae5: field settings: %w", err)
		tl_account_send_change_phone_code_gen.go#L147: 		return fmt.Errorf("can't decode account.sendChangePhoneCode#82574ae5 to nil")
		tl_account_send_change_phone_code_gen.go#L150: 		return fmt.Errorf("unable to decode account.sendChangePhoneCode#82574ae5: %w", err)
		tl_account_send_change_phone_code_gen.go#L158: 		return fmt.Errorf("can't decode account.sendChangePhoneCode#82574ae5 to nil")
		tl_account_send_change_phone_code_gen.go#L163: 			return fmt.Errorf("unable to decode account.sendChangePhoneCode#82574ae5: field phone_number: %w", err)
		tl_account_send_change_phone_code_gen.go#L169: 			return fmt.Errorf("unable to decode account.sendChangePhoneCode#82574ae5: field settings: %w", err)
		tl_account_send_confirm_phone_code_gen.go#L132: 		return fmt.Errorf("can't encode account.sendConfirmPhoneCode#1b3faa88 as nil")
		tl_account_send_confirm_phone_code_gen.go#L141: 		return fmt.Errorf("can't encode account.sendConfirmPhoneCode#1b3faa88 as nil")
		tl_account_send_confirm_phone_code_gen.go#L145: 		return fmt.Errorf("unable to encode account.sendConfirmPhoneCode#1b3faa88: field settings: %w", err)
		tl_account_send_confirm_phone_code_gen.go#L153: 		return fmt.Errorf("can't decode account.sendConfirmPhoneCode#1b3faa88 to nil")
		tl_account_send_confirm_phone_code_gen.go#L156: 		return fmt.Errorf("unable to decode account.sendConfirmPhoneCode#1b3faa88: %w", err)
		tl_account_send_confirm_phone_code_gen.go#L164: 		return fmt.Errorf("can't decode account.sendConfirmPhoneCode#1b3faa88 to nil")
		tl_account_send_confirm_phone_code_gen.go#L169: 			return fmt.Errorf("unable to decode account.sendConfirmPhoneCode#1b3faa88: field hash: %w", err)
		tl_account_send_confirm_phone_code_gen.go#L175: 			return fmt.Errorf("unable to decode account.sendConfirmPhoneCode#1b3faa88: field settings: %w", err)
		tl_account_send_verify_email_code_gen.go#L126: 		return fmt.Errorf("can't encode account.sendVerifyEmailCode#98e037bb as nil")
		tl_account_send_verify_email_code_gen.go#L135: 		return fmt.Errorf("can't encode account.sendVerifyEmailCode#98e037bb as nil")
		tl_account_send_verify_email_code_gen.go#L138: 		return fmt.Errorf("unable to encode account.sendVerifyEmailCode#98e037bb: field purpose is nil")
		tl_account_send_verify_email_code_gen.go#L141: 		return fmt.Errorf("unable to encode account.sendVerifyEmailCode#98e037bb: field purpose: %w", err)
		tl_account_send_verify_email_code_gen.go#L150: 		return fmt.Errorf("can't decode account.sendVerifyEmailCode#98e037bb to nil")
		tl_account_send_verify_email_code_gen.go#L153: 		return fmt.Errorf("unable to decode account.sendVerifyEmailCode#98e037bb: %w", err)
		tl_account_send_verify_email_code_gen.go#L161: 		return fmt.Errorf("can't decode account.sendVerifyEmailCode#98e037bb to nil")
		tl_account_send_verify_email_code_gen.go#L166: 			return fmt.Errorf("unable to decode account.sendVerifyEmailCode#98e037bb: field purpose: %w", err)
		tl_account_send_verify_email_code_gen.go#L173: 			return fmt.Errorf("unable to decode account.sendVerifyEmailCode#98e037bb: field email: %w", err)
		tl_account_send_verify_phone_code_gen.go#L129: 		return fmt.Errorf("can't encode account.sendVerifyPhoneCode#a5a356f9 as nil")
		tl_account_send_verify_phone_code_gen.go#L138: 		return fmt.Errorf("can't encode account.sendVerifyPhoneCode#a5a356f9 as nil")
		tl_account_send_verify_phone_code_gen.go#L142: 		return fmt.Errorf("unable to encode account.sendVerifyPhoneCode#a5a356f9: field settings: %w", err)
		tl_account_send_verify_phone_code_gen.go#L150: 		return fmt.Errorf("can't decode account.sendVerifyPhoneCode#a5a356f9 to nil")
		tl_account_send_verify_phone_code_gen.go#L153: 		return fmt.Errorf("unable to decode account.sendVerifyPhoneCode#a5a356f9: %w", err)
		tl_account_send_verify_phone_code_gen.go#L161: 		return fmt.Errorf("can't decode account.sendVerifyPhoneCode#a5a356f9 to nil")
		tl_account_send_verify_phone_code_gen.go#L166: 			return fmt.Errorf("unable to decode account.sendVerifyPhoneCode#a5a356f9: field phone_number: %w", err)
		tl_account_send_verify_phone_code_gen.go#L172: 			return fmt.Errorf("unable to decode account.sendVerifyPhoneCode#a5a356f9: field settings: %w", err)
		tl_account_sent_email_code_gen.go#L129: 		return fmt.Errorf("can't encode account.sentEmailCode#811f854f as nil")
		tl_account_sent_email_code_gen.go#L138: 		return fmt.Errorf("can't encode account.sentEmailCode#811f854f as nil")
		tl_account_sent_email_code_gen.go#L148: 		return fmt.Errorf("can't decode account.sentEmailCode#811f854f to nil")
		tl_account_sent_email_code_gen.go#L151: 		return fmt.Errorf("unable to decode account.sentEmailCode#811f854f: %w", err)
		tl_account_sent_email_code_gen.go#L159: 		return fmt.Errorf("can't decode account.sentEmailCode#811f854f to nil")
		tl_account_sent_email_code_gen.go#L164: 			return fmt.Errorf("unable to decode account.sentEmailCode#811f854f: field email_pattern: %w", err)
		tl_account_sent_email_code_gen.go#L171: 			return fmt.Errorf("unable to decode account.sentEmailCode#811f854f: field length: %w", err)
		tl_account_set_account_ttl_gen.go#L115: 		return fmt.Errorf("can't encode account.setAccountTTL#2442485e as nil")
		tl_account_set_account_ttl_gen.go#L124: 		return fmt.Errorf("can't encode account.setAccountTTL#2442485e as nil")
		tl_account_set_account_ttl_gen.go#L127: 		return fmt.Errorf("unable to encode account.setAccountTTL#2442485e: field ttl: %w", err)
		tl_account_set_account_ttl_gen.go#L135: 		return fmt.Errorf("can't decode account.setAccountTTL#2442485e to nil")
		tl_account_set_account_ttl_gen.go#L138: 		return fmt.Errorf("unable to decode account.setAccountTTL#2442485e: %w", err)
		tl_account_set_account_ttl_gen.go#L146: 		return fmt.Errorf("can't decode account.setAccountTTL#2442485e to nil")
		tl_account_set_account_ttl_gen.go#L150: 			return fmt.Errorf("unable to decode account.setAccountTTL#2442485e: field ttl: %w", err)
		tl_account_set_authorization_ttl_gen.go#L115: 		return fmt.Errorf("can't encode account.setAuthorizationTTL#bf899aa0 as nil")
		tl_account_set_authorization_ttl_gen.go#L124: 		return fmt.Errorf("can't encode account.setAuthorizationTTL#bf899aa0 as nil")
		tl_account_set_authorization_ttl_gen.go#L133: 		return fmt.Errorf("can't decode account.setAuthorizationTTL#bf899aa0 to nil")
		tl_account_set_authorization_ttl_gen.go#L136: 		return fmt.Errorf("unable to decode account.setAuthorizationTTL#bf899aa0: %w", err)
		tl_account_set_authorization_ttl_gen.go#L144: 		return fmt.Errorf("can't decode account.setAuthorizationTTL#bf899aa0 to nil")
		tl_account_set_authorization_ttl_gen.go#L149: 			return fmt.Errorf("unable to decode account.setAuthorizationTTL#bf899aa0: field authorization_ttl_days: %w", err)
		tl_account_set_contact_sign_up_notification_gen.go#L115: 		return fmt.Errorf("can't encode account.setContactSignUpNotification#cff43f61 as nil")
		tl_account_set_contact_sign_up_notification_gen.go#L124: 		return fmt.Errorf("can't encode account.setContactSignUpNotification#cff43f61 as nil")
		tl_account_set_contact_sign_up_notification_gen.go#L133: 		return fmt.Errorf("can't decode account.setContactSignUpNotification#cff43f61 to nil")
		tl_account_set_contact_sign_up_notification_gen.go#L136: 		return fmt.Errorf("unable to decode account.setContactSignUpNotification#cff43f61: %w", err)
		tl_account_set_contact_sign_up_notification_gen.go#L144: 		return fmt.Errorf("can't decode account.setContactSignUpNotification#cff43f61 to nil")
		tl_account_set_contact_sign_up_notification_gen.go#L149: 			return fmt.Errorf("unable to decode account.setContactSignUpNotification#cff43f61: field silent: %w", err)
		tl_account_set_content_settings_gen.go#L131: 		return fmt.Errorf("can't encode account.setContentSettings#b574b16b as nil")
		tl_account_set_content_settings_gen.go#L140: 		return fmt.Errorf("can't encode account.setContentSettings#b574b16b as nil")
		tl_account_set_content_settings_gen.go#L144: 		return fmt.Errorf("unable to encode account.setContentSettings#b574b16b: field flags: %w", err)
		tl_account_set_content_settings_gen.go#L152: 		return fmt.Errorf("can't decode account.setContentSettings#b574b16b to nil")
		tl_account_set_content_settings_gen.go#L155: 		return fmt.Errorf("unable to decode account.setContentSettings#b574b16b: %w", err)
		tl_account_set_content_settings_gen.go#L163: 		return fmt.Errorf("can't decode account.setContentSettings#b574b16b to nil")
		tl_account_set_content_settings_gen.go#L167: 			return fmt.Errorf("unable to decode account.setContentSettings#b574b16b: field flags: %w", err)
		tl_account_set_global_privacy_settings_gen.go#L115: 		return fmt.Errorf("can't encode account.setGlobalPrivacySettings#1edaaac2 as nil")
		tl_account_set_global_privacy_settings_gen.go#L124: 		return fmt.Errorf("can't encode account.setGlobalPrivacySettings#1edaaac2 as nil")
		tl_account_set_global_privacy_settings_gen.go#L127: 		return fmt.Errorf("unable to encode account.setGlobalPrivacySettings#1edaaac2: field settings: %w", err)
		tl_account_set_global_privacy_settings_gen.go#L135: 		return fmt.Errorf("can't decode account.setGlobalPrivacySettings#1edaaac2 to nil")
		tl_account_set_global_privacy_settings_gen.go#L138: 		return fmt.Errorf("unable to decode account.setGlobalPrivacySettings#1edaaac2: %w", err)
		tl_account_set_global_privacy_settings_gen.go#L146: 		return fmt.Errorf("can't decode account.setGlobalPrivacySettings#1edaaac2 to nil")
		tl_account_set_global_privacy_settings_gen.go#L150: 			return fmt.Errorf("unable to decode account.setGlobalPrivacySettings#1edaaac2: field settings: %w", err)
		tl_account_set_privacy_gen.go#L126: 		return fmt.Errorf("can't encode account.setPrivacy#c9f81ce8 as nil")
		tl_account_set_privacy_gen.go#L135: 		return fmt.Errorf("can't encode account.setPrivacy#c9f81ce8 as nil")
		tl_account_set_privacy_gen.go#L138: 		return fmt.Errorf("unable to encode account.setPrivacy#c9f81ce8: field key is nil")
		tl_account_set_privacy_gen.go#L141: 		return fmt.Errorf("unable to encode account.setPrivacy#c9f81ce8: field key: %w", err)
		tl_account_set_privacy_gen.go#L146: 			return fmt.Errorf("unable to encode account.setPrivacy#c9f81ce8: field rules element with index %d is nil", idx)
		tl_account_set_privacy_gen.go#L149: 			return fmt.Errorf("unable to encode account.setPrivacy#c9f81ce8: field rules element with index %d: %w", idx, err)
		tl_account_set_privacy_gen.go#L158: 		return fmt.Errorf("can't decode account.setPrivacy#c9f81ce8 to nil")
		tl_account_set_privacy_gen.go#L161: 		return fmt.Errorf("unable to decode account.setPrivacy#c9f81ce8: %w", err)
		tl_account_set_privacy_gen.go#L169: 		return fmt.Errorf("can't decode account.setPrivacy#c9f81ce8 to nil")
		tl_account_set_privacy_gen.go#L174: 			return fmt.Errorf("unable to decode account.setPrivacy#c9f81ce8: field key: %w", err)
		tl_account_set_privacy_gen.go#L181: 			return fmt.Errorf("unable to decode account.setPrivacy#c9f81ce8: field rules: %w", err)
		tl_account_set_privacy_gen.go#L190: 				return fmt.Errorf("unable to decode account.setPrivacy#c9f81ce8: field rules: %w", err)
		tl_account_takeout_gen.go#L115: 		return fmt.Errorf("can't encode account.takeout#4dba4501 as nil")
		tl_account_takeout_gen.go#L124: 		return fmt.Errorf("can't encode account.takeout#4dba4501 as nil")
		tl_account_takeout_gen.go#L133: 		return fmt.Errorf("can't decode account.takeout#4dba4501 to nil")
		tl_account_takeout_gen.go#L136: 		return fmt.Errorf("unable to decode account.takeout#4dba4501: %w", err)
		tl_account_takeout_gen.go#L144: 		return fmt.Errorf("can't decode account.takeout#4dba4501 to nil")
		tl_account_takeout_gen.go#L149: 			return fmt.Errorf("unable to decode account.takeout#4dba4501: field id: %w", err)
		tl_account_themes_gen.go#L103: 		return fmt.Errorf("can't encode account.themesNotModified#f41eb622 as nil")
		tl_account_themes_gen.go#L112: 		return fmt.Errorf("can't encode account.themesNotModified#f41eb622 as nil")
		tl_account_themes_gen.go#L120: 		return fmt.Errorf("can't decode account.themesNotModified#f41eb622 to nil")
		tl_account_themes_gen.go#L123: 		return fmt.Errorf("unable to decode account.themesNotModified#f41eb622: %w", err)
		tl_account_themes_gen.go#L131: 		return fmt.Errorf("can't decode account.themesNotModified#f41eb622 to nil")
		tl_account_themes_gen.go#L236: 		return fmt.Errorf("can't encode account.themes#9a3d8c6d as nil")
		tl_account_themes_gen.go#L245: 		return fmt.Errorf("can't encode account.themes#9a3d8c6d as nil")
		tl_account_themes_gen.go#L251: 			return fmt.Errorf("unable to encode account.themes#9a3d8c6d: field themes element with index %d: %w", idx, err)
		tl_account_themes_gen.go#L260: 		return fmt.Errorf("can't decode account.themes#9a3d8c6d to nil")
		tl_account_themes_gen.go#L263: 		return fmt.Errorf("unable to decode account.themes#9a3d8c6d: %w", err)
		tl_account_themes_gen.go#L271: 		return fmt.Errorf("can't decode account.themes#9a3d8c6d to nil")
		tl_account_themes_gen.go#L276: 			return fmt.Errorf("unable to decode account.themes#9a3d8c6d: field hash: %w", err)
		tl_account_themes_gen.go#L283: 			return fmt.Errorf("unable to decode account.themes#9a3d8c6d: field themes: %w", err)
		tl_account_themes_gen.go#L292: 				return fmt.Errorf("unable to decode account.themes#9a3d8c6d: field themes: %w", err)
		tl_account_themes_gen.go#L377: 			return nil, fmt.Errorf("unable to decode AccountThemesClass: %w", err)
		tl_account_themes_gen.go#L384: 			return nil, fmt.Errorf("unable to decode AccountThemesClass: %w", err)
		tl_account_themes_gen.go#L388: 		return nil, fmt.Errorf("unable to decode AccountThemesClass: %w", bin.NewUnexpectedID(id))
		tl_account_themes_gen.go#L400: 		return fmt.Errorf("unable to decode AccountThemesBox to nil")
		tl_account_themes_gen.go#L404: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_account_themes_gen.go#L413: 		return fmt.Errorf("unable to encode AccountThemesClass as nil")
		tl_account_tmp_password_gen.go#L126: 		return fmt.Errorf("can't encode account.tmpPassword#db64fd34 as nil")
		tl_account_tmp_password_gen.go#L135: 		return fmt.Errorf("can't encode account.tmpPassword#db64fd34 as nil")
		tl_account_tmp_password_gen.go#L145: 		return fmt.Errorf("can't decode account.tmpPassword#db64fd34 to nil")
		tl_account_tmp_password_gen.go#L148: 		return fmt.Errorf("unable to decode account.tmpPassword#db64fd34: %w", err)
		tl_account_tmp_password_gen.go#L156: 		return fmt.Errorf("can't decode account.tmpPassword#db64fd34 to nil")
		tl_account_tmp_password_gen.go#L161: 			return fmt.Errorf("unable to decode account.tmpPassword#db64fd34: field tmp_password: %w", err)
		tl_account_tmp_password_gen.go#L168: 			return fmt.Errorf("unable to decode account.tmpPassword#db64fd34: field valid_until: %w", err)
		tl_account_toggle_username_gen.go#L130: 		return fmt.Errorf("can't encode account.toggleUsername#58d6b376 as nil")
		tl_account_toggle_username_gen.go#L139: 		return fmt.Errorf("can't encode account.toggleUsername#58d6b376 as nil")
		tl_account_toggle_username_gen.go#L149: 		return fmt.Errorf("can't decode account.toggleUsername#58d6b376 to nil")
		tl_account_toggle_username_gen.go#L152: 		return fmt.Errorf("unable to decode account.toggleUsername#58d6b376: %w", err)
		tl_account_toggle_username_gen.go#L160: 		return fmt.Errorf("can't decode account.toggleUsername#58d6b376 to nil")
		tl_account_toggle_username_gen.go#L165: 			return fmt.Errorf("unable to decode account.toggleUsername#58d6b376: field username: %w", err)
		tl_account_toggle_username_gen.go#L172: 			return fmt.Errorf("unable to decode account.toggleUsername#58d6b376: field active: %w", err)
		tl_account_unregister_device_gen.go#L143: 		return fmt.Errorf("can't encode account.unregisterDevice#6a0d3206 as nil")
		tl_account_unregister_device_gen.go#L152: 		return fmt.Errorf("can't encode account.unregisterDevice#6a0d3206 as nil")
		tl_account_unregister_device_gen.go#L166: 		return fmt.Errorf("can't decode account.unregisterDevice#6a0d3206 to nil")
		tl_account_unregister_device_gen.go#L169: 		return fmt.Errorf("unable to decode account.unregisterDevice#6a0d3206: %w", err)
		tl_account_unregister_device_gen.go#L177: 		return fmt.Errorf("can't decode account.unregisterDevice#6a0d3206 to nil")
		tl_account_unregister_device_gen.go#L182: 			return fmt.Errorf("unable to decode account.unregisterDevice#6a0d3206: field token_type: %w", err)
		tl_account_unregister_device_gen.go#L189: 			return fmt.Errorf("unable to decode account.unregisterDevice#6a0d3206: field token: %w", err)
		tl_account_unregister_device_gen.go#L196: 			return fmt.Errorf("unable to decode account.unregisterDevice#6a0d3206: field other_uids: %w", err)
		tl_account_unregister_device_gen.go#L205: 				return fmt.Errorf("unable to decode account.unregisterDevice#6a0d3206: field other_uids: %w", err)
		tl_account_update_color_gen.go#L179: 		return fmt.Errorf("can't encode account.updateColor#7cefa15d as nil")
		tl_account_update_color_gen.go#L188: 		return fmt.Errorf("can't encode account.updateColor#7cefa15d as nil")
		tl_account_update_color_gen.go#L192: 		return fmt.Errorf("unable to encode account.updateColor#7cefa15d: field flags: %w", err)
		tl_account_update_color_gen.go#L206: 		return fmt.Errorf("can't decode account.updateColor#7cefa15d to nil")
		tl_account_update_color_gen.go#L209: 		return fmt.Errorf("unable to decode account.updateColor#7cefa15d: %w", err)
		tl_account_update_color_gen.go#L217: 		return fmt.Errorf("can't decode account.updateColor#7cefa15d to nil")
		tl_account_update_color_gen.go#L221: 			return fmt.Errorf("unable to decode account.updateColor#7cefa15d: field flags: %w", err)
		tl_account_update_color_gen.go#L228: 			return fmt.Errorf("unable to decode account.updateColor#7cefa15d: field color: %w", err)
		tl_account_update_color_gen.go#L235: 			return fmt.Errorf("unable to decode account.updateColor#7cefa15d: field background_emoji_id: %w", err)
		tl_account_update_device_locked_gen.go#L122: 		return fmt.Errorf("can't encode account.updateDeviceLocked#38df3532 as nil")
		tl_account_update_device_locked_gen.go#L131: 		return fmt.Errorf("can't encode account.updateDeviceLocked#38df3532 as nil")
		tl_account_update_device_locked_gen.go#L140: 		return fmt.Errorf("can't decode account.updateDeviceLocked#38df3532 to nil")
		tl_account_update_device_locked_gen.go#L143: 		return fmt.Errorf("unable to decode account.updateDeviceLocked#38df3532: %w", err)
		tl_account_update_device_locked_gen.go#L151: 		return fmt.Errorf("can't decode account.updateDeviceLocked#38df3532 to nil")
		tl_account_update_device_locked_gen.go#L156: 			return fmt.Errorf("unable to decode account.updateDeviceLocked#38df3532: field period: %w", err)
		tl_account_update_emoji_status_gen.go#L121: 		return fmt.Errorf("can't encode account.updateEmojiStatus#fbd3de6b as nil")
		tl_account_update_emoji_status_gen.go#L130: 		return fmt.Errorf("can't encode account.updateEmojiStatus#fbd3de6b as nil")
		tl_account_update_emoji_status_gen.go#L133: 		return fmt.Errorf("unable to encode account.updateEmojiStatus#fbd3de6b: field emoji_status is nil")
		tl_account_update_emoji_status_gen.go#L136: 		return fmt.Errorf("unable to encode account.updateEmojiStatus#fbd3de6b: field emoji_status: %w", err)
		tl_account_update_emoji_status_gen.go#L144: 		return fmt.Errorf("can't decode account.updateEmojiStatus#fbd3de6b to nil")
		tl_account_update_emoji_status_gen.go#L147: 		return fmt.Errorf("unable to decode account.updateEmojiStatus#fbd3de6b: %w", err)
		tl_account_update_emoji_status_gen.go#L155: 		return fmt.Errorf("can't decode account.updateEmojiStatus#fbd3de6b to nil")
		tl_account_update_emoji_status_gen.go#L160: 			return fmt.Errorf("unable to decode account.updateEmojiStatus#fbd3de6b: field emoji_status: %w", err)
		tl_account_update_notify_settings_gen.go#L126: 		return fmt.Errorf("can't encode account.updateNotifySettings#84be5b93 as nil")
		tl_account_update_notify_settings_gen.go#L135: 		return fmt.Errorf("can't encode account.updateNotifySettings#84be5b93 as nil")
		tl_account_update_notify_settings_gen.go#L138: 		return fmt.Errorf("unable to encode account.updateNotifySettings#84be5b93: field peer is nil")
		tl_account_update_notify_settings_gen.go#L141: 		return fmt.Errorf("unable to encode account.updateNotifySettings#84be5b93: field peer: %w", err)
		tl_account_update_notify_settings_gen.go#L144: 		return fmt.Errorf("unable to encode account.updateNotifySettings#84be5b93: field settings: %w", err)
		tl_account_update_notify_settings_gen.go#L152: 		return fmt.Errorf("can't decode account.updateNotifySettings#84be5b93 to nil")
		tl_account_update_notify_settings_gen.go#L155: 		return fmt.Errorf("unable to decode account.updateNotifySettings#84be5b93: %w", err)
		tl_account_update_notify_settings_gen.go#L163: 		return fmt.Errorf("can't decode account.updateNotifySettings#84be5b93 to nil")
		tl_account_update_notify_settings_gen.go#L168: 			return fmt.Errorf("unable to decode account.updateNotifySettings#84be5b93: field peer: %w", err)
		tl_account_update_notify_settings_gen.go#L174: 			return fmt.Errorf("unable to decode account.updateNotifySettings#84be5b93: field settings: %w", err)
		tl_account_update_password_settings_gen.go#L132: 		return fmt.Errorf("can't encode account.updatePasswordSettings#a59b102f as nil")
		tl_account_update_password_settings_gen.go#L141: 		return fmt.Errorf("can't encode account.updatePasswordSettings#a59b102f as nil")
		tl_account_update_password_settings_gen.go#L144: 		return fmt.Errorf("unable to encode account.updatePasswordSettings#a59b102f: field password is nil")
		tl_account_update_password_settings_gen.go#L147: 		return fmt.Errorf("unable to encode account.updatePasswordSettings#a59b102f: field password: %w", err)
		tl_account_update_password_settings_gen.go#L150: 		return fmt.Errorf("unable to encode account.updatePasswordSettings#a59b102f: field new_settings: %w", err)
		tl_account_update_password_settings_gen.go#L158: 		return fmt.Errorf("can't decode account.updatePasswordSettings#a59b102f to nil")
		tl_account_update_password_settings_gen.go#L161: 		return fmt.Errorf("unable to decode account.updatePasswordSettings#a59b102f: %w", err)
		tl_account_update_password_settings_gen.go#L169: 		return fmt.Errorf("can't decode account.updatePasswordSettings#a59b102f to nil")
		tl_account_update_password_settings_gen.go#L174: 			return fmt.Errorf("unable to decode account.updatePasswordSettings#a59b102f: field password: %w", err)
		tl_account_update_password_settings_gen.go#L180: 			return fmt.Errorf("unable to decode account.updatePasswordSettings#a59b102f: field new_settings: %w", err)
		tl_account_update_profile_gen.go#L176: 		return fmt.Errorf("can't encode account.updateProfile#78515775 as nil")
		tl_account_update_profile_gen.go#L185: 		return fmt.Errorf("can't encode account.updateProfile#78515775 as nil")
		tl_account_update_profile_gen.go#L189: 		return fmt.Errorf("unable to encode account.updateProfile#78515775: field flags: %w", err)
		tl_account_update_profile_gen.go#L206: 		return fmt.Errorf("can't decode account.updateProfile#78515775 to nil")
		tl_account_update_profile_gen.go#L209: 		return fmt.Errorf("unable to decode account.updateProfile#78515775: %w", err)
		tl_account_update_profile_gen.go#L217: 		return fmt.Errorf("can't decode account.updateProfile#78515775 to nil")
		tl_account_update_profile_gen.go#L221: 			return fmt.Errorf("unable to decode account.updateProfile#78515775: field flags: %w", err)
		tl_account_update_profile_gen.go#L227: 			return fmt.Errorf("unable to decode account.updateProfile#78515775: field first_name: %w", err)
		tl_account_update_profile_gen.go#L234: 			return fmt.Errorf("unable to decode account.updateProfile#78515775: field last_name: %w", err)
		tl_account_update_profile_gen.go#L241: 			return fmt.Errorf("unable to decode account.updateProfile#78515775: field about: %w", err)
		tl_account_update_status_gen.go#L119: 		return fmt.Errorf("can't encode account.updateStatus#6628562c as nil")
		tl_account_update_status_gen.go#L128: 		return fmt.Errorf("can't encode account.updateStatus#6628562c as nil")
		tl_account_update_status_gen.go#L137: 		return fmt.Errorf("can't decode account.updateStatus#6628562c to nil")
		tl_account_update_status_gen.go#L140: 		return fmt.Errorf("unable to decode account.updateStatus#6628562c: %w", err)
		tl_account_update_status_gen.go#L148: 		return fmt.Errorf("can't decode account.updateStatus#6628562c to nil")
		tl_account_update_status_gen.go#L153: 			return fmt.Errorf("unable to decode account.updateStatus#6628562c: field offline: %w", err)
		tl_account_update_theme_gen.go#L218: 		return fmt.Errorf("can't encode account.updateTheme#2bf40ccc as nil")
		tl_account_update_theme_gen.go#L227: 		return fmt.Errorf("can't encode account.updateTheme#2bf40ccc as nil")
		tl_account_update_theme_gen.go#L231: 		return fmt.Errorf("unable to encode account.updateTheme#2bf40ccc: field flags: %w", err)
		tl_account_update_theme_gen.go#L235: 		return fmt.Errorf("unable to encode account.updateTheme#2bf40ccc: field theme is nil")
		tl_account_update_theme_gen.go#L238: 		return fmt.Errorf("unable to encode account.updateTheme#2bf40ccc: field theme: %w", err)
		tl_account_update_theme_gen.go#L248: 			return fmt.Errorf("unable to encode account.updateTheme#2bf40ccc: field document is nil")
		tl_account_update_theme_gen.go#L251: 			return fmt.Errorf("unable to encode account.updateTheme#2bf40ccc: field document: %w", err)
		tl_account_update_theme_gen.go#L258: 				return fmt.Errorf("unable to encode account.updateTheme#2bf40ccc: field settings element with index %d: %w", idx, err)
		tl_account_update_theme_gen.go#L268: 		return fmt.Errorf("can't decode account.updateTheme#2bf40ccc to nil")
		tl_account_update_theme_gen.go#L271: 		return fmt.Errorf("unable to decode account.updateTheme#2bf40ccc: %w", err)
		tl_account_update_theme_gen.go#L279: 		return fmt.Errorf("can't decode account.updateTheme#2bf40ccc to nil")
		tl_account_update_theme_gen.go#L283: 			return fmt.Errorf("unable to decode account.updateTheme#2bf40ccc: field flags: %w", err)
		tl_account_update_theme_gen.go#L289: 			return fmt.Errorf("unable to decode account.updateTheme#2bf40ccc: field format: %w", err)
		tl_account_update_theme_gen.go#L296: 			return fmt.Errorf("unable to decode account.updateTheme#2bf40ccc: field theme: %w", err)
		tl_account_update_theme_gen.go#L303: 			return fmt.Errorf("unable to decode account.updateTheme#2bf40ccc: field slug: %w", err)
		tl_account_update_theme_gen.go#L310: 			return fmt.Errorf("unable to decode account.updateTheme#2bf40ccc: field title: %w", err)
		tl_account_update_theme_gen.go#L317: 			return fmt.Errorf("unable to decode account.updateTheme#2bf40ccc: field document: %w", err)
		tl_account_update_theme_gen.go#L324: 			return fmt.Errorf("unable to decode account.updateTheme#2bf40ccc: field settings: %w", err)
		tl_account_update_theme_gen.go#L333: 				return fmt.Errorf("unable to decode account.updateTheme#2bf40ccc: field settings: %w", err)
		tl_account_update_username_gen.go#L116: 		return fmt.Errorf("can't encode account.updateUsername#3e0bdd7c as nil")
		tl_account_update_username_gen.go#L125: 		return fmt.Errorf("can't encode account.updateUsername#3e0bdd7c as nil")
		tl_account_update_username_gen.go#L134: 		return fmt.Errorf("can't decode account.updateUsername#3e0bdd7c to nil")
		tl_account_update_username_gen.go#L137: 		return fmt.Errorf("unable to decode account.updateUsername#3e0bdd7c: %w", err)
		tl_account_update_username_gen.go#L145: 		return fmt.Errorf("can't decode account.updateUsername#3e0bdd7c to nil")
		tl_account_update_username_gen.go#L150: 			return fmt.Errorf("unable to decode account.updateUsername#3e0bdd7c: field username: %w", err)
		tl_account_upload_ringtone_gen.go#L141: 		return fmt.Errorf("can't encode account.uploadRingtone#831a83a2 as nil")
		tl_account_upload_ringtone_gen.go#L150: 		return fmt.Errorf("can't encode account.uploadRingtone#831a83a2 as nil")
		tl_account_upload_ringtone_gen.go#L153: 		return fmt.Errorf("unable to encode account.uploadRingtone#831a83a2: field file is nil")
		tl_account_upload_ringtone_gen.go#L156: 		return fmt.Errorf("unable to encode account.uploadRingtone#831a83a2: field file: %w", err)
		tl_account_upload_ringtone_gen.go#L166: 		return fmt.Errorf("can't decode account.uploadRingtone#831a83a2 to nil")
		tl_account_upload_ringtone_gen.go#L169: 		return fmt.Errorf("unable to decode account.uploadRingtone#831a83a2: %w", err)
		tl_account_upload_ringtone_gen.go#L177: 		return fmt.Errorf("can't decode account.uploadRingtone#831a83a2 to nil")
		tl_account_upload_ringtone_gen.go#L182: 			return fmt.Errorf("unable to decode account.uploadRingtone#831a83a2: field file: %w", err)
		tl_account_upload_ringtone_gen.go#L189: 			return fmt.Errorf("unable to decode account.uploadRingtone#831a83a2: field file_name: %w", err)
		tl_account_upload_ringtone_gen.go#L196: 			return fmt.Errorf("unable to decode account.uploadRingtone#831a83a2: field mime_type: %w", err)
		tl_account_upload_theme_gen.go#L173: 		return fmt.Errorf("can't encode account.uploadTheme#1c3db333 as nil")
		tl_account_upload_theme_gen.go#L182: 		return fmt.Errorf("can't encode account.uploadTheme#1c3db333 as nil")
		tl_account_upload_theme_gen.go#L186: 		return fmt.Errorf("unable to encode account.uploadTheme#1c3db333: field flags: %w", err)
		tl_account_upload_theme_gen.go#L189: 		return fmt.Errorf("unable to encode account.uploadTheme#1c3db333: field file is nil")
		tl_account_upload_theme_gen.go#L192: 		return fmt.Errorf("unable to encode account.uploadTheme#1c3db333: field file: %w", err)
		tl_account_upload_theme_gen.go#L196: 			return fmt.Errorf("unable to encode account.uploadTheme#1c3db333: field thumb is nil")
		tl_account_upload_theme_gen.go#L199: 			return fmt.Errorf("unable to encode account.uploadTheme#1c3db333: field thumb: %w", err)
		tl_account_upload_theme_gen.go#L210: 		return fmt.Errorf("can't decode account.uploadTheme#1c3db333 to nil")
		tl_account_upload_theme_gen.go#L213: 		return fmt.Errorf("unable to decode account.uploadTheme#1c3db333: %w", err)
		tl_account_upload_theme_gen.go#L221: 		return fmt.Errorf("can't decode account.uploadTheme#1c3db333 to nil")
		tl_account_upload_theme_gen.go#L225: 			return fmt.Errorf("unable to decode account.uploadTheme#1c3db333: field flags: %w", err)
		tl_account_upload_theme_gen.go#L231: 			return fmt.Errorf("unable to decode account.uploadTheme#1c3db333: field file: %w", err)
		tl_account_upload_theme_gen.go#L238: 			return fmt.Errorf("unable to decode account.uploadTheme#1c3db333: field thumb: %w", err)
		tl_account_upload_theme_gen.go#L245: 			return fmt.Errorf("unable to decode account.uploadTheme#1c3db333: field file_name: %w", err)
		tl_account_upload_theme_gen.go#L252: 			return fmt.Errorf("unable to decode account.uploadTheme#1c3db333: field mime_type: %w", err)
		tl_account_upload_wall_paper_gen.go#L170: 		return fmt.Errorf("can't encode account.uploadWallPaper#e39a8f03 as nil")
		tl_account_upload_wall_paper_gen.go#L179: 		return fmt.Errorf("can't encode account.uploadWallPaper#e39a8f03 as nil")
		tl_account_upload_wall_paper_gen.go#L183: 		return fmt.Errorf("unable to encode account.uploadWallPaper#e39a8f03: field flags: %w", err)
		tl_account_upload_wall_paper_gen.go#L186: 		return fmt.Errorf("unable to encode account.uploadWallPaper#e39a8f03: field file is nil")
		tl_account_upload_wall_paper_gen.go#L189: 		return fmt.Errorf("unable to encode account.uploadWallPaper#e39a8f03: field file: %w", err)
		tl_account_upload_wall_paper_gen.go#L193: 		return fmt.Errorf("unable to encode account.uploadWallPaper#e39a8f03: field settings: %w", err)
		tl_account_upload_wall_paper_gen.go#L201: 		return fmt.Errorf("can't decode account.uploadWallPaper#e39a8f03 to nil")
		tl_account_upload_wall_paper_gen.go#L204: 		return fmt.Errorf("unable to decode account.uploadWallPaper#e39a8f03: %w", err)
		tl_account_upload_wall_paper_gen.go#L212: 		return fmt.Errorf("can't decode account.uploadWallPaper#e39a8f03 to nil")
		tl_account_upload_wall_paper_gen.go#L216: 			return fmt.Errorf("unable to decode account.uploadWallPaper#e39a8f03: field flags: %w", err)
		tl_account_upload_wall_paper_gen.go#L223: 			return fmt.Errorf("unable to decode account.uploadWallPaper#e39a8f03: field file: %w", err)
		tl_account_upload_wall_paper_gen.go#L230: 			return fmt.Errorf("unable to decode account.uploadWallPaper#e39a8f03: field mime_type: %w", err)
		tl_account_upload_wall_paper_gen.go#L236: 			return fmt.Errorf("unable to decode account.uploadWallPaper#e39a8f03: field settings: %w", err)
		tl_account_verify_email_gen.go#L126: 		return fmt.Errorf("can't encode account.verifyEmail#32da4cf as nil")
		tl_account_verify_email_gen.go#L135: 		return fmt.Errorf("can't encode account.verifyEmail#32da4cf as nil")
		tl_account_verify_email_gen.go#L138: 		return fmt.Errorf("unable to encode account.verifyEmail#32da4cf: field purpose is nil")
		tl_account_verify_email_gen.go#L141: 		return fmt.Errorf("unable to encode account.verifyEmail#32da4cf: field purpose: %w", err)
		tl_account_verify_email_gen.go#L144: 		return fmt.Errorf("unable to encode account.verifyEmail#32da4cf: field verification is nil")
		tl_account_verify_email_gen.go#L147: 		return fmt.Errorf("unable to encode account.verifyEmail#32da4cf: field verification: %w", err)
		tl_account_verify_email_gen.go#L155: 		return fmt.Errorf("can't decode account.verifyEmail#32da4cf to nil")
		tl_account_verify_email_gen.go#L158: 		return fmt.Errorf("unable to decode account.verifyEmail#32da4cf: %w", err)
		tl_account_verify_email_gen.go#L166: 		return fmt.Errorf("can't decode account.verifyEmail#32da4cf to nil")
		tl_account_verify_email_gen.go#L171: 			return fmt.Errorf("unable to decode account.verifyEmail#32da4cf: field purpose: %w", err)
		tl_account_verify_email_gen.go#L178: 			return fmt.Errorf("unable to decode account.verifyEmail#32da4cf: field verification: %w", err)
		tl_account_verify_phone_gen.go#L146: 		return fmt.Errorf("can't encode account.verifyPhone#4dd3a7f6 as nil")
		tl_account_verify_phone_gen.go#L155: 		return fmt.Errorf("can't encode account.verifyPhone#4dd3a7f6 as nil")
		tl_account_verify_phone_gen.go#L166: 		return fmt.Errorf("can't decode account.verifyPhone#4dd3a7f6 to nil")
		tl_account_verify_phone_gen.go#L169: 		return fmt.Errorf("unable to decode account.verifyPhone#4dd3a7f6: %w", err)
		tl_account_verify_phone_gen.go#L177: 		return fmt.Errorf("can't decode account.verifyPhone#4dd3a7f6 to nil")
		tl_account_verify_phone_gen.go#L182: 			return fmt.Errorf("unable to decode account.verifyPhone#4dd3a7f6: field phone_number: %w", err)
		tl_account_verify_phone_gen.go#L189: 			return fmt.Errorf("unable to decode account.verifyPhone#4dd3a7f6: field phone_code_hash: %w", err)
		tl_account_verify_phone_gen.go#L196: 			return fmt.Errorf("unable to decode account.verifyPhone#4dd3a7f6: field phone_code: %w", err)
		tl_account_wall_papers_gen.go#L106: 		return fmt.Errorf("can't encode account.wallPapersNotModified#1c199183 as nil")
		tl_account_wall_papers_gen.go#L115: 		return fmt.Errorf("can't encode account.wallPapersNotModified#1c199183 as nil")
		tl_account_wall_papers_gen.go#L123: 		return fmt.Errorf("can't decode account.wallPapersNotModified#1c199183 to nil")
		tl_account_wall_papers_gen.go#L126: 		return fmt.Errorf("unable to decode account.wallPapersNotModified#1c199183: %w", err)
		tl_account_wall_papers_gen.go#L134: 		return fmt.Errorf("can't decode account.wallPapersNotModified#1c199183 to nil")
		tl_account_wall_papers_gen.go#L245: 		return fmt.Errorf("can't encode account.wallPapers#cdc3858c as nil")
		tl_account_wall_papers_gen.go#L254: 		return fmt.Errorf("can't encode account.wallPapers#cdc3858c as nil")
		tl_account_wall_papers_gen.go#L260: 			return fmt.Errorf("unable to encode account.wallPapers#cdc3858c: field wallpapers element with index %d is nil", idx)
		tl_account_wall_papers_gen.go#L263: 			return fmt.Errorf("unable to encode account.wallPapers#cdc3858c: field wallpapers element with index %d: %w", idx, err)
		tl_account_wall_papers_gen.go#L272: 		return fmt.Errorf("can't decode account.wallPapers#cdc3858c to nil")
		tl_account_wall_papers_gen.go#L275: 		return fmt.Errorf("unable to decode account.wallPapers#cdc3858c: %w", err)
		tl_account_wall_papers_gen.go#L283: 		return fmt.Errorf("can't decode account.wallPapers#cdc3858c to nil")
		tl_account_wall_papers_gen.go#L288: 			return fmt.Errorf("unable to decode account.wallPapers#cdc3858c: field hash: %w", err)
		tl_account_wall_papers_gen.go#L295: 			return fmt.Errorf("unable to decode account.wallPapers#cdc3858c: field wallpapers: %w", err)
		tl_account_wall_papers_gen.go#L304: 				return fmt.Errorf("unable to decode account.wallPapers#cdc3858c: field wallpapers: %w", err)
		tl_account_wall_papers_gen.go#L394: 			return nil, fmt.Errorf("unable to decode AccountWallPapersClass: %w", err)
		tl_account_wall_papers_gen.go#L401: 			return nil, fmt.Errorf("unable to decode AccountWallPapersClass: %w", err)
		tl_account_wall_papers_gen.go#L405: 		return nil, fmt.Errorf("unable to decode AccountWallPapersClass: %w", bin.NewUnexpectedID(id))
		tl_account_wall_papers_gen.go#L417: 		return fmt.Errorf("unable to decode AccountWallPapersBox to nil")
		tl_account_wall_papers_gen.go#L421: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_account_wall_papers_gen.go#L430: 		return fmt.Errorf("unable to encode AccountWallPapersClass as nil")
		tl_account_web_authorizations_gen.go#L126: 		return fmt.Errorf("can't encode account.webAuthorizations#ed56c9fc as nil")
		tl_account_web_authorizations_gen.go#L135: 		return fmt.Errorf("can't encode account.webAuthorizations#ed56c9fc as nil")
		tl_account_web_authorizations_gen.go#L140: 			return fmt.Errorf("unable to encode account.webAuthorizations#ed56c9fc: field authorizations element with index %d: %w", idx, err)
		tl_account_web_authorizations_gen.go#L146: 			return fmt.Errorf("unable to encode account.webAuthorizations#ed56c9fc: field users element with index %d is nil", idx)
		tl_account_web_authorizations_gen.go#L149: 			return fmt.Errorf("unable to encode account.webAuthorizations#ed56c9fc: field users element with index %d: %w", idx, err)
		tl_account_web_authorizations_gen.go#L158: 		return fmt.Errorf("can't decode account.webAuthorizations#ed56c9fc to nil")
		tl_account_web_authorizations_gen.go#L161: 		return fmt.Errorf("unable to decode account.webAuthorizations#ed56c9fc: %w", err)
		tl_account_web_authorizations_gen.go#L169: 		return fmt.Errorf("can't decode account.webAuthorizations#ed56c9fc to nil")
		tl_account_web_authorizations_gen.go#L174: 			return fmt.Errorf("unable to decode account.webAuthorizations#ed56c9fc: field authorizations: %w", err)
		tl_account_web_authorizations_gen.go#L183: 				return fmt.Errorf("unable to decode account.webAuthorizations#ed56c9fc: field authorizations: %w", err)
		tl_account_web_authorizations_gen.go#L191: 			return fmt.Errorf("unable to decode account.webAuthorizations#ed56c9fc: field users: %w", err)
		tl_account_web_authorizations_gen.go#L200: 				return fmt.Errorf("unable to decode account.webAuthorizations#ed56c9fc: field users: %w", err)
		tl_app_web_view_result_url_gen.go#L118: 		return fmt.Errorf("can't encode appWebViewResultUrl#3c1b4f0d as nil")
		tl_app_web_view_result_url_gen.go#L127: 		return fmt.Errorf("can't encode appWebViewResultUrl#3c1b4f0d as nil")
		tl_app_web_view_result_url_gen.go#L136: 		return fmt.Errorf("can't decode appWebViewResultUrl#3c1b4f0d to nil")
		tl_app_web_view_result_url_gen.go#L139: 		return fmt.Errorf("unable to decode appWebViewResultUrl#3c1b4f0d: %w", err)
		tl_app_web_view_result_url_gen.go#L147: 		return fmt.Errorf("can't decode appWebViewResultUrl#3c1b4f0d to nil")
		tl_app_web_view_result_url_gen.go#L152: 			return fmt.Errorf("unable to decode appWebViewResultUrl#3c1b4f0d: field url: %w", err)
		tl_attach_menu_bot_gen.go#L278: 		return fmt.Errorf("can't encode attachMenuBot#d90d8dfe as nil")
		tl_attach_menu_bot_gen.go#L287: 		return fmt.Errorf("can't encode attachMenuBot#d90d8dfe as nil")
		tl_attach_menu_bot_gen.go#L291: 		return fmt.Errorf("unable to encode attachMenuBot#d90d8dfe: field flags: %w", err)
		tl_attach_menu_bot_gen.go#L299: 				return fmt.Errorf("unable to encode attachMenuBot#d90d8dfe: field peer_types element with index %d is nil", idx)
		tl_attach_menu_bot_gen.go#L302: 				return fmt.Errorf("unable to encode attachMenuBot#d90d8dfe: field peer_types element with index %d: %w", idx, err)
		tl_attach_menu_bot_gen.go#L309: 			return fmt.Errorf("unable to encode attachMenuBot#d90d8dfe: field icons element with index %d: %w", idx, err)
		tl_attach_menu_bot_gen.go#L318: 		return fmt.Errorf("can't decode attachMenuBot#d90d8dfe to nil")
		tl_attach_menu_bot_gen.go#L321: 		return fmt.Errorf("unable to decode attachMenuBot#d90d8dfe: %w", err)
		tl_attach_menu_bot_gen.go#L329: 		return fmt.Errorf("can't decode attachMenuBot#d90d8dfe to nil")
		tl_attach_menu_bot_gen.go#L333: 			return fmt.Errorf("unable to decode attachMenuBot#d90d8dfe: field flags: %w", err)
		tl_attach_menu_bot_gen.go#L345: 			return fmt.Errorf("unable to decode attachMenuBot#d90d8dfe: field bot_id: %w", err)
		tl_attach_menu_bot_gen.go#L352: 			return fmt.Errorf("unable to decode attachMenuBot#d90d8dfe: field short_name: %w", err)
		tl_attach_menu_bot_gen.go#L359: 			return fmt.Errorf("unable to decode attachMenuBot#d90d8dfe: field peer_types: %w", err)
		tl_attach_menu_bot_gen.go#L368: 				return fmt.Errorf("unable to decode attachMenuBot#d90d8dfe: field peer_types: %w", err)
		tl_attach_menu_bot_gen.go#L376: 			return fmt.Errorf("unable to decode attachMenuBot#d90d8dfe: field icons: %w", err)
		tl_attach_menu_bot_gen.go#L385: 				return fmt.Errorf("unable to decode attachMenuBot#d90d8dfe: field icons: %w", err)
		tl_attach_menu_bot_icon_color_gen.go#L132: 		return fmt.Errorf("can't encode attachMenuBotIconColor#4576f3f0 as nil")
		tl_attach_menu_bot_icon_color_gen.go#L141: 		return fmt.Errorf("can't encode attachMenuBotIconColor#4576f3f0 as nil")
		tl_attach_menu_bot_icon_color_gen.go#L151: 		return fmt.Errorf("can't decode attachMenuBotIconColor#4576f3f0 to nil")
		tl_attach_menu_bot_icon_color_gen.go#L154: 		return fmt.Errorf("unable to decode attachMenuBotIconColor#4576f3f0: %w", err)
		tl_attach_menu_bot_icon_color_gen.go#L162: 		return fmt.Errorf("can't decode attachMenuBotIconColor#4576f3f0 to nil")
		tl_attach_menu_bot_icon_color_gen.go#L167: 			return fmt.Errorf("unable to decode attachMenuBotIconColor#4576f3f0: field name: %w", err)
		tl_attach_menu_bot_icon_color_gen.go#L174: 			return fmt.Errorf("unable to decode attachMenuBotIconColor#4576f3f0: field color: %w", err)
		tl_attach_menu_bot_icon_gen.go#L171: 		return fmt.Errorf("can't encode attachMenuBotIcon#b2a7386b as nil")
		tl_attach_menu_bot_icon_gen.go#L180: 		return fmt.Errorf("can't encode attachMenuBotIcon#b2a7386b as nil")
		tl_attach_menu_bot_icon_gen.go#L184: 		return fmt.Errorf("unable to encode attachMenuBotIcon#b2a7386b: field flags: %w", err)
		tl_attach_menu_bot_icon_gen.go#L188: 		return fmt.Errorf("unable to encode attachMenuBotIcon#b2a7386b: field icon is nil")
		tl_attach_menu_bot_icon_gen.go#L191: 		return fmt.Errorf("unable to encode attachMenuBotIcon#b2a7386b: field icon: %w", err)
		tl_attach_menu_bot_icon_gen.go#L197: 				return fmt.Errorf("unable to encode attachMenuBotIcon#b2a7386b: field colors element with index %d: %w", idx, err)
		tl_attach_menu_bot_icon_gen.go#L207: 		return fmt.Errorf("can't decode attachMenuBotIcon#b2a7386b to nil")
		tl_attach_menu_bot_icon_gen.go#L210: 		return fmt.Errorf("unable to decode attachMenuBotIcon#b2a7386b: %w", err)
		tl_attach_menu_bot_icon_gen.go#L218: 		return fmt.Errorf("can't decode attachMenuBotIcon#b2a7386b to nil")
		tl_attach_menu_bot_icon_gen.go#L222: 			return fmt.Errorf("unable to decode attachMenuBotIcon#b2a7386b: field flags: %w", err)
		tl_attach_menu_bot_icon_gen.go#L228: 			return fmt.Errorf("unable to decode attachMenuBotIcon#b2a7386b: field name: %w", err)
		tl_attach_menu_bot_icon_gen.go#L235: 			return fmt.Errorf("unable to decode attachMenuBotIcon#b2a7386b: field icon: %w", err)
		tl_attach_menu_bot_icon_gen.go#L242: 			return fmt.Errorf("unable to decode attachMenuBotIcon#b2a7386b: field colors: %w", err)
		tl_attach_menu_bot_icon_gen.go#L251: 				return fmt.Errorf("unable to decode attachMenuBotIcon#b2a7386b: field colors: %w", err)
		tl_attach_menu_bots_bot_gen.go#L132: 		return fmt.Errorf("can't encode attachMenuBotsBot#93bf667f as nil")
		tl_attach_menu_bots_bot_gen.go#L141: 		return fmt.Errorf("can't encode attachMenuBotsBot#93bf667f as nil")
		tl_attach_menu_bots_bot_gen.go#L144: 		return fmt.Errorf("unable to encode attachMenuBotsBot#93bf667f: field bot: %w", err)
		tl_attach_menu_bots_bot_gen.go#L149: 			return fmt.Errorf("unable to encode attachMenuBotsBot#93bf667f: field users element with index %d is nil", idx)
		tl_attach_menu_bots_bot_gen.go#L152: 			return fmt.Errorf("unable to encode attachMenuBotsBot#93bf667f: field users element with index %d: %w", idx, err)
		tl_attach_menu_bots_bot_gen.go#L161: 		return fmt.Errorf("can't decode attachMenuBotsBot#93bf667f to nil")
		tl_attach_menu_bots_bot_gen.go#L164: 		return fmt.Errorf("unable to decode attachMenuBotsBot#93bf667f: %w", err)
		tl_attach_menu_bots_bot_gen.go#L172: 		return fmt.Errorf("can't decode attachMenuBotsBot#93bf667f to nil")
		tl_attach_menu_bots_bot_gen.go#L176: 			return fmt.Errorf("unable to decode attachMenuBotsBot#93bf667f: field bot: %w", err)
		tl_attach_menu_bots_bot_gen.go#L182: 			return fmt.Errorf("unable to decode attachMenuBotsBot#93bf667f: field users: %w", err)
		tl_attach_menu_bots_bot_gen.go#L191: 				return fmt.Errorf("unable to decode attachMenuBotsBot#93bf667f: field users: %w", err)
		tl_attach_menu_bots_gen.go#L103: 		return fmt.Errorf("can't encode attachMenuBotsNotModified#f1d88a5c as nil")
		tl_attach_menu_bots_gen.go#L112: 		return fmt.Errorf("can't encode attachMenuBotsNotModified#f1d88a5c as nil")
		tl_attach_menu_bots_gen.go#L120: 		return fmt.Errorf("can't decode attachMenuBotsNotModified#f1d88a5c to nil")
		tl_attach_menu_bots_gen.go#L123: 		return fmt.Errorf("unable to decode attachMenuBotsNotModified#f1d88a5c: %w", err)
		tl_attach_menu_bots_gen.go#L131: 		return fmt.Errorf("can't decode attachMenuBotsNotModified#f1d88a5c to nil")
		tl_attach_menu_bots_gen.go#L253: 		return fmt.Errorf("can't encode attachMenuBots#3c4301c0 as nil")
		tl_attach_menu_bots_gen.go#L262: 		return fmt.Errorf("can't encode attachMenuBots#3c4301c0 as nil")
		tl_attach_menu_bots_gen.go#L268: 			return fmt.Errorf("unable to encode attachMenuBots#3c4301c0: field bots element with index %d: %w", idx, err)
		tl_attach_menu_bots_gen.go#L274: 			return fmt.Errorf("unable to encode attachMenuBots#3c4301c0: field users element with index %d is nil", idx)
		tl_attach_menu_bots_gen.go#L277: 			return fmt.Errorf("unable to encode attachMenuBots#3c4301c0: field users element with index %d: %w", idx, err)
		tl_attach_menu_bots_gen.go#L286: 		return fmt.Errorf("can't decode attachMenuBots#3c4301c0 to nil")
		tl_attach_menu_bots_gen.go#L289: 		return fmt.Errorf("unable to decode attachMenuBots#3c4301c0: %w", err)
		tl_attach_menu_bots_gen.go#L297: 		return fmt.Errorf("can't decode attachMenuBots#3c4301c0 to nil")
		tl_attach_menu_bots_gen.go#L302: 			return fmt.Errorf("unable to decode attachMenuBots#3c4301c0: field hash: %w", err)
		tl_attach_menu_bots_gen.go#L309: 			return fmt.Errorf("unable to decode attachMenuBots#3c4301c0: field bots: %w", err)
		tl_attach_menu_bots_gen.go#L318: 				return fmt.Errorf("unable to decode attachMenuBots#3c4301c0: field bots: %w", err)
		tl_attach_menu_bots_gen.go#L326: 			return fmt.Errorf("unable to decode attachMenuBots#3c4301c0: field users: %w", err)
		tl_attach_menu_bots_gen.go#L335: 				return fmt.Errorf("unable to decode attachMenuBots#3c4301c0: field users: %w", err)
		tl_attach_menu_bots_gen.go#L433: 			return nil, fmt.Errorf("unable to decode AttachMenuBotsClass: %w", err)
		tl_attach_menu_bots_gen.go#L440: 			return nil, fmt.Errorf("unable to decode AttachMenuBotsClass: %w", err)
		tl_attach_menu_bots_gen.go#L444: 		return nil, fmt.Errorf("unable to decode AttachMenuBotsClass: %w", bin.NewUnexpectedID(id))
		tl_attach_menu_bots_gen.go#L456: 		return fmt.Errorf("unable to decode AttachMenuBotsBox to nil")
		tl_attach_menu_bots_gen.go#L460: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_attach_menu_bots_gen.go#L469: 		return fmt.Errorf("unable to encode AttachMenuBotsClass as nil")
		tl_attach_menu_peer_type_gen.go#L103: 		return fmt.Errorf("can't encode attachMenuPeerTypeSameBotPM#7d6be90e as nil")
		tl_attach_menu_peer_type_gen.go#L112: 		return fmt.Errorf("can't encode attachMenuPeerTypeSameBotPM#7d6be90e as nil")
		tl_attach_menu_peer_type_gen.go#L120: 		return fmt.Errorf("can't decode attachMenuPeerTypeSameBotPM#7d6be90e to nil")
		tl_attach_menu_peer_type_gen.go#L123: 		return fmt.Errorf("unable to decode attachMenuPeerTypeSameBotPM#7d6be90e: %w", err)
		tl_attach_menu_peer_type_gen.go#L131: 		return fmt.Errorf("can't decode attachMenuPeerTypeSameBotPM#7d6be90e to nil")
		tl_attach_menu_peer_type_gen.go#L206: 		return fmt.Errorf("can't encode attachMenuPeerTypeBotPM#c32bfa1a as nil")
		tl_attach_menu_peer_type_gen.go#L215: 		return fmt.Errorf("can't encode attachMenuPeerTypeBotPM#c32bfa1a as nil")
		tl_attach_menu_peer_type_gen.go#L223: 		return fmt.Errorf("can't decode attachMenuPeerTypeBotPM#c32bfa1a to nil")
		tl_attach_menu_peer_type_gen.go#L226: 		return fmt.Errorf("unable to decode attachMenuPeerTypeBotPM#c32bfa1a: %w", err)
		tl_attach_menu_peer_type_gen.go#L234: 		return fmt.Errorf("can't decode attachMenuPeerTypeBotPM#c32bfa1a to nil")
		tl_attach_menu_peer_type_gen.go#L309: 		return fmt.Errorf("can't encode attachMenuPeerTypePM#f146d31f as nil")
		tl_attach_menu_peer_type_gen.go#L318: 		return fmt.Errorf("can't encode attachMenuPeerTypePM#f146d31f as nil")
		tl_attach_menu_peer_type_gen.go#L326: 		return fmt.Errorf("can't decode attachMenuPeerTypePM#f146d31f to nil")
		tl_attach_menu_peer_type_gen.go#L329: 		return fmt.Errorf("unable to decode attachMenuPeerTypePM#f146d31f: %w", err)
		tl_attach_menu_peer_type_gen.go#L337: 		return fmt.Errorf("can't decode attachMenuPeerTypePM#f146d31f to nil")
		tl_attach_menu_peer_type_gen.go#L414: 		return fmt.Errorf("can't encode attachMenuPeerTypeChat#509113f as nil")
		tl_attach_menu_peer_type_gen.go#L423: 		return fmt.Errorf("can't encode attachMenuPeerTypeChat#509113f as nil")
		tl_attach_menu_peer_type_gen.go#L431: 		return fmt.Errorf("can't decode attachMenuPeerTypeChat#509113f to nil")
		tl_attach_menu_peer_type_gen.go#L434: 		return fmt.Errorf("unable to decode attachMenuPeerTypeChat#509113f: %w", err)
		tl_attach_menu_peer_type_gen.go#L442: 		return fmt.Errorf("can't decode attachMenuPeerTypeChat#509113f to nil")
		tl_attach_menu_peer_type_gen.go#L516: 		return fmt.Errorf("can't encode attachMenuPeerTypeBroadcast#7bfbdefc as nil")
		tl_attach_menu_peer_type_gen.go#L525: 		return fmt.Errorf("can't encode attachMenuPeerTypeBroadcast#7bfbdefc as nil")
		tl_attach_menu_peer_type_gen.go#L533: 		return fmt.Errorf("can't decode attachMenuPeerTypeBroadcast#7bfbdefc to nil")
		tl_attach_menu_peer_type_gen.go#L536: 		return fmt.Errorf("unable to decode attachMenuPeerTypeBroadcast#7bfbdefc: %w", err)
		tl_attach_menu_peer_type_gen.go#L544: 		return fmt.Errorf("can't decode attachMenuPeerTypeBroadcast#7bfbdefc to nil")
		tl_attach_menu_peer_type_gen.go#L600: 			return nil, fmt.Errorf("unable to decode AttachMenuPeerTypeClass: %w", err)
		tl_attach_menu_peer_type_gen.go#L607: 			return nil, fmt.Errorf("unable to decode AttachMenuPeerTypeClass: %w", err)
		tl_attach_menu_peer_type_gen.go#L614: 			return nil, fmt.Errorf("unable to decode AttachMenuPeerTypeClass: %w", err)
		tl_attach_menu_peer_type_gen.go#L621: 			return nil, fmt.Errorf("unable to decode AttachMenuPeerTypeClass: %w", err)
		tl_attach_menu_peer_type_gen.go#L628: 			return nil, fmt.Errorf("unable to decode AttachMenuPeerTypeClass: %w", err)
		tl_attach_menu_peer_type_gen.go#L632: 		return nil, fmt.Errorf("unable to decode AttachMenuPeerTypeClass: %w", bin.NewUnexpectedID(id))
		tl_attach_menu_peer_type_gen.go#L644: 		return fmt.Errorf("unable to decode AttachMenuPeerTypeBox to nil")
		tl_attach_menu_peer_type_gen.go#L648: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_attach_menu_peer_type_gen.go#L657: 		return fmt.Errorf("unable to encode AttachMenuPeerTypeClass as nil")
		tl_auth_accept_login_token_gen.go#L123: 		return fmt.Errorf("can't encode auth.acceptLoginToken#e894ad4d as nil")
		tl_auth_accept_login_token_gen.go#L132: 		return fmt.Errorf("can't encode auth.acceptLoginToken#e894ad4d as nil")
		tl_auth_accept_login_token_gen.go#L141: 		return fmt.Errorf("can't decode auth.acceptLoginToken#e894ad4d to nil")
		tl_auth_accept_login_token_gen.go#L144: 		return fmt.Errorf("unable to decode auth.acceptLoginToken#e894ad4d: %w", err)
		tl_auth_accept_login_token_gen.go#L152: 		return fmt.Errorf("can't decode auth.acceptLoginToken#e894ad4d to nil")
		tl_auth_accept_login_token_gen.go#L157: 			return fmt.Errorf("unable to decode auth.acceptLoginToken#e894ad4d: field token: %w", err)
		tl_auth_authorization_gen.go#L215: 		return fmt.Errorf("can't encode auth.authorization#2ea2c0d4 as nil")
		tl_auth_authorization_gen.go#L224: 		return fmt.Errorf("can't encode auth.authorization#2ea2c0d4 as nil")
		tl_auth_authorization_gen.go#L228: 		return fmt.Errorf("unable to encode auth.authorization#2ea2c0d4: field flags: %w", err)
		tl_auth_authorization_gen.go#L240: 		return fmt.Errorf("unable to encode auth.authorization#2ea2c0d4: field user is nil")
		tl_auth_authorization_gen.go#L243: 		return fmt.Errorf("unable to encode auth.authorization#2ea2c0d4: field user: %w", err)
		tl_auth_authorization_gen.go#L251: 		return fmt.Errorf("can't decode auth.authorization#2ea2c0d4 to nil")
		tl_auth_authorization_gen.go#L254: 		return fmt.Errorf("unable to decode auth.authorization#2ea2c0d4: %w", err)
		tl_auth_authorization_gen.go#L262: 		return fmt.Errorf("can't decode auth.authorization#2ea2c0d4 to nil")
		tl_auth_authorization_gen.go#L266: 			return fmt.Errorf("unable to decode auth.authorization#2ea2c0d4: field flags: %w", err)
		tl_auth_authorization_gen.go#L273: 			return fmt.Errorf("unable to decode auth.authorization#2ea2c0d4: field otherwise_relogin_days: %w", err)
		tl_auth_authorization_gen.go#L280: 			return fmt.Errorf("unable to decode auth.authorization#2ea2c0d4: field tmp_sessions: %w", err)
		tl_auth_authorization_gen.go#L287: 			return fmt.Errorf("unable to decode auth.authorization#2ea2c0d4: field future_auth_token: %w", err)
		tl_auth_authorization_gen.go#L294: 			return fmt.Errorf("unable to decode auth.authorization#2ea2c0d4: field user: %w", err)
		tl_auth_authorization_gen.go#L494: 		return fmt.Errorf("can't encode auth.authorizationSignUpRequired#44747e9a as nil")
		tl_auth_authorization_gen.go#L503: 		return fmt.Errorf("can't encode auth.authorizationSignUpRequired#44747e9a as nil")
		tl_auth_authorization_gen.go#L507: 		return fmt.Errorf("unable to encode auth.authorizationSignUpRequired#44747e9a: field flags: %w", err)
		tl_auth_authorization_gen.go#L511: 			return fmt.Errorf("unable to encode auth.authorizationSignUpRequired#44747e9a: field terms_of_service: %w", err)
		tl_auth_authorization_gen.go#L520: 		return fmt.Errorf("can't decode auth.authorizationSignUpRequired#44747e9a to nil")
		tl_auth_authorization_gen.go#L523: 		return fmt.Errorf("unable to decode auth.authorizationSignUpRequired#44747e9a: %w", err)
		tl_auth_authorization_gen.go#L531: 		return fmt.Errorf("can't decode auth.authorizationSignUpRequired#44747e9a to nil")
		tl_auth_authorization_gen.go#L535: 			return fmt.Errorf("unable to decode auth.authorizationSignUpRequired#44747e9a: field flags: %w", err)
		tl_auth_authorization_gen.go#L540: 			return fmt.Errorf("unable to decode auth.authorizationSignUpRequired#44747e9a: field terms_of_service: %w", err)
		tl_auth_authorization_gen.go#L612: 			return nil, fmt.Errorf("unable to decode AuthAuthorizationClass: %w", err)
		tl_auth_authorization_gen.go#L619: 			return nil, fmt.Errorf("unable to decode AuthAuthorizationClass: %w", err)
		tl_auth_authorization_gen.go#L623: 		return nil, fmt.Errorf("unable to decode AuthAuthorizationClass: %w", bin.NewUnexpectedID(id))
		tl_auth_authorization_gen.go#L635: 		return fmt.Errorf("unable to decode AuthAuthorizationBox to nil")
		tl_auth_authorization_gen.go#L639: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_auth_authorization_gen.go#L648: 		return fmt.Errorf("unable to encode AuthAuthorizationClass as nil")
		tl_auth_bind_temp_auth_key_gen.go#L163: 		return fmt.Errorf("can't encode auth.bindTempAuthKey#cdd42a05 as nil")
		tl_auth_bind_temp_auth_key_gen.go#L172: 		return fmt.Errorf("can't encode auth.bindTempAuthKey#cdd42a05 as nil")
		tl_auth_bind_temp_auth_key_gen.go#L184: 		return fmt.Errorf("can't decode auth.bindTempAuthKey#cdd42a05 to nil")
		tl_auth_bind_temp_auth_key_gen.go#L187: 		return fmt.Errorf("unable to decode auth.bindTempAuthKey#cdd42a05: %w", err)
		tl_auth_bind_temp_auth_key_gen.go#L195: 		return fmt.Errorf("can't decode auth.bindTempAuthKey#cdd42a05 to nil")
		tl_auth_bind_temp_auth_key_gen.go#L200: 			return fmt.Errorf("unable to decode auth.bindTempAuthKey#cdd42a05: field perm_auth_key_id: %w", err)
		tl_auth_bind_temp_auth_key_gen.go#L207: 			return fmt.Errorf("unable to decode auth.bindTempAuthKey#cdd42a05: field nonce: %w", err)
		tl_auth_bind_temp_auth_key_gen.go#L214: 			return fmt.Errorf("unable to decode auth.bindTempAuthKey#cdd42a05: field expires_at: %w", err)
		tl_auth_bind_temp_auth_key_gen.go#L221: 			return fmt.Errorf("unable to decode auth.bindTempAuthKey#cdd42a05: field encrypted_message: %w", err)
		tl_auth_cancel_code_gen.go#L129: 		return fmt.Errorf("can't encode auth.cancelCode#1f040578 as nil")
		tl_auth_cancel_code_gen.go#L138: 		return fmt.Errorf("can't encode auth.cancelCode#1f040578 as nil")
		tl_auth_cancel_code_gen.go#L148: 		return fmt.Errorf("can't decode auth.cancelCode#1f040578 to nil")
		tl_auth_cancel_code_gen.go#L151: 		return fmt.Errorf("unable to decode auth.cancelCode#1f040578: %w", err)
		tl_auth_cancel_code_gen.go#L159: 		return fmt.Errorf("can't decode auth.cancelCode#1f040578 to nil")
		tl_auth_cancel_code_gen.go#L164: 			return fmt.Errorf("unable to decode auth.cancelCode#1f040578: field phone_number: %w", err)
		tl_auth_cancel_code_gen.go#L171: 			return fmt.Errorf("unable to decode auth.cancelCode#1f040578: field phone_code_hash: %w", err)
		tl_auth_check_password_gen.go#L121: 		return fmt.Errorf("can't encode auth.checkPassword#d18b4d16 as nil")
		tl_auth_check_password_gen.go#L130: 		return fmt.Errorf("can't encode auth.checkPassword#d18b4d16 as nil")
		tl_auth_check_password_gen.go#L133: 		return fmt.Errorf("unable to encode auth.checkPassword#d18b4d16: field password is nil")
		tl_auth_check_password_gen.go#L136: 		return fmt.Errorf("unable to encode auth.checkPassword#d18b4d16: field password: %w", err)
		tl_auth_check_password_gen.go#L144: 		return fmt.Errorf("can't decode auth.checkPassword#d18b4d16 to nil")
		tl_auth_check_password_gen.go#L147: 		return fmt.Errorf("unable to decode auth.checkPassword#d18b4d16: %w", err)
		tl_auth_check_password_gen.go#L155: 		return fmt.Errorf("can't decode auth.checkPassword#d18b4d16 to nil")
		tl_auth_check_password_gen.go#L160: 			return fmt.Errorf("unable to decode auth.checkPassword#d18b4d16: field password: %w", err)
		tl_auth_check_recovery_password_gen.go#L121: 		return fmt.Errorf("can't encode auth.checkRecoveryPassword#d36bf79 as nil")
		tl_auth_check_recovery_password_gen.go#L130: 		return fmt.Errorf("can't encode auth.checkRecoveryPassword#d36bf79 as nil")
		tl_auth_check_recovery_password_gen.go#L139: 		return fmt.Errorf("can't decode auth.checkRecoveryPassword#d36bf79 to nil")
		tl_auth_check_recovery_password_gen.go#L142: 		return fmt.Errorf("unable to decode auth.checkRecoveryPassword#d36bf79: %w", err)
		tl_auth_check_recovery_password_gen.go#L150: 		return fmt.Errorf("can't decode auth.checkRecoveryPassword#d36bf79 to nil")
		tl_auth_check_recovery_password_gen.go#L155: 			return fmt.Errorf("unable to decode auth.checkRecoveryPassword#d36bf79: field code: %w", err)
		tl_auth_code_type_gen.go#L104: 		return fmt.Errorf("can't encode auth.codeTypeSms#72a3158c as nil")
		tl_auth_code_type_gen.go#L113: 		return fmt.Errorf("can't encode auth.codeTypeSms#72a3158c as nil")
		tl_auth_code_type_gen.go#L121: 		return fmt.Errorf("can't decode auth.codeTypeSms#72a3158c to nil")
		tl_auth_code_type_gen.go#L124: 		return fmt.Errorf("unable to decode auth.codeTypeSms#72a3158c: %w", err)
		tl_auth_code_type_gen.go#L132: 		return fmt.Errorf("can't decode auth.codeTypeSms#72a3158c to nil")
		tl_auth_code_type_gen.go#L206: 		return fmt.Errorf("can't encode auth.codeTypeCall#741cd3e3 as nil")
		tl_auth_code_type_gen.go#L215: 		return fmt.Errorf("can't encode auth.codeTypeCall#741cd3e3 as nil")
		tl_auth_code_type_gen.go#L223: 		return fmt.Errorf("can't decode auth.codeTypeCall#741cd3e3 to nil")
		tl_auth_code_type_gen.go#L226: 		return fmt.Errorf("unable to decode auth.codeTypeCall#741cd3e3: %w", err)
		tl_auth_code_type_gen.go#L234: 		return fmt.Errorf("can't decode auth.codeTypeCall#741cd3e3 to nil")
		tl_auth_code_type_gen.go#L309: 		return fmt.Errorf("can't encode auth.codeTypeFlashCall#226ccefb as nil")
		tl_auth_code_type_gen.go#L318: 		return fmt.Errorf("can't encode auth.codeTypeFlashCall#226ccefb as nil")
		tl_auth_code_type_gen.go#L326: 		return fmt.Errorf("can't decode auth.codeTypeFlashCall#226ccefb to nil")
		tl_auth_code_type_gen.go#L329: 		return fmt.Errorf("unable to decode auth.codeTypeFlashCall#226ccefb: %w", err)
		tl_auth_code_type_gen.go#L337: 		return fmt.Errorf("can't decode auth.codeTypeFlashCall#226ccefb to nil")
		tl_auth_code_type_gen.go#L412: 		return fmt.Errorf("can't encode auth.codeTypeMissedCall#d61ad6ee as nil")
		tl_auth_code_type_gen.go#L421: 		return fmt.Errorf("can't encode auth.codeTypeMissedCall#d61ad6ee as nil")
		tl_auth_code_type_gen.go#L429: 		return fmt.Errorf("can't decode auth.codeTypeMissedCall#d61ad6ee to nil")
		tl_auth_code_type_gen.go#L432: 		return fmt.Errorf("unable to decode auth.codeTypeMissedCall#d61ad6ee: %w", err)
		tl_auth_code_type_gen.go#L440: 		return fmt.Errorf("can't decode auth.codeTypeMissedCall#d61ad6ee to nil")
		tl_auth_code_type_gen.go#L517: 		return fmt.Errorf("can't encode auth.codeTypeFragmentSms#6ed998c as nil")
		tl_auth_code_type_gen.go#L526: 		return fmt.Errorf("can't encode auth.codeTypeFragmentSms#6ed998c as nil")
		tl_auth_code_type_gen.go#L534: 		return fmt.Errorf("can't decode auth.codeTypeFragmentSms#6ed998c to nil")
		tl_auth_code_type_gen.go#L537: 		return fmt.Errorf("unable to decode auth.codeTypeFragmentSms#6ed998c: %w", err)
		tl_auth_code_type_gen.go#L545: 		return fmt.Errorf("can't decode auth.codeTypeFragmentSms#6ed998c to nil")
		tl_auth_code_type_gen.go#L601: 			return nil, fmt.Errorf("unable to decode AuthCodeTypeClass: %w", err)
		tl_auth_code_type_gen.go#L608: 			return nil, fmt.Errorf("unable to decode AuthCodeTypeClass: %w", err)
		tl_auth_code_type_gen.go#L615: 			return nil, fmt.Errorf("unable to decode AuthCodeTypeClass: %w", err)
		tl_auth_code_type_gen.go#L622: 			return nil, fmt.Errorf("unable to decode AuthCodeTypeClass: %w", err)
		tl_auth_code_type_gen.go#L629: 			return nil, fmt.Errorf("unable to decode AuthCodeTypeClass: %w", err)
		tl_auth_code_type_gen.go#L633: 		return nil, fmt.Errorf("unable to decode AuthCodeTypeClass: %w", bin.NewUnexpectedID(id))
		tl_auth_code_type_gen.go#L645: 		return fmt.Errorf("unable to decode AuthCodeTypeBox to nil")
		tl_auth_code_type_gen.go#L649: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_auth_code_type_gen.go#L658: 		return fmt.Errorf("unable to encode AuthCodeTypeClass as nil")
		tl_auth_drop_temp_auth_keys_gen.go#L115: 		return fmt.Errorf("can't encode auth.dropTempAuthKeys#8e48a188 as nil")
		tl_auth_drop_temp_auth_keys_gen.go#L124: 		return fmt.Errorf("can't encode auth.dropTempAuthKeys#8e48a188 as nil")
		tl_auth_drop_temp_auth_keys_gen.go#L136: 		return fmt.Errorf("can't decode auth.dropTempAuthKeys#8e48a188 to nil")
		tl_auth_drop_temp_auth_keys_gen.go#L139: 		return fmt.Errorf("unable to decode auth.dropTempAuthKeys#8e48a188: %w", err)
		tl_auth_drop_temp_auth_keys_gen.go#L147: 		return fmt.Errorf("can't decode auth.dropTempAuthKeys#8e48a188 to nil")
		tl_auth_drop_temp_auth_keys_gen.go#L152: 			return fmt.Errorf("unable to decode auth.dropTempAuthKeys#8e48a188: field except_auth_keys: %w", err)
		tl_auth_drop_temp_auth_keys_gen.go#L161: 				return fmt.Errorf("unable to decode auth.dropTempAuthKeys#8e48a188: field except_auth_keys: %w", err)
		tl_auth_export_authorization_gen.go#L115: 		return fmt.Errorf("can't encode auth.exportAuthorization#e5bfffcd as nil")
		tl_auth_export_authorization_gen.go#L124: 		return fmt.Errorf("can't encode auth.exportAuthorization#e5bfffcd as nil")
		tl_auth_export_authorization_gen.go#L133: 		return fmt.Errorf("can't decode auth.exportAuthorization#e5bfffcd to nil")
		tl_auth_export_authorization_gen.go#L136: 		return fmt.Errorf("unable to decode auth.exportAuthorization#e5bfffcd: %w", err)
		tl_auth_export_authorization_gen.go#L144: 		return fmt.Errorf("can't decode auth.exportAuthorization#e5bfffcd to nil")
		tl_auth_export_authorization_gen.go#L149: 			return fmt.Errorf("unable to decode auth.exportAuthorization#e5bfffcd: field dc_id: %w", err)
		tl_auth_export_login_token_gen.go#L151: 		return fmt.Errorf("can't encode auth.exportLoginToken#b7e085fe as nil")
		tl_auth_export_login_token_gen.go#L160: 		return fmt.Errorf("can't encode auth.exportLoginToken#b7e085fe as nil")
		tl_auth_export_login_token_gen.go#L174: 		return fmt.Errorf("can't decode auth.exportLoginToken#b7e085fe to nil")
		tl_auth_export_login_token_gen.go#L177: 		return fmt.Errorf("unable to decode auth.exportLoginToken#b7e085fe: %w", err)
		tl_auth_export_login_token_gen.go#L185: 		return fmt.Errorf("can't decode auth.exportLoginToken#b7e085fe to nil")
		tl_auth_export_login_token_gen.go#L190: 			return fmt.Errorf("unable to decode auth.exportLoginToken#b7e085fe: field api_id: %w", err)
		tl_auth_export_login_token_gen.go#L197: 			return fmt.Errorf("unable to decode auth.exportLoginToken#b7e085fe: field api_hash: %w", err)
		tl_auth_export_login_token_gen.go#L204: 			return fmt.Errorf("unable to decode auth.exportLoginToken#b7e085fe: field except_ids: %w", err)
		tl_auth_export_login_token_gen.go#L213: 				return fmt.Errorf("unable to decode auth.exportLoginToken#b7e085fe: field except_ids: %w", err)
		tl_auth_exported_authorization_gen.go#L126: 		return fmt.Errorf("can't encode auth.exportedAuthorization#b434e2b8 as nil")
		tl_auth_exported_authorization_gen.go#L135: 		return fmt.Errorf("can't encode auth.exportedAuthorization#b434e2b8 as nil")
		tl_auth_exported_authorization_gen.go#L145: 		return fmt.Errorf("can't decode auth.exportedAuthorization#b434e2b8 to nil")
		tl_auth_exported_authorization_gen.go#L148: 		return fmt.Errorf("unable to decode auth.exportedAuthorization#b434e2b8: %w", err)
		tl_auth_exported_authorization_gen.go#L156: 		return fmt.Errorf("can't decode auth.exportedAuthorization#b434e2b8 to nil")
		tl_auth_exported_authorization_gen.go#L161: 			return fmt.Errorf("unable to decode auth.exportedAuthorization#b434e2b8: field id: %w", err)
		tl_auth_exported_authorization_gen.go#L168: 			return fmt.Errorf("unable to decode auth.exportedAuthorization#b434e2b8: field bytes: %w", err)
		tl_auth_import_authorization_gen.go#L126: 		return fmt.Errorf("can't encode auth.importAuthorization#a57a7dad as nil")
		tl_auth_import_authorization_gen.go#L135: 		return fmt.Errorf("can't encode auth.importAuthorization#a57a7dad as nil")
		tl_auth_import_authorization_gen.go#L145: 		return fmt.Errorf("can't decode auth.importAuthorization#a57a7dad to nil")
		tl_auth_import_authorization_gen.go#L148: 		return fmt.Errorf("unable to decode auth.importAuthorization#a57a7dad: %w", err)
		tl_auth_import_authorization_gen.go#L156: 		return fmt.Errorf("can't decode auth.importAuthorization#a57a7dad to nil")
		tl_auth_import_authorization_gen.go#L161: 			return fmt.Errorf("unable to decode auth.importAuthorization#a57a7dad: field id: %w", err)
		tl_auth_import_authorization_gen.go#L168: 			return fmt.Errorf("unable to decode auth.importAuthorization#a57a7dad: field bytes: %w", err)
		tl_auth_import_bot_authorization_gen.go#L157: 		return fmt.Errorf("can't encode auth.importBotAuthorization#67a3ff2c as nil")
		tl_auth_import_bot_authorization_gen.go#L166: 		return fmt.Errorf("can't encode auth.importBotAuthorization#67a3ff2c as nil")
		tl_auth_import_bot_authorization_gen.go#L178: 		return fmt.Errorf("can't decode auth.importBotAuthorization#67a3ff2c to nil")
		tl_auth_import_bot_authorization_gen.go#L181: 		return fmt.Errorf("unable to decode auth.importBotAuthorization#67a3ff2c: %w", err)
		tl_auth_import_bot_authorization_gen.go#L189: 		return fmt.Errorf("can't decode auth.importBotAuthorization#67a3ff2c to nil")
		tl_auth_import_bot_authorization_gen.go#L194: 			return fmt.Errorf("unable to decode auth.importBotAuthorization#67a3ff2c: field flags: %w", err)
		tl_auth_import_bot_authorization_gen.go#L201: 			return fmt.Errorf("unable to decode auth.importBotAuthorization#67a3ff2c: field api_id: %w", err)
		tl_auth_import_bot_authorization_gen.go#L208: 			return fmt.Errorf("unable to decode auth.importBotAuthorization#67a3ff2c: field api_hash: %w", err)
		tl_auth_import_bot_authorization_gen.go#L215: 			return fmt.Errorf("unable to decode auth.importBotAuthorization#67a3ff2c: field bot_auth_token: %w", err)
		tl_auth_import_login_token_gen.go#L121: 		return fmt.Errorf("can't encode auth.importLoginToken#95ac5ce4 as nil")
		tl_auth_import_login_token_gen.go#L130: 		return fmt.Errorf("can't encode auth.importLoginToken#95ac5ce4 as nil")
		tl_auth_import_login_token_gen.go#L139: 		return fmt.Errorf("can't decode auth.importLoginToken#95ac5ce4 to nil")
		tl_auth_import_login_token_gen.go#L142: 		return fmt.Errorf("unable to decode auth.importLoginToken#95ac5ce4: %w", err)
		tl_auth_import_login_token_gen.go#L150: 		return fmt.Errorf("can't decode auth.importLoginToken#95ac5ce4 to nil")
		tl_auth_import_login_token_gen.go#L155: 			return fmt.Errorf("unable to decode auth.importLoginToken#95ac5ce4: field token: %w", err)
		tl_auth_import_web_token_authorization_gen.go#L143: 		return fmt.Errorf("can't encode auth.importWebTokenAuthorization#2db873a9 as nil")
		tl_auth_import_web_token_authorization_gen.go#L152: 		return fmt.Errorf("can't encode auth.importWebTokenAuthorization#2db873a9 as nil")
		tl_auth_import_web_token_authorization_gen.go#L163: 		return fmt.Errorf("can't decode auth.importWebTokenAuthorization#2db873a9 to nil")
		tl_auth_import_web_token_authorization_gen.go#L166: 		return fmt.Errorf("unable to decode auth.importWebTokenAuthorization#2db873a9: %w", err)
		tl_auth_import_web_token_authorization_gen.go#L174: 		return fmt.Errorf("can't decode auth.importWebTokenAuthorization#2db873a9 to nil")
		tl_auth_import_web_token_authorization_gen.go#L179: 			return fmt.Errorf("unable to decode auth.importWebTokenAuthorization#2db873a9: field api_id: %w", err)
		tl_auth_import_web_token_authorization_gen.go#L186: 			return fmt.Errorf("unable to decode auth.importWebTokenAuthorization#2db873a9: field api_hash: %w", err)
		tl_auth_import_web_token_authorization_gen.go#L193: 			return fmt.Errorf("unable to decode auth.importWebTokenAuthorization#2db873a9: field web_auth_token: %w", err)
		tl_auth_log_out_gen.go#L98: 		return fmt.Errorf("can't encode auth.logOut#3e72ba19 as nil")
		tl_auth_log_out_gen.go#L107: 		return fmt.Errorf("can't encode auth.logOut#3e72ba19 as nil")
		tl_auth_log_out_gen.go#L115: 		return fmt.Errorf("can't decode auth.logOut#3e72ba19 to nil")
		tl_auth_log_out_gen.go#L118: 		return fmt.Errorf("unable to decode auth.logOut#3e72ba19: %w", err)
		tl_auth_log_out_gen.go#L126: 		return fmt.Errorf("can't decode auth.logOut#3e72ba19 to nil")
		tl_auth_logged_out_gen.go#L142: 		return fmt.Errorf("can't encode auth.loggedOut#c3a2835f as nil")
		tl_auth_logged_out_gen.go#L151: 		return fmt.Errorf("can't encode auth.loggedOut#c3a2835f as nil")
		tl_auth_logged_out_gen.go#L155: 		return fmt.Errorf("unable to encode auth.loggedOut#c3a2835f: field flags: %w", err)
		tl_auth_logged_out_gen.go#L166: 		return fmt.Errorf("can't decode auth.loggedOut#c3a2835f to nil")
		tl_auth_logged_out_gen.go#L169: 		return fmt.Errorf("unable to decode auth.loggedOut#c3a2835f: %w", err)
		tl_auth_logged_out_gen.go#L177: 		return fmt.Errorf("can't decode auth.loggedOut#c3a2835f to nil")
		tl_auth_logged_out_gen.go#L181: 			return fmt.Errorf("unable to decode auth.loggedOut#c3a2835f: field flags: %w", err)
		tl_auth_logged_out_gen.go#L187: 			return fmt.Errorf("unable to decode auth.loggedOut#c3a2835f: field future_auth_token: %w", err)
		tl_auth_login_token_gen.go#L134: 		return fmt.Errorf("can't encode auth.loginToken#629f1980 as nil")
		tl_auth_login_token_gen.go#L143: 		return fmt.Errorf("can't encode auth.loginToken#629f1980 as nil")
		tl_auth_login_token_gen.go#L153: 		return fmt.Errorf("can't decode auth.loginToken#629f1980 to nil")
		tl_auth_login_token_gen.go#L156: 		return fmt.Errorf("unable to decode auth.loginToken#629f1980: %w", err)
		tl_auth_login_token_gen.go#L164: 		return fmt.Errorf("can't decode auth.loginToken#629f1980 to nil")
		tl_auth_login_token_gen.go#L169: 			return fmt.Errorf("unable to decode auth.loginToken#629f1980: field expires: %w", err)
		tl_auth_login_token_gen.go#L176: 			return fmt.Errorf("unable to decode auth.loginToken#629f1980: field token: %w", err)
		tl_auth_login_token_gen.go#L296: 		return fmt.Errorf("can't encode auth.loginTokenMigrateTo#68e9916 as nil")
		tl_auth_login_token_gen.go#L305: 		return fmt.Errorf("can't encode auth.loginTokenMigrateTo#68e9916 as nil")
		tl_auth_login_token_gen.go#L315: 		return fmt.Errorf("can't decode auth.loginTokenMigrateTo#68e9916 to nil")
		tl_auth_login_token_gen.go#L318: 		return fmt.Errorf("unable to decode auth.loginTokenMigrateTo#68e9916: %w", err)
		tl_auth_login_token_gen.go#L326: 		return fmt.Errorf("can't decode auth.loginTokenMigrateTo#68e9916 to nil")
		tl_auth_login_token_gen.go#L331: 			return fmt.Errorf("unable to decode auth.loginTokenMigrateTo#68e9916: field dc_id: %w", err)
		tl_auth_login_token_gen.go#L338: 			return fmt.Errorf("unable to decode auth.loginTokenMigrateTo#68e9916: field token: %w", err)
		tl_auth_login_token_gen.go#L447: 		return fmt.Errorf("can't encode auth.loginTokenSuccess#390d5c5e as nil")
		tl_auth_login_token_gen.go#L456: 		return fmt.Errorf("can't encode auth.loginTokenSuccess#390d5c5e as nil")
		tl_auth_login_token_gen.go#L459: 		return fmt.Errorf("unable to encode auth.loginTokenSuccess#390d5c5e: field authorization is nil")
		tl_auth_login_token_gen.go#L462: 		return fmt.Errorf("unable to encode auth.loginTokenSuccess#390d5c5e: field authorization: %w", err)
		tl_auth_login_token_gen.go#L470: 		return fmt.Errorf("can't decode auth.loginTokenSuccess#390d5c5e to nil")
		tl_auth_login_token_gen.go#L473: 		return fmt.Errorf("unable to decode auth.loginTokenSuccess#390d5c5e: %w", err)
		tl_auth_login_token_gen.go#L481: 		return fmt.Errorf("can't decode auth.loginTokenSuccess#390d5c5e to nil")
		tl_auth_login_token_gen.go#L486: 			return fmt.Errorf("unable to decode auth.loginTokenSuccess#390d5c5e: field authorization: %w", err)
		tl_auth_login_token_gen.go#L550: 			return nil, fmt.Errorf("unable to decode AuthLoginTokenClass: %w", err)
		tl_auth_login_token_gen.go#L557: 			return nil, fmt.Errorf("unable to decode AuthLoginTokenClass: %w", err)
		tl_auth_login_token_gen.go#L564: 			return nil, fmt.Errorf("unable to decode AuthLoginTokenClass: %w", err)
		tl_auth_login_token_gen.go#L568: 		return nil, fmt.Errorf("unable to decode AuthLoginTokenClass: %w", bin.NewUnexpectedID(id))
		tl_auth_login_token_gen.go#L580: 		return fmt.Errorf("unable to decode AuthLoginTokenBox to nil")
		tl_auth_login_token_gen.go#L584: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_auth_login_token_gen.go#L593: 		return fmt.Errorf("unable to encode AuthLoginTokenClass as nil")
		tl_auth_password_recovery_gen.go#L123: 		return fmt.Errorf("can't encode auth.passwordRecovery#137948a5 as nil")
		tl_auth_password_recovery_gen.go#L132: 		return fmt.Errorf("can't encode auth.passwordRecovery#137948a5 as nil")
		tl_auth_password_recovery_gen.go#L141: 		return fmt.Errorf("can't decode auth.passwordRecovery#137948a5 to nil")
		tl_auth_password_recovery_gen.go#L144: 		return fmt.Errorf("unable to decode auth.passwordRecovery#137948a5: %w", err)
		tl_auth_password_recovery_gen.go#L152: 		return fmt.Errorf("can't decode auth.passwordRecovery#137948a5 to nil")
		tl_auth_password_recovery_gen.go#L157: 			return fmt.Errorf("unable to decode auth.passwordRecovery#137948a5: field email_pattern: %w", err)
		tl_auth_recover_password_gen.go#L152: 		return fmt.Errorf("can't encode auth.recoverPassword#37096c70 as nil")
		tl_auth_recover_password_gen.go#L161: 		return fmt.Errorf("can't encode auth.recoverPassword#37096c70 as nil")
		tl_auth_recover_password_gen.go#L165: 		return fmt.Errorf("unable to encode auth.recoverPassword#37096c70: field flags: %w", err)
		tl_auth_recover_password_gen.go#L170: 			return fmt.Errorf("unable to encode auth.recoverPassword#37096c70: field new_settings: %w", err)
		tl_auth_recover_password_gen.go#L179: 		return fmt.Errorf("can't decode auth.recoverPassword#37096c70 to nil")
		tl_auth_recover_password_gen.go#L182: 		return fmt.Errorf("unable to decode auth.recoverPassword#37096c70: %w", err)
		tl_auth_recover_password_gen.go#L190: 		return fmt.Errorf("can't decode auth.recoverPassword#37096c70 to nil")
		tl_auth_recover_password_gen.go#L194: 			return fmt.Errorf("unable to decode auth.recoverPassword#37096c70: field flags: %w", err)
		tl_auth_recover_password_gen.go#L200: 			return fmt.Errorf("unable to decode auth.recoverPassword#37096c70: field code: %w", err)
		tl_auth_recover_password_gen.go#L206: 			return fmt.Errorf("unable to decode auth.recoverPassword#37096c70: field new_settings: %w", err)
		tl_auth_request_firebase_sms_gen.go#L184: 		return fmt.Errorf("can't encode auth.requestFirebaseSms#89464b50 as nil")
		tl_auth_request_firebase_sms_gen.go#L193: 		return fmt.Errorf("can't encode auth.requestFirebaseSms#89464b50 as nil")
		tl_auth_request_firebase_sms_gen.go#L197: 		return fmt.Errorf("unable to encode auth.requestFirebaseSms#89464b50: field flags: %w", err)
		tl_auth_request_firebase_sms_gen.go#L213: 		return fmt.Errorf("can't decode auth.requestFirebaseSms#89464b50 to nil")
		tl_auth_request_firebase_sms_gen.go#L216: 		return fmt.Errorf("unable to decode auth.requestFirebaseSms#89464b50: %w", err)
		tl_auth_request_firebase_sms_gen.go#L224: 		return fmt.Errorf("can't decode auth.requestFirebaseSms#89464b50 to nil")
		tl_auth_request_firebase_sms_gen.go#L228: 			return fmt.Errorf("unable to decode auth.requestFirebaseSms#89464b50: field flags: %w", err)
		tl_auth_request_firebase_sms_gen.go#L234: 			return fmt.Errorf("unable to decode auth.requestFirebaseSms#89464b50: field phone_number: %w", err)
		tl_auth_request_firebase_sms_gen.go#L241: 			return fmt.Errorf("unable to decode auth.requestFirebaseSms#89464b50: field phone_code_hash: %w", err)
		tl_auth_request_firebase_sms_gen.go#L248: 			return fmt.Errorf("unable to decode auth.requestFirebaseSms#89464b50: field safety_net_token: %w", err)
		tl_auth_request_firebase_sms_gen.go#L255: 			return fmt.Errorf("unable to decode auth.requestFirebaseSms#89464b50: field ios_push_secret: %w", err)
		tl_auth_request_password_recovery_gen.go#L103: 		return fmt.Errorf("can't encode auth.requestPasswordRecovery#d897bc66 as nil")
		tl_auth_request_password_recovery_gen.go#L112: 		return fmt.Errorf("can't encode auth.requestPasswordRecovery#d897bc66 as nil")
		tl_auth_request_password_recovery_gen.go#L120: 		return fmt.Errorf("can't decode auth.requestPasswordRecovery#d897bc66 to nil")
		tl_auth_request_password_recovery_gen.go#L123: 		return fmt.Errorf("unable to decode auth.requestPasswordRecovery#d897bc66: %w", err)
		tl_auth_request_password_recovery_gen.go#L131: 		return fmt.Errorf("can't decode auth.requestPasswordRecovery#d897bc66 to nil")
		tl_auth_resend_code_gen.go#L133: 		return fmt.Errorf("can't encode auth.resendCode#3ef1a9bf as nil")
		tl_auth_resend_code_gen.go#L142: 		return fmt.Errorf("can't encode auth.resendCode#3ef1a9bf as nil")
		tl_auth_resend_code_gen.go#L152: 		return fmt.Errorf("can't decode auth.resendCode#3ef1a9bf to nil")
		tl_auth_resend_code_gen.go#L155: 		return fmt.Errorf("unable to decode auth.resendCode#3ef1a9bf: %w", err)
		tl_auth_resend_code_gen.go#L163: 		return fmt.Errorf("can't decode auth.resendCode#3ef1a9bf to nil")
		tl_auth_resend_code_gen.go#L168: 			return fmt.Errorf("unable to decode auth.resendCode#3ef1a9bf: field phone_number: %w", err)
		tl_auth_resend_code_gen.go#L175: 			return fmt.Errorf("unable to decode auth.resendCode#3ef1a9bf: field phone_code_hash: %w", err)
		tl_auth_reset_authorizations_gen.go#L103: 		return fmt.Errorf("can't encode auth.resetAuthorizations#9fab0d1a as nil")
		tl_auth_reset_authorizations_gen.go#L112: 		return fmt.Errorf("can't encode auth.resetAuthorizations#9fab0d1a as nil")
		tl_auth_reset_authorizations_gen.go#L120: 		return fmt.Errorf("can't decode auth.resetAuthorizations#9fab0d1a to nil")
		tl_auth_reset_authorizations_gen.go#L123: 		return fmt.Errorf("unable to decode auth.resetAuthorizations#9fab0d1a: %w", err)
		tl_auth_reset_authorizations_gen.go#L131: 		return fmt.Errorf("can't decode auth.resetAuthorizations#9fab0d1a to nil")
		tl_auth_reset_login_email_gen.go#L132: 		return fmt.Errorf("can't encode auth.resetLoginEmail#7e960193 as nil")
		tl_auth_reset_login_email_gen.go#L141: 		return fmt.Errorf("can't encode auth.resetLoginEmail#7e960193 as nil")
		tl_auth_reset_login_email_gen.go#L151: 		return fmt.Errorf("can't decode auth.resetLoginEmail#7e960193 to nil")
		tl_auth_reset_login_email_gen.go#L154: 		return fmt.Errorf("unable to decode auth.resetLoginEmail#7e960193: %w", err)
		tl_auth_reset_login_email_gen.go#L162: 		return fmt.Errorf("can't decode auth.resetLoginEmail#7e960193 to nil")
		tl_auth_reset_login_email_gen.go#L167: 			return fmt.Errorf("unable to decode auth.resetLoginEmail#7e960193: field phone_number: %w", err)
		tl_auth_reset_login_email_gen.go#L174: 			return fmt.Errorf("unable to decode auth.resetLoginEmail#7e960193: field phone_code_hash: %w", err)
		tl_auth_send_code_gen.go#L154: 		return fmt.Errorf("can't encode auth.sendCode#a677244f as nil")
		tl_auth_send_code_gen.go#L163: 		return fmt.Errorf("can't encode auth.sendCode#a677244f as nil")
		tl_auth_send_code_gen.go#L169: 		return fmt.Errorf("unable to encode auth.sendCode#a677244f: field settings: %w", err)
		tl_auth_send_code_gen.go#L177: 		return fmt.Errorf("can't decode auth.sendCode#a677244f to nil")
		tl_auth_send_code_gen.go#L180: 		return fmt.Errorf("unable to decode auth.sendCode#a677244f: %w", err)
		tl_auth_send_code_gen.go#L188: 		return fmt.Errorf("can't decode auth.sendCode#a677244f to nil")
		tl_auth_send_code_gen.go#L193: 			return fmt.Errorf("unable to decode auth.sendCode#a677244f: field phone_number: %w", err)
		tl_auth_send_code_gen.go#L200: 			return fmt.Errorf("unable to decode auth.sendCode#a677244f: field api_id: %w", err)
		tl_auth_send_code_gen.go#L207: 			return fmt.Errorf("unable to decode auth.sendCode#a677244f: field api_hash: %w", err)
		tl_auth_send_code_gen.go#L213: 			return fmt.Errorf("unable to decode auth.sendCode#a677244f: field settings: %w", err)
		tl_auth_sent_code_gen.go#L190: 		return fmt.Errorf("can't encode auth.sentCode#5e002502 as nil")
		tl_auth_sent_code_gen.go#L199: 		return fmt.Errorf("can't encode auth.sentCode#5e002502 as nil")
		tl_auth_sent_code_gen.go#L203: 		return fmt.Errorf("unable to encode auth.sentCode#5e002502: field flags: %w", err)
		tl_auth_sent_code_gen.go#L206: 		return fmt.Errorf("unable to encode auth.sentCode#5e002502: field type is nil")
		tl_auth_sent_code_gen.go#L209: 		return fmt.Errorf("unable to encode auth.sentCode#5e002502: field type: %w", err)
		tl_auth_sent_code_gen.go#L214: 			return fmt.Errorf("unable to encode auth.sentCode#5e002502: field next_type is nil")
		tl_auth_sent_code_gen.go#L217: 			return fmt.Errorf("unable to encode auth.sentCode#5e002502: field next_type: %w", err)
		tl_auth_sent_code_gen.go#L229: 		return fmt.Errorf("can't decode auth.sentCode#5e002502 to nil")
		tl_auth_sent_code_gen.go#L232: 		return fmt.Errorf("unable to decode auth.sentCode#5e002502: %w", err)
		tl_auth_sent_code_gen.go#L240: 		return fmt.Errorf("can't decode auth.sentCode#5e002502 to nil")
		tl_auth_sent_code_gen.go#L244: 			return fmt.Errorf("unable to decode auth.sentCode#5e002502: field flags: %w", err)
		tl_auth_sent_code_gen.go#L250: 			return fmt.Errorf("unable to decode auth.sentCode#5e002502: field type: %w", err)
		tl_auth_sent_code_gen.go#L257: 			return fmt.Errorf("unable to decode auth.sentCode#5e002502: field phone_code_hash: %w", err)
		tl_auth_sent_code_gen.go#L264: 			return fmt.Errorf("unable to decode auth.sentCode#5e002502: field next_type: %w", err)
		tl_auth_sent_code_gen.go#L271: 			return fmt.Errorf("unable to decode auth.sentCode#5e002502: field timeout: %w", err)
		tl_auth_sent_code_gen.go#L419: 		return fmt.Errorf("can't encode auth.sentCodeSuccess#2390fe44 as nil")
		tl_auth_sent_code_gen.go#L428: 		return fmt.Errorf("can't encode auth.sentCodeSuccess#2390fe44 as nil")
		tl_auth_sent_code_gen.go#L431: 		return fmt.Errorf("unable to encode auth.sentCodeSuccess#2390fe44: field authorization is nil")
		tl_auth_sent_code_gen.go#L434: 		return fmt.Errorf("unable to encode auth.sentCodeSuccess#2390fe44: field authorization: %w", err)
		tl_auth_sent_code_gen.go#L442: 		return fmt.Errorf("can't decode auth.sentCodeSuccess#2390fe44 to nil")
		tl_auth_sent_code_gen.go#L445: 		return fmt.Errorf("unable to decode auth.sentCodeSuccess#2390fe44: %w", err)
		tl_auth_sent_code_gen.go#L453: 		return fmt.Errorf("can't decode auth.sentCodeSuccess#2390fe44 to nil")
		tl_auth_sent_code_gen.go#L458: 			return fmt.Errorf("unable to decode auth.sentCodeSuccess#2390fe44: field authorization: %w", err)
		tl_auth_sent_code_gen.go#L521: 			return nil, fmt.Errorf("unable to decode AuthSentCodeClass: %w", err)
		tl_auth_sent_code_gen.go#L528: 			return nil, fmt.Errorf("unable to decode AuthSentCodeClass: %w", err)
		tl_auth_sent_code_gen.go#L532: 		return nil, fmt.Errorf("unable to decode AuthSentCodeClass: %w", bin.NewUnexpectedID(id))
		tl_auth_sent_code_gen.go#L544: 		return fmt.Errorf("unable to decode AuthSentCodeBox to nil")
		tl_auth_sent_code_gen.go#L548: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_auth_sent_code_gen.go#L557: 		return fmt.Errorf("unable to encode AuthSentCodeClass as nil")
		tl_auth_sent_code_type_gen.go#L120: 		return fmt.Errorf("can't encode auth.sentCodeTypeApp#3dbb5986 as nil")
		tl_auth_sent_code_type_gen.go#L129: 		return fmt.Errorf("can't encode auth.sentCodeTypeApp#3dbb5986 as nil")
		tl_auth_sent_code_type_gen.go#L138: 		return fmt.Errorf("can't decode auth.sentCodeTypeApp#3dbb5986 to nil")
		tl_auth_sent_code_type_gen.go#L141: 		return fmt.Errorf("unable to decode auth.sentCodeTypeApp#3dbb5986: %w", err)
		tl_auth_sent_code_type_gen.go#L149: 		return fmt.Errorf("can't decode auth.sentCodeTypeApp#3dbb5986 to nil")
		tl_auth_sent_code_type_gen.go#L154: 			return fmt.Errorf("unable to decode auth.sentCodeTypeApp#3dbb5986: field length: %w", err)
		tl_auth_sent_code_type_gen.go#L255: 		return fmt.Errorf("can't encode auth.sentCodeTypeSms#c000bba2 as nil")
		tl_auth_sent_code_type_gen.go#L264: 		return fmt.Errorf("can't encode auth.sentCodeTypeSms#c000bba2 as nil")
		tl_auth_sent_code_type_gen.go#L273: 		return fmt.Errorf("can't decode auth.sentCodeTypeSms#c000bba2 to nil")
		tl_auth_sent_code_type_gen.go#L276: 		return fmt.Errorf("unable to decode auth.sentCodeTypeSms#c000bba2: %w", err)
		tl_auth_sent_code_type_gen.go#L284: 		return fmt.Errorf("can't decode auth.sentCodeTypeSms#c000bba2 to nil")
		tl_auth_sent_code_type_gen.go#L289: 			return fmt.Errorf("unable to decode auth.sentCodeTypeSms#c000bba2: field length: %w", err)
		tl_auth_sent_code_type_gen.go#L391: 		return fmt.Errorf("can't encode auth.sentCodeTypeCall#5353e5a7 as nil")
		tl_auth_sent_code_type_gen.go#L400: 		return fmt.Errorf("can't encode auth.sentCodeTypeCall#5353e5a7 as nil")
		tl_auth_sent_code_type_gen.go#L409: 		return fmt.Errorf("can't decode auth.sentCodeTypeCall#5353e5a7 to nil")
		tl_auth_sent_code_type_gen.go#L412: 		return fmt.Errorf("unable to decode auth.sentCodeTypeCall#5353e5a7: %w", err)
		tl_auth_sent_code_type_gen.go#L420: 		return fmt.Errorf("can't decode auth.sentCodeTypeCall#5353e5a7 to nil")
		tl_auth_sent_code_type_gen.go#L425: 			return fmt.Errorf("unable to decode auth.sentCodeTypeCall#5353e5a7: field length: %w", err)
		tl_auth_sent_code_type_gen.go#L531: 		return fmt.Errorf("can't encode auth.sentCodeTypeFlashCall#ab03c6d9 as nil")
		tl_auth_sent_code_type_gen.go#L540: 		return fmt.Errorf("can't encode auth.sentCodeTypeFlashCall#ab03c6d9 as nil")
		tl_auth_sent_code_type_gen.go#L549: 		return fmt.Errorf("can't decode auth.sentCodeTypeFlashCall#ab03c6d9 to nil")
		tl_auth_sent_code_type_gen.go#L552: 		return fmt.Errorf("unable to decode auth.sentCodeTypeFlashCall#ab03c6d9: %w", err)
		tl_auth_sent_code_type_gen.go#L560: 		return fmt.Errorf("can't decode auth.sentCodeTypeFlashCall#ab03c6d9 to nil")
		tl_auth_sent_code_type_gen.go#L565: 			return fmt.Errorf("unable to decode auth.sentCodeTypeFlashCall#ab03c6d9: field pattern: %w", err)
		tl_auth_sent_code_type_gen.go#L679: 		return fmt.Errorf("can't encode auth.sentCodeTypeMissedCall#82006484 as nil")
		tl_auth_sent_code_type_gen.go#L688: 		return fmt.Errorf("can't encode auth.sentCodeTypeMissedCall#82006484 as nil")
		tl_auth_sent_code_type_gen.go#L698: 		return fmt.Errorf("can't decode auth.sentCodeTypeMissedCall#82006484 to nil")
		tl_auth_sent_code_type_gen.go#L701: 		return fmt.Errorf("unable to decode auth.sentCodeTypeMissedCall#82006484: %w", err)
		tl_auth_sent_code_type_gen.go#L709: 		return fmt.Errorf("can't decode auth.sentCodeTypeMissedCall#82006484 to nil")
		tl_auth_sent_code_type_gen.go#L714: 			return fmt.Errorf("unable to decode auth.sentCodeTypeMissedCall#82006484: field prefix: %w", err)
		tl_auth_sent_code_type_gen.go#L721: 			return fmt.Errorf("unable to decode auth.sentCodeTypeMissedCall#82006484: field length: %w", err)
		tl_auth_sent_code_type_gen.go#L934: 		return fmt.Errorf("can't encode auth.sentCodeTypeEmailCode#f450f59b as nil")
		tl_auth_sent_code_type_gen.go#L943: 		return fmt.Errorf("can't encode auth.sentCodeTypeEmailCode#f450f59b as nil")
		tl_auth_sent_code_type_gen.go#L947: 		return fmt.Errorf("unable to encode auth.sentCodeTypeEmailCode#f450f59b: field flags: %w", err)
		tl_auth_sent_code_type_gen.go#L963: 		return fmt.Errorf("can't decode auth.sentCodeTypeEmailCode#f450f59b to nil")
		tl_auth_sent_code_type_gen.go#L966: 		return fmt.Errorf("unable to decode auth.sentCodeTypeEmailCode#f450f59b: %w", err)
		tl_auth_sent_code_type_gen.go#L974: 		return fmt.Errorf("can't decode auth.sentCodeTypeEmailCode#f450f59b to nil")
		tl_auth_sent_code_type_gen.go#L978: 			return fmt.Errorf("unable to decode auth.sentCodeTypeEmailCode#f450f59b: field flags: %w", err)
		tl_auth_sent_code_type_gen.go#L986: 			return fmt.Errorf("unable to decode auth.sentCodeTypeEmailCode#f450f59b: field email_pattern: %w", err)
		tl_auth_sent_code_type_gen.go#L993: 			return fmt.Errorf("unable to decode auth.sentCodeTypeEmailCode#f450f59b: field length: %w", err)
		tl_auth_sent_code_type_gen.go#L1000: 			return fmt.Errorf("unable to decode auth.sentCodeTypeEmailCode#f450f59b: field reset_available_period: %w", err)
		tl_auth_sent_code_type_gen.go#L1007: 			return fmt.Errorf("unable to decode auth.sentCodeTypeEmailCode#f450f59b: field reset_pending_date: %w", err)
		tl_auth_sent_code_type_gen.go#L1225: 		return fmt.Errorf("can't encode auth.sentCodeTypeSetUpEmailRequired#a5491dea as nil")
		tl_auth_sent_code_type_gen.go#L1234: 		return fmt.Errorf("can't encode auth.sentCodeTypeSetUpEmailRequired#a5491dea as nil")
		tl_auth_sent_code_type_gen.go#L1238: 		return fmt.Errorf("unable to encode auth.sentCodeTypeSetUpEmailRequired#a5491dea: field flags: %w", err)
		tl_auth_sent_code_type_gen.go#L1246: 		return fmt.Errorf("can't decode auth.sentCodeTypeSetUpEmailRequired#a5491dea to nil")
		tl_auth_sent_code_type_gen.go#L1249: 		return fmt.Errorf("unable to decode auth.sentCodeTypeSetUpEmailRequired#a5491dea: %w", err)
		tl_auth_sent_code_type_gen.go#L1257: 		return fmt.Errorf("can't decode auth.sentCodeTypeSetUpEmailRequired#a5491dea to nil")
		tl_auth_sent_code_type_gen.go#L1261: 			return fmt.Errorf("unable to decode auth.sentCodeTypeSetUpEmailRequired#a5491dea: field flags: %w", err)
		tl_auth_sent_code_type_gen.go#L1411: 		return fmt.Errorf("can't encode auth.sentCodeTypeFragmentSms#d9565c39 as nil")
		tl_auth_sent_code_type_gen.go#L1420: 		return fmt.Errorf("can't encode auth.sentCodeTypeFragmentSms#d9565c39 as nil")
		tl_auth_sent_code_type_gen.go#L1430: 		return fmt.Errorf("can't decode auth.sentCodeTypeFragmentSms#d9565c39 to nil")
		tl_auth_sent_code_type_gen.go#L1433: 		return fmt.Errorf("unable to decode auth.sentCodeTypeFragmentSms#d9565c39: %w", err)
		tl_auth_sent_code_type_gen.go#L1441: 		return fmt.Errorf("can't decode auth.sentCodeTypeFragmentSms#d9565c39 to nil")
		tl_auth_sent_code_type_gen.go#L1446: 			return fmt.Errorf("unable to decode auth.sentCodeTypeFragmentSms#d9565c39: field url: %w", err)
		tl_auth_sent_code_type_gen.go#L1453: 			return fmt.Errorf("unable to decode auth.sentCodeTypeFragmentSms#d9565c39: field length: %w", err)
		tl_auth_sent_code_type_gen.go#L1647: 		return fmt.Errorf("can't encode auth.sentCodeTypeFirebaseSms#e57b1432 as nil")
		tl_auth_sent_code_type_gen.go#L1656: 		return fmt.Errorf("can't encode auth.sentCodeTypeFirebaseSms#e57b1432 as nil")
		tl_auth_sent_code_type_gen.go#L1660: 		return fmt.Errorf("unable to encode auth.sentCodeTypeFirebaseSms#e57b1432: field flags: %w", err)
		tl_auth_sent_code_type_gen.go#L1678: 		return fmt.Errorf("can't decode auth.sentCodeTypeFirebaseSms#e57b1432 to nil")
		tl_auth_sent_code_type_gen.go#L1681: 		return fmt.Errorf("unable to decode auth.sentCodeTypeFirebaseSms#e57b1432: %w", err)
		tl_auth_sent_code_type_gen.go#L1689: 		return fmt.Errorf("can't decode auth.sentCodeTypeFirebaseSms#e57b1432 to nil")
		tl_auth_sent_code_type_gen.go#L1693: 			return fmt.Errorf("unable to decode auth.sentCodeTypeFirebaseSms#e57b1432: field flags: %w", err)
		tl_auth_sent_code_type_gen.go#L1699: 			return fmt.Errorf("unable to decode auth.sentCodeTypeFirebaseSms#e57b1432: field nonce: %w", err)
		tl_auth_sent_code_type_gen.go#L1706: 			return fmt.Errorf("unable to decode auth.sentCodeTypeFirebaseSms#e57b1432: field receipt: %w", err)
		tl_auth_sent_code_type_gen.go#L1713: 			return fmt.Errorf("unable to decode auth.sentCodeTypeFirebaseSms#e57b1432: field push_timeout: %w", err)
		tl_auth_sent_code_type_gen.go#L1720: 			return fmt.Errorf("unable to decode auth.sentCodeTypeFirebaseSms#e57b1432: field length: %w", err)
		tl_auth_sent_code_type_gen.go#L1844: 			return nil, fmt.Errorf("unable to decode AuthSentCodeTypeClass: %w", err)
		tl_auth_sent_code_type_gen.go#L1851: 			return nil, fmt.Errorf("unable to decode AuthSentCodeTypeClass: %w", err)
		tl_auth_sent_code_type_gen.go#L1858: 			return nil, fmt.Errorf("unable to decode AuthSentCodeTypeClass: %w", err)
		tl_auth_sent_code_type_gen.go#L1865: 			return nil, fmt.Errorf("unable to decode AuthSentCodeTypeClass: %w", err)
		tl_auth_sent_code_type_gen.go#L1872: 			return nil, fmt.Errorf("unable to decode AuthSentCodeTypeClass: %w", err)
		tl_auth_sent_code_type_gen.go#L1879: 			return nil, fmt.Errorf("unable to decode AuthSentCodeTypeClass: %w", err)
		tl_auth_sent_code_type_gen.go#L1886: 			return nil, fmt.Errorf("unable to decode AuthSentCodeTypeClass: %w", err)
		tl_auth_sent_code_type_gen.go#L1893: 			return nil, fmt.Errorf("unable to decode AuthSentCodeTypeClass: %w", err)
		tl_auth_sent_code_type_gen.go#L1900: 			return nil, fmt.Errorf("unable to decode AuthSentCodeTypeClass: %w", err)
		tl_auth_sent_code_type_gen.go#L1904: 		return nil, fmt.Errorf("unable to decode AuthSentCodeTypeClass: %w", bin.NewUnexpectedID(id))
		tl_auth_sent_code_type_gen.go#L1916: 		return fmt.Errorf("unable to decode AuthSentCodeTypeBox to nil")
		tl_auth_sent_code_type_gen.go#L1920: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_auth_sent_code_type_gen.go#L1929: 		return fmt.Errorf("unable to encode AuthSentCodeTypeClass as nil")
		tl_auth_sign_in_gen.go#L181: 		return fmt.Errorf("can't encode auth.signIn#8d52a951 as nil")
		tl_auth_sign_in_gen.go#L190: 		return fmt.Errorf("can't encode auth.signIn#8d52a951 as nil")
		tl_auth_sign_in_gen.go#L194: 		return fmt.Errorf("unable to encode auth.signIn#8d52a951: field flags: %w", err)
		tl_auth_sign_in_gen.go#L203: 			return fmt.Errorf("unable to encode auth.signIn#8d52a951: field email_verification is nil")
		tl_auth_sign_in_gen.go#L206: 			return fmt.Errorf("unable to encode auth.signIn#8d52a951: field email_verification: %w", err)
		tl_auth_sign_in_gen.go#L215: 		return fmt.Errorf("can't decode auth.signIn#8d52a951 to nil")
		tl_auth_sign_in_gen.go#L218: 		return fmt.Errorf("unable to decode auth.signIn#8d52a951: %w", err)
		tl_auth_sign_in_gen.go#L226: 		return fmt.Errorf("can't decode auth.signIn#8d52a951 to nil")
		tl_auth_sign_in_gen.go#L230: 			return fmt.Errorf("unable to decode auth.signIn#8d52a951: field flags: %w", err)
		tl_auth_sign_in_gen.go#L236: 			return fmt.Errorf("unable to decode auth.signIn#8d52a951: field phone_number: %w", err)
		tl_auth_sign_in_gen.go#L243: 			return fmt.Errorf("unable to decode auth.signIn#8d52a951: field phone_code_hash: %w", err)
		tl_auth_sign_in_gen.go#L250: 			return fmt.Errorf("unable to decode auth.signIn#8d52a951: field phone_code: %w", err)
		tl_auth_sign_in_gen.go#L257: 			return fmt.Errorf("unable to decode auth.signIn#8d52a951: field email_verification: %w", err)
		tl_auth_sign_up_gen.go#L148: 		return fmt.Errorf("can't encode auth.signUp#80eee427 as nil")
		tl_auth_sign_up_gen.go#L157: 		return fmt.Errorf("can't encode auth.signUp#80eee427 as nil")
		tl_auth_sign_up_gen.go#L169: 		return fmt.Errorf("can't decode auth.signUp#80eee427 to nil")
		tl_auth_sign_up_gen.go#L172: 		return fmt.Errorf("unable to decode auth.signUp#80eee427: %w", err)
		tl_auth_sign_up_gen.go#L180: 		return fmt.Errorf("can't decode auth.signUp#80eee427 to nil")
		tl_auth_sign_up_gen.go#L185: 			return fmt.Errorf("unable to decode auth.signUp#80eee427: field phone_number: %w", err)
		tl_auth_sign_up_gen.go#L192: 			return fmt.Errorf("unable to decode auth.signUp#80eee427: field phone_code_hash: %w", err)
		tl_auth_sign_up_gen.go#L199: 			return fmt.Errorf("unable to decode auth.signUp#80eee427: field first_name: %w", err)
		tl_auth_sign_up_gen.go#L206: 			return fmt.Errorf("unable to decode auth.signUp#80eee427: field last_name: %w", err)
		tl_authorization_gen.go#L344: 		return fmt.Errorf("can't encode authorization#ad01d61d as nil")
		tl_authorization_gen.go#L353: 		return fmt.Errorf("can't encode authorization#ad01d61d as nil")
		tl_authorization_gen.go#L357: 		return fmt.Errorf("unable to encode authorization#ad01d61d: field flags: %w", err)
		tl_authorization_gen.go#L377: 		return fmt.Errorf("can't decode authorization#ad01d61d to nil")
		tl_authorization_gen.go#L380: 		return fmt.Errorf("unable to decode authorization#ad01d61d: %w", err)
		tl_authorization_gen.go#L388: 		return fmt.Errorf("can't decode authorization#ad01d61d to nil")
		tl_authorization_gen.go#L392: 			return fmt.Errorf("unable to decode authorization#ad01d61d: field flags: %w", err)
		tl_authorization_gen.go#L404: 			return fmt.Errorf("unable to decode authorization#ad01d61d: field hash: %w", err)
		tl_authorization_gen.go#L411: 			return fmt.Errorf("unable to decode authorization#ad01d61d: field device_model: %w", err)
		tl_authorization_gen.go#L418: 			return fmt.Errorf("unable to decode authorization#ad01d61d: field platform: %w", err)
		tl_authorization_gen.go#L425: 			return fmt.Errorf("unable to decode authorization#ad01d61d: field system_version: %w", err)
		tl_authorization_gen.go#L432: 			return fmt.Errorf("unable to decode authorization#ad01d61d: field api_id: %w", err)
		tl_authorization_gen.go#L439: 			return fmt.Errorf("unable to decode authorization#ad01d61d: field app_name: %w", err)
		tl_authorization_gen.go#L446: 			return fmt.Errorf("unable to decode authorization#ad01d61d: field app_version: %w", err)
		tl_authorization_gen.go#L453: 			return fmt.Errorf("unable to decode authorization#ad01d61d: field date_created: %w", err)
		tl_authorization_gen.go#L460: 			return fmt.Errorf("unable to decode authorization#ad01d61d: field date_active: %w", err)
		tl_authorization_gen.go#L467: 			return fmt.Errorf("unable to decode authorization#ad01d61d: field ip: %w", err)
		tl_authorization_gen.go#L474: 			return fmt.Errorf("unable to decode authorization#ad01d61d: field country: %w", err)
		tl_authorization_gen.go#L481: 			return fmt.Errorf("unable to decode authorization#ad01d61d: field region: %w", err)
		tl_auto_download_settings_gen.go#L262: 		return fmt.Errorf("can't encode autoDownloadSettings#baa57628 as nil")
		tl_auto_download_settings_gen.go#L271: 		return fmt.Errorf("can't encode autoDownloadSettings#baa57628 as nil")
		tl_auto_download_settings_gen.go#L275: 		return fmt.Errorf("unable to encode autoDownloadSettings#baa57628: field flags: %w", err)
		tl_auto_download_settings_gen.go#L289: 		return fmt.Errorf("can't decode autoDownloadSettings#baa57628 to nil")
		tl_auto_download_settings_gen.go#L292: 		return fmt.Errorf("unable to decode autoDownloadSettings#baa57628: %w", err)
		tl_auto_download_settings_gen.go#L300: 		return fmt.Errorf("can't decode autoDownloadSettings#baa57628 to nil")
		tl_auto_download_settings_gen.go#L304: 			return fmt.Errorf("unable to decode autoDownloadSettings#baa57628: field flags: %w", err)
		tl_auto_download_settings_gen.go#L315: 			return fmt.Errorf("unable to decode autoDownloadSettings#baa57628: field photo_size_max: %w", err)
		tl_auto_download_settings_gen.go#L322: 			return fmt.Errorf("unable to decode autoDownloadSettings#baa57628: field video_size_max: %w", err)
		tl_auto_download_settings_gen.go#L329: 			return fmt.Errorf("unable to decode autoDownloadSettings#baa57628: field file_size_max: %w", err)
		tl_auto_download_settings_gen.go#L336: 			return fmt.Errorf("unable to decode autoDownloadSettings#baa57628: field video_upload_maxbitrate: %w", err)
		tl_auto_download_settings_gen.go#L343: 			return fmt.Errorf("unable to decode autoDownloadSettings#baa57628: field small_queue_active_operations_max: %w", err)
		tl_auto_download_settings_gen.go#L350: 			return fmt.Errorf("unable to decode autoDownloadSettings#baa57628: field large_queue_active_operations_max: %w", err)
		tl_auto_save_exception_gen.go#L126: 		return fmt.Errorf("can't encode autoSaveException#81602d47 as nil")
		tl_auto_save_exception_gen.go#L135: 		return fmt.Errorf("can't encode autoSaveException#81602d47 as nil")
		tl_auto_save_exception_gen.go#L138: 		return fmt.Errorf("unable to encode autoSaveException#81602d47: field peer is nil")
		tl_auto_save_exception_gen.go#L141: 		return fmt.Errorf("unable to encode autoSaveException#81602d47: field peer: %w", err)
		tl_auto_save_exception_gen.go#L144: 		return fmt.Errorf("unable to encode autoSaveException#81602d47: field settings: %w", err)
		tl_auto_save_exception_gen.go#L152: 		return fmt.Errorf("can't decode autoSaveException#81602d47 to nil")
		tl_auto_save_exception_gen.go#L155: 		return fmt.Errorf("unable to decode autoSaveException#81602d47: %w", err)
		tl_auto_save_exception_gen.go#L163: 		return fmt.Errorf("can't decode autoSaveException#81602d47 to nil")
		tl_auto_save_exception_gen.go#L168: 			return fmt.Errorf("unable to decode autoSaveException#81602d47: field peer: %w", err)
		tl_auto_save_exception_gen.go#L174: 			return fmt.Errorf("unable to decode autoSaveException#81602d47: field settings: %w", err)
		tl_auto_save_settings_gen.go#L166: 		return fmt.Errorf("can't encode autoSaveSettings#c84834ce as nil")
		tl_auto_save_settings_gen.go#L175: 		return fmt.Errorf("can't encode autoSaveSettings#c84834ce as nil")
		tl_auto_save_settings_gen.go#L179: 		return fmt.Errorf("unable to encode autoSaveSettings#c84834ce: field flags: %w", err)
		tl_auto_save_settings_gen.go#L190: 		return fmt.Errorf("can't decode autoSaveSettings#c84834ce to nil")
		tl_auto_save_settings_gen.go#L193: 		return fmt.Errorf("unable to decode autoSaveSettings#c84834ce: %w", err)
		tl_auto_save_settings_gen.go#L201: 		return fmt.Errorf("can't decode autoSaveSettings#c84834ce to nil")
		tl_auto_save_settings_gen.go#L205: 			return fmt.Errorf("unable to decode autoSaveSettings#c84834ce: field flags: %w", err)
		tl_auto_save_settings_gen.go#L213: 			return fmt.Errorf("unable to decode autoSaveSettings#c84834ce: field video_max_size: %w", err)
		tl_available_reaction_gen.go#L266: 		return fmt.Errorf("can't encode availableReaction#c077ec01 as nil")
		tl_available_reaction_gen.go#L275: 		return fmt.Errorf("can't encode availableReaction#c077ec01 as nil")
		tl_available_reaction_gen.go#L279: 		return fmt.Errorf("unable to encode availableReaction#c077ec01: field flags: %w", err)
		tl_available_reaction_gen.go#L284: 		return fmt.Errorf("unable to encode availableReaction#c077ec01: field static_icon is nil")
		tl_available_reaction_gen.go#L287: 		return fmt.Errorf("unable to encode availableReaction#c077ec01: field static_icon: %w", err)
		tl_available_reaction_gen.go#L290: 		return fmt.Errorf("unable to encode availableReaction#c077ec01: field appear_animation is nil")
		tl_available_reaction_gen.go#L293: 		return fmt.Errorf("unable to encode availableReaction#c077ec01: field appear_animation: %w", err)
		tl_available_reaction_gen.go#L296: 		return fmt.Errorf("unable to encode availableReaction#c077ec01: field select_animation is nil")
		tl_available_reaction_gen.go#L299: 		return fmt.Errorf("unable to encode availableReaction#c077ec01: field select_animation: %w", err)
		tl_available_reaction_gen.go#L302: 		return fmt.Errorf("unable to encode availableReaction#c077ec01: field activate_animation is nil")
		tl_available_reaction_gen.go#L305: 		return fmt.Errorf("unable to encode availableReaction#c077ec01: field activate_animation: %w", err)
		tl_available_reaction_gen.go#L308: 		return fmt.Errorf("unable to encode availableReaction#c077ec01: field effect_animation is nil")
		tl_available_reaction_gen.go#L311: 		return fmt.Errorf("unable to encode availableReaction#c077ec01: field effect_animation: %w", err)
		tl_available_reaction_gen.go#L315: 			return fmt.Errorf("unable to encode availableReaction#c077ec01: field around_animation is nil")
		tl_available_reaction_gen.go#L318: 			return fmt.Errorf("unable to encode availableReaction#c077ec01: field around_animation: %w", err)
		tl_available_reaction_gen.go#L323: 			return fmt.Errorf("unable to encode availableReaction#c077ec01: field center_icon is nil")
		tl_available_reaction_gen.go#L326: 			return fmt.Errorf("unable to encode availableReaction#c077ec01: field center_icon: %w", err)
		tl_available_reaction_gen.go#L335: 		return fmt.Errorf("can't decode availableReaction#c077ec01 to nil")
		tl_available_reaction_gen.go#L338: 		return fmt.Errorf("unable to decode availableReaction#c077ec01: %w", err)
		tl_available_reaction_gen.go#L346: 		return fmt.Errorf("can't decode availableReaction#c077ec01 to nil")
		tl_available_reaction_gen.go#L350: 			return fmt.Errorf("unable to decode availableReaction#c077ec01: field flags: %w", err)
		tl_available_reaction_gen.go#L358: 			return fmt.Errorf("unable to decode availableReaction#c077ec01: field reaction: %w", err)
		tl_available_reaction_gen.go#L365: 			return fmt.Errorf("unable to decode availableReaction#c077ec01: field title: %w", err)
		tl_available_reaction_gen.go#L372: 			return fmt.Errorf("unable to decode availableReaction#c077ec01: field static_icon: %w", err)
		tl_available_reaction_gen.go#L379: 			return fmt.Errorf("unable to decode availableReaction#c077ec01: field appear_animation: %w", err)
		tl_available_reaction_gen.go#L386: 			return fmt.Errorf("unable to decode availableReaction#c077ec01: field select_animation: %w", err)
		tl_available_reaction_gen.go#L393: 			return fmt.Errorf("unable to decode availableReaction#c077ec01: field activate_animation: %w", err)
		tl_available_reaction_gen.go#L400: 			return fmt.Errorf("unable to decode availableReaction#c077ec01: field effect_animation: %w", err)
		tl_available_reaction_gen.go#L407: 			return fmt.Errorf("unable to decode availableReaction#c077ec01: field around_animation: %w", err)
		tl_available_reaction_gen.go#L414: 			return fmt.Errorf("unable to decode availableReaction#c077ec01: field center_icon: %w", err)
		tl_bank_card_open_url_gen.go#L126: 		return fmt.Errorf("can't encode bankCardOpenUrl#f568028a as nil")
		tl_bank_card_open_url_gen.go#L135: 		return fmt.Errorf("can't encode bankCardOpenUrl#f568028a as nil")
		tl_bank_card_open_url_gen.go#L145: 		return fmt.Errorf("can't decode bankCardOpenUrl#f568028a to nil")
		tl_bank_card_open_url_gen.go#L148: 		return fmt.Errorf("unable to decode bankCardOpenUrl#f568028a: %w", err)
		tl_bank_card_open_url_gen.go#L156: 		return fmt.Errorf("can't decode bankCardOpenUrl#f568028a to nil")
		tl_bank_card_open_url_gen.go#L161: 			return fmt.Errorf("unable to decode bankCardOpenUrl#f568028a: field url: %w", err)
		tl_bank_card_open_url_gen.go#L168: 			return fmt.Errorf("unable to decode bankCardOpenUrl#f568028a: field name: %w", err)
		tl_base_theme_gen.go#L103: 		return fmt.Errorf("can't encode baseThemeClassic#c3a12462 as nil")
		tl_base_theme_gen.go#L112: 		return fmt.Errorf("can't encode baseThemeClassic#c3a12462 as nil")
		tl_base_theme_gen.go#L120: 		return fmt.Errorf("can't decode baseThemeClassic#c3a12462 to nil")
		tl_base_theme_gen.go#L123: 		return fmt.Errorf("unable to decode baseThemeClassic#c3a12462: %w", err)
		tl_base_theme_gen.go#L131: 		return fmt.Errorf("can't decode baseThemeClassic#c3a12462 to nil")
		tl_base_theme_gen.go#L205: 		return fmt.Errorf("can't encode baseThemeDay#fbd81688 as nil")
		tl_base_theme_gen.go#L214: 		return fmt.Errorf("can't encode baseThemeDay#fbd81688 as nil")
		tl_base_theme_gen.go#L222: 		return fmt.Errorf("can't decode baseThemeDay#fbd81688 to nil")
		tl_base_theme_gen.go#L225: 		return fmt.Errorf("unable to decode baseThemeDay#fbd81688: %w", err)
		tl_base_theme_gen.go#L233: 		return fmt.Errorf("can't decode baseThemeDay#fbd81688 to nil")
		tl_base_theme_gen.go#L307: 		return fmt.Errorf("can't encode baseThemeNight#b7b31ea8 as nil")
		tl_base_theme_gen.go#L316: 		return fmt.Errorf("can't encode baseThemeNight#b7b31ea8 as nil")
		tl_base_theme_gen.go#L324: 		return fmt.Errorf("can't decode baseThemeNight#b7b31ea8 to nil")
		tl_base_theme_gen.go#L327: 		return fmt.Errorf("unable to decode baseThemeNight#b7b31ea8: %w", err)
		tl_base_theme_gen.go#L335: 		return fmt.Errorf("can't decode baseThemeNight#b7b31ea8 to nil")
		tl_base_theme_gen.go#L409: 		return fmt.Errorf("can't encode baseThemeTinted#6d5f77ee as nil")
		tl_base_theme_gen.go#L418: 		return fmt.Errorf("can't encode baseThemeTinted#6d5f77ee as nil")
		tl_base_theme_gen.go#L426: 		return fmt.Errorf("can't decode baseThemeTinted#6d5f77ee to nil")
		tl_base_theme_gen.go#L429: 		return fmt.Errorf("unable to decode baseThemeTinted#6d5f77ee: %w", err)
		tl_base_theme_gen.go#L437: 		return fmt.Errorf("can't decode baseThemeTinted#6d5f77ee to nil")
		tl_base_theme_gen.go#L511: 		return fmt.Errorf("can't encode baseThemeArctic#5b11125a as nil")
		tl_base_theme_gen.go#L520: 		return fmt.Errorf("can't encode baseThemeArctic#5b11125a as nil")
		tl_base_theme_gen.go#L528: 		return fmt.Errorf("can't decode baseThemeArctic#5b11125a to nil")
		tl_base_theme_gen.go#L531: 		return fmt.Errorf("unable to decode baseThemeArctic#5b11125a: %w", err)
		tl_base_theme_gen.go#L539: 		return fmt.Errorf("can't decode baseThemeArctic#5b11125a to nil")
		tl_base_theme_gen.go#L595: 			return nil, fmt.Errorf("unable to decode BaseThemeClass: %w", err)
		tl_base_theme_gen.go#L602: 			return nil, fmt.Errorf("unable to decode BaseThemeClass: %w", err)
		tl_base_theme_gen.go#L609: 			return nil, fmt.Errorf("unable to decode BaseThemeClass: %w", err)
		tl_base_theme_gen.go#L616: 			return nil, fmt.Errorf("unable to decode BaseThemeClass: %w", err)
		tl_base_theme_gen.go#L623: 			return nil, fmt.Errorf("unable to decode BaseThemeClass: %w", err)
		tl_base_theme_gen.go#L627: 		return nil, fmt.Errorf("unable to decode BaseThemeClass: %w", bin.NewUnexpectedID(id))
		tl_base_theme_gen.go#L639: 		return fmt.Errorf("unable to decode BaseThemeBox to nil")
		tl_base_theme_gen.go#L643: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_base_theme_gen.go#L652: 		return fmt.Errorf("unable to encode BaseThemeClass as nil")
		tl_bool_gen.go#L103: 		return fmt.Errorf("can't encode boolFalse#bc799737 as nil")
		tl_bool_gen.go#L112: 		return fmt.Errorf("can't encode boolFalse#bc799737 as nil")
		tl_bool_gen.go#L120: 		return fmt.Errorf("can't decode boolFalse#bc799737 to nil")
		tl_bool_gen.go#L123: 		return fmt.Errorf("unable to decode boolFalse#bc799737: %w", err)
		tl_bool_gen.go#L131: 		return fmt.Errorf("can't decode boolFalse#bc799737 to nil")
		tl_bool_gen.go#L205: 		return fmt.Errorf("can't encode boolTrue#997275b5 as nil")
		tl_bool_gen.go#L214: 		return fmt.Errorf("can't encode boolTrue#997275b5 as nil")
		tl_bool_gen.go#L222: 		return fmt.Errorf("can't decode boolTrue#997275b5 to nil")
		tl_bool_gen.go#L225: 		return fmt.Errorf("unable to decode boolTrue#997275b5: %w", err)
		tl_bool_gen.go#L233: 		return fmt.Errorf("can't decode boolTrue#997275b5 to nil")
		tl_bool_gen.go#L286: 			return nil, fmt.Errorf("unable to decode BoolClass: %w", err)
		tl_bool_gen.go#L293: 			return nil, fmt.Errorf("unable to decode BoolClass: %w", err)
		tl_bool_gen.go#L297: 		return nil, fmt.Errorf("unable to decode BoolClass: %w", bin.NewUnexpectedID(id))
		tl_bool_gen.go#L309: 		return fmt.Errorf("unable to decode BoolBox to nil")
		tl_bool_gen.go#L313: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_bool_gen.go#L322: 		return fmt.Errorf("unable to encode BoolClass as nil")
		tl_boost_gen.go#L295: 		return fmt.Errorf("can't encode boost#2a1c8c71 as nil")
		tl_boost_gen.go#L304: 		return fmt.Errorf("can't encode boost#2a1c8c71 as nil")
		tl_boost_gen.go#L308: 		return fmt.Errorf("unable to encode boost#2a1c8c71: field flags: %w", err)
		tl_boost_gen.go#L331: 		return fmt.Errorf("can't decode boost#2a1c8c71 to nil")
		tl_boost_gen.go#L334: 		return fmt.Errorf("unable to decode boost#2a1c8c71: %w", err)
		tl_boost_gen.go#L342: 		return fmt.Errorf("can't decode boost#2a1c8c71 to nil")
		tl_boost_gen.go#L346: 			return fmt.Errorf("unable to decode boost#2a1c8c71: field flags: %w", err)
		tl_boost_gen.go#L355: 			return fmt.Errorf("unable to decode boost#2a1c8c71: field id: %w", err)
		tl_boost_gen.go#L362: 			return fmt.Errorf("unable to decode boost#2a1c8c71: field user_id: %w", err)
		tl_boost_gen.go#L369: 			return fmt.Errorf("unable to decode boost#2a1c8c71: field giveaway_msg_id: %w", err)
		tl_boost_gen.go#L376: 			return fmt.Errorf("unable to decode boost#2a1c8c71: field date: %w", err)
		tl_boost_gen.go#L383: 			return fmt.Errorf("unable to decode boost#2a1c8c71: field expires: %w", err)
		tl_boost_gen.go#L390: 			return fmt.Errorf("unable to decode boost#2a1c8c71: field used_gift_slug: %w", err)
		tl_boost_gen.go#L397: 			return fmt.Errorf("unable to decode boost#2a1c8c71: field multiplier: %w", err)
		tl_bot_app_gen.go#L103: 		return fmt.Errorf("can't encode botAppNotModified#5da674b7 as nil")
		tl_bot_app_gen.go#L112: 		return fmt.Errorf("can't encode botAppNotModified#5da674b7 as nil")
		tl_bot_app_gen.go#L120: 		return fmt.Errorf("can't decode botAppNotModified#5da674b7 to nil")
		tl_bot_app_gen.go#L123: 		return fmt.Errorf("unable to decode botAppNotModified#5da674b7: %w", err)
		tl_bot_app_gen.go#L131: 		return fmt.Errorf("can't decode botAppNotModified#5da674b7 to nil")
		tl_bot_app_gen.go#L330: 		return fmt.Errorf("can't encode botApp#95fcd1d6 as nil")
		tl_bot_app_gen.go#L339: 		return fmt.Errorf("can't encode botApp#95fcd1d6 as nil")
		tl_bot_app_gen.go#L343: 		return fmt.Errorf("unable to encode botApp#95fcd1d6: field flags: %w", err)
		tl_bot_app_gen.go#L351: 		return fmt.Errorf("unable to encode botApp#95fcd1d6: field photo is nil")
		tl_bot_app_gen.go#L354: 		return fmt.Errorf("unable to encode botApp#95fcd1d6: field photo: %w", err)
		tl_bot_app_gen.go#L358: 			return fmt.Errorf("unable to encode botApp#95fcd1d6: field document is nil")
		tl_bot_app_gen.go#L361: 			return fmt.Errorf("unable to encode botApp#95fcd1d6: field document: %w", err)
		tl_bot_app_gen.go#L371: 		return fmt.Errorf("can't decode botApp#95fcd1d6 to nil")
		tl_bot_app_gen.go#L374: 		return fmt.Errorf("unable to decode botApp#95fcd1d6: %w", err)
		tl_bot_app_gen.go#L382: 		return fmt.Errorf("can't decode botApp#95fcd1d6 to nil")
		tl_bot_app_gen.go#L386: 			return fmt.Errorf("unable to decode botApp#95fcd1d6: field flags: %w", err)
		tl_bot_app_gen.go#L392: 			return fmt.Errorf("unable to decode botApp#95fcd1d6: field id: %w", err)
		tl_bot_app_gen.go#L399: 			return fmt.Errorf("unable to decode botApp#95fcd1d6: field access_hash: %w", err)
		tl_bot_app_gen.go#L406: 			return fmt.Errorf("unable to decode botApp#95fcd1d6: field short_name: %w", err)
		tl_bot_app_gen.go#L413: 			return fmt.Errorf("unable to decode botApp#95fcd1d6: field title: %w", err)
		tl_bot_app_gen.go#L420: 			return fmt.Errorf("unable to decode botApp#95fcd1d6: field description: %w", err)
		tl_bot_app_gen.go#L427: 			return fmt.Errorf("unable to decode botApp#95fcd1d6: field photo: %w", err)
		tl_bot_app_gen.go#L434: 			return fmt.Errorf("unable to decode botApp#95fcd1d6: field document: %w", err)
		tl_bot_app_gen.go#L441: 			return fmt.Errorf("unable to decode botApp#95fcd1d6: field hash: %w", err)
		tl_bot_app_gen.go#L593: 			return nil, fmt.Errorf("unable to decode BotAppClass: %w", err)
		tl_bot_app_gen.go#L600: 			return nil, fmt.Errorf("unable to decode BotAppClass: %w", err)
		tl_bot_app_gen.go#L604: 		return nil, fmt.Errorf("unable to decode BotAppClass: %w", bin.NewUnexpectedID(id))
		tl_bot_app_gen.go#L616: 		return fmt.Errorf("unable to decode BotAppBox to nil")
		tl_bot_app_gen.go#L620: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_bot_app_gen.go#L629: 		return fmt.Errorf("unable to encode BotAppClass as nil")
		tl_bot_command_gen.go#L126: 		return fmt.Errorf("can't encode botCommand#c27ac8c7 as nil")
		tl_bot_command_gen.go#L135: 		return fmt.Errorf("can't encode botCommand#c27ac8c7 as nil")
		tl_bot_command_gen.go#L145: 		return fmt.Errorf("can't decode botCommand#c27ac8c7 to nil")
		tl_bot_command_gen.go#L148: 		return fmt.Errorf("unable to decode botCommand#c27ac8c7: %w", err)
		tl_bot_command_gen.go#L156: 		return fmt.Errorf("can't decode botCommand#c27ac8c7 to nil")
		tl_bot_command_gen.go#L161: 			return fmt.Errorf("unable to decode botCommand#c27ac8c7: field command: %w", err)
		tl_bot_command_gen.go#L168: 			return fmt.Errorf("unable to decode botCommand#c27ac8c7: field description: %w", err)
		tl_bot_command_scope_gen.go#L103: 		return fmt.Errorf("can't encode botCommandScopeDefault#2f6cb2ab as nil")
		tl_bot_command_scope_gen.go#L112: 		return fmt.Errorf("can't encode botCommandScopeDefault#2f6cb2ab as nil")
		tl_bot_command_scope_gen.go#L120: 		return fmt.Errorf("can't decode botCommandScopeDefault#2f6cb2ab to nil")
		tl_bot_command_scope_gen.go#L123: 		return fmt.Errorf("unable to decode botCommandScopeDefault#2f6cb2ab: %w", err)
		tl_bot_command_scope_gen.go#L131: 		return fmt.Errorf("can't decode botCommandScopeDefault#2f6cb2ab to nil")
		tl_bot_command_scope_gen.go#L205: 		return fmt.Errorf("can't encode botCommandScopeUsers#3c4f04d8 as nil")
		tl_bot_command_scope_gen.go#L214: 		return fmt.Errorf("can't encode botCommandScopeUsers#3c4f04d8 as nil")
		tl_bot_command_scope_gen.go#L222: 		return fmt.Errorf("can't decode botCommandScopeUsers#3c4f04d8 to nil")
		tl_bot_command_scope_gen.go#L225: 		return fmt.Errorf("unable to decode botCommandScopeUsers#3c4f04d8: %w", err)
		tl_bot_command_scope_gen.go#L233: 		return fmt.Errorf("can't decode botCommandScopeUsers#3c4f04d8 to nil")
		tl_bot_command_scope_gen.go#L310: 		return fmt.Errorf("can't encode botCommandScopeChats#6fe1a881 as nil")
		tl_bot_command_scope_gen.go#L319: 		return fmt.Errorf("can't encode botCommandScopeChats#6fe1a881 as nil")
		tl_bot_command_scope_gen.go#L327: 		return fmt.Errorf("can't decode botCommandScopeChats#6fe1a881 to nil")
		tl_bot_command_scope_gen.go#L330: 		return fmt.Errorf("unable to decode botCommandScopeChats#6fe1a881: %w", err)
		tl_bot_command_scope_gen.go#L338: 		return fmt.Errorf("can't decode botCommandScopeChats#6fe1a881 to nil")
		tl_bot_command_scope_gen.go#L416: 		return fmt.Errorf("can't encode botCommandScopeChatAdmins#b9aa606a as nil")
		tl_bot_command_scope_gen.go#L425: 		return fmt.Errorf("can't encode botCommandScopeChatAdmins#b9aa606a as nil")
		tl_bot_command_scope_gen.go#L433: 		return fmt.Errorf("can't decode botCommandScopeChatAdmins#b9aa606a to nil")
		tl_bot_command_scope_gen.go#L436: 		return fmt.Errorf("unable to decode botCommandScopeChatAdmins#b9aa606a: %w", err)
		tl_bot_command_scope_gen.go#L444: 		return fmt.Errorf("can't decode botCommandScopeChatAdmins#b9aa606a to nil")
		tl_bot_command_scope_gen.go#L535: 		return fmt.Errorf("can't encode botCommandScopePeer#db9d897d as nil")
		tl_bot_command_scope_gen.go#L544: 		return fmt.Errorf("can't encode botCommandScopePeer#db9d897d as nil")
		tl_bot_command_scope_gen.go#L547: 		return fmt.Errorf("unable to encode botCommandScopePeer#db9d897d: field peer is nil")
		tl_bot_command_scope_gen.go#L550: 		return fmt.Errorf("unable to encode botCommandScopePeer#db9d897d: field peer: %w", err)
		tl_bot_command_scope_gen.go#L558: 		return fmt.Errorf("can't decode botCommandScopePeer#db9d897d to nil")
		tl_bot_command_scope_gen.go#L561: 		return fmt.Errorf("unable to decode botCommandScopePeer#db9d897d: %w", err)
		tl_bot_command_scope_gen.go#L569: 		return fmt.Errorf("can't decode botCommandScopePeer#db9d897d to nil")
		tl_bot_command_scope_gen.go#L574: 			return fmt.Errorf("unable to decode botCommandScopePeer#db9d897d: field peer: %w", err)
		tl_bot_command_scope_gen.go#L679: 		return fmt.Errorf("can't encode botCommandScopePeerAdmins#3fd863d1 as nil")
		tl_bot_command_scope_gen.go#L688: 		return fmt.Errorf("can't encode botCommandScopePeerAdmins#3fd863d1 as nil")
		tl_bot_command_scope_gen.go#L691: 		return fmt.Errorf("unable to encode botCommandScopePeerAdmins#3fd863d1: field peer is nil")
		tl_bot_command_scope_gen.go#L694: 		return fmt.Errorf("unable to encode botCommandScopePeerAdmins#3fd863d1: field peer: %w", err)
		tl_bot_command_scope_gen.go#L702: 		return fmt.Errorf("can't decode botCommandScopePeerAdmins#3fd863d1 to nil")
		tl_bot_command_scope_gen.go#L705: 		return fmt.Errorf("unable to decode botCommandScopePeerAdmins#3fd863d1: %w", err)
		tl_bot_command_scope_gen.go#L713: 		return fmt.Errorf("can't decode botCommandScopePeerAdmins#3fd863d1 to nil")
		tl_bot_command_scope_gen.go#L718: 			return fmt.Errorf("unable to decode botCommandScopePeerAdmins#3fd863d1: field peer: %w", err)
		tl_bot_command_scope_gen.go#L834: 		return fmt.Errorf("can't encode botCommandScopePeerUser#a1321f3 as nil")
		tl_bot_command_scope_gen.go#L843: 		return fmt.Errorf("can't encode botCommandScopePeerUser#a1321f3 as nil")
		tl_bot_command_scope_gen.go#L846: 		return fmt.Errorf("unable to encode botCommandScopePeerUser#a1321f3: field peer is nil")
		tl_bot_command_scope_gen.go#L849: 		return fmt.Errorf("unable to encode botCommandScopePeerUser#a1321f3: field peer: %w", err)
		tl_bot_command_scope_gen.go#L852: 		return fmt.Errorf("unable to encode botCommandScopePeerUser#a1321f3: field user_id is nil")
		tl_bot_command_scope_gen.go#L855: 		return fmt.Errorf("unable to encode botCommandScopePeerUser#a1321f3: field user_id: %w", err)
		tl_bot_command_scope_gen.go#L863: 		return fmt.Errorf("can't decode botCommandScopePeerUser#a1321f3 to nil")
		tl_bot_command_scope_gen.go#L866: 		return fmt.Errorf("unable to decode botCommandScopePeerUser#a1321f3: %w", err)
		tl_bot_command_scope_gen.go#L874: 		return fmt.Errorf("can't decode botCommandScopePeerUser#a1321f3 to nil")
		tl_bot_command_scope_gen.go#L879: 			return fmt.Errorf("unable to decode botCommandScopePeerUser#a1321f3: field peer: %w", err)
		tl_bot_command_scope_gen.go#L886: 			return fmt.Errorf("unable to decode botCommandScopePeerUser#a1321f3: field user_id: %w", err)
		tl_bot_command_scope_gen.go#L962: 			return nil, fmt.Errorf("unable to decode BotCommandScopeClass: %w", err)
		tl_bot_command_scope_gen.go#L969: 			return nil, fmt.Errorf("unable to decode BotCommandScopeClass: %w", err)
		tl_bot_command_scope_gen.go#L976: 			return nil, fmt.Errorf("unable to decode BotCommandScopeClass: %w", err)
		tl_bot_command_scope_gen.go#L983: 			return nil, fmt.Errorf("unable to decode BotCommandScopeClass: %w", err)
		tl_bot_command_scope_gen.go#L990: 			return nil, fmt.Errorf("unable to decode BotCommandScopeClass: %w", err)
		tl_bot_command_scope_gen.go#L997: 			return nil, fmt.Errorf("unable to decode BotCommandScopeClass: %w", err)
		tl_bot_command_scope_gen.go#L1004: 			return nil, fmt.Errorf("unable to decode BotCommandScopeClass: %w", err)
		tl_bot_command_scope_gen.go#L1008: 		return nil, fmt.Errorf("unable to decode BotCommandScopeClass: %w", bin.NewUnexpectedID(id))
		tl_bot_command_scope_gen.go#L1020: 		return fmt.Errorf("unable to decode BotCommandScopeBox to nil")
		tl_bot_command_scope_gen.go#L1024: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_bot_command_scope_gen.go#L1033: 		return fmt.Errorf("unable to encode BotCommandScopeClass as nil")
		tl_bot_command_vector_gen.go#L112: 		return fmt.Errorf("can't encode Vector<BotCommand> as nil")
		tl_bot_command_vector_gen.go#L121: 		return fmt.Errorf("can't encode Vector<BotCommand> as nil")
		tl_bot_command_vector_gen.go#L126: 			return fmt.Errorf("unable to encode Vector<BotCommand>: field Elems element with index %d: %w", idx, err)
		tl_bot_command_vector_gen.go#L135: 		return fmt.Errorf("can't decode Vector<BotCommand> to nil")
		tl_bot_command_vector_gen.go#L144: 		return fmt.Errorf("can't decode Vector<BotCommand> to nil")
		tl_bot_command_vector_gen.go#L149: 			return fmt.Errorf("unable to decode Vector<BotCommand>: field Elems: %w", err)
		tl_bot_command_vector_gen.go#L158: 				return fmt.Errorf("unable to decode Vector<BotCommand>: field Elems: %w", err)
		tl_bot_info_gen.go#L236: 		return fmt.Errorf("can't encode botInfo#8f300b57 as nil")
		tl_bot_info_gen.go#L245: 		return fmt.Errorf("can't encode botInfo#8f300b57 as nil")
		tl_bot_info_gen.go#L249: 		return fmt.Errorf("unable to encode botInfo#8f300b57: field flags: %w", err)
		tl_bot_info_gen.go#L259: 			return fmt.Errorf("unable to encode botInfo#8f300b57: field description_photo is nil")
		tl_bot_info_gen.go#L262: 			return fmt.Errorf("unable to encode botInfo#8f300b57: field description_photo: %w", err)
		tl_bot_info_gen.go#L267: 			return fmt.Errorf("unable to encode botInfo#8f300b57: field description_document is nil")
		tl_bot_info_gen.go#L270: 			return fmt.Errorf("unable to encode botInfo#8f300b57: field description_document: %w", err)
		tl_bot_info_gen.go#L277: 				return fmt.Errorf("unable to encode botInfo#8f300b57: field commands element with index %d: %w", idx, err)
		tl_bot_info_gen.go#L283: 			return fmt.Errorf("unable to encode botInfo#8f300b57: field menu_button is nil")
		tl_bot_info_gen.go#L286: 			return fmt.Errorf("unable to encode botInfo#8f300b57: field menu_button: %w", err)
		tl_bot_info_gen.go#L295: 		return fmt.Errorf("can't decode botInfo#8f300b57 to nil")
		tl_bot_info_gen.go#L298: 		return fmt.Errorf("unable to decode botInfo#8f300b57: %w", err)
		tl_bot_info_gen.go#L306: 		return fmt.Errorf("can't decode botInfo#8f300b57 to nil")
		tl_bot_info_gen.go#L310: 			return fmt.Errorf("unable to decode botInfo#8f300b57: field flags: %w", err)
		tl_bot_info_gen.go#L316: 			return fmt.Errorf("unable to decode botInfo#8f300b57: field user_id: %w", err)
		tl_bot_info_gen.go#L323: 			return fmt.Errorf("unable to decode botInfo#8f300b57: field description: %w", err)
		tl_bot_info_gen.go#L330: 			return fmt.Errorf("unable to decode botInfo#8f300b57: field description_photo: %w", err)
		tl_bot_info_gen.go#L337: 			return fmt.Errorf("unable to decode botInfo#8f300b57: field description_document: %w", err)
		tl_bot_info_gen.go#L344: 			return fmt.Errorf("unable to decode botInfo#8f300b57: field commands: %w", err)
		tl_bot_info_gen.go#L353: 				return fmt.Errorf("unable to decode botInfo#8f300b57: field commands: %w", err)
		tl_bot_info_gen.go#L361: 			return fmt.Errorf("unable to decode botInfo#8f300b57: field menu_button: %w", err)
		tl_bot_inline_message_gen.go#L194: 		return fmt.Errorf("can't encode botInlineMessageMediaAuto#764cf810 as nil")
		tl_bot_inline_message_gen.go#L203: 		return fmt.Errorf("can't encode botInlineMessageMediaAuto#764cf810 as nil")
		tl_bot_inline_message_gen.go#L207: 		return fmt.Errorf("unable to encode botInlineMessageMediaAuto#764cf810: field flags: %w", err)
		tl_bot_inline_message_gen.go#L214: 				return fmt.Errorf("unable to encode botInlineMessageMediaAuto#764cf810: field entities element with index %d is nil", idx)
		tl_bot_inline_message_gen.go#L217: 				return fmt.Errorf("unable to encode botInlineMessageMediaAuto#764cf810: field entities element with index %d: %w", idx, err)
		tl_bot_inline_message_gen.go#L223: 			return fmt.Errorf("unable to encode botInlineMessageMediaAuto#764cf810: field reply_markup is nil")
		tl_bot_inline_message_gen.go#L226: 			return fmt.Errorf("unable to encode botInlineMessageMediaAuto#764cf810: field reply_markup: %w", err)
		tl_bot_inline_message_gen.go#L235: 		return fmt.Errorf("can't decode botInlineMessageMediaAuto#764cf810 to nil")
		tl_bot_inline_message_gen.go#L238: 		return fmt.Errorf("unable to decode botInlineMessageMediaAuto#764cf810: %w", err)
		tl_bot_inline_message_gen.go#L246: 		return fmt.Errorf("can't decode botInlineMessageMediaAuto#764cf810 to nil")
		tl_bot_inline_message_gen.go#L250: 			return fmt.Errorf("unable to decode botInlineMessageMediaAuto#764cf810: field flags: %w", err)
		tl_bot_inline_message_gen.go#L257: 			return fmt.Errorf("unable to decode botInlineMessageMediaAuto#764cf810: field message: %w", err)
		tl_bot_inline_message_gen.go#L264: 			return fmt.Errorf("unable to decode botInlineMessageMediaAuto#764cf810: field entities: %w", err)
		tl_bot_inline_message_gen.go#L273: 				return fmt.Errorf("unable to decode botInlineMessageMediaAuto#764cf810: field entities: %w", err)
		tl_bot_inline_message_gen.go#L281: 			return fmt.Errorf("unable to decode botInlineMessageMediaAuto#764cf810: field reply_markup: %w", err)
		tl_bot_inline_message_gen.go#L531: 		return fmt.Errorf("can't encode botInlineMessageText#8c7f65e2 as nil")
		tl_bot_inline_message_gen.go#L540: 		return fmt.Errorf("can't encode botInlineMessageText#8c7f65e2 as nil")
		tl_bot_inline_message_gen.go#L544: 		return fmt.Errorf("unable to encode botInlineMessageText#8c7f65e2: field flags: %w", err)
		tl_bot_inline_message_gen.go#L551: 				return fmt.Errorf("unable to encode botInlineMessageText#8c7f65e2: field entities element with index %d is nil", idx)
		tl_bot_inline_message_gen.go#L554: 				return fmt.Errorf("unable to encode botInlineMessageText#8c7f65e2: field entities element with index %d: %w", idx, err)
		tl_bot_inline_message_gen.go#L560: 			return fmt.Errorf("unable to encode botInlineMessageText#8c7f65e2: field reply_markup is nil")
		tl_bot_inline_message_gen.go#L563: 			return fmt.Errorf("unable to encode botInlineMessageText#8c7f65e2: field reply_markup: %w", err)
		tl_bot_inline_message_gen.go#L572: 		return fmt.Errorf("can't decode botInlineMessageText#8c7f65e2 to nil")
		tl_bot_inline_message_gen.go#L575: 		return fmt.Errorf("unable to decode botInlineMessageText#8c7f65e2: %w", err)
		tl_bot_inline_message_gen.go#L583: 		return fmt.Errorf("can't decode botInlineMessageText#8c7f65e2 to nil")
		tl_bot_inline_message_gen.go#L587: 			return fmt.Errorf("unable to decode botInlineMessageText#8c7f65e2: field flags: %w", err)
		tl_bot_inline_message_gen.go#L595: 			return fmt.Errorf("unable to decode botInlineMessageText#8c7f65e2: field message: %w", err)
		tl_bot_inline_message_gen.go#L602: 			return fmt.Errorf("unable to decode botInlineMessageText#8c7f65e2: field entities: %w", err)
		tl_bot_inline_message_gen.go#L611: 				return fmt.Errorf("unable to decode botInlineMessageText#8c7f65e2: field entities: %w", err)
		tl_bot_inline_message_gen.go#L619: 			return fmt.Errorf("unable to decode botInlineMessageText#8c7f65e2: field reply_markup: %w", err)
		tl_bot_inline_message_gen.go#L901: 		return fmt.Errorf("can't encode botInlineMessageMediaGeo#51846fd as nil")
		tl_bot_inline_message_gen.go#L910: 		return fmt.Errorf("can't encode botInlineMessageMediaGeo#51846fd as nil")
		tl_bot_inline_message_gen.go#L914: 		return fmt.Errorf("unable to encode botInlineMessageMediaGeo#51846fd: field flags: %w", err)
		tl_bot_inline_message_gen.go#L917: 		return fmt.Errorf("unable to encode botInlineMessageMediaGeo#51846fd: field geo is nil")
		tl_bot_inline_message_gen.go#L920: 		return fmt.Errorf("unable to encode botInlineMessageMediaGeo#51846fd: field geo: %w", err)
		tl_bot_inline_message_gen.go#L933: 			return fmt.Errorf("unable to encode botInlineMessageMediaGeo#51846fd: field reply_markup is nil")
		tl_bot_inline_message_gen.go#L936: 			return fmt.Errorf("unable to encode botInlineMessageMediaGeo#51846fd: field reply_markup: %w", err)
		tl_bot_inline_message_gen.go#L945: 		return fmt.Errorf("can't decode botInlineMessageMediaGeo#51846fd to nil")
		tl_bot_inline_message_gen.go#L948: 		return fmt.Errorf("unable to decode botInlineMessageMediaGeo#51846fd: %w", err)
		tl_bot_inline_message_gen.go#L956: 		return fmt.Errorf("can't decode botInlineMessageMediaGeo#51846fd to nil")
		tl_bot_inline_message_gen.go#L960: 			return fmt.Errorf("unable to decode botInlineMessageMediaGeo#51846fd: field flags: %w", err)
		tl_bot_inline_message_gen.go#L966: 			return fmt.Errorf("unable to decode botInlineMessageMediaGeo#51846fd: field geo: %w", err)
		tl_bot_inline_message_gen.go#L973: 			return fmt.Errorf("unable to decode botInlineMessageMediaGeo#51846fd: field heading: %w", err)
		tl_bot_inline_message_gen.go#L980: 			return fmt.Errorf("unable to decode botInlineMessageMediaGeo#51846fd: field period: %w", err)
		tl_bot_inline_message_gen.go#L987: 			return fmt.Errorf("unable to decode botInlineMessageMediaGeo#51846fd: field proximity_notification_radius: %w", err)
		tl_bot_inline_message_gen.go#L994: 			return fmt.Errorf("unable to decode botInlineMessageMediaGeo#51846fd: field reply_markup: %w", err)
		tl_bot_inline_message_gen.go#L1255: 		return fmt.Errorf("can't encode botInlineMessageMediaVenue#8a86659c as nil")
		tl_bot_inline_message_gen.go#L1264: 		return fmt.Errorf("can't encode botInlineMessageMediaVenue#8a86659c as nil")
		tl_bot_inline_message_gen.go#L1268: 		return fmt.Errorf("unable to encode botInlineMessageMediaVenue#8a86659c: field flags: %w", err)
		tl_bot_inline_message_gen.go#L1271: 		return fmt.Errorf("unable to encode botInlineMessageMediaVenue#8a86659c: field geo is nil")
		tl_bot_inline_message_gen.go#L1274: 		return fmt.Errorf("unable to encode botInlineMessageMediaVenue#8a86659c: field geo: %w", err)
		tl_bot_inline_message_gen.go#L1283: 			return fmt.Errorf("unable to encode botInlineMessageMediaVenue#8a86659c: field reply_markup is nil")
		tl_bot_inline_message_gen.go#L1286: 			return fmt.Errorf("unable to encode botInlineMessageMediaVenue#8a86659c: field reply_markup: %w", err)
		tl_bot_inline_message_gen.go#L1295: 		return fmt.Errorf("can't decode botInlineMessageMediaVenue#8a86659c to nil")
		tl_bot_inline_message_gen.go#L1298: 		return fmt.Errorf("unable to decode botInlineMessageMediaVenue#8a86659c: %w", err)
		tl_bot_inline_message_gen.go#L1306: 		return fmt.Errorf("can't decode botInlineMessageMediaVenue#8a86659c to nil")
		tl_bot_inline_message_gen.go#L1310: 			return fmt.Errorf("unable to decode botInlineMessageMediaVenue#8a86659c: field flags: %w", err)
		tl_bot_inline_message_gen.go#L1316: 			return fmt.Errorf("unable to decode botInlineMessageMediaVenue#8a86659c: field geo: %w", err)
		tl_bot_inline_message_gen.go#L1323: 			return fmt.Errorf("unable to decode botInlineMessageMediaVenue#8a86659c: field title: %w", err)
		tl_bot_inline_message_gen.go#L1330: 			return fmt.Errorf("unable to decode botInlineMessageMediaVenue#8a86659c: field address: %w", err)
		tl_bot_inline_message_gen.go#L1337: 			return fmt.Errorf("unable to decode botInlineMessageMediaVenue#8a86659c: field provider: %w", err)
		tl_bot_inline_message_gen.go#L1344: 			return fmt.Errorf("unable to decode botInlineMessageMediaVenue#8a86659c: field venue_id: %w", err)
		tl_bot_inline_message_gen.go#L1351: 			return fmt.Errorf("unable to decode botInlineMessageMediaVenue#8a86659c: field venue_type: %w", err)
		tl_bot_inline_message_gen.go#L1358: 			return fmt.Errorf("unable to decode botInlineMessageMediaVenue#8a86659c: field reply_markup: %w", err)
		tl_bot_inline_message_gen.go#L1582: 		return fmt.Errorf("can't encode botInlineMessageMediaContact#18d1cdc2 as nil")
		tl_bot_inline_message_gen.go#L1591: 		return fmt.Errorf("can't encode botInlineMessageMediaContact#18d1cdc2 as nil")
		tl_bot_inline_message_gen.go#L1595: 		return fmt.Errorf("unable to encode botInlineMessageMediaContact#18d1cdc2: field flags: %w", err)
		tl_bot_inline_message_gen.go#L1603: 			return fmt.Errorf("unable to encode botInlineMessageMediaContact#18d1cdc2: field reply_markup is nil")
		tl_bot_inline_message_gen.go#L1606: 			return fmt.Errorf("unable to encode botInlineMessageMediaContact#18d1cdc2: field reply_markup: %w", err)
		tl_bot_inline_message_gen.go#L1615: 		return fmt.Errorf("can't decode botInlineMessageMediaContact#18d1cdc2 to nil")
		tl_bot_inline_message_gen.go#L1618: 		return fmt.Errorf("unable to decode botInlineMessageMediaContact#18d1cdc2: %w", err)
		tl_bot_inline_message_gen.go#L1626: 		return fmt.Errorf("can't decode botInlineMessageMediaContact#18d1cdc2 to nil")
		tl_bot_inline_message_gen.go#L1630: 			return fmt.Errorf("unable to decode botInlineMessageMediaContact#18d1cdc2: field flags: %w", err)
		tl_bot_inline_message_gen.go#L1636: 			return fmt.Errorf("unable to decode botInlineMessageMediaContact#18d1cdc2: field phone_number: %w", err)
		tl_bot_inline_message_gen.go#L1643: 			return fmt.Errorf("unable to decode botInlineMessageMediaContact#18d1cdc2: field first_name: %w", err)
		tl_bot_inline_message_gen.go#L1650: 			return fmt.Errorf("unable to decode botInlineMessageMediaContact#18d1cdc2: field last_name: %w", err)
		tl_bot_inline_message_gen.go#L1657: 			return fmt.Errorf("unable to decode botInlineMessageMediaContact#18d1cdc2: field vcard: %w", err)
		tl_bot_inline_message_gen.go#L1664: 			return fmt.Errorf("unable to decode botInlineMessageMediaContact#18d1cdc2: field reply_markup: %w", err)
		tl_bot_inline_message_gen.go#L1931: 		return fmt.Errorf("can't encode botInlineMessageMediaInvoice#354a9b09 as nil")
		tl_bot_inline_message_gen.go#L1940: 		return fmt.Errorf("can't encode botInlineMessageMediaInvoice#354a9b09 as nil")
		tl_bot_inline_message_gen.go#L1944: 		return fmt.Errorf("unable to encode botInlineMessageMediaInvoice#354a9b09: field flags: %w", err)
		tl_bot_inline_message_gen.go#L1950: 			return fmt.Errorf("unable to encode botInlineMessageMediaInvoice#354a9b09: field photo is nil")
		tl_bot_inline_message_gen.go#L1953: 			return fmt.Errorf("unable to encode botInlineMessageMediaInvoice#354a9b09: field photo: %w", err)
		tl_bot_inline_message_gen.go#L1960: 			return fmt.Errorf("unable to encode botInlineMessageMediaInvoice#354a9b09: field reply_markup is nil")
		tl_bot_inline_message_gen.go#L1963: 			return fmt.Errorf("unable to encode botInlineMessageMediaInvoice#354a9b09: field reply_markup: %w", err)
		tl_bot_inline_message_gen.go#L1972: 		return fmt.Errorf("can't decode botInlineMessageMediaInvoice#354a9b09 to nil")
		tl_bot_inline_message_gen.go#L1975: 		return fmt.Errorf("unable to decode botInlineMessageMediaInvoice#354a9b09: %w", err)
		tl_bot_inline_message_gen.go#L1983: 		return fmt.Errorf("can't decode botInlineMessageMediaInvoice#354a9b09 to nil")
		tl_bot_inline_message_gen.go#L1987: 			return fmt.Errorf("unable to decode botInlineMessageMediaInvoice#354a9b09: field flags: %w", err)
		tl_bot_inline_message_gen.go#L1995: 			return fmt.Errorf("unable to decode botInlineMessageMediaInvoice#354a9b09: field title: %w", err)
		tl_bot_inline_message_gen.go#L2002: 			return fmt.Errorf("unable to decode botInlineMessageMediaInvoice#354a9b09: field description: %w", err)
		tl_bot_inline_message_gen.go#L2009: 			return fmt.Errorf("unable to decode botInlineMessageMediaInvoice#354a9b09: field photo: %w", err)
		tl_bot_inline_message_gen.go#L2016: 			return fmt.Errorf("unable to decode botInlineMessageMediaInvoice#354a9b09: field currency: %w", err)
		tl_bot_inline_message_gen.go#L2023: 			return fmt.Errorf("unable to decode botInlineMessageMediaInvoice#354a9b09: field total_amount: %w", err)
		tl_bot_inline_message_gen.go#L2030: 			return fmt.Errorf("unable to decode botInlineMessageMediaInvoice#354a9b09: field reply_markup: %w", err)
		tl_bot_inline_message_gen.go#L2377: 		return fmt.Errorf("can't encode botInlineMessageMediaWebPage#809ad9a6 as nil")
		tl_bot_inline_message_gen.go#L2386: 		return fmt.Errorf("can't encode botInlineMessageMediaWebPage#809ad9a6 as nil")
		tl_bot_inline_message_gen.go#L2390: 		return fmt.Errorf("unable to encode botInlineMessageMediaWebPage#809ad9a6: field flags: %w", err)
		tl_bot_inline_message_gen.go#L2397: 				return fmt.Errorf("unable to encode botInlineMessageMediaWebPage#809ad9a6: field entities element with index %d is nil", idx)
		tl_bot_inline_message_gen.go#L2400: 				return fmt.Errorf("unable to encode botInlineMessageMediaWebPage#809ad9a6: field entities element with index %d: %w", idx, err)
		tl_bot_inline_message_gen.go#L2407: 			return fmt.Errorf("unable to encode botInlineMessageMediaWebPage#809ad9a6: field reply_markup is nil")
		tl_bot_inline_message_gen.go#L2410: 			return fmt.Errorf("unable to encode botInlineMessageMediaWebPage#809ad9a6: field reply_markup: %w", err)
		tl_bot_inline_message_gen.go#L2419: 		return fmt.Errorf("can't decode botInlineMessageMediaWebPage#809ad9a6 to nil")
		tl_bot_inline_message_gen.go#L2422: 		return fmt.Errorf("unable to decode botInlineMessageMediaWebPage#809ad9a6: %w", err)
		tl_bot_inline_message_gen.go#L2430: 		return fmt.Errorf("can't decode botInlineMessageMediaWebPage#809ad9a6 to nil")
		tl_bot_inline_message_gen.go#L2434: 			return fmt.Errorf("unable to decode botInlineMessageMediaWebPage#809ad9a6: field flags: %w", err)
		tl_bot_inline_message_gen.go#L2445: 			return fmt.Errorf("unable to decode botInlineMessageMediaWebPage#809ad9a6: field message: %w", err)
		tl_bot_inline_message_gen.go#L2452: 			return fmt.Errorf("unable to decode botInlineMessageMediaWebPage#809ad9a6: field entities: %w", err)
		tl_bot_inline_message_gen.go#L2461: 				return fmt.Errorf("unable to decode botInlineMessageMediaWebPage#809ad9a6: field entities: %w", err)
		tl_bot_inline_message_gen.go#L2469: 			return fmt.Errorf("unable to decode botInlineMessageMediaWebPage#809ad9a6: field url: %w", err)
		tl_bot_inline_message_gen.go#L2476: 			return fmt.Errorf("unable to decode botInlineMessageMediaWebPage#809ad9a6: field reply_markup: %w", err)
		tl_bot_inline_message_gen.go#L2694: 			return nil, fmt.Errorf("unable to decode BotInlineMessageClass: %w", err)
		tl_bot_inline_message_gen.go#L2701: 			return nil, fmt.Errorf("unable to decode BotInlineMessageClass: %w", err)
		tl_bot_inline_message_gen.go#L2708: 			return nil, fmt.Errorf("unable to decode BotInlineMessageClass: %w", err)
		tl_bot_inline_message_gen.go#L2715: 			return nil, fmt.Errorf("unable to decode BotInlineMessageClass: %w", err)
		tl_bot_inline_message_gen.go#L2722: 			return nil, fmt.Errorf("unable to decode BotInlineMessageClass: %w", err)
		tl_bot_inline_message_gen.go#L2729: 			return nil, fmt.Errorf("unable to decode BotInlineMessageClass: %w", err)
		tl_bot_inline_message_gen.go#L2736: 			return nil, fmt.Errorf("unable to decode BotInlineMessageClass: %w", err)
		tl_bot_inline_message_gen.go#L2740: 		return nil, fmt.Errorf("unable to decode BotInlineMessageClass: %w", bin.NewUnexpectedID(id))
		tl_bot_inline_message_gen.go#L2752: 		return fmt.Errorf("unable to decode BotInlineMessageBox to nil")
		tl_bot_inline_message_gen.go#L2756: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_bot_inline_message_gen.go#L2765: 		return fmt.Errorf("unable to encode BotInlineMessageClass as nil")
		tl_bot_inline_result_gen.go#L257: 		return fmt.Errorf("can't encode botInlineResult#11965f3a as nil")
		tl_bot_inline_result_gen.go#L266: 		return fmt.Errorf("can't encode botInlineResult#11965f3a as nil")
		tl_bot_inline_result_gen.go#L270: 		return fmt.Errorf("unable to encode botInlineResult#11965f3a: field flags: %w", err)
		tl_bot_inline_result_gen.go#L285: 			return fmt.Errorf("unable to encode botInlineResult#11965f3a: field thumb is nil")
		tl_bot_inline_result_gen.go#L288: 			return fmt.Errorf("unable to encode botInlineResult#11965f3a: field thumb: %w", err)
		tl_bot_inline_result_gen.go#L293: 			return fmt.Errorf("unable to encode botInlineResult#11965f3a: field content is nil")
		tl_bot_inline_result_gen.go#L296: 			return fmt.Errorf("unable to encode botInlineResult#11965f3a: field content: %w", err)
		tl_bot_inline_result_gen.go#L300: 		return fmt.Errorf("unable to encode botInlineResult#11965f3a: field send_message is nil")
		tl_bot_inline_result_gen.go#L303: 		return fmt.Errorf("unable to encode botInlineResult#11965f3a: field send_message: %w", err)
		tl_bot_inline_result_gen.go#L311: 		return fmt.Errorf("can't decode botInlineResult#11965f3a to nil")
		tl_bot_inline_result_gen.go#L314: 		return fmt.Errorf("unable to decode botInlineResult#11965f3a: %w", err)
		tl_bot_inline_result_gen.go#L322: 		return fmt.Errorf("can't decode botInlineResult#11965f3a to nil")
		tl_bot_inline_result_gen.go#L326: 			return fmt.Errorf("unable to decode botInlineResult#11965f3a: field flags: %w", err)
		tl_bot_inline_result_gen.go#L332: 			return fmt.Errorf("unable to decode botInlineResult#11965f3a: field id: %w", err)
		tl_bot_inline_result_gen.go#L339: 			return fmt.Errorf("unable to decode botInlineResult#11965f3a: field type: %w", err)
		tl_bot_inline_result_gen.go#L346: 			return fmt.Errorf("unable to decode botInlineResult#11965f3a: field title: %w", err)
		tl_bot_inline_result_gen.go#L353: 			return fmt.Errorf("unable to decode botInlineResult#11965f3a: field description: %w", err)
		tl_bot_inline_result_gen.go#L360: 			return fmt.Errorf("unable to decode botInlineResult#11965f3a: field url: %w", err)
		tl_bot_inline_result_gen.go#L367: 			return fmt.Errorf("unable to decode botInlineResult#11965f3a: field thumb: %w", err)
		tl_bot_inline_result_gen.go#L374: 			return fmt.Errorf("unable to decode botInlineResult#11965f3a: field content: %w", err)
		tl_bot_inline_result_gen.go#L381: 			return fmt.Errorf("unable to decode botInlineResult#11965f3a: field send_message: %w", err)
		tl_bot_inline_result_gen.go#L709: 		return fmt.Errorf("can't encode botInlineMediaResult#17db940b as nil")
		tl_bot_inline_result_gen.go#L718: 		return fmt.Errorf("can't encode botInlineMediaResult#17db940b as nil")
		tl_bot_inline_result_gen.go#L722: 		return fmt.Errorf("unable to encode botInlineMediaResult#17db940b: field flags: %w", err)
		tl_bot_inline_result_gen.go#L728: 			return fmt.Errorf("unable to encode botInlineMediaResult#17db940b: field photo is nil")
		tl_bot_inline_result_gen.go#L731: 			return fmt.Errorf("unable to encode botInlineMediaResult#17db940b: field photo: %w", err)
		tl_bot_inline_result_gen.go#L736: 			return fmt.Errorf("unable to encode botInlineMediaResult#17db940b: field document is nil")
		tl_bot_inline_result_gen.go#L739: 			return fmt.Errorf("unable to encode botInlineMediaResult#17db940b: field document: %w", err)
		tl_bot_inline_result_gen.go#L749: 		return fmt.Errorf("unable to encode botInlineMediaResult#17db940b: field send_message is nil")
		tl_bot_inline_result_gen.go#L752: 		return fmt.Errorf("unable to encode botInlineMediaResult#17db940b: field send_message: %w", err)
		tl_bot_inline_result_gen.go#L760: 		return fmt.Errorf("can't decode botInlineMediaResult#17db940b to nil")
		tl_bot_inline_result_gen.go#L763: 		return fmt.Errorf("unable to decode botInlineMediaResult#17db940b: %w", err)
		tl_bot_inline_result_gen.go#L771: 		return fmt.Errorf("can't decode botInlineMediaResult#17db940b to nil")
		tl_bot_inline_result_gen.go#L775: 			return fmt.Errorf("unable to decode botInlineMediaResult#17db940b: field flags: %w", err)
		tl_bot_inline_result_gen.go#L781: 			return fmt.Errorf("unable to decode botInlineMediaResult#17db940b: field id: %w", err)
		tl_bot_inline_result_gen.go#L788: 			return fmt.Errorf("unable to decode botInlineMediaResult#17db940b: field type: %w", err)
		tl_bot_inline_result_gen.go#L795: 			return fmt.Errorf("unable to decode botInlineMediaResult#17db940b: field photo: %w", err)
		tl_bot_inline_result_gen.go#L802: 			return fmt.Errorf("unable to decode botInlineMediaResult#17db940b: field document: %w", err)
		tl_bot_inline_result_gen.go#L809: 			return fmt.Errorf("unable to decode botInlineMediaResult#17db940b: field title: %w", err)
		tl_bot_inline_result_gen.go#L816: 			return fmt.Errorf("unable to decode botInlineMediaResult#17db940b: field description: %w", err)
		tl_bot_inline_result_gen.go#L823: 			return fmt.Errorf("unable to decode botInlineMediaResult#17db940b: field send_message: %w", err)
		tl_bot_inline_result_gen.go#L992: 			return nil, fmt.Errorf("unable to decode BotInlineResultClass: %w", err)
		tl_bot_inline_result_gen.go#L999: 			return nil, fmt.Errorf("unable to decode BotInlineResultClass: %w", err)
		tl_bot_inline_result_gen.go#L1003: 		return nil, fmt.Errorf("unable to decode BotInlineResultClass: %w", bin.NewUnexpectedID(id))
		tl_bot_inline_result_gen.go#L1015: 		return fmt.Errorf("unable to decode BotInlineResultBox to nil")
		tl_bot_inline_result_gen.go#L1019: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_bot_inline_result_gen.go#L1028: 		return fmt.Errorf("unable to encode BotInlineResultClass as nil")
		tl_bot_menu_button_gen.go#L107: 		return fmt.Errorf("can't encode botMenuButtonDefault#7533a588 as nil")
		tl_bot_menu_button_gen.go#L116: 		return fmt.Errorf("can't encode botMenuButtonDefault#7533a588 as nil")
		tl_bot_menu_button_gen.go#L124: 		return fmt.Errorf("can't decode botMenuButtonDefault#7533a588 to nil")
		tl_bot_menu_button_gen.go#L127: 		return fmt.Errorf("unable to decode botMenuButtonDefault#7533a588: %w", err)
		tl_bot_menu_button_gen.go#L135: 		return fmt.Errorf("can't decode botMenuButtonDefault#7533a588 to nil")
		tl_bot_menu_button_gen.go#L212: 		return fmt.Errorf("can't encode botMenuButtonCommands#4258c205 as nil")
		tl_bot_menu_button_gen.go#L221: 		return fmt.Errorf("can't encode botMenuButtonCommands#4258c205 as nil")
		tl_bot_menu_button_gen.go#L229: 		return fmt.Errorf("can't decode botMenuButtonCommands#4258c205 to nil")
		tl_bot_menu_button_gen.go#L232: 		return fmt.Errorf("unable to decode botMenuButtonCommands#4258c205: %w", err)
		tl_bot_menu_button_gen.go#L240: 		return fmt.Errorf("can't decode botMenuButtonCommands#4258c205 to nil")
		tl_bot_menu_button_gen.go#L349: 		return fmt.Errorf("can't encode botMenuButton#c7b57ce6 as nil")
		tl_bot_menu_button_gen.go#L358: 		return fmt.Errorf("can't encode botMenuButton#c7b57ce6 as nil")
		tl_bot_menu_button_gen.go#L368: 		return fmt.Errorf("can't decode botMenuButton#c7b57ce6 to nil")
		tl_bot_menu_button_gen.go#L371: 		return fmt.Errorf("unable to decode botMenuButton#c7b57ce6: %w", err)
		tl_bot_menu_button_gen.go#L379: 		return fmt.Errorf("can't decode botMenuButton#c7b57ce6 to nil")
		tl_bot_menu_button_gen.go#L384: 			return fmt.Errorf("unable to decode botMenuButton#c7b57ce6: field text: %w", err)
		tl_bot_menu_button_gen.go#L391: 			return fmt.Errorf("unable to decode botMenuButton#c7b57ce6: field url: %w", err)
		tl_bot_menu_button_gen.go#L463: 			return nil, fmt.Errorf("unable to decode BotMenuButtonClass: %w", err)
		tl_bot_menu_button_gen.go#L470: 			return nil, fmt.Errorf("unable to decode BotMenuButtonClass: %w", err)
		tl_bot_menu_button_gen.go#L477: 			return nil, fmt.Errorf("unable to decode BotMenuButtonClass: %w", err)
		tl_bot_menu_button_gen.go#L481: 		return nil, fmt.Errorf("unable to decode BotMenuButtonClass: %w", bin.NewUnexpectedID(id))
		tl_bot_menu_button_gen.go#L493: 		return fmt.Errorf("unable to decode BotMenuButtonBox to nil")
		tl_bot_menu_button_gen.go#L497: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_bot_menu_button_gen.go#L506: 		return fmt.Errorf("unable to encode BotMenuButtonClass as nil")
		tl_bots_allow_send_message_gen.go#L115: 		return fmt.Errorf("can't encode bots.allowSendMessage#f132e3ef as nil")
		tl_bots_allow_send_message_gen.go#L124: 		return fmt.Errorf("can't encode bots.allowSendMessage#f132e3ef as nil")
		tl_bots_allow_send_message_gen.go#L127: 		return fmt.Errorf("unable to encode bots.allowSendMessage#f132e3ef: field bot is nil")
		tl_bots_allow_send_message_gen.go#L130: 		return fmt.Errorf("unable to encode bots.allowSendMessage#f132e3ef: field bot: %w", err)
		tl_bots_allow_send_message_gen.go#L138: 		return fmt.Errorf("can't decode bots.allowSendMessage#f132e3ef to nil")
		tl_bots_allow_send_message_gen.go#L141: 		return fmt.Errorf("unable to decode bots.allowSendMessage#f132e3ef: %w", err)
		tl_bots_allow_send_message_gen.go#L149: 		return fmt.Errorf("can't decode bots.allowSendMessage#f132e3ef to nil")
		tl_bots_allow_send_message_gen.go#L154: 			return fmt.Errorf("unable to decode bots.allowSendMessage#f132e3ef: field bot: %w", err)
		tl_bots_answer_webhook_json_query_gen.go#L126: 		return fmt.Errorf("can't encode bots.answerWebhookJSONQuery#e6213f4d as nil")
		tl_bots_answer_webhook_json_query_gen.go#L135: 		return fmt.Errorf("can't encode bots.answerWebhookJSONQuery#e6213f4d as nil")
		tl_bots_answer_webhook_json_query_gen.go#L139: 		return fmt.Errorf("unable to encode bots.answerWebhookJSONQuery#e6213f4d: field data: %w", err)
		tl_bots_answer_webhook_json_query_gen.go#L147: 		return fmt.Errorf("can't decode bots.answerWebhookJSONQuery#e6213f4d to nil")
		tl_bots_answer_webhook_json_query_gen.go#L150: 		return fmt.Errorf("unable to decode bots.answerWebhookJSONQuery#e6213f4d: %w", err)
		tl_bots_answer_webhook_json_query_gen.go#L158: 		return fmt.Errorf("can't decode bots.answerWebhookJSONQuery#e6213f4d to nil")
		tl_bots_answer_webhook_json_query_gen.go#L163: 			return fmt.Errorf("unable to decode bots.answerWebhookJSONQuery#e6213f4d: field query_id: %w", err)
		tl_bots_answer_webhook_json_query_gen.go#L169: 			return fmt.Errorf("unable to decode bots.answerWebhookJSONQuery#e6213f4d: field data: %w", err)
		tl_bots_bot_info_gen.go#L137: 		return fmt.Errorf("can't encode bots.botInfo#e8a775b0 as nil")
		tl_bots_bot_info_gen.go#L146: 		return fmt.Errorf("can't encode bots.botInfo#e8a775b0 as nil")
		tl_bots_bot_info_gen.go#L157: 		return fmt.Errorf("can't decode bots.botInfo#e8a775b0 to nil")
		tl_bots_bot_info_gen.go#L160: 		return fmt.Errorf("unable to decode bots.botInfo#e8a775b0: %w", err)
		tl_bots_bot_info_gen.go#L168: 		return fmt.Errorf("can't decode bots.botInfo#e8a775b0 to nil")
		tl_bots_bot_info_gen.go#L173: 			return fmt.Errorf("unable to decode bots.botInfo#e8a775b0: field name: %w", err)
		tl_bots_bot_info_gen.go#L180: 			return fmt.Errorf("unable to decode bots.botInfo#e8a775b0: field about: %w", err)
		tl_bots_bot_info_gen.go#L187: 			return fmt.Errorf("unable to decode bots.botInfo#e8a775b0: field description: %w", err)
		tl_bots_can_send_message_gen.go#L115: 		return fmt.Errorf("can't encode bots.canSendMessage#1359f4e6 as nil")
		tl_bots_can_send_message_gen.go#L124: 		return fmt.Errorf("can't encode bots.canSendMessage#1359f4e6 as nil")
		tl_bots_can_send_message_gen.go#L127: 		return fmt.Errorf("unable to encode bots.canSendMessage#1359f4e6: field bot is nil")
		tl_bots_can_send_message_gen.go#L130: 		return fmt.Errorf("unable to encode bots.canSendMessage#1359f4e6: field bot: %w", err)
		tl_bots_can_send_message_gen.go#L138: 		return fmt.Errorf("can't decode bots.canSendMessage#1359f4e6 to nil")
		tl_bots_can_send_message_gen.go#L141: 		return fmt.Errorf("unable to decode bots.canSendMessage#1359f4e6: %w", err)
		tl_bots_can_send_message_gen.go#L149: 		return fmt.Errorf("can't decode bots.canSendMessage#1359f4e6 to nil")
		tl_bots_can_send_message_gen.go#L154: 			return fmt.Errorf("unable to decode bots.canSendMessage#1359f4e6: field bot: %w", err)
		tl_bots_get_bot_commands_gen.go#L126: 		return fmt.Errorf("can't encode bots.getBotCommands#e34c0dd6 as nil")
		tl_bots_get_bot_commands_gen.go#L135: 		return fmt.Errorf("can't encode bots.getBotCommands#e34c0dd6 as nil")
		tl_bots_get_bot_commands_gen.go#L138: 		return fmt.Errorf("unable to encode bots.getBotCommands#e34c0dd6: field scope is nil")
		tl_bots_get_bot_commands_gen.go#L141: 		return fmt.Errorf("unable to encode bots.getBotCommands#e34c0dd6: field scope: %w", err)
		tl_bots_get_bot_commands_gen.go#L150: 		return fmt.Errorf("can't decode bots.getBotCommands#e34c0dd6 to nil")
		tl_bots_get_bot_commands_gen.go#L153: 		return fmt.Errorf("unable to decode bots.getBotCommands#e34c0dd6: %w", err)
		tl_bots_get_bot_commands_gen.go#L161: 		return fmt.Errorf("can't decode bots.getBotCommands#e34c0dd6 to nil")
		tl_bots_get_bot_commands_gen.go#L166: 			return fmt.Errorf("unable to decode bots.getBotCommands#e34c0dd6: field scope: %w", err)
		tl_bots_get_bot_commands_gen.go#L173: 			return fmt.Errorf("unable to decode bots.getBotCommands#e34c0dd6: field lang_code: %w", err)
		tl_bots_get_bot_info_gen.go#L149: 		return fmt.Errorf("can't encode bots.getBotInfo#dcd914fd as nil")
		tl_bots_get_bot_info_gen.go#L158: 		return fmt.Errorf("can't encode bots.getBotInfo#dcd914fd as nil")
		tl_bots_get_bot_info_gen.go#L162: 		return fmt.Errorf("unable to encode bots.getBotInfo#dcd914fd: field flags: %w", err)
		tl_bots_get_bot_info_gen.go#L166: 			return fmt.Errorf("unable to encode bots.getBotInfo#dcd914fd: field bot is nil")
		tl_bots_get_bot_info_gen.go#L169: 			return fmt.Errorf("unable to encode bots.getBotInfo#dcd914fd: field bot: %w", err)
		tl_bots_get_bot_info_gen.go#L179: 		return fmt.Errorf("can't decode bots.getBotInfo#dcd914fd to nil")
		tl_bots_get_bot_info_gen.go#L182: 		return fmt.Errorf("unable to decode bots.getBotInfo#dcd914fd: %w", err)
		tl_bots_get_bot_info_gen.go#L190: 		return fmt.Errorf("can't decode bots.getBotInfo#dcd914fd to nil")
		tl_bots_get_bot_info_gen.go#L194: 			return fmt.Errorf("unable to decode bots.getBotInfo#dcd914fd: field flags: %w", err)
		tl_bots_get_bot_info_gen.go#L200: 			return fmt.Errorf("unable to decode bots.getBotInfo#dcd914fd: field bot: %w", err)
		tl_bots_get_bot_info_gen.go#L207: 			return fmt.Errorf("unable to decode bots.getBotInfo#dcd914fd: field lang_code: %w", err)
		tl_bots_get_bot_menu_button_gen.go#L120: 		return fmt.Errorf("can't encode bots.getBotMenuButton#9c60eb28 as nil")
		tl_bots_get_bot_menu_button_gen.go#L129: 		return fmt.Errorf("can't encode bots.getBotMenuButton#9c60eb28 as nil")
		tl_bots_get_bot_menu_button_gen.go#L132: 		return fmt.Errorf("unable to encode bots.getBotMenuButton#9c60eb28: field user_id is nil")
		tl_bots_get_bot_menu_button_gen.go#L135: 		return fmt.Errorf("unable to encode bots.getBotMenuButton#9c60eb28: field user_id: %w", err)
		tl_bots_get_bot_menu_button_gen.go#L143: 		return fmt.Errorf("can't decode bots.getBotMenuButton#9c60eb28 to nil")
		tl_bots_get_bot_menu_button_gen.go#L146: 		return fmt.Errorf("unable to decode bots.getBotMenuButton#9c60eb28: %w", err)
		tl_bots_get_bot_menu_button_gen.go#L154: 		return fmt.Errorf("can't decode bots.getBotMenuButton#9c60eb28 to nil")
		tl_bots_get_bot_menu_button_gen.go#L159: 			return fmt.Errorf("unable to decode bots.getBotMenuButton#9c60eb28: field user_id: %w", err)
		tl_bots_invoke_web_view_custom_method_gen.go#L149: 		return fmt.Errorf("can't encode bots.invokeWebViewCustomMethod#87fc5e7 as nil")
		tl_bots_invoke_web_view_custom_method_gen.go#L158: 		return fmt.Errorf("can't encode bots.invokeWebViewCustomMethod#87fc5e7 as nil")
		tl_bots_invoke_web_view_custom_method_gen.go#L161: 		return fmt.Errorf("unable to encode bots.invokeWebViewCustomMethod#87fc5e7: field bot is nil")
		tl_bots_invoke_web_view_custom_method_gen.go#L164: 		return fmt.Errorf("unable to encode bots.invokeWebViewCustomMethod#87fc5e7: field bot: %w", err)
		tl_bots_invoke_web_view_custom_method_gen.go#L168: 		return fmt.Errorf("unable to encode bots.invokeWebViewCustomMethod#87fc5e7: field params: %w", err)
		tl_bots_invoke_web_view_custom_method_gen.go#L176: 		return fmt.Errorf("can't decode bots.invokeWebViewCustomMethod#87fc5e7 to nil")
		tl_bots_invoke_web_view_custom_method_gen.go#L179: 		return fmt.Errorf("unable to decode bots.invokeWebViewCustomMethod#87fc5e7: %w", err)
		tl_bots_invoke_web_view_custom_method_gen.go#L187: 		return fmt.Errorf("can't decode bots.invokeWebViewCustomMethod#87fc5e7 to nil")
		tl_bots_invoke_web_view_custom_method_gen.go#L192: 			return fmt.Errorf("unable to decode bots.invokeWebViewCustomMethod#87fc5e7: field bot: %w", err)
		tl_bots_invoke_web_view_custom_method_gen.go#L199: 			return fmt.Errorf("unable to decode bots.invokeWebViewCustomMethod#87fc5e7: field custom_method: %w", err)
		tl_bots_invoke_web_view_custom_method_gen.go#L205: 			return fmt.Errorf("unable to decode bots.invokeWebViewCustomMethod#87fc5e7: field params: %w", err)
		tl_bots_reorder_usernames_gen.go#L126: 		return fmt.Errorf("can't encode bots.reorderUsernames#9709b1c2 as nil")
		tl_bots_reorder_usernames_gen.go#L135: 		return fmt.Errorf("can't encode bots.reorderUsernames#9709b1c2 as nil")
		tl_bots_reorder_usernames_gen.go#L138: 		return fmt.Errorf("unable to encode bots.reorderUsernames#9709b1c2: field bot is nil")
		tl_bots_reorder_usernames_gen.go#L141: 		return fmt.Errorf("unable to encode bots.reorderUsernames#9709b1c2: field bot: %w", err)
		tl_bots_reorder_usernames_gen.go#L153: 		return fmt.Errorf("can't decode bots.reorderUsernames#9709b1c2 to nil")
		tl_bots_reorder_usernames_gen.go#L156: 		return fmt.Errorf("unable to decode bots.reorderUsernames#9709b1c2: %w", err)
		tl_bots_reorder_usernames_gen.go#L164: 		return fmt.Errorf("can't decode bots.reorderUsernames#9709b1c2 to nil")
		tl_bots_reorder_usernames_gen.go#L169: 			return fmt.Errorf("unable to decode bots.reorderUsernames#9709b1c2: field bot: %w", err)
		tl_bots_reorder_usernames_gen.go#L176: 			return fmt.Errorf("unable to decode bots.reorderUsernames#9709b1c2: field order: %w", err)
		tl_bots_reorder_usernames_gen.go#L185: 				return fmt.Errorf("unable to decode bots.reorderUsernames#9709b1c2: field order: %w", err)
		tl_bots_reset_bot_commands_gen.go#L126: 		return fmt.Errorf("can't encode bots.resetBotCommands#3d8de0f9 as nil")
		tl_bots_reset_bot_commands_gen.go#L135: 		return fmt.Errorf("can't encode bots.resetBotCommands#3d8de0f9 as nil")
		tl_bots_reset_bot_commands_gen.go#L138: 		return fmt.Errorf("unable to encode bots.resetBotCommands#3d8de0f9: field scope is nil")
		tl_bots_reset_bot_commands_gen.go#L141: 		return fmt.Errorf("unable to encode bots.resetBotCommands#3d8de0f9: field scope: %w", err)
		tl_bots_reset_bot_commands_gen.go#L150: 		return fmt.Errorf("can't decode bots.resetBotCommands#3d8de0f9 to nil")
		tl_bots_reset_bot_commands_gen.go#L153: 		return fmt.Errorf("unable to decode bots.resetBotCommands#3d8de0f9: %w", err)
		tl_bots_reset_bot_commands_gen.go#L161: 		return fmt.Errorf("can't decode bots.resetBotCommands#3d8de0f9 to nil")
		tl_bots_reset_bot_commands_gen.go#L166: 			return fmt.Errorf("unable to decode bots.resetBotCommands#3d8de0f9: field scope: %w", err)
		tl_bots_reset_bot_commands_gen.go#L173: 			return fmt.Errorf("unable to decode bots.resetBotCommands#3d8de0f9: field lang_code: %w", err)
		tl_bots_send_custom_request_gen.go#L126: 		return fmt.Errorf("can't encode bots.sendCustomRequest#aa2769ed as nil")
		tl_bots_send_custom_request_gen.go#L135: 		return fmt.Errorf("can't encode bots.sendCustomRequest#aa2769ed as nil")
		tl_bots_send_custom_request_gen.go#L139: 		return fmt.Errorf("unable to encode bots.sendCustomRequest#aa2769ed: field params: %w", err)
		tl_bots_send_custom_request_gen.go#L147: 		return fmt.Errorf("can't decode bots.sendCustomRequest#aa2769ed to nil")
		tl_bots_send_custom_request_gen.go#L150: 		return fmt.Errorf("unable to decode bots.sendCustomRequest#aa2769ed: %w", err)
		tl_bots_send_custom_request_gen.go#L158: 		return fmt.Errorf("can't decode bots.sendCustomRequest#aa2769ed to nil")
		tl_bots_send_custom_request_gen.go#L163: 			return fmt.Errorf("unable to decode bots.sendCustomRequest#aa2769ed: field custom_method: %w", err)
		tl_bots_send_custom_request_gen.go#L169: 			return fmt.Errorf("unable to decode bots.sendCustomRequest#aa2769ed: field params: %w", err)
		tl_bots_set_bot_broadcast_default_admin_rights_gen.go#L120: 		return fmt.Errorf("can't encode bots.setBotBroadcastDefaultAdminRights#788464e1 as nil")
		tl_bots_set_bot_broadcast_default_admin_rights_gen.go#L129: 		return fmt.Errorf("can't encode bots.setBotBroadcastDefaultAdminRights#788464e1 as nil")
		tl_bots_set_bot_broadcast_default_admin_rights_gen.go#L132: 		return fmt.Errorf("unable to encode bots.setBotBroadcastDefaultAdminRights#788464e1: field admin_rights: %w", err)
		tl_bots_set_bot_broadcast_default_admin_rights_gen.go#L140: 		return fmt.Errorf("can't decode bots.setBotBroadcastDefaultAdminRights#788464e1 to nil")
		tl_bots_set_bot_broadcast_default_admin_rights_gen.go#L143: 		return fmt.Errorf("unable to decode bots.setBotBroadcastDefaultAdminRights#788464e1: %w", err)
		tl_bots_set_bot_broadcast_default_admin_rights_gen.go#L151: 		return fmt.Errorf("can't decode bots.setBotBroadcastDefaultAdminRights#788464e1 to nil")
		tl_bots_set_bot_broadcast_default_admin_rights_gen.go#L155: 			return fmt.Errorf("unable to decode bots.setBotBroadcastDefaultAdminRights#788464e1: field admin_rights: %w", err)
		tl_bots_set_bot_commands_gen.go#L137: 		return fmt.Errorf("can't encode bots.setBotCommands#517165a as nil")
		tl_bots_set_bot_commands_gen.go#L146: 		return fmt.Errorf("can't encode bots.setBotCommands#517165a as nil")
		tl_bots_set_bot_commands_gen.go#L149: 		return fmt.Errorf("unable to encode bots.setBotCommands#517165a: field scope is nil")
		tl_bots_set_bot_commands_gen.go#L152: 		return fmt.Errorf("unable to encode bots.setBotCommands#517165a: field scope: %w", err)
		tl_bots_set_bot_commands_gen.go#L158: 			return fmt.Errorf("unable to encode bots.setBotCommands#517165a: field commands element with index %d: %w", idx, err)
		tl_bots_set_bot_commands_gen.go#L167: 		return fmt.Errorf("can't decode bots.setBotCommands#517165a to nil")
		tl_bots_set_bot_commands_gen.go#L170: 		return fmt.Errorf("unable to decode bots.setBotCommands#517165a: %w", err)
		tl_bots_set_bot_commands_gen.go#L178: 		return fmt.Errorf("can't decode bots.setBotCommands#517165a to nil")
		tl_bots_set_bot_commands_gen.go#L183: 			return fmt.Errorf("unable to decode bots.setBotCommands#517165a: field scope: %w", err)
		tl_bots_set_bot_commands_gen.go#L190: 			return fmt.Errorf("unable to decode bots.setBotCommands#517165a: field lang_code: %w", err)
		tl_bots_set_bot_commands_gen.go#L197: 			return fmt.Errorf("unable to decode bots.setBotCommands#517165a: field commands: %w", err)
		tl_bots_set_bot_commands_gen.go#L206: 				return fmt.Errorf("unable to decode bots.setBotCommands#517165a: field commands: %w", err)
		tl_bots_set_bot_group_default_admin_rights_gen.go#L120: 		return fmt.Errorf("can't encode bots.setBotGroupDefaultAdminRights#925ec9ea as nil")
		tl_bots_set_bot_group_default_admin_rights_gen.go#L129: 		return fmt.Errorf("can't encode bots.setBotGroupDefaultAdminRights#925ec9ea as nil")
		tl_bots_set_bot_group_default_admin_rights_gen.go#L132: 		return fmt.Errorf("unable to encode bots.setBotGroupDefaultAdminRights#925ec9ea: field admin_rights: %w", err)
		tl_bots_set_bot_group_default_admin_rights_gen.go#L140: 		return fmt.Errorf("can't decode bots.setBotGroupDefaultAdminRights#925ec9ea to nil")
		tl_bots_set_bot_group_default_admin_rights_gen.go#L143: 		return fmt.Errorf("unable to decode bots.setBotGroupDefaultAdminRights#925ec9ea: %w", err)
		tl_bots_set_bot_group_default_admin_rights_gen.go#L151: 		return fmt.Errorf("can't decode bots.setBotGroupDefaultAdminRights#925ec9ea to nil")
		tl_bots_set_bot_group_default_admin_rights_gen.go#L155: 			return fmt.Errorf("unable to decode bots.setBotGroupDefaultAdminRights#925ec9ea: field admin_rights: %w", err)
		tl_bots_set_bot_info_gen.go#L208: 		return fmt.Errorf("can't encode bots.setBotInfo#10cf3123 as nil")
		tl_bots_set_bot_info_gen.go#L217: 		return fmt.Errorf("can't encode bots.setBotInfo#10cf3123 as nil")
		tl_bots_set_bot_info_gen.go#L221: 		return fmt.Errorf("unable to encode bots.setBotInfo#10cf3123: field flags: %w", err)
		tl_bots_set_bot_info_gen.go#L225: 			return fmt.Errorf("unable to encode bots.setBotInfo#10cf3123: field bot is nil")
		tl_bots_set_bot_info_gen.go#L228: 			return fmt.Errorf("unable to encode bots.setBotInfo#10cf3123: field bot: %w", err)
		tl_bots_set_bot_info_gen.go#L247: 		return fmt.Errorf("can't decode bots.setBotInfo#10cf3123 to nil")
		tl_bots_set_bot_info_gen.go#L250: 		return fmt.Errorf("unable to decode bots.setBotInfo#10cf3123: %w", err)
		tl_bots_set_bot_info_gen.go#L258: 		return fmt.Errorf("can't decode bots.setBotInfo#10cf3123 to nil")
		tl_bots_set_bot_info_gen.go#L262: 			return fmt.Errorf("unable to decode bots.setBotInfo#10cf3123: field flags: %w", err)
		tl_bots_set_bot_info_gen.go#L268: 			return fmt.Errorf("unable to decode bots.setBotInfo#10cf3123: field bot: %w", err)
		tl_bots_set_bot_info_gen.go#L275: 			return fmt.Errorf("unable to decode bots.setBotInfo#10cf3123: field lang_code: %w", err)
		tl_bots_set_bot_info_gen.go#L282: 			return fmt.Errorf("unable to decode bots.setBotInfo#10cf3123: field name: %w", err)
		tl_bots_set_bot_info_gen.go#L289: 			return fmt.Errorf("unable to decode bots.setBotInfo#10cf3123: field about: %w", err)
		tl_bots_set_bot_info_gen.go#L296: 			return fmt.Errorf("unable to decode bots.setBotInfo#10cf3123: field description: %w", err)
		tl_bots_set_bot_menu_button_gen.go#L129: 		return fmt.Errorf("can't encode bots.setBotMenuButton#4504d54f as nil")
		tl_bots_set_bot_menu_button_gen.go#L138: 		return fmt.Errorf("can't encode bots.setBotMenuButton#4504d54f as nil")
		tl_bots_set_bot_menu_button_gen.go#L141: 		return fmt.Errorf("unable to encode bots.setBotMenuButton#4504d54f: field user_id is nil")
		tl_bots_set_bot_menu_button_gen.go#L144: 		return fmt.Errorf("unable to encode bots.setBotMenuButton#4504d54f: field user_id: %w", err)
		tl_bots_set_bot_menu_button_gen.go#L147: 		return fmt.Errorf("unable to encode bots.setBotMenuButton#4504d54f: field button is nil")
		tl_bots_set_bot_menu_button_gen.go#L150: 		return fmt.Errorf("unable to encode bots.setBotMenuButton#4504d54f: field button: %w", err)
		tl_bots_set_bot_menu_button_gen.go#L158: 		return fmt.Errorf("can't decode bots.setBotMenuButton#4504d54f to nil")
		tl_bots_set_bot_menu_button_gen.go#L161: 		return fmt.Errorf("unable to decode bots.setBotMenuButton#4504d54f: %w", err)
		tl_bots_set_bot_menu_button_gen.go#L169: 		return fmt.Errorf("can't decode bots.setBotMenuButton#4504d54f to nil")
		tl_bots_set_bot_menu_button_gen.go#L174: 			return fmt.Errorf("unable to decode bots.setBotMenuButton#4504d54f: field user_id: %w", err)
		tl_bots_set_bot_menu_button_gen.go#L181: 			return fmt.Errorf("unable to decode bots.setBotMenuButton#4504d54f: field button: %w", err)
		tl_bots_toggle_username_gen.go#L140: 		return fmt.Errorf("can't encode bots.toggleUsername#53ca973 as nil")
		tl_bots_toggle_username_gen.go#L149: 		return fmt.Errorf("can't encode bots.toggleUsername#53ca973 as nil")
		tl_bots_toggle_username_gen.go#L152: 		return fmt.Errorf("unable to encode bots.toggleUsername#53ca973: field bot is nil")
		tl_bots_toggle_username_gen.go#L155: 		return fmt.Errorf("unable to encode bots.toggleUsername#53ca973: field bot: %w", err)
		tl_bots_toggle_username_gen.go#L165: 		return fmt.Errorf("can't decode bots.toggleUsername#53ca973 to nil")
		tl_bots_toggle_username_gen.go#L168: 		return fmt.Errorf("unable to decode bots.toggleUsername#53ca973: %w", err)
		tl_bots_toggle_username_gen.go#L176: 		return fmt.Errorf("can't decode bots.toggleUsername#53ca973 to nil")
		tl_bots_toggle_username_gen.go#L181: 			return fmt.Errorf("unable to decode bots.toggleUsername#53ca973: field bot: %w", err)
		tl_bots_toggle_username_gen.go#L188: 			return fmt.Errorf("unable to decode bots.toggleUsername#53ca973: field username: %w", err)
		tl_bots_toggle_username_gen.go#L195: 			return fmt.Errorf("unable to decode bots.toggleUsername#53ca973: field active: %w", err)
		tl_bytes_gen.go#L97: 		return fmt.Errorf("can't encode bytes#e937bb82 as nil")
		tl_bytes_gen.go#L106: 		return fmt.Errorf("can't encode bytes#e937bb82 as nil")
		tl_bytes_gen.go#L114: 		return fmt.Errorf("can't decode bytes#e937bb82 to nil")
		tl_bytes_gen.go#L117: 		return fmt.Errorf("unable to decode bytes#e937bb82: %w", err)
		tl_bytes_gen.go#L125: 		return fmt.Errorf("can't decode bytes#e937bb82 to nil")
		tl_cdn_config_gen.go#L121: 		return fmt.Errorf("can't encode cdnConfig#5725e40a as nil")
		tl_cdn_config_gen.go#L130: 		return fmt.Errorf("can't encode cdnConfig#5725e40a as nil")
		tl_cdn_config_gen.go#L135: 			return fmt.Errorf("unable to encode cdnConfig#5725e40a: field public_keys element with index %d: %w", idx, err)
		tl_cdn_config_gen.go#L144: 		return fmt.Errorf("can't decode cdnConfig#5725e40a to nil")
		tl_cdn_config_gen.go#L147: 		return fmt.Errorf("unable to decode cdnConfig#5725e40a: %w", err)
		tl_cdn_config_gen.go#L155: 		return fmt.Errorf("can't decode cdnConfig#5725e40a to nil")
		tl_cdn_config_gen.go#L160: 			return fmt.Errorf("unable to decode cdnConfig#5725e40a: field public_keys: %w", err)
		tl_cdn_config_gen.go#L169: 				return fmt.Errorf("unable to decode cdnConfig#5725e40a: field public_keys: %w", err)
		tl_cdn_public_key_gen.go#L132: 		return fmt.Errorf("can't encode cdnPublicKey#c982eaba as nil")
		tl_cdn_public_key_gen.go#L141: 		return fmt.Errorf("can't encode cdnPublicKey#c982eaba as nil")
		tl_cdn_public_key_gen.go#L151: 		return fmt.Errorf("can't decode cdnPublicKey#c982eaba to nil")
		tl_cdn_public_key_gen.go#L154: 		return fmt.Errorf("unable to decode cdnPublicKey#c982eaba: %w", err)
		tl_cdn_public_key_gen.go#L162: 		return fmt.Errorf("can't decode cdnPublicKey#c982eaba to nil")
		tl_cdn_public_key_gen.go#L167: 			return fmt.Errorf("unable to decode cdnPublicKey#c982eaba: field dc_id: %w", err)
		tl_cdn_public_key_gen.go#L174: 			return fmt.Errorf("unable to decode cdnPublicKey#c982eaba: field public_key: %w", err)
		tl_channel_admin_log_event_action_gen.go#L131: 		return fmt.Errorf("can't encode channelAdminLogEventActionChangeTitle#e6dfb825 as nil")
		tl_channel_admin_log_event_action_gen.go#L140: 		return fmt.Errorf("can't encode channelAdminLogEventActionChangeTitle#e6dfb825 as nil")
		tl_channel_admin_log_event_action_gen.go#L150: 		return fmt.Errorf("can't decode channelAdminLogEventActionChangeTitle#e6dfb825 to nil")
		tl_channel_admin_log_event_action_gen.go#L153: 		return fmt.Errorf("unable to decode channelAdminLogEventActionChangeTitle#e6dfb825: %w", err)
		tl_channel_admin_log_event_action_gen.go#L161: 		return fmt.Errorf("can't decode channelAdminLogEventActionChangeTitle#e6dfb825 to nil")
		tl_channel_admin_log_event_action_gen.go#L166: 			return fmt.Errorf("unable to decode channelAdminLogEventActionChangeTitle#e6dfb825: field prev_value: %w", err)
		tl_channel_admin_log_event_action_gen.go#L173: 			return fmt.Errorf("unable to decode channelAdminLogEventActionChangeTitle#e6dfb825: field new_value: %w", err)
		tl_channel_admin_log_event_action_gen.go#L293: 		return fmt.Errorf("can't encode channelAdminLogEventActionChangeAbout#55188a2e as nil")
		tl_channel_admin_log_event_action_gen.go#L302: 		return fmt.Errorf("can't encode channelAdminLogEventActionChangeAbout#55188a2e as nil")
		tl_channel_admin_log_event_action_gen.go#L312: 		return fmt.Errorf("can't decode channelAdminLogEventActionChangeAbout#55188a2e to nil")
		tl_channel_admin_log_event_action_gen.go#L315: 		return fmt.Errorf("unable to decode channelAdminLogEventActionChangeAbout#55188a2e: %w", err)
		tl_channel_admin_log_event_action_gen.go#L323: 		return fmt.Errorf("can't decode channelAdminLogEventActionChangeAbout#55188a2e to nil")
		tl_channel_admin_log_event_action_gen.go#L328: 			return fmt.Errorf("unable to decode channelAdminLogEventActionChangeAbout#55188a2e: field prev_value: %w", err)
		tl_channel_admin_log_event_action_gen.go#L335: 			return fmt.Errorf("unable to decode channelAdminLogEventActionChangeAbout#55188a2e: field new_value: %w", err)
		tl_channel_admin_log_event_action_gen.go#L457: 		return fmt.Errorf("can't encode channelAdminLogEventActionChangeUsername#6a4afc38 as nil")
		tl_channel_admin_log_event_action_gen.go#L466: 		return fmt.Errorf("can't encode channelAdminLogEventActionChangeUsername#6a4afc38 as nil")
		tl_channel_admin_log_event_action_gen.go#L476: 		return fmt.Errorf("can't decode channelAdminLogEventActionChangeUsername#6a4afc38 to nil")
		tl_channel_admin_log_event_action_gen.go#L479: 		return fmt.Errorf("unable to decode channelAdminLogEventActionChangeUsername#6a4afc38: %w", err)
		tl_channel_admin_log_event_action_gen.go#L487: 		return fmt.Errorf("can't decode channelAdminLogEventActionChangeUsername#6a4afc38 to nil")
		tl_channel_admin_log_event_action_gen.go#L492: 			return fmt.Errorf("unable to decode channelAdminLogEventActionChangeUsername#6a4afc38: field prev_value: %w", err)
		tl_channel_admin_log_event_action_gen.go#L499: 			return fmt.Errorf("unable to decode channelAdminLogEventActionChangeUsername#6a4afc38: field new_value: %w", err)
		tl_channel_admin_log_event_action_gen.go#L619: 		return fmt.Errorf("can't encode channelAdminLogEventActionChangePhoto#434bd2af as nil")
		tl_channel_admin_log_event_action_gen.go#L628: 		return fmt.Errorf("can't encode channelAdminLogEventActionChangePhoto#434bd2af as nil")
		tl_channel_admin_log_event_action_gen.go#L631: 		return fmt.Errorf("unable to encode channelAdminLogEventActionChangePhoto#434bd2af: field prev_photo is nil")
		tl_channel_admin_log_event_action_gen.go#L634: 		return fmt.Errorf("unable to encode channelAdminLogEventActionChangePhoto#434bd2af: field prev_photo: %w", err)
		tl_channel_admin_log_event_action_gen.go#L637: 		return fmt.Errorf("unable to encode channelAdminLogEventActionChangePhoto#434bd2af: field new_photo is nil")
		tl_channel_admin_log_event_action_gen.go#L640: 		return fmt.Errorf("unable to encode channelAdminLogEventActionChangePhoto#434bd2af: field new_photo: %w", err)
		tl_channel_admin_log_event_action_gen.go#L648: 		return fmt.Errorf("can't decode channelAdminLogEventActionChangePhoto#434bd2af to nil")
		tl_channel_admin_log_event_action_gen.go#L651: 		return fmt.Errorf("unable to decode channelAdminLogEventActionChangePhoto#434bd2af: %w", err)
		tl_channel_admin_log_event_action_gen.go#L659: 		return fmt.Errorf("can't decode channelAdminLogEventActionChangePhoto#434bd2af to nil")
		tl_channel_admin_log_event_action_gen.go#L664: 			return fmt.Errorf("unable to decode channelAdminLogEventActionChangePhoto#434bd2af: field prev_photo: %w", err)
		tl_channel_admin_log_event_action_gen.go#L671: 			return fmt.Errorf("unable to decode channelAdminLogEventActionChangePhoto#434bd2af: field new_photo: %w", err)
		tl_channel_admin_log_event_action_gen.go#L782: 		return fmt.Errorf("can't encode channelAdminLogEventActionToggleInvites#1b7907ae as nil")
		tl_channel_admin_log_event_action_gen.go#L791: 		return fmt.Errorf("can't encode channelAdminLogEventActionToggleInvites#1b7907ae as nil")
		tl_channel_admin_log_event_action_gen.go#L800: 		return fmt.Errorf("can't decode channelAdminLogEventActionToggleInvites#1b7907ae to nil")
		tl_channel_admin_log_event_action_gen.go#L803: 		return fmt.Errorf("unable to decode channelAdminLogEventActionToggleInvites#1b7907ae: %w", err)
		tl_channel_admin_log_event_action_gen.go#L811: 		return fmt.Errorf("can't decode channelAdminLogEventActionToggleInvites#1b7907ae to nil")
		tl_channel_admin_log_event_action_gen.go#L816: 			return fmt.Errorf("unable to decode channelAdminLogEventActionToggleInvites#1b7907ae: field new_value: %w", err)
		tl_channel_admin_log_event_action_gen.go#L919: 		return fmt.Errorf("can't encode channelAdminLogEventActionToggleSignatures#26ae0971 as nil")
		tl_channel_admin_log_event_action_gen.go#L928: 		return fmt.Errorf("can't encode channelAdminLogEventActionToggleSignatures#26ae0971 as nil")
		tl_channel_admin_log_event_action_gen.go#L937: 		return fmt.Errorf("can't decode channelAdminLogEventActionToggleSignatures#26ae0971 to nil")
		tl_channel_admin_log_event_action_gen.go#L940: 		return fmt.Errorf("unable to decode channelAdminLogEventActionToggleSignatures#26ae0971: %w", err)
		tl_channel_admin_log_event_action_gen.go#L948: 		return fmt.Errorf("can't decode channelAdminLogEventActionToggleSignatures#26ae0971 to nil")
		tl_channel_admin_log_event_action_gen.go#L953: 			return fmt.Errorf("unable to decode channelAdminLogEventActionToggleSignatures#26ae0971: field new_value: %w", err)
		tl_channel_admin_log_event_action_gen.go#L1056: 		return fmt.Errorf("can't encode channelAdminLogEventActionUpdatePinned#e9e82c18 as nil")
		tl_channel_admin_log_event_action_gen.go#L1065: 		return fmt.Errorf("can't encode channelAdminLogEventActionUpdatePinned#e9e82c18 as nil")
		tl_channel_admin_log_event_action_gen.go#L1068: 		return fmt.Errorf("unable to encode channelAdminLogEventActionUpdatePinned#e9e82c18: field message is nil")
		tl_channel_admin_log_event_action_gen.go#L1071: 		return fmt.Errorf("unable to encode channelAdminLogEventActionUpdatePinned#e9e82c18: field message: %w", err)
		tl_channel_admin_log_event_action_gen.go#L1079: 		return fmt.Errorf("can't decode channelAdminLogEventActionUpdatePinned#e9e82c18 to nil")
		tl_channel_admin_log_event_action_gen.go#L1082: 		return fmt.Errorf("unable to decode channelAdminLogEventActionUpdatePinned#e9e82c18: %w", err)
		tl_channel_admin_log_event_action_gen.go#L1090: 		return fmt.Errorf("can't decode channelAdminLogEventActionUpdatePinned#e9e82c18 to nil")
		tl_channel_admin_log_event_action_gen.go#L1095: 			return fmt.Errorf("unable to decode channelAdminLogEventActionUpdatePinned#e9e82c18: field message: %w", err)
		tl_channel_admin_log_event_action_gen.go#L1207: 		return fmt.Errorf("can't encode channelAdminLogEventActionEditMessage#709b2405 as nil")
		tl_channel_admin_log_event_action_gen.go#L1216: 		return fmt.Errorf("can't encode channelAdminLogEventActionEditMessage#709b2405 as nil")
		tl_channel_admin_log_event_action_gen.go#L1219: 		return fmt.Errorf("unable to encode channelAdminLogEventActionEditMessage#709b2405: field prev_message is nil")
		tl_channel_admin_log_event_action_gen.go#L1222: 		return fmt.Errorf("unable to encode channelAdminLogEventActionEditMessage#709b2405: field prev_message: %w", err)
		tl_channel_admin_log_event_action_gen.go#L1225: 		return fmt.Errorf("unable to encode channelAdminLogEventActionEditMessage#709b2405: field new_message is nil")
		tl_channel_admin_log_event_action_gen.go#L1228: 		return fmt.Errorf("unable to encode channelAdminLogEventActionEditMessage#709b2405: field new_message: %w", err)
		tl_channel_admin_log_event_action_gen.go#L1236: 		return fmt.Errorf("can't decode channelAdminLogEventActionEditMessage#709b2405 to nil")
		tl_channel_admin_log_event_action_gen.go#L1239: 		return fmt.Errorf("unable to decode channelAdminLogEventActionEditMessage#709b2405: %w", err)
		tl_channel_admin_log_event_action_gen.go#L1247: 		return fmt.Errorf("can't decode channelAdminLogEventActionEditMessage#709b2405 to nil")
		tl_channel_admin_log_event_action_gen.go#L1252: 			return fmt.Errorf("unable to decode channelAdminLogEventActionEditMessage#709b2405: field prev_message: %w", err)
		tl_channel_admin_log_event_action_gen.go#L1259: 			return fmt.Errorf("unable to decode channelAdminLogEventActionEditMessage#709b2405: field new_message: %w", err)
		tl_channel_admin_log_event_action_gen.go#L1370: 		return fmt.Errorf("can't encode channelAdminLogEventActionDeleteMessage#42e047bb as nil")
		tl_channel_admin_log_event_action_gen.go#L1379: 		return fmt.Errorf("can't encode channelAdminLogEventActionDeleteMessage#42e047bb as nil")
		tl_channel_admin_log_event_action_gen.go#L1382: 		return fmt.Errorf("unable to encode channelAdminLogEventActionDeleteMessage#42e047bb: field message is nil")
		tl_channel_admin_log_event_action_gen.go#L1385: 		return fmt.Errorf("unable to encode channelAdminLogEventActionDeleteMessage#42e047bb: field message: %w", err)
		tl_channel_admin_log_event_action_gen.go#L1393: 		return fmt.Errorf("can't decode channelAdminLogEventActionDeleteMessage#42e047bb to nil")
		tl_channel_admin_log_event_action_gen.go#L1396: 		return fmt.Errorf("unable to decode channelAdminLogEventActionDeleteMessage#42e047bb: %w", err)
		tl_channel_admin_log_event_action_gen.go#L1404: 		return fmt.Errorf("can't decode channelAdminLogEventActionDeleteMessage#42e047bb to nil")
		tl_channel_admin_log_event_action_gen.go#L1409: 			return fmt.Errorf("unable to decode channelAdminLogEventActionDeleteMessage#42e047bb: field message: %w", err)
		tl_channel_admin_log_event_action_gen.go#L1496: 		return fmt.Errorf("can't encode channelAdminLogEventActionParticipantJoin#183040d3 as nil")
		tl_channel_admin_log_event_action_gen.go#L1505: 		return fmt.Errorf("can't encode channelAdminLogEventActionParticipantJoin#183040d3 as nil")
		tl_channel_admin_log_event_action_gen.go#L1513: 		return fmt.Errorf("can't decode channelAdminLogEventActionParticipantJoin#183040d3 to nil")
		tl_channel_admin_log_event_action_gen.go#L1516: 		return fmt.Errorf("unable to decode channelAdminLogEventActionParticipantJoin#183040d3: %w", err)
		tl_channel_admin_log_event_action_gen.go#L1524: 		return fmt.Errorf("can't decode channelAdminLogEventActionParticipantJoin#183040d3 to nil")
		tl_channel_admin_log_event_action_gen.go#L1601: 		return fmt.Errorf("can't encode channelAdminLogEventActionParticipantLeave#f89777f2 as nil")
		tl_channel_admin_log_event_action_gen.go#L1610: 		return fmt.Errorf("can't encode channelAdminLogEventActionParticipantLeave#f89777f2 as nil")
		tl_channel_admin_log_event_action_gen.go#L1618: 		return fmt.Errorf("can't decode channelAdminLogEventActionParticipantLeave#f89777f2 to nil")
		tl_channel_admin_log_event_action_gen.go#L1621: 		return fmt.Errorf("unable to decode channelAdminLogEventActionParticipantLeave#f89777f2: %w", err)
		tl_channel_admin_log_event_action_gen.go#L1629: 		return fmt.Errorf("can't decode channelAdminLogEventActionParticipantLeave#f89777f2 to nil")
		tl_channel_admin_log_event_action_gen.go#L1722: 		return fmt.Errorf("can't encode channelAdminLogEventActionParticipantInvite#e31c34d8 as nil")
		tl_channel_admin_log_event_action_gen.go#L1731: 		return fmt.Errorf("can't encode channelAdminLogEventActionParticipantInvite#e31c34d8 as nil")
		tl_channel_admin_log_event_action_gen.go#L1734: 		return fmt.Errorf("unable to encode channelAdminLogEventActionParticipantInvite#e31c34d8: field participant is nil")
		tl_channel_admin_log_event_action_gen.go#L1737: 		return fmt.Errorf("unable to encode channelAdminLogEventActionParticipantInvite#e31c34d8: field participant: %w", err)
		tl_channel_admin_log_event_action_gen.go#L1745: 		return fmt.Errorf("can't decode channelAdminLogEventActionParticipantInvite#e31c34d8 to nil")
		tl_channel_admin_log_event_action_gen.go#L1748: 		return fmt.Errorf("unable to decode channelAdminLogEventActionParticipantInvite#e31c34d8: %w", err)
		tl_channel_admin_log_event_action_gen.go#L1756: 		return fmt.Errorf("can't decode channelAdminLogEventActionParticipantInvite#e31c34d8 to nil")
		tl_channel_admin_log_event_action_gen.go#L1761: 			return fmt.Errorf("unable to decode channelAdminLogEventActionParticipantInvite#e31c34d8: field participant: %w", err)
		tl_channel_admin_log_event_action_gen.go#L1878: 		return fmt.Errorf("can't encode channelAdminLogEventActionParticipantToggleBan#e6d83d7e as nil")
		tl_channel_admin_log_event_action_gen.go#L1887: 		return fmt.Errorf("can't encode channelAdminLogEventActionParticipantToggleBan#e6d83d7e as nil")
		tl_channel_admin_log_event_action_gen.go#L1890: 		return fmt.Errorf("unable to encode channelAdminLogEventActionParticipantToggleBan#e6d83d7e: field prev_participant is nil")
		tl_channel_admin_log_event_action_gen.go#L1893: 		return fmt.Errorf("unable to encode channelAdminLogEventActionParticipantToggleBan#e6d83d7e: field prev_participant: %w", err)
		tl_channel_admin_log_event_action_gen.go#L1896: 		return fmt.Errorf("unable to encode channelAdminLogEventActionParticipantToggleBan#e6d83d7e: field new_participant is nil")
		tl_channel_admin_log_event_action_gen.go#L1899: 		return fmt.Errorf("unable to encode channelAdminLogEventActionParticipantToggleBan#e6d83d7e: field new_participant: %w", err)
		tl_channel_admin_log_event_action_gen.go#L1907: 		return fmt.Errorf("can't decode channelAdminLogEventActionParticipantToggleBan#e6d83d7e to nil")
		tl_channel_admin_log_event_action_gen.go#L1910: 		return fmt.Errorf("unable to decode channelAdminLogEventActionParticipantToggleBan#e6d83d7e: %w", err)
		tl_channel_admin_log_event_action_gen.go#L1918: 		return fmt.Errorf("can't decode channelAdminLogEventActionParticipantToggleBan#e6d83d7e to nil")
		tl_channel_admin_log_event_action_gen.go#L1923: 			return fmt.Errorf("unable to decode channelAdminLogEventActionParticipantToggleBan#e6d83d7e: field prev_participant: %w", err)
		tl_channel_admin_log_event_action_gen.go#L1930: 			return fmt.Errorf("unable to decode channelAdminLogEventActionParticipantToggleBan#e6d83d7e: field new_participant: %w", err)
		tl_channel_admin_log_event_action_gen.go#L2055: 		return fmt.Errorf("can't encode channelAdminLogEventActionParticipantToggleAdmin#d5676710 as nil")
		tl_channel_admin_log_event_action_gen.go#L2064: 		return fmt.Errorf("can't encode channelAdminLogEventActionParticipantToggleAdmin#d5676710 as nil")
		tl_channel_admin_log_event_action_gen.go#L2067: 		return fmt.Errorf("unable to encode channelAdminLogEventActionParticipantToggleAdmin#d5676710: field prev_participant is nil")
		tl_channel_admin_log_event_action_gen.go#L2070: 		return fmt.Errorf("unable to encode channelAdminLogEventActionParticipantToggleAdmin#d5676710: field prev_participant: %w", err)
		tl_channel_admin_log_event_action_gen.go#L2073: 		return fmt.Errorf("unable to encode channelAdminLogEventActionParticipantToggleAdmin#d5676710: field new_participant is nil")
		tl_channel_admin_log_event_action_gen.go#L2076: 		return fmt.Errorf("unable to encode channelAdminLogEventActionParticipantToggleAdmin#d5676710: field new_participant: %w", err)
		tl_channel_admin_log_event_action_gen.go#L2084: 		return fmt.Errorf("can't decode channelAdminLogEventActionParticipantToggleAdmin#d5676710 to nil")
		tl_channel_admin_log_event_action_gen.go#L2087: 		return fmt.Errorf("unable to decode channelAdminLogEventActionParticipantToggleAdmin#d5676710: %w", err)
		tl_channel_admin_log_event_action_gen.go#L2095: 		return fmt.Errorf("can't decode channelAdminLogEventActionParticipantToggleAdmin#d5676710 to nil")
		tl_channel_admin_log_event_action_gen.go#L2100: 			return fmt.Errorf("unable to decode channelAdminLogEventActionParticipantToggleAdmin#d5676710: field prev_participant: %w", err)
		tl_channel_admin_log_event_action_gen.go#L2107: 			return fmt.Errorf("unable to decode channelAdminLogEventActionParticipantToggleAdmin#d5676710: field new_participant: %w", err)
		tl_channel_admin_log_event_action_gen.go#L2229: 		return fmt.Errorf("can't encode channelAdminLogEventActionChangeStickerSet#b1c3caa7 as nil")
		tl_channel_admin_log_event_action_gen.go#L2238: 		return fmt.Errorf("can't encode channelAdminLogEventActionChangeStickerSet#b1c3caa7 as nil")
		tl_channel_admin_log_event_action_gen.go#L2241: 		return fmt.Errorf("unable to encode channelAdminLogEventActionChangeStickerSet#b1c3caa7: field prev_stickerset is nil")
		tl_channel_admin_log_event_action_gen.go#L2244: 		return fmt.Errorf("unable to encode channelAdminLogEventActionChangeStickerSet#b1c3caa7: field prev_stickerset: %w", err)
		tl_channel_admin_log_event_action_gen.go#L2247: 		return fmt.Errorf("unable to encode channelAdminLogEventActionChangeStickerSet#b1c3caa7: field new_stickerset is nil")
		tl_channel_admin_log_event_action_gen.go#L2250: 		return fmt.Errorf("unable to encode channelAdminLogEventActionChangeStickerSet#b1c3caa7: field new_stickerset: %w", err)
		tl_channel_admin_log_event_action_gen.go#L2258: 		return fmt.Errorf("can't decode channelAdminLogEventActionChangeStickerSet#b1c3caa7 to nil")
		tl_channel_admin_log_event_action_gen.go#L2261: 		return fmt.Errorf("unable to decode channelAdminLogEventActionChangeStickerSet#b1c3caa7: %w", err)
		tl_channel_admin_log_event_action_gen.go#L2269: 		return fmt.Errorf("can't decode channelAdminLogEventActionChangeStickerSet#b1c3caa7 to nil")
		tl_channel_admin_log_event_action_gen.go#L2274: 			return fmt.Errorf("unable to decode channelAdminLogEventActionChangeStickerSet#b1c3caa7: field prev_stickerset: %w", err)
		tl_channel_admin_log_event_action_gen.go#L2281: 			return fmt.Errorf("unable to decode channelAdminLogEventActionChangeStickerSet#b1c3caa7: field new_stickerset: %w", err)
		tl_channel_admin_log_event_action_gen.go#L2395: 		return fmt.Errorf("can't encode channelAdminLogEventActionTogglePreHistoryHidden#5f5c95f1 as nil")
		tl_channel_admin_log_event_action_gen.go#L2404: 		return fmt.Errorf("can't encode channelAdminLogEventActionTogglePreHistoryHidden#5f5c95f1 as nil")
		tl_channel_admin_log_event_action_gen.go#L2413: 		return fmt.Errorf("can't decode channelAdminLogEventActionTogglePreHistoryHidden#5f5c95f1 to nil")
		tl_channel_admin_log_event_action_gen.go#L2416: 		return fmt.Errorf("unable to decode channelAdminLogEventActionTogglePreHistoryHidden#5f5c95f1: %w", err)
		tl_channel_admin_log_event_action_gen.go#L2424: 		return fmt.Errorf("can't decode channelAdminLogEventActionTogglePreHistoryHidden#5f5c95f1 to nil")
		tl_channel_admin_log_event_action_gen.go#L2429: 			return fmt.Errorf("unable to decode channelAdminLogEventActionTogglePreHistoryHidden#5f5c95f1: field new_value: %w", err)
		tl_channel_admin_log_event_action_gen.go#L2549: 		return fmt.Errorf("can't encode channelAdminLogEventActionDefaultBannedRights#2df5fc0a as nil")
		tl_channel_admin_log_event_action_gen.go#L2558: 		return fmt.Errorf("can't encode channelAdminLogEventActionDefaultBannedRights#2df5fc0a as nil")
		tl_channel_admin_log_event_action_gen.go#L2561: 		return fmt.Errorf("unable to encode channelAdminLogEventActionDefaultBannedRights#2df5fc0a: field prev_banned_rights: %w", err)
		tl_channel_admin_log_event_action_gen.go#L2564: 		return fmt.Errorf("unable to encode channelAdminLogEventActionDefaultBannedRights#2df5fc0a: field new_banned_rights: %w", err)
		tl_channel_admin_log_event_action_gen.go#L2572: 		return fmt.Errorf("can't decode channelAdminLogEventActionDefaultBannedRights#2df5fc0a to nil")
		tl_channel_admin_log_event_action_gen.go#L2575: 		return fmt.Errorf("unable to decode channelAdminLogEventActionDefaultBannedRights#2df5fc0a: %w", err)
		tl_channel_admin_log_event_action_gen.go#L2583: 		return fmt.Errorf("can't decode channelAdminLogEventActionDefaultBannedRights#2df5fc0a to nil")
		tl_channel_admin_log_event_action_gen.go#L2587: 			return fmt.Errorf("unable to decode channelAdminLogEventActionDefaultBannedRights#2df5fc0a: field prev_banned_rights: %w", err)
		tl_channel_admin_log_event_action_gen.go#L2592: 			return fmt.Errorf("unable to decode channelAdminLogEventActionDefaultBannedRights#2df5fc0a: field new_banned_rights: %w", err)
		tl_channel_admin_log_event_action_gen.go#L2700: 		return fmt.Errorf("can't encode channelAdminLogEventActionStopPoll#8f079643 as nil")
		tl_channel_admin_log_event_action_gen.go#L2709: 		return fmt.Errorf("can't encode channelAdminLogEventActionStopPoll#8f079643 as nil")
		tl_channel_admin_log_event_action_gen.go#L2712: 		return fmt.Errorf("unable to encode channelAdminLogEventActionStopPoll#8f079643: field message is nil")
		tl_channel_admin_log_event_action_gen.go#L2715: 		return fmt.Errorf("unable to encode channelAdminLogEventActionStopPoll#8f079643: field message: %w", err)
		tl_channel_admin_log_event_action_gen.go#L2723: 		return fmt.Errorf("can't decode channelAdminLogEventActionStopPoll#8f079643 to nil")
		tl_channel_admin_log_event_action_gen.go#L2726: 		return fmt.Errorf("unable to decode channelAdminLogEventActionStopPoll#8f079643: %w", err)
		tl_channel_admin_log_event_action_gen.go#L2734: 		return fmt.Errorf("can't decode channelAdminLogEventActionStopPoll#8f079643 to nil")
		tl_channel_admin_log_event_action_gen.go#L2739: 			return fmt.Errorf("unable to decode channelAdminLogEventActionStopPoll#8f079643: field message: %w", err)
		tl_channel_admin_log_event_action_gen.go#L2853: 		return fmt.Errorf("can't encode channelAdminLogEventActionChangeLinkedChat#50c7ac8 as nil")
		tl_channel_admin_log_event_action_gen.go#L2862: 		return fmt.Errorf("can't encode channelAdminLogEventActionChangeLinkedChat#50c7ac8 as nil")
		tl_channel_admin_log_event_action_gen.go#L2872: 		return fmt.Errorf("can't decode channelAdminLogEventActionChangeLinkedChat#50c7ac8 to nil")
		tl_channel_admin_log_event_action_gen.go#L2875: 		return fmt.Errorf("unable to decode channelAdminLogEventActionChangeLinkedChat#50c7ac8: %w", err)
		tl_channel_admin_log_event_action_gen.go#L2883: 		return fmt.Errorf("can't decode channelAdminLogEventActionChangeLinkedChat#50c7ac8 to nil")
		tl_channel_admin_log_event_action_gen.go#L2888: 			return fmt.Errorf("unable to decode channelAdminLogEventActionChangeLinkedChat#50c7ac8: field prev_value: %w", err)
		tl_channel_admin_log_event_action_gen.go#L2895: 			return fmt.Errorf("unable to decode channelAdminLogEventActionChangeLinkedChat#50c7ac8: field new_value: %w", err)
		tl_channel_admin_log_event_action_gen.go#L3017: 		return fmt.Errorf("can't encode channelAdminLogEventActionChangeLocation#e6b76ae as nil")
		tl_channel_admin_log_event_action_gen.go#L3026: 		return fmt.Errorf("can't encode channelAdminLogEventActionChangeLocation#e6b76ae as nil")
		tl_channel_admin_log_event_action_gen.go#L3029: 		return fmt.Errorf("unable to encode channelAdminLogEventActionChangeLocation#e6b76ae: field prev_value is nil")
		tl_channel_admin_log_event_action_gen.go#L3032: 		return fmt.Errorf("unable to encode channelAdminLogEventActionChangeLocation#e6b76ae: field prev_value: %w", err)
		tl_channel_admin_log_event_action_gen.go#L3035: 		return fmt.Errorf("unable to encode channelAdminLogEventActionChangeLocation#e6b76ae: field new_value is nil")
		tl_channel_admin_log_event_action_gen.go#L3038: 		return fmt.Errorf("unable to encode channelAdminLogEventActionChangeLocation#e6b76ae: field new_value: %w", err)
		tl_channel_admin_log_event_action_gen.go#L3046: 		return fmt.Errorf("can't decode channelAdminLogEventActionChangeLocation#e6b76ae to nil")
		tl_channel_admin_log_event_action_gen.go#L3049: 		return fmt.Errorf("unable to decode channelAdminLogEventActionChangeLocation#e6b76ae: %w", err)
		tl_channel_admin_log_event_action_gen.go#L3057: 		return fmt.Errorf("can't decode channelAdminLogEventActionChangeLocation#e6b76ae to nil")
		tl_channel_admin_log_event_action_gen.go#L3062: 			return fmt.Errorf("unable to decode channelAdminLogEventActionChangeLocation#e6b76ae: field prev_value: %w", err)
		tl_channel_admin_log_event_action_gen.go#L3069: 			return fmt.Errorf("unable to decode channelAdminLogEventActionChangeLocation#e6b76ae: field new_value: %w", err)
		tl_channel_admin_log_event_action_gen.go#L3194: 		return fmt.Errorf("can't encode channelAdminLogEventActionToggleSlowMode#53909779 as nil")
		tl_channel_admin_log_event_action_gen.go#L3203: 		return fmt.Errorf("can't encode channelAdminLogEventActionToggleSlowMode#53909779 as nil")
		tl_channel_admin_log_event_action_gen.go#L3213: 		return fmt.Errorf("can't decode channelAdminLogEventActionToggleSlowMode#53909779 to nil")
		tl_channel_admin_log_event_action_gen.go#L3216: 		return fmt.Errorf("unable to decode channelAdminLogEventActionToggleSlowMode#53909779: %w", err)
		tl_channel_admin_log_event_action_gen.go#L3224: 		return fmt.Errorf("can't decode channelAdminLogEventActionToggleSlowMode#53909779 to nil")
		tl_channel_admin_log_event_action_gen.go#L3229: 			return fmt.Errorf("unable to decode channelAdminLogEventActionToggleSlowMode#53909779: field prev_value: %w", err)
		tl_channel_admin_log_event_action_gen.go#L3236: 			return fmt.Errorf("unable to decode channelAdminLogEventActionToggleSlowMode#53909779: field new_value: %w", err)
		tl_channel_admin_log_event_action_gen.go#L3347: 		return fmt.Errorf("can't encode channelAdminLogEventActionStartGroupCall#23209745 as nil")
		tl_channel_admin_log_event_action_gen.go#L3356: 		return fmt.Errorf("can't encode channelAdminLogEventActionStartGroupCall#23209745 as nil")
		tl_channel_admin_log_event_action_gen.go#L3359: 		return fmt.Errorf("unable to encode channelAdminLogEventActionStartGroupCall#23209745: field call: %w", err)
		tl_channel_admin_log_event_action_gen.go#L3367: 		return fmt.Errorf("can't decode channelAdminLogEventActionStartGroupCall#23209745 to nil")
		tl_channel_admin_log_event_action_gen.go#L3370: 		return fmt.Errorf("unable to decode channelAdminLogEventActionStartGroupCall#23209745: %w", err)
		tl_channel_admin_log_event_action_gen.go#L3378: 		return fmt.Errorf("can't decode channelAdminLogEventActionStartGroupCall#23209745 to nil")
		tl_channel_admin_log_event_action_gen.go#L3382: 			return fmt.Errorf("unable to decode channelAdminLogEventActionStartGroupCall#23209745: field call: %w", err)
		tl_channel_admin_log_event_action_gen.go#L3484: 		return fmt.Errorf("can't encode channelAdminLogEventActionDiscardGroupCall#db9f9140 as nil")
		tl_channel_admin_log_event_action_gen.go#L3493: 		return fmt.Errorf("can't encode channelAdminLogEventActionDiscardGroupCall#db9f9140 as nil")
		tl_channel_admin_log_event_action_gen.go#L3496: 		return fmt.Errorf("unable to encode channelAdminLogEventActionDiscardGroupCall#db9f9140: field call: %w", err)
		tl_channel_admin_log_event_action_gen.go#L3504: 		return fmt.Errorf("can't decode channelAdminLogEventActionDiscardGroupCall#db9f9140 to nil")
		tl_channel_admin_log_event_action_gen.go#L3507: 		return fmt.Errorf("unable to decode channelAdminLogEventActionDiscardGroupCall#db9f9140: %w", err)
		tl_channel_admin_log_event_action_gen.go#L3515: 		return fmt.Errorf("can't decode channelAdminLogEventActionDiscardGroupCall#db9f9140 to nil")
		tl_channel_admin_log_event_action_gen.go#L3519: 			return fmt.Errorf("unable to decode channelAdminLogEventActionDiscardGroupCall#db9f9140: field call: %w", err)
		tl_channel_admin_log_event_action_gen.go#L3621: 		return fmt.Errorf("can't encode channelAdminLogEventActionParticipantMute#f92424d2 as nil")
		tl_channel_admin_log_event_action_gen.go#L3630: 		return fmt.Errorf("can't encode channelAdminLogEventActionParticipantMute#f92424d2 as nil")
		tl_channel_admin_log_event_action_gen.go#L3633: 		return fmt.Errorf("unable to encode channelAdminLogEventActionParticipantMute#f92424d2: field participant: %w", err)
		tl_channel_admin_log_event_action_gen.go#L3641: 		return fmt.Errorf("can't decode channelAdminLogEventActionParticipantMute#f92424d2 to nil")
		tl_channel_admin_log_event_action_gen.go#L3644: 		return fmt.Errorf("unable to decode channelAdminLogEventActionParticipantMute#f92424d2: %w", err)
		tl_channel_admin_log_event_action_gen.go#L3652: 		return fmt.Errorf("can't decode channelAdminLogEventActionParticipantMute#f92424d2 to nil")
		tl_channel_admin_log_event_action_gen.go#L3656: 			return fmt.Errorf("unable to decode channelAdminLogEventActionParticipantMute#f92424d2: field participant: %w", err)
		tl_channel_admin_log_event_action_gen.go#L3758: 		return fmt.Errorf("can't encode channelAdminLogEventActionParticipantUnmute#e64429c0 as nil")
		tl_channel_admin_log_event_action_gen.go#L3767: 		return fmt.Errorf("can't encode channelAdminLogEventActionParticipantUnmute#e64429c0 as nil")
		tl_channel_admin_log_event_action_gen.go#L3770: 		return fmt.Errorf("unable to encode channelAdminLogEventActionParticipantUnmute#e64429c0: field participant: %w", err)
		tl_channel_admin_log_event_action_gen.go#L3778: 		return fmt.Errorf("can't decode channelAdminLogEventActionParticipantUnmute#e64429c0 to nil")
		tl_channel_admin_log_event_action_gen.go#L3781: 		return fmt.Errorf("unable to decode channelAdminLogEventActionParticipantUnmute#e64429c0: %w", err)
		tl_channel_admin_log_event_action_gen.go#L3789: 		return fmt.Errorf("can't decode channelAdminLogEventActionParticipantUnmute#e64429c0 to nil")
		tl_channel_admin_log_event_action_gen.go#L3793: 			return fmt.Errorf("unable to decode channelAdminLogEventActionParticipantUnmute#e64429c0: field participant: %w", err)
		tl_channel_admin_log_event_action_gen.go#L3895: 		return fmt.Errorf("can't encode channelAdminLogEventActionToggleGroupCallSetting#56d6a247 as nil")
		tl_channel_admin_log_event_action_gen.go#L3904: 		return fmt.Errorf("can't encode channelAdminLogEventActionToggleGroupCallSetting#56d6a247 as nil")
		tl_channel_admin_log_event_action_gen.go#L3913: 		return fmt.Errorf("can't decode channelAdminLogEventActionToggleGroupCallSetting#56d6a247 to nil")
		tl_channel_admin_log_event_action_gen.go#L3916: 		return fmt.Errorf("unable to decode channelAdminLogEventActionToggleGroupCallSetting#56d6a247: %w", err)
		tl_channel_admin_log_event_action_gen.go#L3924: 		return fmt.Errorf("can't decode channelAdminLogEventActionToggleGroupCallSetting#56d6a247 to nil")
		tl_channel_admin_log_event_action_gen.go#L3929: 			return fmt.Errorf("unable to decode channelAdminLogEventActionToggleGroupCallSetting#56d6a247: field join_muted: %w", err)
		tl_channel_admin_log_event_action_gen.go#L4068: 		return fmt.Errorf("can't encode channelAdminLogEventActionParticipantJoinByInvite#fe9fc158 as nil")
		tl_channel_admin_log_event_action_gen.go#L4077: 		return fmt.Errorf("can't encode channelAdminLogEventActionParticipantJoinByInvite#fe9fc158 as nil")
		tl_channel_admin_log_event_action_gen.go#L4081: 		return fmt.Errorf("unable to encode channelAdminLogEventActionParticipantJoinByInvite#fe9fc158: field flags: %w", err)
		tl_channel_admin_log_event_action_gen.go#L4084: 		return fmt.Errorf("unable to encode channelAdminLogEventActionParticipantJoinByInvite#fe9fc158: field invite is nil")
		tl_channel_admin_log_event_action_gen.go#L4087: 		return fmt.Errorf("unable to encode channelAdminLogEventActionParticipantJoinByInvite#fe9fc158: field invite: %w", err)
		tl_channel_admin_log_event_action_gen.go#L4095: 		return fmt.Errorf("can't decode channelAdminLogEventActionParticipantJoinByInvite#fe9fc158 to nil")
		tl_channel_admin_log_event_action_gen.go#L4098: 		return fmt.Errorf("unable to decode channelAdminLogEventActionParticipantJoinByInvite#fe9fc158: %w", err)
		tl_channel_admin_log_event_action_gen.go#L4106: 		return fmt.Errorf("can't decode channelAdminLogEventActionParticipantJoinByInvite#fe9fc158 to nil")
		tl_channel_admin_log_event_action_gen.go#L4110: 			return fmt.Errorf("unable to decode channelAdminLogEventActionParticipantJoinByInvite#fe9fc158: field flags: %w", err)
		tl_channel_admin_log_event_action_gen.go#L4117: 			return fmt.Errorf("unable to decode channelAdminLogEventActionParticipantJoinByInvite#fe9fc158: field invite: %w", err)
		tl_channel_admin_log_event_action_gen.go#L4239: 		return fmt.Errorf("can't encode channelAdminLogEventActionExportedInviteDelete#5a50fca4 as nil")
		tl_channel_admin_log_event_action_gen.go#L4248: 		return fmt.Errorf("can't encode channelAdminLogEventActionExportedInviteDelete#5a50fca4 as nil")
		tl_channel_admin_log_event_action_gen.go#L4251: 		return fmt.Errorf("unable to encode channelAdminLogEventActionExportedInviteDelete#5a50fca4: field invite is nil")
		tl_channel_admin_log_event_action_gen.go#L4254: 		return fmt.Errorf("unable to encode channelAdminLogEventActionExportedInviteDelete#5a50fca4: field invite: %w", err)
		tl_channel_admin_log_event_action_gen.go#L4262: 		return fmt.Errorf("can't decode channelAdminLogEventActionExportedInviteDelete#5a50fca4 to nil")
		tl_channel_admin_log_event_action_gen.go#L4265: 		return fmt.Errorf("unable to decode channelAdminLogEventActionExportedInviteDelete#5a50fca4: %w", err)
		tl_channel_admin_log_event_action_gen.go#L4273: 		return fmt.Errorf("can't decode channelAdminLogEventActionExportedInviteDelete#5a50fca4 to nil")
		tl_channel_admin_log_event_action_gen.go#L4278: 			return fmt.Errorf("unable to decode channelAdminLogEventActionExportedInviteDelete#5a50fca4: field invite: %w", err)
		tl_channel_admin_log_event_action_gen.go#L4381: 		return fmt.Errorf("can't encode channelAdminLogEventActionExportedInviteRevoke#410a134e as nil")
		tl_channel_admin_log_event_action_gen.go#L4390: 		return fmt.Errorf("can't encode channelAdminLogEventActionExportedInviteRevoke#410a134e as nil")
		tl_channel_admin_log_event_action_gen.go#L4393: 		return fmt.Errorf("unable to encode channelAdminLogEventActionExportedInviteRevoke#410a134e: field invite is nil")
		tl_channel_admin_log_event_action_gen.go#L4396: 		return fmt.Errorf("unable to encode channelAdminLogEventActionExportedInviteRevoke#410a134e: field invite: %w", err)
		tl_channel_admin_log_event_action_gen.go#L4404: 		return fmt.Errorf("can't decode channelAdminLogEventActionExportedInviteRevoke#410a134e to nil")
		tl_channel_admin_log_event_action_gen.go#L4407: 		return fmt.Errorf("unable to decode channelAdminLogEventActionExportedInviteRevoke#410a134e: %w", err)
		tl_channel_admin_log_event_action_gen.go#L4415: 		return fmt.Errorf("can't decode channelAdminLogEventActionExportedInviteRevoke#410a134e to nil")
		tl_channel_admin_log_event_action_gen.go#L4420: 			return fmt.Errorf("unable to decode channelAdminLogEventActionExportedInviteRevoke#410a134e: field invite: %w", err)
		tl_channel_admin_log_event_action_gen.go#L4534: 		return fmt.Errorf("can't encode channelAdminLogEventActionExportedInviteEdit#e90ebb59 as nil")
		tl_channel_admin_log_event_action_gen.go#L4543: 		return fmt.Errorf("can't encode channelAdminLogEventActionExportedInviteEdit#e90ebb59 as nil")
		tl_channel_admin_log_event_action_gen.go#L4546: 		return fmt.Errorf("unable to encode channelAdminLogEventActionExportedInviteEdit#e90ebb59: field prev_invite is nil")
		tl_channel_admin_log_event_action_gen.go#L4549: 		return fmt.Errorf("unable to encode channelAdminLogEventActionExportedInviteEdit#e90ebb59: field prev_invite: %w", err)
		tl_channel_admin_log_event_action_gen.go#L4552: 		return fmt.Errorf("unable to encode channelAdminLogEventActionExportedInviteEdit#e90ebb59: field new_invite is nil")
		tl_channel_admin_log_event_action_gen.go#L4555: 		return fmt.Errorf("unable to encode channelAdminLogEventActionExportedInviteEdit#e90ebb59: field new_invite: %w", err)
		tl_channel_admin_log_event_action_gen.go#L4563: 		return fmt.Errorf("can't decode channelAdminLogEventActionExportedInviteEdit#e90ebb59 to nil")
		tl_channel_admin_log_event_action_gen.go#L4566: 		return fmt.Errorf("unable to decode channelAdminLogEventActionExportedInviteEdit#e90ebb59: %w", err)
		tl_channel_admin_log_event_action_gen.go#L4574: 		return fmt.Errorf("can't decode channelAdminLogEventActionExportedInviteEdit#e90ebb59 to nil")
		tl_channel_admin_log_event_action_gen.go#L4579: 			return fmt.Errorf("unable to decode channelAdminLogEventActionExportedInviteEdit#e90ebb59: field prev_invite: %w", err)
		tl_channel_admin_log_event_action_gen.go#L4586: 			return fmt.Errorf("unable to decode channelAdminLogEventActionExportedInviteEdit#e90ebb59: field new_invite: %w", err)
		tl_channel_admin_log_event_action_gen.go#L4698: 		return fmt.Errorf("can't encode channelAdminLogEventActionParticipantVolume#3e7f6847 as nil")
		tl_channel_admin_log_event_action_gen.go#L4707: 		return fmt.Errorf("can't encode channelAdminLogEventActionParticipantVolume#3e7f6847 as nil")
		tl_channel_admin_log_event_action_gen.go#L4710: 		return fmt.Errorf("unable to encode channelAdminLogEventActionParticipantVolume#3e7f6847: field participant: %w", err)
		tl_channel_admin_log_event_action_gen.go#L4718: 		return fmt.Errorf("can't decode channelAdminLogEventActionParticipantVolume#3e7f6847 to nil")
		tl_channel_admin_log_event_action_gen.go#L4721: 		return fmt.Errorf("unable to decode channelAdminLogEventActionParticipantVolume#3e7f6847: %w", err)
		tl_channel_admin_log_event_action_gen.go#L4729: 		return fmt.Errorf("can't decode channelAdminLogEventActionParticipantVolume#3e7f6847 to nil")
		tl_channel_admin_log_event_action_gen.go#L4733: 			return fmt.Errorf("unable to decode channelAdminLogEventActionParticipantVolume#3e7f6847: field participant: %w", err)
		tl_channel_admin_log_event_action_gen.go#L4846: 		return fmt.Errorf("can't encode channelAdminLogEventActionChangeHistoryTTL#6e941a38 as nil")
		tl_channel_admin_log_event_action_gen.go#L4855: 		return fmt.Errorf("can't encode channelAdminLogEventActionChangeHistoryTTL#6e941a38 as nil")
		tl_channel_admin_log_event_action_gen.go#L4865: 		return fmt.Errorf("can't decode channelAdminLogEventActionChangeHistoryTTL#6e941a38 to nil")
		tl_channel_admin_log_event_action_gen.go#L4868: 		return fmt.Errorf("unable to decode channelAdminLogEventActionChangeHistoryTTL#6e941a38: %w", err)
		tl_channel_admin_log_event_action_gen.go#L4876: 		return fmt.Errorf("can't decode channelAdminLogEventActionChangeHistoryTTL#6e941a38 to nil")
		tl_channel_admin_log_event_action_gen.go#L4881: 			return fmt.Errorf("unable to decode channelAdminLogEventActionChangeHistoryTTL#6e941a38: field prev_value: %w", err)
		tl_channel_admin_log_event_action_gen.go#L4888: 			return fmt.Errorf("unable to decode channelAdminLogEventActionChangeHistoryTTL#6e941a38: field new_value: %w", err)
		tl_channel_admin_log_event_action_gen.go#L5010: 		return fmt.Errorf("can't encode channelAdminLogEventActionParticipantJoinByRequest#afb6144a as nil")
		tl_channel_admin_log_event_action_gen.go#L5019: 		return fmt.Errorf("can't encode channelAdminLogEventActionParticipantJoinByRequest#afb6144a as nil")
		tl_channel_admin_log_event_action_gen.go#L5022: 		return fmt.Errorf("unable to encode channelAdminLogEventActionParticipantJoinByRequest#afb6144a: field invite is nil")
		tl_channel_admin_log_event_action_gen.go#L5025: 		return fmt.Errorf("unable to encode channelAdminLogEventActionParticipantJoinByRequest#afb6144a: field invite: %w", err)
		tl_channel_admin_log_event_action_gen.go#L5034: 		return fmt.Errorf("can't decode channelAdminLogEventActionParticipantJoinByRequest#afb6144a to nil")
		tl_channel_admin_log_event_action_gen.go#L5037: 		return fmt.Errorf("unable to decode channelAdminLogEventActionParticipantJoinByRequest#afb6144a: %w", err)
		tl_channel_admin_log_event_action_gen.go#L5045: 		return fmt.Errorf("can't decode channelAdminLogEventActionParticipantJoinByRequest#afb6144a to nil")
		tl_channel_admin_log_event_action_gen.go#L5050: 			return fmt.Errorf("unable to decode channelAdminLogEventActionParticipantJoinByRequest#afb6144a: field invite: %w", err)
		tl_channel_admin_log_event_action_gen.go#L5057: 			return fmt.Errorf("unable to decode channelAdminLogEventActionParticipantJoinByRequest#afb6144a: field approved_by: %w", err)
		tl_channel_admin_log_event_action_gen.go#L5168: 		return fmt.Errorf("can't encode channelAdminLogEventActionToggleNoForwards#cb2ac766 as nil")
		tl_channel_admin_log_event_action_gen.go#L5177: 		return fmt.Errorf("can't encode channelAdminLogEventActionToggleNoForwards#cb2ac766 as nil")
		tl_channel_admin_log_event_action_gen.go#L5186: 		return fmt.Errorf("can't decode channelAdminLogEventActionToggleNoForwards#cb2ac766 to nil")
		tl_channel_admin_log_event_action_gen.go#L5189: 		return fmt.Errorf("unable to decode channelAdminLogEventActionToggleNoForwards#cb2ac766: %w", err)
		tl_channel_admin_log_event_action_gen.go#L5197: 		return fmt.Errorf("can't decode channelAdminLogEventActionToggleNoForwards#cb2ac766 to nil")
		tl_channel_admin_log_event_action_gen.go#L5202: 			return fmt.Errorf("unable to decode channelAdminLogEventActionToggleNoForwards#cb2ac766: field new_value: %w", err)
		tl_channel_admin_log_event_action_gen.go#L5303: 		return fmt.Errorf("can't encode channelAdminLogEventActionSendMessage#278f2868 as nil")
		tl_channel_admin_log_event_action_gen.go#L5312: 		return fmt.Errorf("can't encode channelAdminLogEventActionSendMessage#278f2868 as nil")
		tl_channel_admin_log_event_action_gen.go#L5315: 		return fmt.Errorf("unable to encode channelAdminLogEventActionSendMessage#278f2868: field message is nil")
		tl_channel_admin_log_event_action_gen.go#L5318: 		return fmt.Errorf("unable to encode channelAdminLogEventActionSendMessage#278f2868: field message: %w", err)
		tl_channel_admin_log_event_action_gen.go#L5326: 		return fmt.Errorf("can't decode channelAdminLogEventActionSendMessage#278f2868 to nil")
		tl_channel_admin_log_event_action_gen.go#L5329: 		return fmt.Errorf("unable to decode channelAdminLogEventActionSendMessage#278f2868: %w", err)
		tl_channel_admin_log_event_action_gen.go#L5337: 		return fmt.Errorf("can't decode channelAdminLogEventActionSendMessage#278f2868 to nil")
		tl_channel_admin_log_event_action_gen.go#L5342: 			return fmt.Errorf("unable to decode channelAdminLogEventActionSendMessage#278f2868: field message: %w", err)
		tl_channel_admin_log_event_action_gen.go#L5459: 		return fmt.Errorf("can't encode channelAdminLogEventActionChangeAvailableReactions#be4e0ef8 as nil")
		tl_channel_admin_log_event_action_gen.go#L5468: 		return fmt.Errorf("can't encode channelAdminLogEventActionChangeAvailableReactions#be4e0ef8 as nil")
		tl_channel_admin_log_event_action_gen.go#L5471: 		return fmt.Errorf("unable to encode channelAdminLogEventActionChangeAvailableReactions#be4e0ef8: field prev_value is nil")
		tl_channel_admin_log_event_action_gen.go#L5474: 		return fmt.Errorf("unable to encode channelAdminLogEventActionChangeAvailableReactions#be4e0ef8: field prev_value: %w", err)
		tl_channel_admin_log_event_action_gen.go#L5477: 		return fmt.Errorf("unable to encode channelAdminLogEventActionChangeAvailableReactions#be4e0ef8: field new_value is nil")
		tl_channel_admin_log_event_action_gen.go#L5480: 		return fmt.Errorf("unable to encode channelAdminLogEventActionChangeAvailableReactions#be4e0ef8: field new_value: %w", err)
		tl_channel_admin_log_event_action_gen.go#L5488: 		return fmt.Errorf("can't decode channelAdminLogEventActionChangeAvailableReactions#be4e0ef8 to nil")
		tl_channel_admin_log_event_action_gen.go#L5491: 		return fmt.Errorf("unable to decode channelAdminLogEventActionChangeAvailableReactions#be4e0ef8: %w", err)
		tl_channel_admin_log_event_action_gen.go#L5499: 		return fmt.Errorf("can't decode channelAdminLogEventActionChangeAvailableReactions#be4e0ef8 to nil")
		tl_channel_admin_log_event_action_gen.go#L5504: 			return fmt.Errorf("unable to decode channelAdminLogEventActionChangeAvailableReactions#be4e0ef8: field prev_value: %w", err)
		tl_channel_admin_log_event_action_gen.go#L5511: 			return fmt.Errorf("unable to decode channelAdminLogEventActionChangeAvailableReactions#be4e0ef8: field new_value: %w", err)
		tl_channel_admin_log_event_action_gen.go#L5633: 		return fmt.Errorf("can't encode channelAdminLogEventActionChangeUsernames#f04fb3a9 as nil")
		tl_channel_admin_log_event_action_gen.go#L5642: 		return fmt.Errorf("can't encode channelAdminLogEventActionChangeUsernames#f04fb3a9 as nil")
		tl_channel_admin_log_event_action_gen.go#L5658: 		return fmt.Errorf("can't decode channelAdminLogEventActionChangeUsernames#f04fb3a9 to nil")
		tl_channel_admin_log_event_action_gen.go#L5661: 		return fmt.Errorf("unable to decode channelAdminLogEventActionChangeUsernames#f04fb3a9: %w", err)
		tl_channel_admin_log_event_action_gen.go#L5669: 		return fmt.Errorf("can't decode channelAdminLogEventActionChangeUsernames#f04fb3a9 to nil")
		tl_channel_admin_log_event_action_gen.go#L5674: 			return fmt.Errorf("unable to decode channelAdminLogEventActionChangeUsernames#f04fb3a9: field prev_value: %w", err)
		tl_channel_admin_log_event_action_gen.go#L5683: 				return fmt.Errorf("unable to decode channelAdminLogEventActionChangeUsernames#f04fb3a9: field prev_value: %w", err)
		tl_channel_admin_log_event_action_gen.go#L5691: 			return fmt.Errorf("unable to decode channelAdminLogEventActionChangeUsernames#f04fb3a9: field new_value: %w", err)
		tl_channel_admin_log_event_action_gen.go#L5700: 				return fmt.Errorf("unable to decode channelAdminLogEventActionChangeUsernames#f04fb3a9: field new_value: %w", err)
		tl_channel_admin_log_event_action_gen.go#L5816: 		return fmt.Errorf("can't encode channelAdminLogEventActionToggleForum#2cc6383 as nil")
		tl_channel_admin_log_event_action_gen.go#L5825: 		return fmt.Errorf("can't encode channelAdminLogEventActionToggleForum#2cc6383 as nil")
		tl_channel_admin_log_event_action_gen.go#L5834: 		return fmt.Errorf("can't decode channelAdminLogEventActionToggleForum#2cc6383 to nil")
		tl_channel_admin_log_event_action_gen.go#L5837: 		return fmt.Errorf("unable to decode channelAdminLogEventActionToggleForum#2cc6383: %w", err)
		tl_channel_admin_log_event_action_gen.go#L5845: 		return fmt.Errorf("can't decode channelAdminLogEventActionToggleForum#2cc6383 to nil")
		tl_channel_admin_log_event_action_gen.go#L5850: 			return fmt.Errorf("unable to decode channelAdminLogEventActionToggleForum#2cc6383: field new_value: %w", err)
		tl_channel_admin_log_event_action_gen.go#L5957: 		return fmt.Errorf("can't encode channelAdminLogEventActionCreateTopic#58707d28 as nil")
		tl_channel_admin_log_event_action_gen.go#L5966: 		return fmt.Errorf("can't encode channelAdminLogEventActionCreateTopic#58707d28 as nil")
		tl_channel_admin_log_event_action_gen.go#L5969: 		return fmt.Errorf("unable to encode channelAdminLogEventActionCreateTopic#58707d28: field topic is nil")
		tl_channel_admin_log_event_action_gen.go#L5972: 		return fmt.Errorf("unable to encode channelAdminLogEventActionCreateTopic#58707d28: field topic: %w", err)
		tl_channel_admin_log_event_action_gen.go#L5980: 		return fmt.Errorf("can't decode channelAdminLogEventActionCreateTopic#58707d28 to nil")
		tl_channel_admin_log_event_action_gen.go#L5983: 		return fmt.Errorf("unable to decode channelAdminLogEventActionCreateTopic#58707d28: %w", err)
		tl_channel_admin_log_event_action_gen.go#L5991: 		return fmt.Errorf("can't decode channelAdminLogEventActionCreateTopic#58707d28 to nil")
		tl_channel_admin_log_event_action_gen.go#L5996: 			return fmt.Errorf("unable to decode channelAdminLogEventActionCreateTopic#58707d28: field topic: %w", err)
		tl_channel_admin_log_event_action_gen.go#L6111: 		return fmt.Errorf("can't encode channelAdminLogEventActionEditTopic#f06fe208 as nil")
		tl_channel_admin_log_event_action_gen.go#L6120: 		return fmt.Errorf("can't encode channelAdminLogEventActionEditTopic#f06fe208 as nil")
		tl_channel_admin_log_event_action_gen.go#L6123: 		return fmt.Errorf("unable to encode channelAdminLogEventActionEditTopic#f06fe208: field prev_topic is nil")
		tl_channel_admin_log_event_action_gen.go#L6126: 		return fmt.Errorf("unable to encode channelAdminLogEventActionEditTopic#f06fe208: field prev_topic: %w", err)
		tl_channel_admin_log_event_action_gen.go#L6129: 		return fmt.Errorf("unable to encode channelAdminLogEventActionEditTopic#f06fe208: field new_topic is nil")
		tl_channel_admin_log_event_action_gen.go#L6132: 		return fmt.Errorf("unable to encode channelAdminLogEventActionEditTopic#f06fe208: field new_topic: %w", err)
		tl_channel_admin_log_event_action_gen.go#L6140: 		return fmt.Errorf("can't decode channelAdminLogEventActionEditTopic#f06fe208 to nil")
		tl_channel_admin_log_event_action_gen.go#L6143: 		return fmt.Errorf("unable to decode channelAdminLogEventActionEditTopic#f06fe208: %w", err)
		tl_channel_admin_log_event_action_gen.go#L6151: 		return fmt.Errorf("can't decode channelAdminLogEventActionEditTopic#f06fe208 to nil")
		tl_channel_admin_log_event_action_gen.go#L6156: 			return fmt.Errorf("unable to decode channelAdminLogEventActionEditTopic#f06fe208: field prev_topic: %w", err)
		tl_channel_admin_log_event_action_gen.go#L6163: 			return fmt.Errorf("unable to decode channelAdminLogEventActionEditTopic#f06fe208: field new_topic: %w", err)
		tl_channel_admin_log_event_action_gen.go#L6278: 		return fmt.Errorf("can't encode channelAdminLogEventActionDeleteTopic#ae168909 as nil")
		tl_channel_admin_log_event_action_gen.go#L6287: 		return fmt.Errorf("can't encode channelAdminLogEventActionDeleteTopic#ae168909 as nil")
		tl_channel_admin_log_event_action_gen.go#L6290: 		return fmt.Errorf("unable to encode channelAdminLogEventActionDeleteTopic#ae168909: field topic is nil")
		tl_channel_admin_log_event_action_gen.go#L6293: 		return fmt.Errorf("unable to encode channelAdminLogEventActionDeleteTopic#ae168909: field topic: %w", err)
		tl_channel_admin_log_event_action_gen.go#L6301: 		return fmt.Errorf("can't decode channelAdminLogEventActionDeleteTopic#ae168909 to nil")
		tl_channel_admin_log_event_action_gen.go#L6304: 		return fmt.Errorf("unable to decode channelAdminLogEventActionDeleteTopic#ae168909: %w", err)
		tl_channel_admin_log_event_action_gen.go#L6312: 		return fmt.Errorf("can't decode channelAdminLogEventActionDeleteTopic#ae168909 to nil")
		tl_channel_admin_log_event_action_gen.go#L6317: 			return fmt.Errorf("unable to decode channelAdminLogEventActionDeleteTopic#ae168909: field topic: %w", err)
		tl_channel_admin_log_event_action_gen.go#L6462: 		return fmt.Errorf("can't encode channelAdminLogEventActionPinTopic#5d8d353b as nil")
		tl_channel_admin_log_event_action_gen.go#L6471: 		return fmt.Errorf("can't encode channelAdminLogEventActionPinTopic#5d8d353b as nil")
		tl_channel_admin_log_event_action_gen.go#L6475: 		return fmt.Errorf("unable to encode channelAdminLogEventActionPinTopic#5d8d353b: field flags: %w", err)
		tl_channel_admin_log_event_action_gen.go#L6479: 			return fmt.Errorf("unable to encode channelAdminLogEventActionPinTopic#5d8d353b: field prev_topic is nil")
		tl_channel_admin_log_event_action_gen.go#L6482: 			return fmt.Errorf("unable to encode channelAdminLogEventActionPinTopic#5d8d353b: field prev_topic: %w", err)
		tl_channel_admin_log_event_action_gen.go#L6487: 			return fmt.Errorf("unable to encode channelAdminLogEventActionPinTopic#5d8d353b: field new_topic is nil")
		tl_channel_admin_log_event_action_gen.go#L6490: 			return fmt.Errorf("unable to encode channelAdminLogEventActionPinTopic#5d8d353b: field new_topic: %w", err)
		tl_channel_admin_log_event_action_gen.go#L6499: 		return fmt.Errorf("can't decode channelAdminLogEventActionPinTopic#5d8d353b to nil")
		tl_channel_admin_log_event_action_gen.go#L6502: 		return fmt.Errorf("unable to decode channelAdminLogEventActionPinTopic#5d8d353b: %w", err)
		tl_channel_admin_log_event_action_gen.go#L6510: 		return fmt.Errorf("can't decode channelAdminLogEventActionPinTopic#5d8d353b to nil")
		tl_channel_admin_log_event_action_gen.go#L6514: 			return fmt.Errorf("unable to decode channelAdminLogEventActionPinTopic#5d8d353b: field flags: %w", err)
		tl_channel_admin_log_event_action_gen.go#L6520: 			return fmt.Errorf("unable to decode channelAdminLogEventActionPinTopic#5d8d353b: field prev_topic: %w", err)
		tl_channel_admin_log_event_action_gen.go#L6527: 			return fmt.Errorf("unable to decode channelAdminLogEventActionPinTopic#5d8d353b: field new_topic: %w", err)
		tl_channel_admin_log_event_action_gen.go#L6661: 		return fmt.Errorf("can't encode channelAdminLogEventActionToggleAntiSpam#64f36dfc as nil")
		tl_channel_admin_log_event_action_gen.go#L6670: 		return fmt.Errorf("can't encode channelAdminLogEventActionToggleAntiSpam#64f36dfc as nil")
		tl_channel_admin_log_event_action_gen.go#L6679: 		return fmt.Errorf("can't decode channelAdminLogEventActionToggleAntiSpam#64f36dfc to nil")
		tl_channel_admin_log_event_action_gen.go#L6682: 		return fmt.Errorf("unable to decode channelAdminLogEventActionToggleAntiSpam#64f36dfc: %w", err)
		tl_channel_admin_log_event_action_gen.go#L6690: 		return fmt.Errorf("can't decode channelAdminLogEventActionToggleAntiSpam#64f36dfc to nil")
		tl_channel_admin_log_event_action_gen.go#L6695: 			return fmt.Errorf("unable to decode channelAdminLogEventActionToggleAntiSpam#64f36dfc: field new_value: %w", err)
		tl_channel_admin_log_event_action_gen.go#L6808: 		return fmt.Errorf("can't encode channelAdminLogEventActionChangePeerColor#5796e780 as nil")
		tl_channel_admin_log_event_action_gen.go#L6817: 		return fmt.Errorf("can't encode channelAdminLogEventActionChangePeerColor#5796e780 as nil")
		tl_channel_admin_log_event_action_gen.go#L6820: 		return fmt.Errorf("unable to encode channelAdminLogEventActionChangePeerColor#5796e780: field prev_value: %w", err)
		tl_channel_admin_log_event_action_gen.go#L6823: 		return fmt.Errorf("unable to encode channelAdminLogEventActionChangePeerColor#5796e780: field new_value: %w", err)
		tl_channel_admin_log_event_action_gen.go#L6831: 		return fmt.Errorf("can't decode channelAdminLogEventActionChangePeerColor#5796e780 to nil")
		tl_channel_admin_log_event_action_gen.go#L6834: 		return fmt.Errorf("unable to decode channelAdminLogEventActionChangePeerColor#5796e780: %w", err)
		tl_channel_admin_log_event_action_gen.go#L6842: 		return fmt.Errorf("can't decode channelAdminLogEventActionChangePeerColor#5796e780 to nil")
		tl_channel_admin_log_event_action_gen.go#L6846: 			return fmt.Errorf("unable to decode channelAdminLogEventActionChangePeerColor#5796e780: field prev_value: %w", err)
		tl_channel_admin_log_event_action_gen.go#L6851: 			return fmt.Errorf("unable to decode channelAdminLogEventActionChangePeerColor#5796e780: field new_value: %w", err)
		tl_channel_admin_log_event_action_gen.go#L6971: 		return fmt.Errorf("can't encode channelAdminLogEventActionChangeProfilePeerColor#5e477b25 as nil")
		tl_channel_admin_log_event_action_gen.go#L6980: 		return fmt.Errorf("can't encode channelAdminLogEventActionChangeProfilePeerColor#5e477b25 as nil")
		tl_channel_admin_log_event_action_gen.go#L6983: 		return fmt.Errorf("unable to encode channelAdminLogEventActionChangeProfilePeerColor#5e477b25: field prev_value: %w", err)
		tl_channel_admin_log_event_action_gen.go#L6986: 		return fmt.Errorf("unable to encode channelAdminLogEventActionChangeProfilePeerColor#5e477b25: field new_value: %w", err)
		tl_channel_admin_log_event_action_gen.go#L6994: 		return fmt.Errorf("can't decode channelAdminLogEventActionChangeProfilePeerColor#5e477b25 to nil")
		tl_channel_admin_log_event_action_gen.go#L6997: 		return fmt.Errorf("unable to decode channelAdminLogEventActionChangeProfilePeerColor#5e477b25: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7005: 		return fmt.Errorf("can't decode channelAdminLogEventActionChangeProfilePeerColor#5e477b25 to nil")
		tl_channel_admin_log_event_action_gen.go#L7009: 			return fmt.Errorf("unable to decode channelAdminLogEventActionChangeProfilePeerColor#5e477b25: field prev_value: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7014: 			return fmt.Errorf("unable to decode channelAdminLogEventActionChangeProfilePeerColor#5e477b25: field new_value: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7134: 		return fmt.Errorf("can't encode channelAdminLogEventActionChangeWallpaper#31bb5d52 as nil")
		tl_channel_admin_log_event_action_gen.go#L7143: 		return fmt.Errorf("can't encode channelAdminLogEventActionChangeWallpaper#31bb5d52 as nil")
		tl_channel_admin_log_event_action_gen.go#L7146: 		return fmt.Errorf("unable to encode channelAdminLogEventActionChangeWallpaper#31bb5d52: field prev_value is nil")
		tl_channel_admin_log_event_action_gen.go#L7149: 		return fmt.Errorf("unable to encode channelAdminLogEventActionChangeWallpaper#31bb5d52: field prev_value: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7152: 		return fmt.Errorf("unable to encode channelAdminLogEventActionChangeWallpaper#31bb5d52: field new_value is nil")
		tl_channel_admin_log_event_action_gen.go#L7155: 		return fmt.Errorf("unable to encode channelAdminLogEventActionChangeWallpaper#31bb5d52: field new_value: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7163: 		return fmt.Errorf("can't decode channelAdminLogEventActionChangeWallpaper#31bb5d52 to nil")
		tl_channel_admin_log_event_action_gen.go#L7166: 		return fmt.Errorf("unable to decode channelAdminLogEventActionChangeWallpaper#31bb5d52: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7174: 		return fmt.Errorf("can't decode channelAdminLogEventActionChangeWallpaper#31bb5d52 to nil")
		tl_channel_admin_log_event_action_gen.go#L7179: 			return fmt.Errorf("unable to decode channelAdminLogEventActionChangeWallpaper#31bb5d52: field prev_value: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7186: 			return fmt.Errorf("unable to decode channelAdminLogEventActionChangeWallpaper#31bb5d52: field new_value: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7307: 		return fmt.Errorf("can't encode channelAdminLogEventActionChangeEmojiStatus#3ea9feb1 as nil")
		tl_channel_admin_log_event_action_gen.go#L7316: 		return fmt.Errorf("can't encode channelAdminLogEventActionChangeEmojiStatus#3ea9feb1 as nil")
		tl_channel_admin_log_event_action_gen.go#L7319: 		return fmt.Errorf("unable to encode channelAdminLogEventActionChangeEmojiStatus#3ea9feb1: field prev_value is nil")
		tl_channel_admin_log_event_action_gen.go#L7322: 		return fmt.Errorf("unable to encode channelAdminLogEventActionChangeEmojiStatus#3ea9feb1: field prev_value: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7325: 		return fmt.Errorf("unable to encode channelAdminLogEventActionChangeEmojiStatus#3ea9feb1: field new_value is nil")
		tl_channel_admin_log_event_action_gen.go#L7328: 		return fmt.Errorf("unable to encode channelAdminLogEventActionChangeEmojiStatus#3ea9feb1: field new_value: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7336: 		return fmt.Errorf("can't decode channelAdminLogEventActionChangeEmojiStatus#3ea9feb1 to nil")
		tl_channel_admin_log_event_action_gen.go#L7339: 		return fmt.Errorf("unable to decode channelAdminLogEventActionChangeEmojiStatus#3ea9feb1: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7347: 		return fmt.Errorf("can't decode channelAdminLogEventActionChangeEmojiStatus#3ea9feb1 to nil")
		tl_channel_admin_log_event_action_gen.go#L7352: 			return fmt.Errorf("unable to decode channelAdminLogEventActionChangeEmojiStatus#3ea9feb1: field prev_value: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7359: 			return fmt.Errorf("unable to decode channelAdminLogEventActionChangeEmojiStatus#3ea9feb1: field new_value: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7475: 			return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7482: 			return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7489: 			return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7496: 			return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7503: 			return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7510: 			return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7517: 			return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7524: 			return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7531: 			return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7538: 			return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7545: 			return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7552: 			return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7559: 			return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7566: 			return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7573: 			return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7580: 			return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7587: 			return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7594: 			return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7601: 			return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7608: 			return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7615: 			return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7622: 			return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7629: 			return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7636: 			return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7643: 			return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7650: 			return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7657: 			return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7664: 			return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7671: 			return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7678: 			return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7685: 			return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7692: 			return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7699: 			return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7706: 			return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7713: 			return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7720: 			return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7727: 			return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7734: 			return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7741: 			return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7748: 			return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7755: 			return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7762: 			return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7769: 			return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7776: 			return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7783: 			return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7790: 			return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7797: 			return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7801: 		return nil, fmt.Errorf("unable to decode ChannelAdminLogEventActionClass: %w", bin.NewUnexpectedID(id))
		tl_channel_admin_log_event_action_gen.go#L7813: 		return fmt.Errorf("unable to decode ChannelAdminLogEventActionBox to nil")
		tl_channel_admin_log_event_action_gen.go#L7817: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_channel_admin_log_event_action_gen.go#L7826: 		return fmt.Errorf("unable to encode ChannelAdminLogEventActionClass as nil")
		tl_channel_admin_log_event_gen.go#L148: 		return fmt.Errorf("can't encode channelAdminLogEvent#1fad68cd as nil")
		tl_channel_admin_log_event_gen.go#L157: 		return fmt.Errorf("can't encode channelAdminLogEvent#1fad68cd as nil")
		tl_channel_admin_log_event_gen.go#L163: 		return fmt.Errorf("unable to encode channelAdminLogEvent#1fad68cd: field action is nil")
		tl_channel_admin_log_event_gen.go#L166: 		return fmt.Errorf("unable to encode channelAdminLogEvent#1fad68cd: field action: %w", err)
		tl_channel_admin_log_event_gen.go#L174: 		return fmt.Errorf("can't decode channelAdminLogEvent#1fad68cd to nil")
		tl_channel_admin_log_event_gen.go#L177: 		return fmt.Errorf("unable to decode channelAdminLogEvent#1fad68cd: %w", err)
		tl_channel_admin_log_event_gen.go#L185: 		return fmt.Errorf("can't decode channelAdminLogEvent#1fad68cd to nil")
		tl_channel_admin_log_event_gen.go#L190: 			return fmt.Errorf("unable to decode channelAdminLogEvent#1fad68cd: field id: %w", err)
		tl_channel_admin_log_event_gen.go#L197: 			return fmt.Errorf("unable to decode channelAdminLogEvent#1fad68cd: field date: %w", err)
		tl_channel_admin_log_event_gen.go#L204: 			return fmt.Errorf("unable to decode channelAdminLogEvent#1fad68cd: field user_id: %w", err)
		tl_channel_admin_log_event_gen.go#L211: 			return fmt.Errorf("unable to decode channelAdminLogEvent#1fad68cd: field action: %w", err)
		tl_channel_admin_log_events_filter_gen.go#L448: 		return fmt.Errorf("can't encode channelAdminLogEventsFilter#ea107ae4 as nil")
		tl_channel_admin_log_events_filter_gen.go#L457: 		return fmt.Errorf("can't encode channelAdminLogEventsFilter#ea107ae4 as nil")
		tl_channel_admin_log_events_filter_gen.go#L461: 		return fmt.Errorf("unable to encode channelAdminLogEventsFilter#ea107ae4: field flags: %w", err)
		tl_channel_admin_log_events_filter_gen.go#L469: 		return fmt.Errorf("can't decode channelAdminLogEventsFilter#ea107ae4 to nil")
		tl_channel_admin_log_events_filter_gen.go#L472: 		return fmt.Errorf("unable to decode channelAdminLogEventsFilter#ea107ae4: %w", err)
		tl_channel_admin_log_events_filter_gen.go#L480: 		return fmt.Errorf("can't decode channelAdminLogEventsFilter#ea107ae4 to nil")
		tl_channel_admin_log_events_filter_gen.go#L484: 			return fmt.Errorf("unable to decode channelAdminLogEventsFilter#ea107ae4: field flags: %w", err)
		tl_channel_location_gen.go#L103: 		return fmt.Errorf("can't encode channelLocationEmpty#bfb5ad8b as nil")
		tl_channel_location_gen.go#L112: 		return fmt.Errorf("can't encode channelLocationEmpty#bfb5ad8b as nil")
		tl_channel_location_gen.go#L120: 		return fmt.Errorf("can't decode channelLocationEmpty#bfb5ad8b to nil")
		tl_channel_location_gen.go#L123: 		return fmt.Errorf("unable to decode channelLocationEmpty#bfb5ad8b: %w", err)
		tl_channel_location_gen.go#L131: 		return fmt.Errorf("can't decode channelLocationEmpty#bfb5ad8b to nil")
		tl_channel_location_gen.go#L233: 		return fmt.Errorf("can't encode channelLocation#209b82db as nil")
		tl_channel_location_gen.go#L242: 		return fmt.Errorf("can't encode channelLocation#209b82db as nil")
		tl_channel_location_gen.go#L245: 		return fmt.Errorf("unable to encode channelLocation#209b82db: field geo_point is nil")
		tl_channel_location_gen.go#L248: 		return fmt.Errorf("unable to encode channelLocation#209b82db: field geo_point: %w", err)
		tl_channel_location_gen.go#L257: 		return fmt.Errorf("can't decode channelLocation#209b82db to nil")
		tl_channel_location_gen.go#L260: 		return fmt.Errorf("unable to decode channelLocation#209b82db: %w", err)
		tl_channel_location_gen.go#L268: 		return fmt.Errorf("can't decode channelLocation#209b82db to nil")
		tl_channel_location_gen.go#L273: 			return fmt.Errorf("unable to decode channelLocation#209b82db: field geo_point: %w", err)
		tl_channel_location_gen.go#L280: 			return fmt.Errorf("unable to decode channelLocation#209b82db: field address: %w", err)
		tl_channel_location_gen.go#L364: 			return nil, fmt.Errorf("unable to decode ChannelLocationClass: %w", err)
		tl_channel_location_gen.go#L371: 			return nil, fmt.Errorf("unable to decode ChannelLocationClass: %w", err)
		tl_channel_location_gen.go#L375: 		return nil, fmt.Errorf("unable to decode ChannelLocationClass: %w", bin.NewUnexpectedID(id))
		tl_channel_location_gen.go#L387: 		return fmt.Errorf("unable to decode ChannelLocationBox to nil")
		tl_channel_location_gen.go#L391: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_channel_location_gen.go#L400: 		return fmt.Errorf("unable to encode ChannelLocationClass as nil")
		tl_channel_messages_filter_gen.go#L103: 		return fmt.Errorf("can't encode channelMessagesFilterEmpty#94d42ee7 as nil")
		tl_channel_messages_filter_gen.go#L112: 		return fmt.Errorf("can't encode channelMessagesFilterEmpty#94d42ee7 as nil")
		tl_channel_messages_filter_gen.go#L120: 		return fmt.Errorf("can't decode channelMessagesFilterEmpty#94d42ee7 to nil")
		tl_channel_messages_filter_gen.go#L123: 		return fmt.Errorf("unable to decode channelMessagesFilterEmpty#94d42ee7: %w", err)
		tl_channel_messages_filter_gen.go#L131: 		return fmt.Errorf("can't decode channelMessagesFilterEmpty#94d42ee7 to nil")
		tl_channel_messages_filter_gen.go#L249: 		return fmt.Errorf("can't encode channelMessagesFilter#cd77d957 as nil")
		tl_channel_messages_filter_gen.go#L258: 		return fmt.Errorf("can't encode channelMessagesFilter#cd77d957 as nil")
		tl_channel_messages_filter_gen.go#L262: 		return fmt.Errorf("unable to encode channelMessagesFilter#cd77d957: field flags: %w", err)
		tl_channel_messages_filter_gen.go#L267: 			return fmt.Errorf("unable to encode channelMessagesFilter#cd77d957: field ranges element with index %d: %w", idx, err)
		tl_channel_messages_filter_gen.go#L276: 		return fmt.Errorf("can't decode channelMessagesFilter#cd77d957 to nil")
		tl_channel_messages_filter_gen.go#L279: 		return fmt.Errorf("unable to decode channelMessagesFilter#cd77d957: %w", err)
		tl_channel_messages_filter_gen.go#L287: 		return fmt.Errorf("can't decode channelMessagesFilter#cd77d957 to nil")
		tl_channel_messages_filter_gen.go#L291: 			return fmt.Errorf("unable to decode channelMessagesFilter#cd77d957: field flags: %w", err)
		tl_channel_messages_filter_gen.go#L298: 			return fmt.Errorf("unable to decode channelMessagesFilter#cd77d957: field ranges: %w", err)
		tl_channel_messages_filter_gen.go#L307: 				return fmt.Errorf("unable to decode channelMessagesFilter#cd77d957: field ranges: %w", err)
		tl_channel_messages_filter_gen.go#L403: 			return nil, fmt.Errorf("unable to decode ChannelMessagesFilterClass: %w", err)
		tl_channel_messages_filter_gen.go#L410: 			return nil, fmt.Errorf("unable to decode ChannelMessagesFilterClass: %w", err)
		tl_channel_messages_filter_gen.go#L414: 		return nil, fmt.Errorf("unable to decode ChannelMessagesFilterClass: %w", bin.NewUnexpectedID(id))
		tl_channel_messages_filter_gen.go#L426: 		return fmt.Errorf("unable to decode ChannelMessagesFilterBox to nil")
		tl_channel_messages_filter_gen.go#L430: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_channel_messages_filter_gen.go#L439: 		return fmt.Errorf("unable to encode ChannelMessagesFilterClass as nil")
		tl_channel_participant_gen.go#L131: 		return fmt.Errorf("can't encode channelParticipant#c00c07c0 as nil")
		tl_channel_participant_gen.go#L140: 		return fmt.Errorf("can't encode channelParticipant#c00c07c0 as nil")
		tl_channel_participant_gen.go#L150: 		return fmt.Errorf("can't decode channelParticipant#c00c07c0 to nil")
		tl_channel_participant_gen.go#L153: 		return fmt.Errorf("unable to decode channelParticipant#c00c07c0: %w", err)
		tl_channel_participant_gen.go#L161: 		return fmt.Errorf("can't decode channelParticipant#c00c07c0 to nil")
		tl_channel_participant_gen.go#L166: 			return fmt.Errorf("unable to decode channelParticipant#c00c07c0: field user_id: %w", err)
		tl_channel_participant_gen.go#L173: 			return fmt.Errorf("unable to decode channelParticipant#c00c07c0: field date: %w", err)
		tl_channel_participant_gen.go#L331: 		return fmt.Errorf("can't encode channelParticipantSelf#35a8bfa7 as nil")
		tl_channel_participant_gen.go#L340: 		return fmt.Errorf("can't encode channelParticipantSelf#35a8bfa7 as nil")
		tl_channel_participant_gen.go#L344: 		return fmt.Errorf("unable to encode channelParticipantSelf#35a8bfa7: field flags: %w", err)
		tl_channel_participant_gen.go#L355: 		return fmt.Errorf("can't decode channelParticipantSelf#35a8bfa7 to nil")
		tl_channel_participant_gen.go#L358: 		return fmt.Errorf("unable to decode channelParticipantSelf#35a8bfa7: %w", err)
		tl_channel_participant_gen.go#L366: 		return fmt.Errorf("can't decode channelParticipantSelf#35a8bfa7 to nil")
		tl_channel_participant_gen.go#L370: 			return fmt.Errorf("unable to decode channelParticipantSelf#35a8bfa7: field flags: %w", err)
		tl_channel_participant_gen.go#L377: 			return fmt.Errorf("unable to decode channelParticipantSelf#35a8bfa7: field user_id: %w", err)
		tl_channel_participant_gen.go#L384: 			return fmt.Errorf("unable to decode channelParticipantSelf#35a8bfa7: field inviter_id: %w", err)
		tl_channel_participant_gen.go#L391: 			return fmt.Errorf("unable to decode channelParticipantSelf#35a8bfa7: field date: %w", err)
		tl_channel_participant_gen.go#L571: 		return fmt.Errorf("can't encode channelParticipantCreator#2fe601d3 as nil")
		tl_channel_participant_gen.go#L580: 		return fmt.Errorf("can't encode channelParticipantCreator#2fe601d3 as nil")
		tl_channel_participant_gen.go#L584: 		return fmt.Errorf("unable to encode channelParticipantCreator#2fe601d3: field flags: %w", err)
		tl_channel_participant_gen.go#L588: 		return fmt.Errorf("unable to encode channelParticipantCreator#2fe601d3: field admin_rights: %w", err)
		tl_channel_participant_gen.go#L599: 		return fmt.Errorf("can't decode channelParticipantCreator#2fe601d3 to nil")
		tl_channel_participant_gen.go#L602: 		return fmt.Errorf("unable to decode channelParticipantCreator#2fe601d3: %w", err)
		tl_channel_participant_gen.go#L610: 		return fmt.Errorf("can't decode channelParticipantCreator#2fe601d3 to nil")
		tl_channel_participant_gen.go#L614: 			return fmt.Errorf("unable to decode channelParticipantCreator#2fe601d3: field flags: %w", err)
		tl_channel_participant_gen.go#L620: 			return fmt.Errorf("unable to decode channelParticipantCreator#2fe601d3: field user_id: %w", err)
		tl_channel_participant_gen.go#L626: 			return fmt.Errorf("unable to decode channelParticipantCreator#2fe601d3: field admin_rights: %w", err)
		tl_channel_participant_gen.go#L632: 			return fmt.Errorf("unable to decode channelParticipantCreator#2fe601d3: field rank: %w", err)
		tl_channel_participant_gen.go#L877: 		return fmt.Errorf("can't encode channelParticipantAdmin#34c3bb53 as nil")
		tl_channel_participant_gen.go#L886: 		return fmt.Errorf("can't encode channelParticipantAdmin#34c3bb53 as nil")
		tl_channel_participant_gen.go#L890: 		return fmt.Errorf("unable to encode channelParticipantAdmin#34c3bb53: field flags: %w", err)
		tl_channel_participant_gen.go#L899: 		return fmt.Errorf("unable to encode channelParticipantAdmin#34c3bb53: field admin_rights: %w", err)
		tl_channel_participant_gen.go#L910: 		return fmt.Errorf("can't decode channelParticipantAdmin#34c3bb53 to nil")
		tl_channel_participant_gen.go#L913: 		return fmt.Errorf("unable to decode channelParticipantAdmin#34c3bb53: %w", err)
		tl_channel_participant_gen.go#L921: 		return fmt.Errorf("can't decode channelParticipantAdmin#34c3bb53 to nil")
		tl_channel_participant_gen.go#L925: 			return fmt.Errorf("unable to decode channelParticipantAdmin#34c3bb53: field flags: %w", err)
		tl_channel_participant_gen.go#L933: 			return fmt.Errorf("unable to decode channelParticipantAdmin#34c3bb53: field user_id: %w", err)
		tl_channel_participant_gen.go#L940: 			return fmt.Errorf("unable to decode channelParticipantAdmin#34c3bb53: field inviter_id: %w", err)
		tl_channel_participant_gen.go#L947: 			return fmt.Errorf("unable to decode channelParticipantAdmin#34c3bb53: field promoted_by: %w", err)
		tl_channel_participant_gen.go#L954: 			return fmt.Errorf("unable to decode channelParticipantAdmin#34c3bb53: field date: %w", err)
		tl_channel_participant_gen.go#L960: 			return fmt.Errorf("unable to decode channelParticipantAdmin#34c3bb53: field admin_rights: %w", err)
		tl_channel_participant_gen.go#L966: 			return fmt.Errorf("unable to decode channelParticipantAdmin#34c3bb53: field rank: %w", err)
		tl_channel_participant_gen.go#L1228: 		return fmt.Errorf("can't encode channelParticipantBanned#6df8014e as nil")
		tl_channel_participant_gen.go#L1237: 		return fmt.Errorf("can't encode channelParticipantBanned#6df8014e as nil")
		tl_channel_participant_gen.go#L1241: 		return fmt.Errorf("unable to encode channelParticipantBanned#6df8014e: field flags: %w", err)
		tl_channel_participant_gen.go#L1244: 		return fmt.Errorf("unable to encode channelParticipantBanned#6df8014e: field peer is nil")
		tl_channel_participant_gen.go#L1247: 		return fmt.Errorf("unable to encode channelParticipantBanned#6df8014e: field peer: %w", err)
		tl_channel_participant_gen.go#L1252: 		return fmt.Errorf("unable to encode channelParticipantBanned#6df8014e: field banned_rights: %w", err)
		tl_channel_participant_gen.go#L1260: 		return fmt.Errorf("can't decode channelParticipantBanned#6df8014e to nil")
		tl_channel_participant_gen.go#L1263: 		return fmt.Errorf("unable to decode channelParticipantBanned#6df8014e: %w", err)
		tl_channel_participant_gen.go#L1271: 		return fmt.Errorf("can't decode channelParticipantBanned#6df8014e to nil")
		tl_channel_participant_gen.go#L1275: 			return fmt.Errorf("unable to decode channelParticipantBanned#6df8014e: field flags: %w", err)
		tl_channel_participant_gen.go#L1282: 			return fmt.Errorf("unable to decode channelParticipantBanned#6df8014e: field peer: %w", err)
		tl_channel_participant_gen.go#L1289: 			return fmt.Errorf("unable to decode channelParticipantBanned#6df8014e: field kicked_by: %w", err)
		tl_channel_participant_gen.go#L1296: 			return fmt.Errorf("unable to decode channelParticipantBanned#6df8014e: field date: %w", err)
		tl_channel_participant_gen.go#L1302: 			return fmt.Errorf("unable to decode channelParticipantBanned#6df8014e: field banned_rights: %w", err)
		tl_channel_participant_gen.go#L1445: 		return fmt.Errorf("can't encode channelParticipantLeft#1b03f006 as nil")
		tl_channel_participant_gen.go#L1454: 		return fmt.Errorf("can't encode channelParticipantLeft#1b03f006 as nil")
		tl_channel_participant_gen.go#L1457: 		return fmt.Errorf("unable to encode channelParticipantLeft#1b03f006: field peer is nil")
		tl_channel_participant_gen.go#L1460: 		return fmt.Errorf("unable to encode channelParticipantLeft#1b03f006: field peer: %w", err)
		tl_channel_participant_gen.go#L1468: 		return fmt.Errorf("can't decode channelParticipantLeft#1b03f006 to nil")
		tl_channel_participant_gen.go#L1471: 		return fmt.Errorf("unable to decode channelParticipantLeft#1b03f006: %w", err)
		tl_channel_participant_gen.go#L1479: 		return fmt.Errorf("can't decode channelParticipantLeft#1b03f006 to nil")
		tl_channel_participant_gen.go#L1484: 			return fmt.Errorf("unable to decode channelParticipantLeft#1b03f006: field peer: %w", err)
		tl_channel_participant_gen.go#L1551: 			return nil, fmt.Errorf("unable to decode ChannelParticipantClass: %w", err)
		tl_channel_participant_gen.go#L1558: 			return nil, fmt.Errorf("unable to decode ChannelParticipantClass: %w", err)
		tl_channel_participant_gen.go#L1565: 			return nil, fmt.Errorf("unable to decode ChannelParticipantClass: %w", err)
		tl_channel_participant_gen.go#L1572: 			return nil, fmt.Errorf("unable to decode ChannelParticipantClass: %w", err)
		tl_channel_participant_gen.go#L1579: 			return nil, fmt.Errorf("unable to decode ChannelParticipantClass: %w", err)
		tl_channel_participant_gen.go#L1586: 			return nil, fmt.Errorf("unable to decode ChannelParticipantClass: %w", err)
		tl_channel_participant_gen.go#L1590: 		return nil, fmt.Errorf("unable to decode ChannelParticipantClass: %w", bin.NewUnexpectedID(id))
		tl_channel_participant_gen.go#L1602: 		return fmt.Errorf("unable to decode ChannelParticipantBox to nil")
		tl_channel_participant_gen.go#L1606: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_channel_participant_gen.go#L1615: 		return fmt.Errorf("unable to encode ChannelParticipantClass as nil")
		tl_channel_participants_filter_gen.go#L103: 		return fmt.Errorf("can't encode channelParticipantsRecent#de3f3c79 as nil")
		tl_channel_participants_filter_gen.go#L112: 		return fmt.Errorf("can't encode channelParticipantsRecent#de3f3c79 as nil")
		tl_channel_participants_filter_gen.go#L120: 		return fmt.Errorf("can't decode channelParticipantsRecent#de3f3c79 to nil")
		tl_channel_participants_filter_gen.go#L123: 		return fmt.Errorf("unable to decode channelParticipantsRecent#de3f3c79: %w", err)
		tl_channel_participants_filter_gen.go#L131: 		return fmt.Errorf("can't decode channelParticipantsRecent#de3f3c79 to nil")
		tl_channel_participants_filter_gen.go#L205: 		return fmt.Errorf("can't encode channelParticipantsAdmins#b4608969 as nil")
		tl_channel_participants_filter_gen.go#L214: 		return fmt.Errorf("can't encode channelParticipantsAdmins#b4608969 as nil")
		tl_channel_participants_filter_gen.go#L222: 		return fmt.Errorf("can't decode channelParticipantsAdmins#b4608969 to nil")
		tl_channel_participants_filter_gen.go#L225: 		return fmt.Errorf("unable to decode channelParticipantsAdmins#b4608969: %w", err)
		tl_channel_participants_filter_gen.go#L233: 		return fmt.Errorf("can't decode channelParticipantsAdmins#b4608969 to nil")
		tl_channel_participants_filter_gen.go#L324: 		return fmt.Errorf("can't encode channelParticipantsKicked#a3b54985 as nil")
		tl_channel_participants_filter_gen.go#L333: 		return fmt.Errorf("can't encode channelParticipantsKicked#a3b54985 as nil")
		tl_channel_participants_filter_gen.go#L342: 		return fmt.Errorf("can't decode channelParticipantsKicked#a3b54985 to nil")
		tl_channel_participants_filter_gen.go#L345: 		return fmt.Errorf("unable to decode channelParticipantsKicked#a3b54985: %w", err)
		tl_channel_participants_filter_gen.go#L353: 		return fmt.Errorf("can't decode channelParticipantsKicked#a3b54985 to nil")
		tl_channel_participants_filter_gen.go#L358: 			return fmt.Errorf("unable to decode channelParticipantsKicked#a3b54985: field q: %w", err)
		tl_channel_participants_filter_gen.go#L442: 		return fmt.Errorf("can't encode channelParticipantsBots#b0d1865b as nil")
		tl_channel_participants_filter_gen.go#L451: 		return fmt.Errorf("can't encode channelParticipantsBots#b0d1865b as nil")
		tl_channel_participants_filter_gen.go#L459: 		return fmt.Errorf("can't decode channelParticipantsBots#b0d1865b to nil")
		tl_channel_participants_filter_gen.go#L462: 		return fmt.Errorf("unable to decode channelParticipantsBots#b0d1865b: %w", err)
		tl_channel_participants_filter_gen.go#L470: 		return fmt.Errorf("can't decode channelParticipantsBots#b0d1865b to nil")
		tl_channel_participants_filter_gen.go#L561: 		return fmt.Errorf("can't encode channelParticipantsBanned#1427a5e1 as nil")
		tl_channel_participants_filter_gen.go#L570: 		return fmt.Errorf("can't encode channelParticipantsBanned#1427a5e1 as nil")
		tl_channel_participants_filter_gen.go#L579: 		return fmt.Errorf("can't decode channelParticipantsBanned#1427a5e1 to nil")
		tl_channel_participants_filter_gen.go#L582: 		return fmt.Errorf("unable to decode channelParticipantsBanned#1427a5e1: %w", err)
		tl_channel_participants_filter_gen.go#L590: 		return fmt.Errorf("can't decode channelParticipantsBanned#1427a5e1 to nil")
		tl_channel_participants_filter_gen.go#L595: 			return fmt.Errorf("unable to decode channelParticipantsBanned#1427a5e1: field q: %w", err)
		tl_channel_participants_filter_gen.go#L696: 		return fmt.Errorf("can't encode channelParticipantsSearch#656ac4b as nil")
		tl_channel_participants_filter_gen.go#L705: 		return fmt.Errorf("can't encode channelParticipantsSearch#656ac4b as nil")
		tl_channel_participants_filter_gen.go#L714: 		return fmt.Errorf("can't decode channelParticipantsSearch#656ac4b to nil")
		tl_channel_participants_filter_gen.go#L717: 		return fmt.Errorf("unable to decode channelParticipantsSearch#656ac4b: %w", err)
		tl_channel_participants_filter_gen.go#L725: 		return fmt.Errorf("can't decode channelParticipantsSearch#656ac4b to nil")
		tl_channel_participants_filter_gen.go#L730: 			return fmt.Errorf("unable to decode channelParticipantsSearch#656ac4b: field q: %w", err)
		tl_channel_participants_filter_gen.go#L831: 		return fmt.Errorf("can't encode channelParticipantsContacts#bb6ae88d as nil")
		tl_channel_participants_filter_gen.go#L840: 		return fmt.Errorf("can't encode channelParticipantsContacts#bb6ae88d as nil")
		tl_channel_participants_filter_gen.go#L849: 		return fmt.Errorf("can't decode channelParticipantsContacts#bb6ae88d to nil")
		tl_channel_participants_filter_gen.go#L852: 		return fmt.Errorf("unable to decode channelParticipantsContacts#bb6ae88d: %w", err)
		tl_channel_participants_filter_gen.go#L860: 		return fmt.Errorf("can't decode channelParticipantsContacts#bb6ae88d to nil")
		tl_channel_participants_filter_gen.go#L865: 			return fmt.Errorf("unable to decode channelParticipantsContacts#bb6ae88d: field q: %w", err)
		tl_channel_participants_filter_gen.go#L1017: 		return fmt.Errorf("can't encode channelParticipantsMentions#e04b5ceb as nil")
		tl_channel_participants_filter_gen.go#L1026: 		return fmt.Errorf("can't encode channelParticipantsMentions#e04b5ceb as nil")
		tl_channel_participants_filter_gen.go#L1030: 		return fmt.Errorf("unable to encode channelParticipantsMentions#e04b5ceb: field flags: %w", err)
		tl_channel_participants_filter_gen.go#L1044: 		return fmt.Errorf("can't decode channelParticipantsMentions#e04b5ceb to nil")
		tl_channel_participants_filter_gen.go#L1047: 		return fmt.Errorf("unable to decode channelParticipantsMentions#e04b5ceb: %w", err)
		tl_channel_participants_filter_gen.go#L1055: 		return fmt.Errorf("can't decode channelParticipantsMentions#e04b5ceb to nil")
		tl_channel_participants_filter_gen.go#L1059: 			return fmt.Errorf("unable to decode channelParticipantsMentions#e04b5ceb: field flags: %w", err)
		tl_channel_participants_filter_gen.go#L1065: 			return fmt.Errorf("unable to decode channelParticipantsMentions#e04b5ceb: field q: %w", err)
		tl_channel_participants_filter_gen.go#L1072: 			return fmt.Errorf("unable to decode channelParticipantsMentions#e04b5ceb: field top_msg_id: %w", err)
		tl_channel_participants_filter_gen.go#L1169: 			return nil, fmt.Errorf("unable to decode ChannelParticipantsFilterClass: %w", err)
		tl_channel_participants_filter_gen.go#L1176: 			return nil, fmt.Errorf("unable to decode ChannelParticipantsFilterClass: %w", err)
		tl_channel_participants_filter_gen.go#L1183: 			return nil, fmt.Errorf("unable to decode ChannelParticipantsFilterClass: %w", err)
		tl_channel_participants_filter_gen.go#L1190: 			return nil, fmt.Errorf("unable to decode ChannelParticipantsFilterClass: %w", err)
		tl_channel_participants_filter_gen.go#L1197: 			return nil, fmt.Errorf("unable to decode ChannelParticipantsFilterClass: %w", err)
		tl_channel_participants_filter_gen.go#L1204: 			return nil, fmt.Errorf("unable to decode ChannelParticipantsFilterClass: %w", err)
		tl_channel_participants_filter_gen.go#L1211: 			return nil, fmt.Errorf("unable to decode ChannelParticipantsFilterClass: %w", err)
		tl_channel_participants_filter_gen.go#L1218: 			return nil, fmt.Errorf("unable to decode ChannelParticipantsFilterClass: %w", err)
		tl_channel_participants_filter_gen.go#L1222: 		return nil, fmt.Errorf("unable to decode ChannelParticipantsFilterClass: %w", bin.NewUnexpectedID(id))
		tl_channel_participants_filter_gen.go#L1234: 		return fmt.Errorf("unable to decode ChannelParticipantsFilterBox to nil")
		tl_channel_participants_filter_gen.go#L1238: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_channel_participants_filter_gen.go#L1247: 		return fmt.Errorf("unable to encode ChannelParticipantsFilterClass as nil")
		tl_channels_admin_log_results_gen.go#L137: 		return fmt.Errorf("can't encode channels.adminLogResults#ed8af74d as nil")
		tl_channels_admin_log_results_gen.go#L146: 		return fmt.Errorf("can't encode channels.adminLogResults#ed8af74d as nil")
		tl_channels_admin_log_results_gen.go#L151: 			return fmt.Errorf("unable to encode channels.adminLogResults#ed8af74d: field events element with index %d: %w", idx, err)
		tl_channels_admin_log_results_gen.go#L157: 			return fmt.Errorf("unable to encode channels.adminLogResults#ed8af74d: field chats element with index %d is nil", idx)
		tl_channels_admin_log_results_gen.go#L160: 			return fmt.Errorf("unable to encode channels.adminLogResults#ed8af74d: field chats element with index %d: %w", idx, err)
		tl_channels_admin_log_results_gen.go#L166: 			return fmt.Errorf("unable to encode channels.adminLogResults#ed8af74d: field users element with index %d is nil", idx)
		tl_channels_admin_log_results_gen.go#L169: 			return fmt.Errorf("unable to encode channels.adminLogResults#ed8af74d: field users element with index %d: %w", idx, err)
		tl_channels_admin_log_results_gen.go#L178: 		return fmt.Errorf("can't decode channels.adminLogResults#ed8af74d to nil")
		tl_channels_admin_log_results_gen.go#L181: 		return fmt.Errorf("unable to decode channels.adminLogResults#ed8af74d: %w", err)
		tl_channels_admin_log_results_gen.go#L189: 		return fmt.Errorf("can't decode channels.adminLogResults#ed8af74d to nil")
		tl_channels_admin_log_results_gen.go#L194: 			return fmt.Errorf("unable to decode channels.adminLogResults#ed8af74d: field events: %w", err)
		tl_channels_admin_log_results_gen.go#L203: 				return fmt.Errorf("unable to decode channels.adminLogResults#ed8af74d: field events: %w", err)
		tl_channels_admin_log_results_gen.go#L211: 			return fmt.Errorf("unable to decode channels.adminLogResults#ed8af74d: field chats: %w", err)
		tl_channels_admin_log_results_gen.go#L220: 				return fmt.Errorf("unable to decode channels.adminLogResults#ed8af74d: field chats: %w", err)
		tl_channels_admin_log_results_gen.go#L228: 			return fmt.Errorf("unable to decode channels.adminLogResults#ed8af74d: field users: %w", err)
		tl_channels_admin_log_results_gen.go#L237: 				return fmt.Errorf("unable to decode channels.adminLogResults#ed8af74d: field users: %w", err)
		tl_channels_channel_participant_gen.go#L137: 		return fmt.Errorf("can't encode channels.channelParticipant#dfb80317 as nil")
		tl_channels_channel_participant_gen.go#L146: 		return fmt.Errorf("can't encode channels.channelParticipant#dfb80317 as nil")
		tl_channels_channel_participant_gen.go#L149: 		return fmt.Errorf("unable to encode channels.channelParticipant#dfb80317: field participant is nil")
		tl_channels_channel_participant_gen.go#L152: 		return fmt.Errorf("unable to encode channels.channelParticipant#dfb80317: field participant: %w", err)
		tl_channels_channel_participant_gen.go#L157: 			return fmt.Errorf("unable to encode channels.channelParticipant#dfb80317: field chats element with index %d is nil", idx)
		tl_channels_channel_participant_gen.go#L160: 			return fmt.Errorf("unable to encode channels.channelParticipant#dfb80317: field chats element with index %d: %w", idx, err)
		tl_channels_channel_participant_gen.go#L166: 			return fmt.Errorf("unable to encode channels.channelParticipant#dfb80317: field users element with index %d is nil", idx)
		tl_channels_channel_participant_gen.go#L169: 			return fmt.Errorf("unable to encode channels.channelParticipant#dfb80317: field users element with index %d: %w", idx, err)
		tl_channels_channel_participant_gen.go#L178: 		return fmt.Errorf("can't decode channels.channelParticipant#dfb80317 to nil")
		tl_channels_channel_participant_gen.go#L181: 		return fmt.Errorf("unable to decode channels.channelParticipant#dfb80317: %w", err)
		tl_channels_channel_participant_gen.go#L189: 		return fmt.Errorf("can't decode channels.channelParticipant#dfb80317 to nil")
		tl_channels_channel_participant_gen.go#L194: 			return fmt.Errorf("unable to decode channels.channelParticipant#dfb80317: field participant: %w", err)
		tl_channels_channel_participant_gen.go#L201: 			return fmt.Errorf("unable to decode channels.channelParticipant#dfb80317: field chats: %w", err)
		tl_channels_channel_participant_gen.go#L210: 				return fmt.Errorf("unable to decode channels.channelParticipant#dfb80317: field chats: %w", err)
		tl_channels_channel_participant_gen.go#L218: 			return fmt.Errorf("unable to decode channels.channelParticipant#dfb80317: field users: %w", err)
		tl_channels_channel_participant_gen.go#L227: 				return fmt.Errorf("unable to decode channels.channelParticipant#dfb80317: field users: %w", err)
		tl_channels_channel_participants_gen.go#L153: 		return fmt.Errorf("can't encode channels.channelParticipants#9ab0feaf as nil")
		tl_channels_channel_participants_gen.go#L162: 		return fmt.Errorf("can't encode channels.channelParticipants#9ab0feaf as nil")
		tl_channels_channel_participants_gen.go#L168: 			return fmt.Errorf("unable to encode channels.channelParticipants#9ab0feaf: field participants element with index %d is nil", idx)
		tl_channels_channel_participants_gen.go#L171: 			return fmt.Errorf("unable to encode channels.channelParticipants#9ab0feaf: field participants element with index %d: %w", idx, err)
		tl_channels_channel_participants_gen.go#L177: 			return fmt.Errorf("unable to encode channels.channelParticipants#9ab0feaf: field chats element with index %d is nil", idx)
		tl_channels_channel_participants_gen.go#L180: 			return fmt.Errorf("unable to encode channels.channelParticipants#9ab0feaf: field chats element with index %d: %w", idx, err)
		tl_channels_channel_participants_gen.go#L186: 			return fmt.Errorf("unable to encode channels.channelParticipants#9ab0feaf: field users element with index %d is nil", idx)
		tl_channels_channel_participants_gen.go#L189: 			return fmt.Errorf("unable to encode channels.channelParticipants#9ab0feaf: field users element with index %d: %w", idx, err)
		tl_channels_channel_participants_gen.go#L198: 		return fmt.Errorf("can't decode channels.channelParticipants#9ab0feaf to nil")
		tl_channels_channel_participants_gen.go#L201: 		return fmt.Errorf("unable to decode channels.channelParticipants#9ab0feaf: %w", err)
		tl_channels_channel_participants_gen.go#L209: 		return fmt.Errorf("can't decode channels.channelParticipants#9ab0feaf to nil")
		tl_channels_channel_participants_gen.go#L214: 			return fmt.Errorf("unable to decode channels.channelParticipants#9ab0feaf: field count: %w", err)
		tl_channels_channel_participants_gen.go#L221: 			return fmt.Errorf("unable to decode channels.channelParticipants#9ab0feaf: field participants: %w", err)
		tl_channels_channel_participants_gen.go#L230: 				return fmt.Errorf("unable to decode channels.channelParticipants#9ab0feaf: field participants: %w", err)
		tl_channels_channel_participants_gen.go#L238: 			return fmt.Errorf("unable to decode channels.channelParticipants#9ab0feaf: field chats: %w", err)
		tl_channels_channel_participants_gen.go#L247: 				return fmt.Errorf("unable to decode channels.channelParticipants#9ab0feaf: field chats: %w", err)
		tl_channels_channel_participants_gen.go#L255: 			return fmt.Errorf("unable to decode channels.channelParticipants#9ab0feaf: field users: %w", err)
		tl_channels_channel_participants_gen.go#L264: 				return fmt.Errorf("unable to decode channels.channelParticipants#9ab0feaf: field users: %w", err)
		tl_channels_channel_participants_gen.go#L390: 		return fmt.Errorf("can't encode channels.channelParticipantsNotModified#f0173fe9 as nil")
		tl_channels_channel_participants_gen.go#L399: 		return fmt.Errorf("can't encode channels.channelParticipantsNotModified#f0173fe9 as nil")
		tl_channels_channel_participants_gen.go#L407: 		return fmt.Errorf("can't decode channels.channelParticipantsNotModified#f0173fe9 to nil")
		tl_channels_channel_participants_gen.go#L410: 		return fmt.Errorf("unable to decode channels.channelParticipantsNotModified#f0173fe9: %w", err)
		tl_channels_channel_participants_gen.go#L418: 		return fmt.Errorf("can't decode channels.channelParticipantsNotModified#f0173fe9 to nil")
		tl_channels_channel_participants_gen.go#L484: 			return nil, fmt.Errorf("unable to decode ChannelsChannelParticipantsClass: %w", err)
		tl_channels_channel_participants_gen.go#L491: 			return nil, fmt.Errorf("unable to decode ChannelsChannelParticipantsClass: %w", err)
		tl_channels_channel_participants_gen.go#L495: 		return nil, fmt.Errorf("unable to decode ChannelsChannelParticipantsClass: %w", bin.NewUnexpectedID(id))
		tl_channels_channel_participants_gen.go#L507: 		return fmt.Errorf("unable to decode ChannelsChannelParticipantsBox to nil")
		tl_channels_channel_participants_gen.go#L511: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_channels_channel_participants_gen.go#L520: 		return fmt.Errorf("unable to encode ChannelsChannelParticipantsClass as nil")
		tl_channels_check_username_gen.go#L129: 		return fmt.Errorf("can't encode channels.checkUsername#10e6bd2c as nil")
		tl_channels_check_username_gen.go#L138: 		return fmt.Errorf("can't encode channels.checkUsername#10e6bd2c as nil")
		tl_channels_check_username_gen.go#L141: 		return fmt.Errorf("unable to encode channels.checkUsername#10e6bd2c: field channel is nil")
		tl_channels_check_username_gen.go#L144: 		return fmt.Errorf("unable to encode channels.checkUsername#10e6bd2c: field channel: %w", err)
		tl_channels_check_username_gen.go#L153: 		return fmt.Errorf("can't decode channels.checkUsername#10e6bd2c to nil")
		tl_channels_check_username_gen.go#L156: 		return fmt.Errorf("unable to decode channels.checkUsername#10e6bd2c: %w", err)
		tl_channels_check_username_gen.go#L164: 		return fmt.Errorf("can't decode channels.checkUsername#10e6bd2c to nil")
		tl_channels_check_username_gen.go#L169: 			return fmt.Errorf("unable to decode channels.checkUsername#10e6bd2c: field channel: %w", err)
		tl_channels_check_username_gen.go#L176: 			return fmt.Errorf("unable to decode channels.checkUsername#10e6bd2c: field username: %w", err)
		tl_channels_click_sponsored_message_gen.go#L126: 		return fmt.Errorf("can't encode channels.clickSponsoredMessage#18afbc93 as nil")
		tl_channels_click_sponsored_message_gen.go#L135: 		return fmt.Errorf("can't encode channels.clickSponsoredMessage#18afbc93 as nil")
		tl_channels_click_sponsored_message_gen.go#L138: 		return fmt.Errorf("unable to encode channels.clickSponsoredMessage#18afbc93: field channel is nil")
		tl_channels_click_sponsored_message_gen.go#L141: 		return fmt.Errorf("unable to encode channels.clickSponsoredMessage#18afbc93: field channel: %w", err)
		tl_channels_click_sponsored_message_gen.go#L150: 		return fmt.Errorf("can't decode channels.clickSponsoredMessage#18afbc93 to nil")
		tl_channels_click_sponsored_message_gen.go#L153: 		return fmt.Errorf("unable to decode channels.clickSponsoredMessage#18afbc93: %w", err)
		tl_channels_click_sponsored_message_gen.go#L161: 		return fmt.Errorf("can't decode channels.clickSponsoredMessage#18afbc93 to nil")
		tl_channels_click_sponsored_message_gen.go#L166: 			return fmt.Errorf("unable to decode channels.clickSponsoredMessage#18afbc93: field channel: %w", err)
		tl_channels_click_sponsored_message_gen.go#L173: 			return fmt.Errorf("unable to decode channels.clickSponsoredMessage#18afbc93: field random_id: %w", err)
		tl_channels_convert_to_gigagroup_gen.go#L123: 		return fmt.Errorf("can't encode channels.convertToGigagroup#b290c69 as nil")
		tl_channels_convert_to_gigagroup_gen.go#L132: 		return fmt.Errorf("can't encode channels.convertToGigagroup#b290c69 as nil")
		tl_channels_convert_to_gigagroup_gen.go#L135: 		return fmt.Errorf("unable to encode channels.convertToGigagroup#b290c69: field channel is nil")
		tl_channels_convert_to_gigagroup_gen.go#L138: 		return fmt.Errorf("unable to encode channels.convertToGigagroup#b290c69: field channel: %w", err)
		tl_channels_convert_to_gigagroup_gen.go#L146: 		return fmt.Errorf("can't decode channels.convertToGigagroup#b290c69 to nil")
		tl_channels_convert_to_gigagroup_gen.go#L149: 		return fmt.Errorf("unable to decode channels.convertToGigagroup#b290c69: %w", err)
		tl_channels_convert_to_gigagroup_gen.go#L157: 		return fmt.Errorf("can't decode channels.convertToGigagroup#b290c69 to nil")
		tl_channels_convert_to_gigagroup_gen.go#L162: 			return fmt.Errorf("unable to decode channels.convertToGigagroup#b290c69: field channel: %w", err)
		tl_channels_create_channel_gen.go#L286: 		return fmt.Errorf("can't encode channels.createChannel#91006707 as nil")
		tl_channels_create_channel_gen.go#L295: 		return fmt.Errorf("can't encode channels.createChannel#91006707 as nil")
		tl_channels_create_channel_gen.go#L299: 		return fmt.Errorf("unable to encode channels.createChannel#91006707: field flags: %w", err)
		tl_channels_create_channel_gen.go#L305: 			return fmt.Errorf("unable to encode channels.createChannel#91006707: field geo_point is nil")
		tl_channels_create_channel_gen.go#L308: 			return fmt.Errorf("unable to encode channels.createChannel#91006707: field geo_point: %w", err)
		tl_channels_create_channel_gen.go#L323: 		return fmt.Errorf("can't decode channels.createChannel#91006707 to nil")
		tl_channels_create_channel_gen.go#L326: 		return fmt.Errorf("unable to decode channels.createChannel#91006707: %w", err)
		tl_channels_create_channel_gen.go#L334: 		return fmt.Errorf("can't decode channels.createChannel#91006707 to nil")
		tl_channels_create_channel_gen.go#L338: 			return fmt.Errorf("unable to decode channels.createChannel#91006707: field flags: %w", err)
		tl_channels_create_channel_gen.go#L348: 			return fmt.Errorf("unable to decode channels.createChannel#91006707: field title: %w", err)
		tl_channels_create_channel_gen.go#L355: 			return fmt.Errorf("unable to decode channels.createChannel#91006707: field about: %w", err)
		tl_channels_create_channel_gen.go#L362: 			return fmt.Errorf("unable to decode channels.createChannel#91006707: field geo_point: %w", err)
		tl_channels_create_channel_gen.go#L369: 			return fmt.Errorf("unable to decode channels.createChannel#91006707: field address: %w", err)
		tl_channels_create_channel_gen.go#L376: 			return fmt.Errorf("unable to decode channels.createChannel#91006707: field ttl_period: %w", err)
		tl_channels_create_forum_topic_gen.go#L224: 		return fmt.Errorf("can't encode channels.createForumTopic#f40c0224 as nil")
		tl_channels_create_forum_topic_gen.go#L233: 		return fmt.Errorf("can't encode channels.createForumTopic#f40c0224 as nil")
		tl_channels_create_forum_topic_gen.go#L237: 		return fmt.Errorf("unable to encode channels.createForumTopic#f40c0224: field flags: %w", err)
		tl_channels_create_forum_topic_gen.go#L240: 		return fmt.Errorf("unable to encode channels.createForumTopic#f40c0224: field channel is nil")
		tl_channels_create_forum_topic_gen.go#L243: 		return fmt.Errorf("unable to encode channels.createForumTopic#f40c0224: field channel: %w", err)
		tl_channels_create_forum_topic_gen.go#L255: 			return fmt.Errorf("unable to encode channels.createForumTopic#f40c0224: field send_as is nil")
		tl_channels_create_forum_topic_gen.go#L258: 			return fmt.Errorf("unable to encode channels.createForumTopic#f40c0224: field send_as: %w", err)
		tl_channels_create_forum_topic_gen.go#L267: 		return fmt.Errorf("can't decode channels.createForumTopic#f40c0224 to nil")
		tl_channels_create_forum_topic_gen.go#L270: 		return fmt.Errorf("unable to decode channels.createForumTopic#f40c0224: %w", err)
		tl_channels_create_forum_topic_gen.go#L278: 		return fmt.Errorf("can't decode channels.createForumTopic#f40c0224 to nil")
		tl_channels_create_forum_topic_gen.go#L282: 			return fmt.Errorf("unable to decode channels.createForumTopic#f40c0224: field flags: %w", err)
		tl_channels_create_forum_topic_gen.go#L288: 			return fmt.Errorf("unable to decode channels.createForumTopic#f40c0224: field channel: %w", err)
		tl_channels_create_forum_topic_gen.go#L295: 			return fmt.Errorf("unable to decode channels.createForumTopic#f40c0224: field title: %w", err)
		tl_channels_create_forum_topic_gen.go#L302: 			return fmt.Errorf("unable to decode channels.createForumTopic#f40c0224: field icon_color: %w", err)
		tl_channels_create_forum_topic_gen.go#L309: 			return fmt.Errorf("unable to decode channels.createForumTopic#f40c0224: field icon_emoji_id: %w", err)
		tl_channels_create_forum_topic_gen.go#L316: 			return fmt.Errorf("unable to decode channels.createForumTopic#f40c0224: field random_id: %w", err)
		tl_channels_create_forum_topic_gen.go#L323: 			return fmt.Errorf("unable to decode channels.createForumTopic#f40c0224: field send_as: %w", err)
		tl_channels_deactivate_all_usernames_gen.go#L115: 		return fmt.Errorf("can't encode channels.deactivateAllUsernames#a245dd3 as nil")
		tl_channels_deactivate_all_usernames_gen.go#L124: 		return fmt.Errorf("can't encode channels.deactivateAllUsernames#a245dd3 as nil")
		tl_channels_deactivate_all_usernames_gen.go#L127: 		return fmt.Errorf("unable to encode channels.deactivateAllUsernames#a245dd3: field channel is nil")
		tl_channels_deactivate_all_usernames_gen.go#L130: 		return fmt.Errorf("unable to encode channels.deactivateAllUsernames#a245dd3: field channel: %w", err)
		tl_channels_deactivate_all_usernames_gen.go#L138: 		return fmt.Errorf("can't decode channels.deactivateAllUsernames#a245dd3 to nil")
		tl_channels_deactivate_all_usernames_gen.go#L141: 		return fmt.Errorf("unable to decode channels.deactivateAllUsernames#a245dd3: %w", err)
		tl_channels_deactivate_all_usernames_gen.go#L149: 		return fmt.Errorf("can't decode channels.deactivateAllUsernames#a245dd3 to nil")
		tl_channels_deactivate_all_usernames_gen.go#L154: 			return fmt.Errorf("unable to decode channels.deactivateAllUsernames#a245dd3: field channel: %w", err)
		tl_channels_delete_channel_gen.go#L121: 		return fmt.Errorf("can't encode channels.deleteChannel#c0111fe3 as nil")
		tl_channels_delete_channel_gen.go#L130: 		return fmt.Errorf("can't encode channels.deleteChannel#c0111fe3 as nil")
		tl_channels_delete_channel_gen.go#L133: 		return fmt.Errorf("unable to encode channels.deleteChannel#c0111fe3: field channel is nil")
		tl_channels_delete_channel_gen.go#L136: 		return fmt.Errorf("unable to encode channels.deleteChannel#c0111fe3: field channel: %w", err)
		tl_channels_delete_channel_gen.go#L144: 		return fmt.Errorf("can't decode channels.deleteChannel#c0111fe3 to nil")
		tl_channels_delete_channel_gen.go#L147: 		return fmt.Errorf("unable to decode channels.deleteChannel#c0111fe3: %w", err)
		tl_channels_delete_channel_gen.go#L155: 		return fmt.Errorf("can't decode channels.deleteChannel#c0111fe3 to nil")
		tl_channels_delete_channel_gen.go#L160: 			return fmt.Errorf("unable to decode channels.deleteChannel#c0111fe3: field channel: %w", err)
		tl_channels_delete_history_gen.go#L159: 		return fmt.Errorf("can't encode channels.deleteHistory#9baa9647 as nil")
		tl_channels_delete_history_gen.go#L168: 		return fmt.Errorf("can't encode channels.deleteHistory#9baa9647 as nil")
		tl_channels_delete_history_gen.go#L172: 		return fmt.Errorf("unable to encode channels.deleteHistory#9baa9647: field flags: %w", err)
		tl_channels_delete_history_gen.go#L175: 		return fmt.Errorf("unable to encode channels.deleteHistory#9baa9647: field channel is nil")
		tl_channels_delete_history_gen.go#L178: 		return fmt.Errorf("unable to encode channels.deleteHistory#9baa9647: field channel: %w", err)
		tl_channels_delete_history_gen.go#L187: 		return fmt.Errorf("can't decode channels.deleteHistory#9baa9647 to nil")
		tl_channels_delete_history_gen.go#L190: 		return fmt.Errorf("unable to decode channels.deleteHistory#9baa9647: %w", err)
		tl_channels_delete_history_gen.go#L198: 		return fmt.Errorf("can't decode channels.deleteHistory#9baa9647 to nil")
		tl_channels_delete_history_gen.go#L202: 			return fmt.Errorf("unable to decode channels.deleteHistory#9baa9647: field flags: %w", err)
		tl_channels_delete_history_gen.go#L209: 			return fmt.Errorf("unable to decode channels.deleteHistory#9baa9647: field channel: %w", err)
		tl_channels_delete_history_gen.go#L216: 			return fmt.Errorf("unable to decode channels.deleteHistory#9baa9647: field max_id: %w", err)
		tl_channels_delete_messages_gen.go#L132: 		return fmt.Errorf("can't encode channels.deleteMessages#84c1fd4e as nil")
		tl_channels_delete_messages_gen.go#L141: 		return fmt.Errorf("can't encode channels.deleteMessages#84c1fd4e as nil")
		tl_channels_delete_messages_gen.go#L144: 		return fmt.Errorf("unable to encode channels.deleteMessages#84c1fd4e: field channel is nil")
		tl_channels_delete_messages_gen.go#L147: 		return fmt.Errorf("unable to encode channels.deleteMessages#84c1fd4e: field channel: %w", err)
		tl_channels_delete_messages_gen.go#L159: 		return fmt.Errorf("can't decode channels.deleteMessages#84c1fd4e to nil")
		tl_channels_delete_messages_gen.go#L162: 		return fmt.Errorf("unable to decode channels.deleteMessages#84c1fd4e: %w", err)
		tl_channels_delete_messages_gen.go#L170: 		return fmt.Errorf("can't decode channels.deleteMessages#84c1fd4e to nil")
		tl_channels_delete_messages_gen.go#L175: 			return fmt.Errorf("unable to decode channels.deleteMessages#84c1fd4e: field channel: %w", err)
		tl_channels_delete_messages_gen.go#L182: 			return fmt.Errorf("unable to decode channels.deleteMessages#84c1fd4e: field id: %w", err)
		tl_channels_delete_messages_gen.go#L191: 				return fmt.Errorf("unable to decode channels.deleteMessages#84c1fd4e: field id: %w", err)
		tl_channels_delete_participant_history_gen.go#L126: 		return fmt.Errorf("can't encode channels.deleteParticipantHistory#367544db as nil")
		tl_channels_delete_participant_history_gen.go#L135: 		return fmt.Errorf("can't encode channels.deleteParticipantHistory#367544db as nil")
		tl_channels_delete_participant_history_gen.go#L138: 		return fmt.Errorf("unable to encode channels.deleteParticipantHistory#367544db: field channel is nil")
		tl_channels_delete_participant_history_gen.go#L141: 		return fmt.Errorf("unable to encode channels.deleteParticipantHistory#367544db: field channel: %w", err)
		tl_channels_delete_participant_history_gen.go#L144: 		return fmt.Errorf("unable to encode channels.deleteParticipantHistory#367544db: field participant is nil")
		tl_channels_delete_participant_history_gen.go#L147: 		return fmt.Errorf("unable to encode channels.deleteParticipantHistory#367544db: field participant: %w", err)
		tl_channels_delete_participant_history_gen.go#L155: 		return fmt.Errorf("can't decode channels.deleteParticipantHistory#367544db to nil")
		tl_channels_delete_participant_history_gen.go#L158: 		return fmt.Errorf("unable to decode channels.deleteParticipantHistory#367544db: %w", err)
		tl_channels_delete_participant_history_gen.go#L166: 		return fmt.Errorf("can't decode channels.deleteParticipantHistory#367544db to nil")
		tl_channels_delete_participant_history_gen.go#L171: 			return fmt.Errorf("unable to decode channels.deleteParticipantHistory#367544db: field channel: %w", err)
		tl_channels_delete_participant_history_gen.go#L178: 			return fmt.Errorf("unable to decode channels.deleteParticipantHistory#367544db: field participant: %w", err)
		tl_channels_delete_topic_history_gen.go#L129: 		return fmt.Errorf("can't encode channels.deleteTopicHistory#34435f2d as nil")
		tl_channels_delete_topic_history_gen.go#L138: 		return fmt.Errorf("can't encode channels.deleteTopicHistory#34435f2d as nil")
		tl_channels_delete_topic_history_gen.go#L141: 		return fmt.Errorf("unable to encode channels.deleteTopicHistory#34435f2d: field channel is nil")
		tl_channels_delete_topic_history_gen.go#L144: 		return fmt.Errorf("unable to encode channels.deleteTopicHistory#34435f2d: field channel: %w", err)
		tl_channels_delete_topic_history_gen.go#L153: 		return fmt.Errorf("can't decode channels.deleteTopicHistory#34435f2d to nil")
		tl_channels_delete_topic_history_gen.go#L156: 		return fmt.Errorf("unable to decode channels.deleteTopicHistory#34435f2d: %w", err)
		tl_channels_delete_topic_history_gen.go#L164: 		return fmt.Errorf("can't decode channels.deleteTopicHistory#34435f2d to nil")
		tl_channels_delete_topic_history_gen.go#L169: 			return fmt.Errorf("unable to decode channels.deleteTopicHistory#34435f2d: field channel: %w", err)
		tl_channels_delete_topic_history_gen.go#L176: 			return fmt.Errorf("unable to decode channels.deleteTopicHistory#34435f2d: field top_msg_id: %w", err)
		tl_channels_edit_admin_gen.go#L154: 		return fmt.Errorf("can't encode channels.editAdmin#d33c8902 as nil")
		tl_channels_edit_admin_gen.go#L163: 		return fmt.Errorf("can't encode channels.editAdmin#d33c8902 as nil")
		tl_channels_edit_admin_gen.go#L166: 		return fmt.Errorf("unable to encode channels.editAdmin#d33c8902: field channel is nil")
		tl_channels_edit_admin_gen.go#L169: 		return fmt.Errorf("unable to encode channels.editAdmin#d33c8902: field channel: %w", err)
		tl_channels_edit_admin_gen.go#L172: 		return fmt.Errorf("unable to encode channels.editAdmin#d33c8902: field user_id is nil")
		tl_channels_edit_admin_gen.go#L175: 		return fmt.Errorf("unable to encode channels.editAdmin#d33c8902: field user_id: %w", err)
		tl_channels_edit_admin_gen.go#L178: 		return fmt.Errorf("unable to encode channels.editAdmin#d33c8902: field admin_rights: %w", err)
		tl_channels_edit_admin_gen.go#L187: 		return fmt.Errorf("can't decode channels.editAdmin#d33c8902 to nil")
		tl_channels_edit_admin_gen.go#L190: 		return fmt.Errorf("unable to decode channels.editAdmin#d33c8902: %w", err)
		tl_channels_edit_admin_gen.go#L198: 		return fmt.Errorf("can't decode channels.editAdmin#d33c8902 to nil")
		tl_channels_edit_admin_gen.go#L203: 			return fmt.Errorf("unable to decode channels.editAdmin#d33c8902: field channel: %w", err)
		tl_channels_edit_admin_gen.go#L210: 			return fmt.Errorf("unable to decode channels.editAdmin#d33c8902: field user_id: %w", err)
		tl_channels_edit_admin_gen.go#L216: 			return fmt.Errorf("unable to decode channels.editAdmin#d33c8902: field admin_rights: %w", err)
		tl_channels_edit_admin_gen.go#L222: 			return fmt.Errorf("unable to decode channels.editAdmin#d33c8902: field rank: %w", err)
		tl_channels_edit_banned_gen.go#L143: 		return fmt.Errorf("can't encode channels.editBanned#96e6cd81 as nil")
		tl_channels_edit_banned_gen.go#L152: 		return fmt.Errorf("can't encode channels.editBanned#96e6cd81 as nil")
		tl_channels_edit_banned_gen.go#L155: 		return fmt.Errorf("unable to encode channels.editBanned#96e6cd81: field channel is nil")
		tl_channels_edit_banned_gen.go#L158: 		return fmt.Errorf("unable to encode channels.editBanned#96e6cd81: field channel: %w", err)
		tl_channels_edit_banned_gen.go#L161: 		return fmt.Errorf("unable to encode channels.editBanned#96e6cd81: field participant is nil")
		tl_channels_edit_banned_gen.go#L164: 		return fmt.Errorf("unable to encode channels.editBanned#96e6cd81: field participant: %w", err)
		tl_channels_edit_banned_gen.go#L167: 		return fmt.Errorf("unable to encode channels.editBanned#96e6cd81: field banned_rights: %w", err)
		tl_channels_edit_banned_gen.go#L175: 		return fmt.Errorf("can't decode channels.editBanned#96e6cd81 to nil")
		tl_channels_edit_banned_gen.go#L178: 		return fmt.Errorf("unable to decode channels.editBanned#96e6cd81: %w", err)
		tl_channels_edit_banned_gen.go#L186: 		return fmt.Errorf("can't decode channels.editBanned#96e6cd81 to nil")
		tl_channels_edit_banned_gen.go#L191: 			return fmt.Errorf("unable to decode channels.editBanned#96e6cd81: field channel: %w", err)
		tl_channels_edit_banned_gen.go#L198: 			return fmt.Errorf("unable to decode channels.editBanned#96e6cd81: field participant: %w", err)
		tl_channels_edit_banned_gen.go#L204: 			return fmt.Errorf("unable to decode channels.editBanned#96e6cd81: field banned_rights: %w", err)
		tl_channels_edit_creator_gen.go#L140: 		return fmt.Errorf("can't encode channels.editCreator#8f38cd1f as nil")
		tl_channels_edit_creator_gen.go#L149: 		return fmt.Errorf("can't encode channels.editCreator#8f38cd1f as nil")
		tl_channels_edit_creator_gen.go#L152: 		return fmt.Errorf("unable to encode channels.editCreator#8f38cd1f: field channel is nil")
		tl_channels_edit_creator_gen.go#L155: 		return fmt.Errorf("unable to encode channels.editCreator#8f38cd1f: field channel: %w", err)
		tl_channels_edit_creator_gen.go#L158: 		return fmt.Errorf("unable to encode channels.editCreator#8f38cd1f: field user_id is nil")
		tl_channels_edit_creator_gen.go#L161: 		return fmt.Errorf("unable to encode channels.editCreator#8f38cd1f: field user_id: %w", err)
		tl_channels_edit_creator_gen.go#L164: 		return fmt.Errorf("unable to encode channels.editCreator#8f38cd1f: field password is nil")
		tl_channels_edit_creator_gen.go#L167: 		return fmt.Errorf("unable to encode channels.editCreator#8f38cd1f: field password: %w", err)
		tl_channels_edit_creator_gen.go#L175: 		return fmt.Errorf("can't decode channels.editCreator#8f38cd1f to nil")
		tl_channels_edit_creator_gen.go#L178: 		return fmt.Errorf("unable to decode channels.editCreator#8f38cd1f: %w", err)
		tl_channels_edit_creator_gen.go#L186: 		return fmt.Errorf("can't decode channels.editCreator#8f38cd1f to nil")
		tl_channels_edit_creator_gen.go#L191: 			return fmt.Errorf("unable to decode channels.editCreator#8f38cd1f: field channel: %w", err)
		tl_channels_edit_creator_gen.go#L198: 			return fmt.Errorf("unable to decode channels.editCreator#8f38cd1f: field user_id: %w", err)
		tl_channels_edit_creator_gen.go#L205: 			return fmt.Errorf("unable to decode channels.editCreator#8f38cd1f: field password: %w", err)
		tl_channels_edit_forum_topic_gen.go#L230: 		return fmt.Errorf("can't encode channels.editForumTopic#f4dfa185 as nil")
		tl_channels_edit_forum_topic_gen.go#L239: 		return fmt.Errorf("can't encode channels.editForumTopic#f4dfa185 as nil")
		tl_channels_edit_forum_topic_gen.go#L243: 		return fmt.Errorf("unable to encode channels.editForumTopic#f4dfa185: field flags: %w", err)
		tl_channels_edit_forum_topic_gen.go#L246: 		return fmt.Errorf("unable to encode channels.editForumTopic#f4dfa185: field channel is nil")
		tl_channels_edit_forum_topic_gen.go#L249: 		return fmt.Errorf("unable to encode channels.editForumTopic#f4dfa185: field channel: %w", err)
		tl_channels_edit_forum_topic_gen.go#L270: 		return fmt.Errorf("can't decode channels.editForumTopic#f4dfa185 to nil")
		tl_channels_edit_forum_topic_gen.go#L273: 		return fmt.Errorf("unable to decode channels.editForumTopic#f4dfa185: %w", err)
		tl_channels_edit_forum_topic_gen.go#L281: 		return fmt.Errorf("can't decode channels.editForumTopic#f4dfa185 to nil")
		tl_channels_edit_forum_topic_gen.go#L285: 			return fmt.Errorf("unable to decode channels.editForumTopic#f4dfa185: field flags: %w", err)
		tl_channels_edit_forum_topic_gen.go#L291: 			return fmt.Errorf("unable to decode channels.editForumTopic#f4dfa185: field channel: %w", err)
		tl_channels_edit_forum_topic_gen.go#L298: 			return fmt.Errorf("unable to decode channels.editForumTopic#f4dfa185: field topic_id: %w", err)
		tl_channels_edit_forum_topic_gen.go#L305: 			return fmt.Errorf("unable to decode channels.editForumTopic#f4dfa185: field title: %w", err)
		tl_channels_edit_forum_topic_gen.go#L312: 			return fmt.Errorf("unable to decode channels.editForumTopic#f4dfa185: field icon_emoji_id: %w", err)
		tl_channels_edit_forum_topic_gen.go#L319: 			return fmt.Errorf("unable to decode channels.editForumTopic#f4dfa185: field closed: %w", err)
		tl_channels_edit_forum_topic_gen.go#L326: 			return fmt.Errorf("unable to decode channels.editForumTopic#f4dfa185: field hidden: %w", err)
		tl_channels_edit_location_gen.go#L143: 		return fmt.Errorf("can't encode channels.editLocation#58e63f6d as nil")
		tl_channels_edit_location_gen.go#L152: 		return fmt.Errorf("can't encode channels.editLocation#58e63f6d as nil")
		tl_channels_edit_location_gen.go#L155: 		return fmt.Errorf("unable to encode channels.editLocation#58e63f6d: field channel is nil")
		tl_channels_edit_location_gen.go#L158: 		return fmt.Errorf("unable to encode channels.editLocation#58e63f6d: field channel: %w", err)
		tl_channels_edit_location_gen.go#L161: 		return fmt.Errorf("unable to encode channels.editLocation#58e63f6d: field geo_point is nil")
		tl_channels_edit_location_gen.go#L164: 		return fmt.Errorf("unable to encode channels.editLocation#58e63f6d: field geo_point: %w", err)
		tl_channels_edit_location_gen.go#L173: 		return fmt.Errorf("can't decode channels.editLocation#58e63f6d to nil")
		tl_channels_edit_location_gen.go#L176: 		return fmt.Errorf("unable to decode channels.editLocation#58e63f6d: %w", err)
		tl_channels_edit_location_gen.go#L184: 		return fmt.Errorf("can't decode channels.editLocation#58e63f6d to nil")
		tl_channels_edit_location_gen.go#L189: 			return fmt.Errorf("unable to decode channels.editLocation#58e63f6d: field channel: %w", err)
		tl_channels_edit_location_gen.go#L196: 			return fmt.Errorf("unable to decode channels.editLocation#58e63f6d: field geo_point: %w", err)
		tl_channels_edit_location_gen.go#L203: 			return fmt.Errorf("unable to decode channels.editLocation#58e63f6d: field address: %w", err)
		tl_channels_edit_photo_gen.go#L129: 		return fmt.Errorf("can't encode channels.editPhoto#f12e57c9 as nil")
		tl_channels_edit_photo_gen.go#L138: 		return fmt.Errorf("can't encode channels.editPhoto#f12e57c9 as nil")
		tl_channels_edit_photo_gen.go#L141: 		return fmt.Errorf("unable to encode channels.editPhoto#f12e57c9: field channel is nil")
		tl_channels_edit_photo_gen.go#L144: 		return fmt.Errorf("unable to encode channels.editPhoto#f12e57c9: field channel: %w", err)
		tl_channels_edit_photo_gen.go#L147: 		return fmt.Errorf("unable to encode channels.editPhoto#f12e57c9: field photo is nil")
		tl_channels_edit_photo_gen.go#L150: 		return fmt.Errorf("unable to encode channels.editPhoto#f12e57c9: field photo: %w", err)
		tl_channels_edit_photo_gen.go#L158: 		return fmt.Errorf("can't decode channels.editPhoto#f12e57c9 to nil")
		tl_channels_edit_photo_gen.go#L161: 		return fmt.Errorf("unable to decode channels.editPhoto#f12e57c9: %w", err)
		tl_channels_edit_photo_gen.go#L169: 		return fmt.Errorf("can't decode channels.editPhoto#f12e57c9 to nil")
		tl_channels_edit_photo_gen.go#L174: 			return fmt.Errorf("unable to decode channels.editPhoto#f12e57c9: field channel: %w", err)
		tl_channels_edit_photo_gen.go#L181: 			return fmt.Errorf("unable to decode channels.editPhoto#f12e57c9: field photo: %w", err)
		tl_channels_edit_title_gen.go#L129: 		return fmt.Errorf("can't encode channels.editTitle#566decd0 as nil")
		tl_channels_edit_title_gen.go#L138: 		return fmt.Errorf("can't encode channels.editTitle#566decd0 as nil")
		tl_channels_edit_title_gen.go#L141: 		return fmt.Errorf("unable to encode channels.editTitle#566decd0: field channel is nil")
		tl_channels_edit_title_gen.go#L144: 		return fmt.Errorf("unable to encode channels.editTitle#566decd0: field channel: %w", err)
		tl_channels_edit_title_gen.go#L153: 		return fmt.Errorf("can't decode channels.editTitle#566decd0 to nil")
		tl_channels_edit_title_gen.go#L156: 		return fmt.Errorf("unable to decode channels.editTitle#566decd0: %w", err)
		tl_channels_edit_title_gen.go#L164: 		return fmt.Errorf("can't decode channels.editTitle#566decd0 to nil")
		tl_channels_edit_title_gen.go#L169: 			return fmt.Errorf("unable to decode channels.editTitle#566decd0: field channel: %w", err)
		tl_channels_edit_title_gen.go#L176: 			return fmt.Errorf("unable to decode channels.editTitle#566decd0: field title: %w", err)
		tl_channels_export_message_link_gen.go#L171: 		return fmt.Errorf("can't encode channels.exportMessageLink#e63fadeb as nil")
		tl_channels_export_message_link_gen.go#L180: 		return fmt.Errorf("can't encode channels.exportMessageLink#e63fadeb as nil")
		tl_channels_export_message_link_gen.go#L184: 		return fmt.Errorf("unable to encode channels.exportMessageLink#e63fadeb: field flags: %w", err)
		tl_channels_export_message_link_gen.go#L187: 		return fmt.Errorf("unable to encode channels.exportMessageLink#e63fadeb: field channel is nil")
		tl_channels_export_message_link_gen.go#L190: 		return fmt.Errorf("unable to encode channels.exportMessageLink#e63fadeb: field channel: %w", err)
		tl_channels_export_message_link_gen.go#L199: 		return fmt.Errorf("can't decode channels.exportMessageLink#e63fadeb to nil")
		tl_channels_export_message_link_gen.go#L202: 		return fmt.Errorf("unable to decode channels.exportMessageLink#e63fadeb: %w", err)
		tl_channels_export_message_link_gen.go#L210: 		return fmt.Errorf("can't decode channels.exportMessageLink#e63fadeb to nil")
		tl_channels_export_message_link_gen.go#L214: 			return fmt.Errorf("unable to decode channels.exportMessageLink#e63fadeb: field flags: %w", err)
		tl_channels_export_message_link_gen.go#L222: 			return fmt.Errorf("unable to decode channels.exportMessageLink#e63fadeb: field channel: %w", err)
		tl_channels_export_message_link_gen.go#L229: 			return fmt.Errorf("unable to decode channels.exportMessageLink#e63fadeb: field id: %w", err)
		tl_channels_get_admin_log_gen.go#L223: 		return fmt.Errorf("can't encode channels.getAdminLog#33ddf480 as nil")
		tl_channels_get_admin_log_gen.go#L232: 		return fmt.Errorf("can't encode channels.getAdminLog#33ddf480 as nil")
		tl_channels_get_admin_log_gen.go#L236: 		return fmt.Errorf("unable to encode channels.getAdminLog#33ddf480: field flags: %w", err)
		tl_channels_get_admin_log_gen.go#L239: 		return fmt.Errorf("unable to encode channels.getAdminLog#33ddf480: field channel is nil")
		tl_channels_get_admin_log_gen.go#L242: 		return fmt.Errorf("unable to encode channels.getAdminLog#33ddf480: field channel: %w", err)
		tl_channels_get_admin_log_gen.go#L247: 			return fmt.Errorf("unable to encode channels.getAdminLog#33ddf480: field events_filter: %w", err)
		tl_channels_get_admin_log_gen.go#L254: 				return fmt.Errorf("unable to encode channels.getAdminLog#33ddf480: field admins element with index %d is nil", idx)
		tl_channels_get_admin_log_gen.go#L257: 				return fmt.Errorf("unable to encode channels.getAdminLog#33ddf480: field admins element with index %d: %w", idx, err)
		tl_channels_get_admin_log_gen.go#L270: 		return fmt.Errorf("can't decode channels.getAdminLog#33ddf480 to nil")
		tl_channels_get_admin_log_gen.go#L273: 		return fmt.Errorf("unable to decode channels.getAdminLog#33ddf480: %w", err)
		tl_channels_get_admin_log_gen.go#L281: 		return fmt.Errorf("can't decode channels.getAdminLog#33ddf480 to nil")
		tl_channels_get_admin_log_gen.go#L285: 			return fmt.Errorf("unable to decode channels.getAdminLog#33ddf480: field flags: %w", err)
		tl_channels_get_admin_log_gen.go#L291: 			return fmt.Errorf("unable to decode channels.getAdminLog#33ddf480: field channel: %w", err)
		tl_channels_get_admin_log_gen.go#L298: 			return fmt.Errorf("unable to decode channels.getAdminLog#33ddf480: field q: %w", err)
		tl_channels_get_admin_log_gen.go#L304: 			return fmt.Errorf("unable to decode channels.getAdminLog#33ddf480: field events_filter: %w", err)
		tl_channels_get_admin_log_gen.go#L310: 			return fmt.Errorf("unable to decode channels.getAdminLog#33ddf480: field admins: %w", err)
		tl_channels_get_admin_log_gen.go#L319: 				return fmt.Errorf("unable to decode channels.getAdminLog#33ddf480: field admins: %w", err)
		tl_channels_get_admin_log_gen.go#L327: 			return fmt.Errorf("unable to decode channels.getAdminLog#33ddf480: field max_id: %w", err)
		tl_channels_get_admin_log_gen.go#L334: 			return fmt.Errorf("unable to decode channels.getAdminLog#33ddf480: field min_id: %w", err)
		tl_channels_get_admin_log_gen.go#L341: 			return fmt.Errorf("unable to decode channels.getAdminLog#33ddf480: field limit: %w", err)
		tl_channels_get_admined_public_channels_gen.go#L163: 		return fmt.Errorf("can't encode channels.getAdminedPublicChannels#f8b036af as nil")
		tl_channels_get_admined_public_channels_gen.go#L172: 		return fmt.Errorf("can't encode channels.getAdminedPublicChannels#f8b036af as nil")
		tl_channels_get_admined_public_channels_gen.go#L176: 		return fmt.Errorf("unable to encode channels.getAdminedPublicChannels#f8b036af: field flags: %w", err)
		tl_channels_get_admined_public_channels_gen.go#L184: 		return fmt.Errorf("can't decode channels.getAdminedPublicChannels#f8b036af to nil")
		tl_channels_get_admined_public_channels_gen.go#L187: 		return fmt.Errorf("unable to decode channels.getAdminedPublicChannels#f8b036af: %w", err)
		tl_channels_get_admined_public_channels_gen.go#L195: 		return fmt.Errorf("can't decode channels.getAdminedPublicChannels#f8b036af to nil")
		tl_channels_get_admined_public_channels_gen.go#L199: 			return fmt.Errorf("unable to decode channels.getAdminedPublicChannels#f8b036af: field flags: %w", err)
		tl_channels_get_channel_recommendations_gen.go#L116: 		return fmt.Errorf("can't encode channels.getChannelRecommendations#83b70d97 as nil")
		tl_channels_get_channel_recommendations_gen.go#L125: 		return fmt.Errorf("can't encode channels.getChannelRecommendations#83b70d97 as nil")
		tl_channels_get_channel_recommendations_gen.go#L128: 		return fmt.Errorf("unable to encode channels.getChannelRecommendations#83b70d97: field channel is nil")
		tl_channels_get_channel_recommendations_gen.go#L131: 		return fmt.Errorf("unable to encode channels.getChannelRecommendations#83b70d97: field channel: %w", err)
		tl_channels_get_channel_recommendations_gen.go#L139: 		return fmt.Errorf("can't decode channels.getChannelRecommendations#83b70d97 to nil")
		tl_channels_get_channel_recommendations_gen.go#L142: 		return fmt.Errorf("unable to decode channels.getChannelRecommendations#83b70d97: %w", err)
		tl_channels_get_channel_recommendations_gen.go#L150: 		return fmt.Errorf("can't decode channels.getChannelRecommendations#83b70d97 to nil")
		tl_channels_get_channel_recommendations_gen.go#L155: 			return fmt.Errorf("unable to decode channels.getChannelRecommendations#83b70d97: field channel: %w", err)
		tl_channels_get_channels_gen.go#L118: 		return fmt.Errorf("can't encode channels.getChannels#a7f6bbb as nil")
		tl_channels_get_channels_gen.go#L127: 		return fmt.Errorf("can't encode channels.getChannels#a7f6bbb as nil")
		tl_channels_get_channels_gen.go#L132: 			return fmt.Errorf("unable to encode channels.getChannels#a7f6bbb: field id element with index %d is nil", idx)
		tl_channels_get_channels_gen.go#L135: 			return fmt.Errorf("unable to encode channels.getChannels#a7f6bbb: field id element with index %d: %w", idx, err)
		tl_channels_get_channels_gen.go#L144: 		return fmt.Errorf("can't decode channels.getChannels#a7f6bbb to nil")
		tl_channels_get_channels_gen.go#L147: 		return fmt.Errorf("unable to decode channels.getChannels#a7f6bbb: %w", err)
		tl_channels_get_channels_gen.go#L155: 		return fmt.Errorf("can't decode channels.getChannels#a7f6bbb to nil")
		tl_channels_get_channels_gen.go#L160: 			return fmt.Errorf("unable to decode channels.getChannels#a7f6bbb: field id: %w", err)
		tl_channels_get_channels_gen.go#L169: 				return fmt.Errorf("unable to decode channels.getChannels#a7f6bbb: field id: %w", err)
		tl_channels_get_forum_topics_by_id_gen.go#L126: 		return fmt.Errorf("can't encode channels.getForumTopicsByID#b0831eb9 as nil")
		tl_channels_get_forum_topics_by_id_gen.go#L135: 		return fmt.Errorf("can't encode channels.getForumTopicsByID#b0831eb9 as nil")
		tl_channels_get_forum_topics_by_id_gen.go#L138: 		return fmt.Errorf("unable to encode channels.getForumTopicsByID#b0831eb9: field channel is nil")
		tl_channels_get_forum_topics_by_id_gen.go#L141: 		return fmt.Errorf("unable to encode channels.getForumTopicsByID#b0831eb9: field channel: %w", err)
		tl_channels_get_forum_topics_by_id_gen.go#L153: 		return fmt.Errorf("can't decode channels.getForumTopicsByID#b0831eb9 to nil")
		tl_channels_get_forum_topics_by_id_gen.go#L156: 		return fmt.Errorf("unable to decode channels.getForumTopicsByID#b0831eb9: %w", err)
		tl_channels_get_forum_topics_by_id_gen.go#L164: 		return fmt.Errorf("can't decode channels.getForumTopicsByID#b0831eb9 to nil")
		tl_channels_get_forum_topics_by_id_gen.go#L169: 			return fmt.Errorf("unable to decode channels.getForumTopicsByID#b0831eb9: field channel: %w", err)
		tl_channels_get_forum_topics_by_id_gen.go#L176: 			return fmt.Errorf("unable to decode channels.getForumTopicsByID#b0831eb9: field topics: %w", err)
		tl_channels_get_forum_topics_by_id_gen.go#L185: 				return fmt.Errorf("unable to decode channels.getForumTopicsByID#b0831eb9: field topics: %w", err)
		tl_channels_get_forum_topics_gen.go#L211: 		return fmt.Errorf("can't encode channels.getForumTopics#de560d1 as nil")
		tl_channels_get_forum_topics_gen.go#L220: 		return fmt.Errorf("can't encode channels.getForumTopics#de560d1 as nil")
		tl_channels_get_forum_topics_gen.go#L224: 		return fmt.Errorf("unable to encode channels.getForumTopics#de560d1: field flags: %w", err)
		tl_channels_get_forum_topics_gen.go#L227: 		return fmt.Errorf("unable to encode channels.getForumTopics#de560d1: field channel is nil")
		tl_channels_get_forum_topics_gen.go#L230: 		return fmt.Errorf("unable to encode channels.getForumTopics#de560d1: field channel: %w", err)
		tl_channels_get_forum_topics_gen.go#L245: 		return fmt.Errorf("can't decode channels.getForumTopics#de560d1 to nil")
		tl_channels_get_forum_topics_gen.go#L248: 		return fmt.Errorf("unable to decode channels.getForumTopics#de560d1: %w", err)
		tl_channels_get_forum_topics_gen.go#L256: 		return fmt.Errorf("can't decode channels.getForumTopics#de560d1 to nil")
		tl_channels_get_forum_topics_gen.go#L260: 			return fmt.Errorf("unable to decode channels.getForumTopics#de560d1: field flags: %w", err)
		tl_channels_get_forum_topics_gen.go#L266: 			return fmt.Errorf("unable to decode channels.getForumTopics#de560d1: field channel: %w", err)
		tl_channels_get_forum_topics_gen.go#L273: 			return fmt.Errorf("unable to decode channels.getForumTopics#de560d1: field q: %w", err)
		tl_channels_get_forum_topics_gen.go#L280: 			return fmt.Errorf("unable to decode channels.getForumTopics#de560d1: field offset_date: %w", err)
		tl_channels_get_forum_topics_gen.go#L287: 			return fmt.Errorf("unable to decode channels.getForumTopics#de560d1: field offset_id: %w", err)
		tl_channels_get_forum_topics_gen.go#L294: 			return fmt.Errorf("unable to decode channels.getForumTopics#de560d1: field offset_topic: %w", err)
		tl_channels_get_forum_topics_gen.go#L301: 			return fmt.Errorf("unable to decode channels.getForumTopics#de560d1: field limit: %w", err)
		tl_channels_get_full_channel_gen.go#L125: 		return fmt.Errorf("can't encode channels.getFullChannel#8736a09 as nil")
		tl_channels_get_full_channel_gen.go#L134: 		return fmt.Errorf("can't encode channels.getFullChannel#8736a09 as nil")
		tl_channels_get_full_channel_gen.go#L137: 		return fmt.Errorf("unable to encode channels.getFullChannel#8736a09: field channel is nil")
		tl_channels_get_full_channel_gen.go#L140: 		return fmt.Errorf("unable to encode channels.getFullChannel#8736a09: field channel: %w", err)
		tl_channels_get_full_channel_gen.go#L148: 		return fmt.Errorf("can't decode channels.getFullChannel#8736a09 to nil")
		tl_channels_get_full_channel_gen.go#L151: 		return fmt.Errorf("unable to decode channels.getFullChannel#8736a09: %w", err)
		tl_channels_get_full_channel_gen.go#L159: 		return fmt.Errorf("can't decode channels.getFullChannel#8736a09 to nil")
		tl_channels_get_full_channel_gen.go#L164: 			return fmt.Errorf("unable to decode channels.getFullChannel#8736a09: field channel: %w", err)
		tl_channels_get_groups_for_discussion_gen.go#L108: 		return fmt.Errorf("can't encode channels.getGroupsForDiscussion#f5dad378 as nil")
		tl_channels_get_groups_for_discussion_gen.go#L117: 		return fmt.Errorf("can't encode channels.getGroupsForDiscussion#f5dad378 as nil")
		tl_channels_get_groups_for_discussion_gen.go#L125: 		return fmt.Errorf("can't decode channels.getGroupsForDiscussion#f5dad378 to nil")
		tl_channels_get_groups_for_discussion_gen.go#L128: 		return fmt.Errorf("unable to decode channels.getGroupsForDiscussion#f5dad378: %w", err)
		tl_channels_get_groups_for_discussion_gen.go#L136: 		return fmt.Errorf("can't decode channels.getGroupsForDiscussion#f5dad378 to nil")
		tl_channels_get_inactive_channels_gen.go#L98: 		return fmt.Errorf("can't encode channels.getInactiveChannels#11e831ee as nil")
		tl_channels_get_inactive_channels_gen.go#L107: 		return fmt.Errorf("can't encode channels.getInactiveChannels#11e831ee as nil")
		tl_channels_get_inactive_channels_gen.go#L115: 		return fmt.Errorf("can't decode channels.getInactiveChannels#11e831ee to nil")
		tl_channels_get_inactive_channels_gen.go#L118: 		return fmt.Errorf("unable to decode channels.getInactiveChannels#11e831ee: %w", err)
		tl_channels_get_inactive_channels_gen.go#L126: 		return fmt.Errorf("can't decode channels.getInactiveChannels#11e831ee to nil")
		tl_channels_get_left_channels_gen.go#L123: 		return fmt.Errorf("can't encode channels.getLeftChannels#8341ecc0 as nil")
		tl_channels_get_left_channels_gen.go#L132: 		return fmt.Errorf("can't encode channels.getLeftChannels#8341ecc0 as nil")
		tl_channels_get_left_channels_gen.go#L141: 		return fmt.Errorf("can't decode channels.getLeftChannels#8341ecc0 to nil")
		tl_channels_get_left_channels_gen.go#L144: 		return fmt.Errorf("unable to decode channels.getLeftChannels#8341ecc0: %w", err)
		tl_channels_get_left_channels_gen.go#L152: 		return fmt.Errorf("can't decode channels.getLeftChannels#8341ecc0 to nil")
		tl_channels_get_left_channels_gen.go#L157: 			return fmt.Errorf("unable to decode channels.getLeftChannels#8341ecc0: field offset: %w", err)
		tl_channels_get_messages_gen.go#L129: 		return fmt.Errorf("can't encode channels.getMessages#ad8c9a23 as nil")
		tl_channels_get_messages_gen.go#L138: 		return fmt.Errorf("can't encode channels.getMessages#ad8c9a23 as nil")
		tl_channels_get_messages_gen.go#L141: 		return fmt.Errorf("unable to encode channels.getMessages#ad8c9a23: field channel is nil")
		tl_channels_get_messages_gen.go#L144: 		return fmt.Errorf("unable to encode channels.getMessages#ad8c9a23: field channel: %w", err)
		tl_channels_get_messages_gen.go#L149: 			return fmt.Errorf("unable to encode channels.getMessages#ad8c9a23: field id element with index %d is nil", idx)
		tl_channels_get_messages_gen.go#L152: 			return fmt.Errorf("unable to encode channels.getMessages#ad8c9a23: field id element with index %d: %w", idx, err)
		tl_channels_get_messages_gen.go#L161: 		return fmt.Errorf("can't decode channels.getMessages#ad8c9a23 to nil")
		tl_channels_get_messages_gen.go#L164: 		return fmt.Errorf("unable to decode channels.getMessages#ad8c9a23: %w", err)
		tl_channels_get_messages_gen.go#L172: 		return fmt.Errorf("can't decode channels.getMessages#ad8c9a23 to nil")
		tl_channels_get_messages_gen.go#L177: 			return fmt.Errorf("unable to decode channels.getMessages#ad8c9a23: field channel: %w", err)
		tl_channels_get_messages_gen.go#L184: 			return fmt.Errorf("unable to decode channels.getMessages#ad8c9a23: field id: %w", err)
		tl_channels_get_messages_gen.go#L193: 				return fmt.Errorf("unable to decode channels.getMessages#ad8c9a23: field id: %w", err)
		tl_channels_get_participant_gen.go#L129: 		return fmt.Errorf("can't encode channels.getParticipant#a0ab6cc6 as nil")
		tl_channels_get_participant_gen.go#L138: 		return fmt.Errorf("can't encode channels.getParticipant#a0ab6cc6 as nil")
		tl_channels_get_participant_gen.go#L141: 		return fmt.Errorf("unable to encode channels.getParticipant#a0ab6cc6: field channel is nil")
		tl_channels_get_participant_gen.go#L144: 		return fmt.Errorf("unable to encode channels.getParticipant#a0ab6cc6: field channel: %w", err)
		tl_channels_get_participant_gen.go#L147: 		return fmt.Errorf("unable to encode channels.getParticipant#a0ab6cc6: field participant is nil")
		tl_channels_get_participant_gen.go#L150: 		return fmt.Errorf("unable to encode channels.getParticipant#a0ab6cc6: field participant: %w", err)
		tl_channels_get_participant_gen.go#L158: 		return fmt.Errorf("can't decode channels.getParticipant#a0ab6cc6 to nil")
		tl_channels_get_participant_gen.go#L161: 		return fmt.Errorf("unable to decode channels.getParticipant#a0ab6cc6: %w", err)
		tl_channels_get_participant_gen.go#L169: 		return fmt.Errorf("can't decode channels.getParticipant#a0ab6cc6 to nil")
		tl_channels_get_participant_gen.go#L174: 			return fmt.Errorf("unable to decode channels.getParticipant#a0ab6cc6: field channel: %w", err)
		tl_channels_get_participant_gen.go#L181: 			return fmt.Errorf("unable to decode channels.getParticipant#a0ab6cc6: field participant: %w", err)
		tl_channels_get_participants_gen.go#L171: 		return fmt.Errorf("can't encode channels.getParticipants#77ced9d0 as nil")
		tl_channels_get_participants_gen.go#L180: 		return fmt.Errorf("can't encode channels.getParticipants#77ced9d0 as nil")
		tl_channels_get_participants_gen.go#L183: 		return fmt.Errorf("unable to encode channels.getParticipants#77ced9d0: field channel is nil")
		tl_channels_get_participants_gen.go#L186: 		return fmt.Errorf("unable to encode channels.getParticipants#77ced9d0: field channel: %w", err)
		tl_channels_get_participants_gen.go#L189: 		return fmt.Errorf("unable to encode channels.getParticipants#77ced9d0: field filter is nil")
		tl_channels_get_participants_gen.go#L192: 		return fmt.Errorf("unable to encode channels.getParticipants#77ced9d0: field filter: %w", err)
		tl_channels_get_participants_gen.go#L203: 		return fmt.Errorf("can't decode channels.getParticipants#77ced9d0 to nil")
		tl_channels_get_participants_gen.go#L206: 		return fmt.Errorf("unable to decode channels.getParticipants#77ced9d0: %w", err)
		tl_channels_get_participants_gen.go#L214: 		return fmt.Errorf("can't decode channels.getParticipants#77ced9d0 to nil")
		tl_channels_get_participants_gen.go#L219: 			return fmt.Errorf("unable to decode channels.getParticipants#77ced9d0: field channel: %w", err)
		tl_channels_get_participants_gen.go#L226: 			return fmt.Errorf("unable to decode channels.getParticipants#77ced9d0: field filter: %w", err)
		tl_channels_get_participants_gen.go#L233: 			return fmt.Errorf("unable to decode channels.getParticipants#77ced9d0: field offset: %w", err)
		tl_channels_get_participants_gen.go#L240: 			return fmt.Errorf("unable to decode channels.getParticipants#77ced9d0: field limit: %w", err)
		tl_channels_get_participants_gen.go#L247: 			return fmt.Errorf("unable to decode channels.getParticipants#77ced9d0: field hash: %w", err)
		tl_channels_get_send_as_gen.go#L115: 		return fmt.Errorf("can't encode channels.getSendAs#dc770ee as nil")
		tl_channels_get_send_as_gen.go#L124: 		return fmt.Errorf("can't encode channels.getSendAs#dc770ee as nil")
		tl_channels_get_send_as_gen.go#L127: 		return fmt.Errorf("unable to encode channels.getSendAs#dc770ee: field peer is nil")
		tl_channels_get_send_as_gen.go#L130: 		return fmt.Errorf("unable to encode channels.getSendAs#dc770ee: field peer: %w", err)
		tl_channels_get_send_as_gen.go#L138: 		return fmt.Errorf("can't decode channels.getSendAs#dc770ee to nil")
		tl_channels_get_send_as_gen.go#L141: 		return fmt.Errorf("unable to decode channels.getSendAs#dc770ee: %w", err)
		tl_channels_get_send_as_gen.go#L149: 		return fmt.Errorf("can't decode channels.getSendAs#dc770ee to nil")
		tl_channels_get_send_as_gen.go#L154: 			return fmt.Errorf("unable to decode channels.getSendAs#dc770ee: field peer: %w", err)
		tl_channels_get_sponsored_messages_gen.go#L115: 		return fmt.Errorf("can't encode channels.getSponsoredMessages#ec210fbf as nil")
		tl_channels_get_sponsored_messages_gen.go#L124: 		return fmt.Errorf("can't encode channels.getSponsoredMessages#ec210fbf as nil")
		tl_channels_get_sponsored_messages_gen.go#L127: 		return fmt.Errorf("unable to encode channels.getSponsoredMessages#ec210fbf: field channel is nil")
		tl_channels_get_sponsored_messages_gen.go#L130: 		return fmt.Errorf("unable to encode channels.getSponsoredMessages#ec210fbf: field channel: %w", err)
		tl_channels_get_sponsored_messages_gen.go#L138: 		return fmt.Errorf("can't decode channels.getSponsoredMessages#ec210fbf to nil")
		tl_channels_get_sponsored_messages_gen.go#L141: 		return fmt.Errorf("unable to decode channels.getSponsoredMessages#ec210fbf: %w", err)
		tl_channels_get_sponsored_messages_gen.go#L149: 		return fmt.Errorf("can't decode channels.getSponsoredMessages#ec210fbf to nil")
		tl_channels_get_sponsored_messages_gen.go#L154: 			return fmt.Errorf("unable to decode channels.getSponsoredMessages#ec210fbf: field channel: %w", err)
		tl_channels_invite_to_channel_gen.go#L133: 		return fmt.Errorf("can't encode channels.inviteToChannel#199f3a6c as nil")
		tl_channels_invite_to_channel_gen.go#L142: 		return fmt.Errorf("can't encode channels.inviteToChannel#199f3a6c as nil")
		tl_channels_invite_to_channel_gen.go#L145: 		return fmt.Errorf("unable to encode channels.inviteToChannel#199f3a6c: field channel is nil")
		tl_channels_invite_to_channel_gen.go#L148: 		return fmt.Errorf("unable to encode channels.inviteToChannel#199f3a6c: field channel: %w", err)
		tl_channels_invite_to_channel_gen.go#L153: 			return fmt.Errorf("unable to encode channels.inviteToChannel#199f3a6c: field users element with index %d is nil", idx)
		tl_channels_invite_to_channel_gen.go#L156: 			return fmt.Errorf("unable to encode channels.inviteToChannel#199f3a6c: field users element with index %d: %w", idx, err)
		tl_channels_invite_to_channel_gen.go#L165: 		return fmt.Errorf("can't decode channels.inviteToChannel#199f3a6c to nil")
		tl_channels_invite_to_channel_gen.go#L168: 		return fmt.Errorf("unable to decode channels.inviteToChannel#199f3a6c: %w", err)
		tl_channels_invite_to_channel_gen.go#L176: 		return fmt.Errorf("can't decode channels.inviteToChannel#199f3a6c to nil")
		tl_channels_invite_to_channel_gen.go#L181: 			return fmt.Errorf("unable to decode channels.inviteToChannel#199f3a6c: field channel: %w", err)
		tl_channels_invite_to_channel_gen.go#L188: 			return fmt.Errorf("unable to decode channels.inviteToChannel#199f3a6c: field users: %w", err)
		tl_channels_invite_to_channel_gen.go#L197: 				return fmt.Errorf("unable to decode channels.inviteToChannel#199f3a6c: field users: %w", err)
		tl_channels_join_channel_gen.go#L115: 		return fmt.Errorf("can't encode channels.joinChannel#24b524c5 as nil")
		tl_channels_join_channel_gen.go#L124: 		return fmt.Errorf("can't encode channels.joinChannel#24b524c5 as nil")
		tl_channels_join_channel_gen.go#L127: 		return fmt.Errorf("unable to encode channels.joinChannel#24b524c5: field channel is nil")
		tl_channels_join_channel_gen.go#L130: 		return fmt.Errorf("unable to encode channels.joinChannel#24b524c5: field channel: %w", err)
		tl_channels_join_channel_gen.go#L138: 		return fmt.Errorf("can't decode channels.joinChannel#24b524c5 to nil")
		tl_channels_join_channel_gen.go#L141: 		return fmt.Errorf("unable to decode channels.joinChannel#24b524c5: %w", err)
		tl_channels_join_channel_gen.go#L149: 		return fmt.Errorf("can't decode channels.joinChannel#24b524c5 to nil")
		tl_channels_join_channel_gen.go#L154: 			return fmt.Errorf("unable to decode channels.joinChannel#24b524c5: field channel: %w", err)
		tl_channels_leave_channel_gen.go#L121: 		return fmt.Errorf("can't encode channels.leaveChannel#f836aa95 as nil")
		tl_channels_leave_channel_gen.go#L130: 		return fmt.Errorf("can't encode channels.leaveChannel#f836aa95 as nil")
		tl_channels_leave_channel_gen.go#L133: 		return fmt.Errorf("unable to encode channels.leaveChannel#f836aa95: field channel is nil")
		tl_channels_leave_channel_gen.go#L136: 		return fmt.Errorf("unable to encode channels.leaveChannel#f836aa95: field channel: %w", err)
		tl_channels_leave_channel_gen.go#L144: 		return fmt.Errorf("can't decode channels.leaveChannel#f836aa95 to nil")
		tl_channels_leave_channel_gen.go#L147: 		return fmt.Errorf("unable to decode channels.leaveChannel#f836aa95: %w", err)
		tl_channels_leave_channel_gen.go#L155: 		return fmt.Errorf("can't decode channels.leaveChannel#f836aa95 to nil")
		tl_channels_leave_channel_gen.go#L160: 			return fmt.Errorf("unable to decode channels.leaveChannel#f836aa95: field channel: %w", err)
		tl_channels_read_history_gen.go#L132: 		return fmt.Errorf("can't encode channels.readHistory#cc104937 as nil")
		tl_channels_read_history_gen.go#L141: 		return fmt.Errorf("can't encode channels.readHistory#cc104937 as nil")
		tl_channels_read_history_gen.go#L144: 		return fmt.Errorf("unable to encode channels.readHistory#cc104937: field channel is nil")
		tl_channels_read_history_gen.go#L147: 		return fmt.Errorf("unable to encode channels.readHistory#cc104937: field channel: %w", err)
		tl_channels_read_history_gen.go#L156: 		return fmt.Errorf("can't decode channels.readHistory#cc104937 to nil")
		tl_channels_read_history_gen.go#L159: 		return fmt.Errorf("unable to decode channels.readHistory#cc104937: %w", err)
		tl_channels_read_history_gen.go#L167: 		return fmt.Errorf("can't decode channels.readHistory#cc104937 to nil")
		tl_channels_read_history_gen.go#L172: 			return fmt.Errorf("unable to decode channels.readHistory#cc104937: field channel: %w", err)
		tl_channels_read_history_gen.go#L179: 			return fmt.Errorf("unable to decode channels.readHistory#cc104937: field max_id: %w", err)
		tl_channels_read_message_contents_gen.go#L132: 		return fmt.Errorf("can't encode channels.readMessageContents#eab5dc38 as nil")
		tl_channels_read_message_contents_gen.go#L141: 		return fmt.Errorf("can't encode channels.readMessageContents#eab5dc38 as nil")
		tl_channels_read_message_contents_gen.go#L144: 		return fmt.Errorf("unable to encode channels.readMessageContents#eab5dc38: field channel is nil")
		tl_channels_read_message_contents_gen.go#L147: 		return fmt.Errorf("unable to encode channels.readMessageContents#eab5dc38: field channel: %w", err)
		tl_channels_read_message_contents_gen.go#L159: 		return fmt.Errorf("can't decode channels.readMessageContents#eab5dc38 to nil")
		tl_channels_read_message_contents_gen.go#L162: 		return fmt.Errorf("unable to decode channels.readMessageContents#eab5dc38: %w", err)
		tl_channels_read_message_contents_gen.go#L170: 		return fmt.Errorf("can't decode channels.readMessageContents#eab5dc38 to nil")
		tl_channels_read_message_contents_gen.go#L175: 			return fmt.Errorf("unable to decode channels.readMessageContents#eab5dc38: field channel: %w", err)
		tl_channels_read_message_contents_gen.go#L182: 			return fmt.Errorf("unable to decode channels.readMessageContents#eab5dc38: field id: %w", err)
		tl_channels_read_message_contents_gen.go#L191: 				return fmt.Errorf("unable to decode channels.readMessageContents#eab5dc38: field id: %w", err)
		tl_channels_reorder_pinned_forum_topics_gen.go#L161: 		return fmt.Errorf("can't encode channels.reorderPinnedForumTopics#2950a18f as nil")
		tl_channels_reorder_pinned_forum_topics_gen.go#L170: 		return fmt.Errorf("can't encode channels.reorderPinnedForumTopics#2950a18f as nil")
		tl_channels_reorder_pinned_forum_topics_gen.go#L174: 		return fmt.Errorf("unable to encode channels.reorderPinnedForumTopics#2950a18f: field flags: %w", err)
		tl_channels_reorder_pinned_forum_topics_gen.go#L177: 		return fmt.Errorf("unable to encode channels.reorderPinnedForumTopics#2950a18f: field channel is nil")
		tl_channels_reorder_pinned_forum_topics_gen.go#L180: 		return fmt.Errorf("unable to encode channels.reorderPinnedForumTopics#2950a18f: field channel: %w", err)
		tl_channels_reorder_pinned_forum_topics_gen.go#L192: 		return fmt.Errorf("can't decode channels.reorderPinnedForumTopics#2950a18f to nil")
		tl_channels_reorder_pinned_forum_topics_gen.go#L195: 		return fmt.Errorf("unable to decode channels.reorderPinnedForumTopics#2950a18f: %w", err)
		tl_channels_reorder_pinned_forum_topics_gen.go#L203: 		return fmt.Errorf("can't decode channels.reorderPinnedForumTopics#2950a18f to nil")
		tl_channels_reorder_pinned_forum_topics_gen.go#L207: 			return fmt.Errorf("unable to decode channels.reorderPinnedForumTopics#2950a18f: field flags: %w", err)
		tl_channels_reorder_pinned_forum_topics_gen.go#L214: 			return fmt.Errorf("unable to decode channels.reorderPinnedForumTopics#2950a18f: field channel: %w", err)
		tl_channels_reorder_pinned_forum_topics_gen.go#L221: 			return fmt.Errorf("unable to decode channels.reorderPinnedForumTopics#2950a18f: field order: %w", err)
		tl_channels_reorder_pinned_forum_topics_gen.go#L230: 				return fmt.Errorf("unable to decode channels.reorderPinnedForumTopics#2950a18f: field order: %w", err)
		tl_channels_reorder_usernames_gen.go#L126: 		return fmt.Errorf("can't encode channels.reorderUsernames#b45ced1d as nil")
		tl_channels_reorder_usernames_gen.go#L135: 		return fmt.Errorf("can't encode channels.reorderUsernames#b45ced1d as nil")
		tl_channels_reorder_usernames_gen.go#L138: 		return fmt.Errorf("unable to encode channels.reorderUsernames#b45ced1d: field channel is nil")
		tl_channels_reorder_usernames_gen.go#L141: 		return fmt.Errorf("unable to encode channels.reorderUsernames#b45ced1d: field channel: %w", err)
		tl_channels_reorder_usernames_gen.go#L153: 		return fmt.Errorf("can't decode channels.reorderUsernames#b45ced1d to nil")
		tl_channels_reorder_usernames_gen.go#L156: 		return fmt.Errorf("unable to decode channels.reorderUsernames#b45ced1d: %w", err)
		tl_channels_reorder_usernames_gen.go#L164: 		return fmt.Errorf("can't decode channels.reorderUsernames#b45ced1d to nil")
		tl_channels_reorder_usernames_gen.go#L169: 			return fmt.Errorf("unable to decode channels.reorderUsernames#b45ced1d: field channel: %w", err)
		tl_channels_reorder_usernames_gen.go#L176: 			return fmt.Errorf("unable to decode channels.reorderUsernames#b45ced1d: field order: %w", err)
		tl_channels_reorder_usernames_gen.go#L185: 				return fmt.Errorf("unable to decode channels.reorderUsernames#b45ced1d: field order: %w", err)
		tl_channels_report_anti_spam_false_positive_gen.go#L134: 		return fmt.Errorf("can't encode channels.reportAntiSpamFalsePositive#a850a693 as nil")
		tl_channels_report_anti_spam_false_positive_gen.go#L143: 		return fmt.Errorf("can't encode channels.reportAntiSpamFalsePositive#a850a693 as nil")
		tl_channels_report_anti_spam_false_positive_gen.go#L146: 		return fmt.Errorf("unable to encode channels.reportAntiSpamFalsePositive#a850a693: field channel is nil")
		tl_channels_report_anti_spam_false_positive_gen.go#L149: 		return fmt.Errorf("unable to encode channels.reportAntiSpamFalsePositive#a850a693: field channel: %w", err)
		tl_channels_report_anti_spam_false_positive_gen.go#L158: 		return fmt.Errorf("can't decode channels.reportAntiSpamFalsePositive#a850a693 to nil")
		tl_channels_report_anti_spam_false_positive_gen.go#L161: 		return fmt.Errorf("unable to decode channels.reportAntiSpamFalsePositive#a850a693: %w", err)
		tl_channels_report_anti_spam_false_positive_gen.go#L169: 		return fmt.Errorf("can't decode channels.reportAntiSpamFalsePositive#a850a693 to nil")
		tl_channels_report_anti_spam_false_positive_gen.go#L174: 			return fmt.Errorf("unable to decode channels.reportAntiSpamFalsePositive#a850a693: field channel: %w", err)
		tl_channels_report_anti_spam_false_positive_gen.go#L181: 			return fmt.Errorf("unable to decode channels.reportAntiSpamFalsePositive#a850a693: field msg_id: %w", err)
		tl_channels_report_spam_gen.go#L138: 		return fmt.Errorf("can't encode channels.reportSpam#f44a8315 as nil")
		tl_channels_report_spam_gen.go#L147: 		return fmt.Errorf("can't encode channels.reportSpam#f44a8315 as nil")
		tl_channels_report_spam_gen.go#L150: 		return fmt.Errorf("unable to encode channels.reportSpam#f44a8315: field channel is nil")
		tl_channels_report_spam_gen.go#L153: 		return fmt.Errorf("unable to encode channels.reportSpam#f44a8315: field channel: %w", err)
		tl_channels_report_spam_gen.go#L156: 		return fmt.Errorf("unable to encode channels.reportSpam#f44a8315: field participant is nil")
		tl_channels_report_spam_gen.go#L159: 		return fmt.Errorf("unable to encode channels.reportSpam#f44a8315: field participant: %w", err)
		tl_channels_report_spam_gen.go#L171: 		return fmt.Errorf("can't decode channels.reportSpam#f44a8315 to nil")
		tl_channels_report_spam_gen.go#L174: 		return fmt.Errorf("unable to decode channels.reportSpam#f44a8315: %w", err)
		tl_channels_report_spam_gen.go#L182: 		return fmt.Errorf("can't decode channels.reportSpam#f44a8315 to nil")
		tl_channels_report_spam_gen.go#L187: 			return fmt.Errorf("unable to decode channels.reportSpam#f44a8315: field channel: %w", err)
		tl_channels_report_spam_gen.go#L194: 			return fmt.Errorf("unable to decode channels.reportSpam#f44a8315: field participant: %w", err)
		tl_channels_report_spam_gen.go#L201: 			return fmt.Errorf("unable to decode channels.reportSpam#f44a8315: field id: %w", err)
		tl_channels_report_spam_gen.go#L210: 				return fmt.Errorf("unable to decode channels.reportSpam#f44a8315: field id: %w", err)
		tl_channels_send_as_peers_gen.go#L137: 		return fmt.Errorf("can't encode channels.sendAsPeers#f496b0c6 as nil")
		tl_channels_send_as_peers_gen.go#L146: 		return fmt.Errorf("can't encode channels.sendAsPeers#f496b0c6 as nil")
		tl_channels_send_as_peers_gen.go#L151: 			return fmt.Errorf("unable to encode channels.sendAsPeers#f496b0c6: field peers element with index %d: %w", idx, err)
		tl_channels_send_as_peers_gen.go#L157: 			return fmt.Errorf("unable to encode channels.sendAsPeers#f496b0c6: field chats element with index %d is nil", idx)
		tl_channels_send_as_peers_gen.go#L160: 			return fmt.Errorf("unable to encode channels.sendAsPeers#f496b0c6: field chats element with index %d: %w", idx, err)
		tl_channels_send_as_peers_gen.go#L166: 			return fmt.Errorf("unable to encode channels.sendAsPeers#f496b0c6: field users element with index %d is nil", idx)
		tl_channels_send_as_peers_gen.go#L169: 			return fmt.Errorf("unable to encode channels.sendAsPeers#f496b0c6: field users element with index %d: %w", idx, err)
		tl_channels_send_as_peers_gen.go#L178: 		return fmt.Errorf("can't decode channels.sendAsPeers#f496b0c6 to nil")
		tl_channels_send_as_peers_gen.go#L181: 		return fmt.Errorf("unable to decode channels.sendAsPeers#f496b0c6: %w", err)
		tl_channels_send_as_peers_gen.go#L189: 		return fmt.Errorf("can't decode channels.sendAsPeers#f496b0c6 to nil")
		tl_channels_send_as_peers_gen.go#L194: 			return fmt.Errorf("unable to decode channels.sendAsPeers#f496b0c6: field peers: %w", err)
		tl_channels_send_as_peers_gen.go#L203: 				return fmt.Errorf("unable to decode channels.sendAsPeers#f496b0c6: field peers: %w", err)
		tl_channels_send_as_peers_gen.go#L211: 			return fmt.Errorf("unable to decode channels.sendAsPeers#f496b0c6: field chats: %w", err)
		tl_channels_send_as_peers_gen.go#L220: 				return fmt.Errorf("unable to decode channels.sendAsPeers#f496b0c6: field chats: %w", err)
		tl_channels_send_as_peers_gen.go#L228: 			return fmt.Errorf("unable to decode channels.sendAsPeers#f496b0c6: field users: %w", err)
		tl_channels_send_as_peers_gen.go#L237: 				return fmt.Errorf("unable to decode channels.sendAsPeers#f496b0c6: field users: %w", err)
		tl_channels_set_discussion_group_gen.go#L132: 		return fmt.Errorf("can't encode channels.setDiscussionGroup#40582bb2 as nil")
		tl_channels_set_discussion_group_gen.go#L141: 		return fmt.Errorf("can't encode channels.setDiscussionGroup#40582bb2 as nil")
		tl_channels_set_discussion_group_gen.go#L144: 		return fmt.Errorf("unable to encode channels.setDiscussionGroup#40582bb2: field broadcast is nil")
		tl_channels_set_discussion_group_gen.go#L147: 		return fmt.Errorf("unable to encode channels.setDiscussionGroup#40582bb2: field broadcast: %w", err)
		tl_channels_set_discussion_group_gen.go#L150: 		return fmt.Errorf("unable to encode channels.setDiscussionGroup#40582bb2: field group is nil")
		tl_channels_set_discussion_group_gen.go#L153: 		return fmt.Errorf("unable to encode channels.setDiscussionGroup#40582bb2: field group: %w", err)
		tl_channels_set_discussion_group_gen.go#L161: 		return fmt.Errorf("can't decode channels.setDiscussionGroup#40582bb2 to nil")
		tl_channels_set_discussion_group_gen.go#L164: 		return fmt.Errorf("unable to decode channels.setDiscussionGroup#40582bb2: %w", err)
		tl_channels_set_discussion_group_gen.go#L172: 		return fmt.Errorf("can't decode channels.setDiscussionGroup#40582bb2 to nil")
		tl_channels_set_discussion_group_gen.go#L177: 			return fmt.Errorf("unable to decode channels.setDiscussionGroup#40582bb2: field broadcast: %w", err)
		tl_channels_set_discussion_group_gen.go#L184: 			return fmt.Errorf("unable to decode channels.setDiscussionGroup#40582bb2: field group: %w", err)
		tl_channels_set_stickers_gen.go#L126: 		return fmt.Errorf("can't encode channels.setStickers#ea8ca4f9 as nil")
		tl_channels_set_stickers_gen.go#L135: 		return fmt.Errorf("can't encode channels.setStickers#ea8ca4f9 as nil")
		tl_channels_set_stickers_gen.go#L138: 		return fmt.Errorf("unable to encode channels.setStickers#ea8ca4f9: field channel is nil")
		tl_channels_set_stickers_gen.go#L141: 		return fmt.Errorf("unable to encode channels.setStickers#ea8ca4f9: field channel: %w", err)
		tl_channels_set_stickers_gen.go#L144: 		return fmt.Errorf("unable to encode channels.setStickers#ea8ca4f9: field stickerset is nil")
		tl_channels_set_stickers_gen.go#L147: 		return fmt.Errorf("unable to encode channels.setStickers#ea8ca4f9: field stickerset: %w", err)
		tl_channels_set_stickers_gen.go#L155: 		return fmt.Errorf("can't decode channels.setStickers#ea8ca4f9 to nil")
		tl_channels_set_stickers_gen.go#L158: 		return fmt.Errorf("unable to decode channels.setStickers#ea8ca4f9: %w", err)
		tl_channels_set_stickers_gen.go#L166: 		return fmt.Errorf("can't decode channels.setStickers#ea8ca4f9 to nil")
		tl_channels_set_stickers_gen.go#L171: 			return fmt.Errorf("unable to decode channels.setStickers#ea8ca4f9: field channel: %w", err)
		tl_channels_set_stickers_gen.go#L178: 			return fmt.Errorf("unable to decode channels.setStickers#ea8ca4f9: field stickerset: %w", err)
		tl_channels_toggle_anti_spam_gen.go#L134: 		return fmt.Errorf("can't encode channels.toggleAntiSpam#68f3e4eb as nil")
		tl_channels_toggle_anti_spam_gen.go#L143: 		return fmt.Errorf("can't encode channels.toggleAntiSpam#68f3e4eb as nil")
		tl_channels_toggle_anti_spam_gen.go#L146: 		return fmt.Errorf("unable to encode channels.toggleAntiSpam#68f3e4eb: field channel is nil")
		tl_channels_toggle_anti_spam_gen.go#L149: 		return fmt.Errorf("unable to encode channels.toggleAntiSpam#68f3e4eb: field channel: %w", err)
		tl_channels_toggle_anti_spam_gen.go#L158: 		return fmt.Errorf("can't decode channels.toggleAntiSpam#68f3e4eb to nil")
		tl_channels_toggle_anti_spam_gen.go#L161: 		return fmt.Errorf("unable to decode channels.toggleAntiSpam#68f3e4eb: %w", err)
		tl_channels_toggle_anti_spam_gen.go#L169: 		return fmt.Errorf("can't decode channels.toggleAntiSpam#68f3e4eb to nil")
		tl_channels_toggle_anti_spam_gen.go#L174: 			return fmt.Errorf("unable to decode channels.toggleAntiSpam#68f3e4eb: field channel: %w", err)
		tl_channels_toggle_anti_spam_gen.go#L181: 			return fmt.Errorf("unable to decode channels.toggleAntiSpam#68f3e4eb: field enabled: %w", err)
		tl_channels_toggle_forum_gen.go#L129: 		return fmt.Errorf("can't encode channels.toggleForum#a4298b29 as nil")
		tl_channels_toggle_forum_gen.go#L138: 		return fmt.Errorf("can't encode channels.toggleForum#a4298b29 as nil")
		tl_channels_toggle_forum_gen.go#L141: 		return fmt.Errorf("unable to encode channels.toggleForum#a4298b29: field channel is nil")
		tl_channels_toggle_forum_gen.go#L144: 		return fmt.Errorf("unable to encode channels.toggleForum#a4298b29: field channel: %w", err)
		tl_channels_toggle_forum_gen.go#L153: 		return fmt.Errorf("can't decode channels.toggleForum#a4298b29 to nil")
		tl_channels_toggle_forum_gen.go#L156: 		return fmt.Errorf("unable to decode channels.toggleForum#a4298b29: %w", err)
		tl_channels_toggle_forum_gen.go#L164: 		return fmt.Errorf("can't decode channels.toggleForum#a4298b29 to nil")
		tl_channels_toggle_forum_gen.go#L169: 			return fmt.Errorf("unable to decode channels.toggleForum#a4298b29: field channel: %w", err)
		tl_channels_toggle_forum_gen.go#L176: 			return fmt.Errorf("unable to decode channels.toggleForum#a4298b29: field enabled: %w", err)
		tl_channels_toggle_join_request_gen.go#L129: 		return fmt.Errorf("can't encode channels.toggleJoinRequest#4c2985b6 as nil")
		tl_channels_toggle_join_request_gen.go#L138: 		return fmt.Errorf("can't encode channels.toggleJoinRequest#4c2985b6 as nil")
		tl_channels_toggle_join_request_gen.go#L141: 		return fmt.Errorf("unable to encode channels.toggleJoinRequest#4c2985b6: field channel is nil")
		tl_channels_toggle_join_request_gen.go#L144: 		return fmt.Errorf("unable to encode channels.toggleJoinRequest#4c2985b6: field channel: %w", err)
		tl_channels_toggle_join_request_gen.go#L153: 		return fmt.Errorf("can't decode channels.toggleJoinRequest#4c2985b6 to nil")
		tl_channels_toggle_join_request_gen.go#L156: 		return fmt.Errorf("unable to decode channels.toggleJoinRequest#4c2985b6: %w", err)
		tl_channels_toggle_join_request_gen.go#L164: 		return fmt.Errorf("can't decode channels.toggleJoinRequest#4c2985b6 to nil")
		tl_channels_toggle_join_request_gen.go#L169: 			return fmt.Errorf("unable to decode channels.toggleJoinRequest#4c2985b6: field channel: %w", err)
		tl_channels_toggle_join_request_gen.go#L176: 			return fmt.Errorf("unable to decode channels.toggleJoinRequest#4c2985b6: field enabled: %w", err)
		tl_channels_toggle_join_to_send_gen.go#L130: 		return fmt.Errorf("can't encode channels.toggleJoinToSend#e4cb9580 as nil")
		tl_channels_toggle_join_to_send_gen.go#L139: 		return fmt.Errorf("can't encode channels.toggleJoinToSend#e4cb9580 as nil")
		tl_channels_toggle_join_to_send_gen.go#L142: 		return fmt.Errorf("unable to encode channels.toggleJoinToSend#e4cb9580: field channel is nil")
		tl_channels_toggle_join_to_send_gen.go#L145: 		return fmt.Errorf("unable to encode channels.toggleJoinToSend#e4cb9580: field channel: %w", err)
		tl_channels_toggle_join_to_send_gen.go#L154: 		return fmt.Errorf("can't decode channels.toggleJoinToSend#e4cb9580 to nil")
		tl_channels_toggle_join_to_send_gen.go#L157: 		return fmt.Errorf("unable to decode channels.toggleJoinToSend#e4cb9580: %w", err)
		tl_channels_toggle_join_to_send_gen.go#L165: 		return fmt.Errorf("can't decode channels.toggleJoinToSend#e4cb9580 to nil")
		tl_channels_toggle_join_to_send_gen.go#L170: 			return fmt.Errorf("unable to decode channels.toggleJoinToSend#e4cb9580: field channel: %w", err)
		tl_channels_toggle_join_to_send_gen.go#L177: 			return fmt.Errorf("unable to decode channels.toggleJoinToSend#e4cb9580: field enabled: %w", err)
		tl_channels_toggle_participants_hidden_gen.go#L132: 		return fmt.Errorf("can't encode channels.toggleParticipantsHidden#6a6e7854 as nil")
		tl_channels_toggle_participants_hidden_gen.go#L141: 		return fmt.Errorf("can't encode channels.toggleParticipantsHidden#6a6e7854 as nil")
		tl_channels_toggle_participants_hidden_gen.go#L144: 		return fmt.Errorf("unable to encode channels.toggleParticipantsHidden#6a6e7854: field channel is nil")
		tl_channels_toggle_participants_hidden_gen.go#L147: 		return fmt.Errorf("unable to encode channels.toggleParticipantsHidden#6a6e7854: field channel: %w", err)
		tl_channels_toggle_participants_hidden_gen.go#L156: 		return fmt.Errorf("can't decode channels.toggleParticipantsHidden#6a6e7854 to nil")
		tl_channels_toggle_participants_hidden_gen.go#L159: 		return fmt.Errorf("unable to decode channels.toggleParticipantsHidden#6a6e7854: %w", err)
		tl_channels_toggle_participants_hidden_gen.go#L167: 		return fmt.Errorf("can't decode channels.toggleParticipantsHidden#6a6e7854 to nil")
		tl_channels_toggle_participants_hidden_gen.go#L172: 			return fmt.Errorf("unable to decode channels.toggleParticipantsHidden#6a6e7854: field channel: %w", err)
		tl_channels_toggle_participants_hidden_gen.go#L179: 			return fmt.Errorf("unable to decode channels.toggleParticipantsHidden#6a6e7854: field enabled: %w", err)
		tl_channels_toggle_pre_history_hidden_gen.go#L126: 		return fmt.Errorf("can't encode channels.togglePreHistoryHidden#eabbb94c as nil")
		tl_channels_toggle_pre_history_hidden_gen.go#L135: 		return fmt.Errorf("can't encode channels.togglePreHistoryHidden#eabbb94c as nil")
		tl_channels_toggle_pre_history_hidden_gen.go#L138: 		return fmt.Errorf("unable to encode channels.togglePreHistoryHidden#eabbb94c: field channel is nil")
		tl_channels_toggle_pre_history_hidden_gen.go#L141: 		return fmt.Errorf("unable to encode channels.togglePreHistoryHidden#eabbb94c: field channel: %w", err)
		tl_channels_toggle_pre_history_hidden_gen.go#L150: 		return fmt.Errorf("can't decode channels.togglePreHistoryHidden#eabbb94c to nil")
		tl_channels_toggle_pre_history_hidden_gen.go#L153: 		return fmt.Errorf("unable to decode channels.togglePreHistoryHidden#eabbb94c: %w", err)
		tl_channels_toggle_pre_history_hidden_gen.go#L161: 		return fmt.Errorf("can't decode channels.togglePreHistoryHidden#eabbb94c to nil")
		tl_channels_toggle_pre_history_hidden_gen.go#L166: 			return fmt.Errorf("unable to decode channels.togglePreHistoryHidden#eabbb94c: field channel: %w", err)
		tl_channels_toggle_pre_history_hidden_gen.go#L173: 			return fmt.Errorf("unable to decode channels.togglePreHistoryHidden#eabbb94c: field enabled: %w", err)
		tl_channels_toggle_signatures_gen.go#L126: 		return fmt.Errorf("can't encode channels.toggleSignatures#1f69b606 as nil")
		tl_channels_toggle_signatures_gen.go#L135: 		return fmt.Errorf("can't encode channels.toggleSignatures#1f69b606 as nil")
		tl_channels_toggle_signatures_gen.go#L138: 		return fmt.Errorf("unable to encode channels.toggleSignatures#1f69b606: field channel is nil")
		tl_channels_toggle_signatures_gen.go#L141: 		return fmt.Errorf("unable to encode channels.toggleSignatures#1f69b606: field channel: %w", err)
		tl_channels_toggle_signatures_gen.go#L150: 		return fmt.Errorf("can't decode channels.toggleSignatures#1f69b606 to nil")
		tl_channels_toggle_signatures_gen.go#L153: 		return fmt.Errorf("unable to decode channels.toggleSignatures#1f69b606: %w", err)
		tl_channels_toggle_signatures_gen.go#L161: 		return fmt.Errorf("can't decode channels.toggleSignatures#1f69b606 to nil")
		tl_channels_toggle_signatures_gen.go#L166: 			return fmt.Errorf("unable to decode channels.toggleSignatures#1f69b606: field channel: %w", err)
		tl_channels_toggle_signatures_gen.go#L173: 			return fmt.Errorf("unable to decode channels.toggleSignatures#1f69b606: field enabled: %w", err)
		tl_channels_toggle_slow_mode_gen.go#L131: 		return fmt.Errorf("can't encode channels.toggleSlowMode#edd49ef0 as nil")
		tl_channels_toggle_slow_mode_gen.go#L140: 		return fmt.Errorf("can't encode channels.toggleSlowMode#edd49ef0 as nil")
		tl_channels_toggle_slow_mode_gen.go#L143: 		return fmt.Errorf("unable to encode channels.toggleSlowMode#edd49ef0: field channel is nil")
		tl_channels_toggle_slow_mode_gen.go#L146: 		return fmt.Errorf("unable to encode channels.toggleSlowMode#edd49ef0: field channel: %w", err)
		tl_channels_toggle_slow_mode_gen.go#L155: 		return fmt.Errorf("can't decode channels.toggleSlowMode#edd49ef0 to nil")
		tl_channels_toggle_slow_mode_gen.go#L158: 		return fmt.Errorf("unable to decode channels.toggleSlowMode#edd49ef0: %w", err)
		tl_channels_toggle_slow_mode_gen.go#L166: 		return fmt.Errorf("can't decode channels.toggleSlowMode#edd49ef0 to nil")
		tl_channels_toggle_slow_mode_gen.go#L171: 			return fmt.Errorf("unable to decode channels.toggleSlowMode#edd49ef0: field channel: %w", err)
		tl_channels_toggle_slow_mode_gen.go#L178: 			return fmt.Errorf("unable to decode channels.toggleSlowMode#edd49ef0: field seconds: %w", err)
		tl_channels_toggle_username_gen.go#L145: 		return fmt.Errorf("can't encode channels.toggleUsername#50f24105 as nil")
		tl_channels_toggle_username_gen.go#L154: 		return fmt.Errorf("can't encode channels.toggleUsername#50f24105 as nil")
		tl_channels_toggle_username_gen.go#L157: 		return fmt.Errorf("unable to encode channels.toggleUsername#50f24105: field channel is nil")
		tl_channels_toggle_username_gen.go#L160: 		return fmt.Errorf("unable to encode channels.toggleUsername#50f24105: field channel: %w", err)
		tl_channels_toggle_username_gen.go#L170: 		return fmt.Errorf("can't decode channels.toggleUsername#50f24105 to nil")
		tl_channels_toggle_username_gen.go#L173: 		return fmt.Errorf("unable to decode channels.toggleUsername#50f24105: %w", err)
		tl_channels_toggle_username_gen.go#L181: 		return fmt.Errorf("can't decode channels.toggleUsername#50f24105 to nil")
		tl_channels_toggle_username_gen.go#L186: 			return fmt.Errorf("unable to decode channels.toggleUsername#50f24105: field channel: %w", err)
		tl_channels_toggle_username_gen.go#L193: 			return fmt.Errorf("unable to decode channels.toggleUsername#50f24105: field username: %w", err)
		tl_channels_toggle_username_gen.go#L200: 			return fmt.Errorf("unable to decode channels.toggleUsername#50f24105: field active: %w", err)
		tl_channels_toggle_view_forum_as_messages_gen.go#L137: 		return fmt.Errorf("can't encode channels.toggleViewForumAsMessages#9738bb15 as nil")
		tl_channels_toggle_view_forum_as_messages_gen.go#L146: 		return fmt.Errorf("can't encode channels.toggleViewForumAsMessages#9738bb15 as nil")
		tl_channels_toggle_view_forum_as_messages_gen.go#L149: 		return fmt.Errorf("unable to encode channels.toggleViewForumAsMessages#9738bb15: field channel is nil")
		tl_channels_toggle_view_forum_as_messages_gen.go#L152: 		return fmt.Errorf("unable to encode channels.toggleViewForumAsMessages#9738bb15: field channel: %w", err)
		tl_channels_toggle_view_forum_as_messages_gen.go#L161: 		return fmt.Errorf("can't decode channels.toggleViewForumAsMessages#9738bb15 to nil")
		tl_channels_toggle_view_forum_as_messages_gen.go#L164: 		return fmt.Errorf("unable to decode channels.toggleViewForumAsMessages#9738bb15: %w", err)
		tl_channels_toggle_view_forum_as_messages_gen.go#L172: 		return fmt.Errorf("can't decode channels.toggleViewForumAsMessages#9738bb15 to nil")
		tl_channels_toggle_view_forum_as_messages_gen.go#L177: 			return fmt.Errorf("unable to decode channels.toggleViewForumAsMessages#9738bb15: field channel: %w", err)
		tl_channels_toggle_view_forum_as_messages_gen.go#L184: 			return fmt.Errorf("unable to decode channels.toggleViewForumAsMessages#9738bb15: field enabled: %w", err)
		tl_channels_update_color_gen.go#L189: 		return fmt.Errorf("can't encode channels.updateColor#d8aa3671 as nil")
		tl_channels_update_color_gen.go#L198: 		return fmt.Errorf("can't encode channels.updateColor#d8aa3671 as nil")
		tl_channels_update_color_gen.go#L202: 		return fmt.Errorf("unable to encode channels.updateColor#d8aa3671: field flags: %w", err)
		tl_channels_update_color_gen.go#L205: 		return fmt.Errorf("unable to encode channels.updateColor#d8aa3671: field channel is nil")
		tl_channels_update_color_gen.go#L208: 		return fmt.Errorf("unable to encode channels.updateColor#d8aa3671: field channel: %w", err)
		tl_channels_update_color_gen.go#L222: 		return fmt.Errorf("can't decode channels.updateColor#d8aa3671 to nil")
		tl_channels_update_color_gen.go#L225: 		return fmt.Errorf("unable to decode channels.updateColor#d8aa3671: %w", err)
		tl_channels_update_color_gen.go#L233: 		return fmt.Errorf("can't decode channels.updateColor#d8aa3671 to nil")
		tl_channels_update_color_gen.go#L237: 			return fmt.Errorf("unable to decode channels.updateColor#d8aa3671: field flags: %w", err)
		tl_channels_update_color_gen.go#L244: 			return fmt.Errorf("unable to decode channels.updateColor#d8aa3671: field channel: %w", err)
		tl_channels_update_color_gen.go#L251: 			return fmt.Errorf("unable to decode channels.updateColor#d8aa3671: field color: %w", err)
		tl_channels_update_color_gen.go#L258: 			return fmt.Errorf("unable to decode channels.updateColor#d8aa3671: field background_emoji_id: %w", err)
		tl_channels_update_emoji_status_gen.go#L125: 		return fmt.Errorf("can't encode channels.updateEmojiStatus#f0d3e6a8 as nil")
		tl_channels_update_emoji_status_gen.go#L134: 		return fmt.Errorf("can't encode channels.updateEmojiStatus#f0d3e6a8 as nil")
		tl_channels_update_emoji_status_gen.go#L137: 		return fmt.Errorf("unable to encode channels.updateEmojiStatus#f0d3e6a8: field channel is nil")
		tl_channels_update_emoji_status_gen.go#L140: 		return fmt.Errorf("unable to encode channels.updateEmojiStatus#f0d3e6a8: field channel: %w", err)
		tl_channels_update_emoji_status_gen.go#L143: 		return fmt.Errorf("unable to encode channels.updateEmojiStatus#f0d3e6a8: field emoji_status is nil")
		tl_channels_update_emoji_status_gen.go#L146: 		return fmt.Errorf("unable to encode channels.updateEmojiStatus#f0d3e6a8: field emoji_status: %w", err)
		tl_channels_update_emoji_status_gen.go#L154: 		return fmt.Errorf("can't decode channels.updateEmojiStatus#f0d3e6a8 to nil")
		tl_channels_update_emoji_status_gen.go#L157: 		return fmt.Errorf("unable to decode channels.updateEmojiStatus#f0d3e6a8: %w", err)
		tl_channels_update_emoji_status_gen.go#L165: 		return fmt.Errorf("can't decode channels.updateEmojiStatus#f0d3e6a8 to nil")
		tl_channels_update_emoji_status_gen.go#L170: 			return fmt.Errorf("unable to decode channels.updateEmojiStatus#f0d3e6a8: field channel: %w", err)
		tl_channels_update_emoji_status_gen.go#L177: 			return fmt.Errorf("unable to decode channels.updateEmojiStatus#f0d3e6a8: field emoji_status: %w", err)
		tl_channels_update_pinned_forum_topic_gen.go#L143: 		return fmt.Errorf("can't encode channels.updatePinnedForumTopic#6c2d9026 as nil")
		tl_channels_update_pinned_forum_topic_gen.go#L152: 		return fmt.Errorf("can't encode channels.updatePinnedForumTopic#6c2d9026 as nil")
		tl_channels_update_pinned_forum_topic_gen.go#L155: 		return fmt.Errorf("unable to encode channels.updatePinnedForumTopic#6c2d9026: field channel is nil")
		tl_channels_update_pinned_forum_topic_gen.go#L158: 		return fmt.Errorf("unable to encode channels.updatePinnedForumTopic#6c2d9026: field channel: %w", err)
		tl_channels_update_pinned_forum_topic_gen.go#L168: 		return fmt.Errorf("can't decode channels.updatePinnedForumTopic#6c2d9026 to nil")
		tl_channels_update_pinned_forum_topic_gen.go#L171: 		return fmt.Errorf("unable to decode channels.updatePinnedForumTopic#6c2d9026: %w", err)
		tl_channels_update_pinned_forum_topic_gen.go#L179: 		return fmt.Errorf("can't decode channels.updatePinnedForumTopic#6c2d9026 to nil")
		tl_channels_update_pinned_forum_topic_gen.go#L184: 			return fmt.Errorf("unable to decode channels.updatePinnedForumTopic#6c2d9026: field channel: %w", err)
		tl_channels_update_pinned_forum_topic_gen.go#L191: 			return fmt.Errorf("unable to decode channels.updatePinnedForumTopic#6c2d9026: field topic_id: %w", err)
		tl_channels_update_pinned_forum_topic_gen.go#L198: 			return fmt.Errorf("unable to decode channels.updatePinnedForumTopic#6c2d9026: field pinned: %w", err)
		tl_channels_update_username_gen.go#L126: 		return fmt.Errorf("can't encode channels.updateUsername#3514b3de as nil")
		tl_channels_update_username_gen.go#L135: 		return fmt.Errorf("can't encode channels.updateUsername#3514b3de as nil")
		tl_channels_update_username_gen.go#L138: 		return fmt.Errorf("unable to encode channels.updateUsername#3514b3de: field channel is nil")
		tl_channels_update_username_gen.go#L141: 		return fmt.Errorf("unable to encode channels.updateUsername#3514b3de: field channel: %w", err)
		tl_channels_update_username_gen.go#L150: 		return fmt.Errorf("can't decode channels.updateUsername#3514b3de to nil")
		tl_channels_update_username_gen.go#L153: 		return fmt.Errorf("unable to decode channels.updateUsername#3514b3de: %w", err)
		tl_channels_update_username_gen.go#L161: 		return fmt.Errorf("can't decode channels.updateUsername#3514b3de to nil")
		tl_channels_update_username_gen.go#L166: 			return fmt.Errorf("unable to decode channels.updateUsername#3514b3de: field channel: %w", err)
		tl_channels_update_username_gen.go#L173: 			return fmt.Errorf("unable to decode channels.updateUsername#3514b3de: field username: %w", err)
		tl_channels_view_sponsored_message_gen.go#L126: 		return fmt.Errorf("can't encode channels.viewSponsoredMessage#beaedb94 as nil")
		tl_channels_view_sponsored_message_gen.go#L135: 		return fmt.Errorf("can't encode channels.viewSponsoredMessage#beaedb94 as nil")
		tl_channels_view_sponsored_message_gen.go#L138: 		return fmt.Errorf("unable to encode channels.viewSponsoredMessage#beaedb94: field channel is nil")
		tl_channels_view_sponsored_message_gen.go#L141: 		return fmt.Errorf("unable to encode channels.viewSponsoredMessage#beaedb94: field channel: %w", err)
		tl_channels_view_sponsored_message_gen.go#L150: 		return fmt.Errorf("can't decode channels.viewSponsoredMessage#beaedb94 to nil")
		tl_channels_view_sponsored_message_gen.go#L153: 		return fmt.Errorf("unable to decode channels.viewSponsoredMessage#beaedb94: %w", err)
		tl_channels_view_sponsored_message_gen.go#L161: 		return fmt.Errorf("can't decode channels.viewSponsoredMessage#beaedb94 to nil")
		tl_channels_view_sponsored_message_gen.go#L166: 			return fmt.Errorf("unable to decode channels.viewSponsoredMessage#beaedb94: field channel: %w", err)
		tl_channels_view_sponsored_message_gen.go#L173: 			return fmt.Errorf("unable to decode channels.viewSponsoredMessage#beaedb94: field random_id: %w", err)
		tl_chat_admin_rights_gen.go#L393: 		return fmt.Errorf("can't encode chatAdminRights#5fb224d5 as nil")
		tl_chat_admin_rights_gen.go#L402: 		return fmt.Errorf("can't encode chatAdminRights#5fb224d5 as nil")
		tl_chat_admin_rights_gen.go#L406: 		return fmt.Errorf("unable to encode chatAdminRights#5fb224d5: field flags: %w", err)
		tl_chat_admin_rights_gen.go#L414: 		return fmt.Errorf("can't decode chatAdminRights#5fb224d5 to nil")
		tl_chat_admin_rights_gen.go#L417: 		return fmt.Errorf("unable to decode chatAdminRights#5fb224d5: %w", err)
		tl_chat_admin_rights_gen.go#L425: 		return fmt.Errorf("can't decode chatAdminRights#5fb224d5 to nil")
		tl_chat_admin_rights_gen.go#L429: 			return fmt.Errorf("unable to decode chatAdminRights#5fb224d5: field flags: %w", err)
		tl_chat_admin_with_invites_gen.go#L137: 		return fmt.Errorf("can't encode chatAdminWithInvites#f2ecef23 as nil")
		tl_chat_admin_with_invites_gen.go#L146: 		return fmt.Errorf("can't encode chatAdminWithInvites#f2ecef23 as nil")
		tl_chat_admin_with_invites_gen.go#L157: 		return fmt.Errorf("can't decode chatAdminWithInvites#f2ecef23 to nil")
		tl_chat_admin_with_invites_gen.go#L160: 		return fmt.Errorf("unable to decode chatAdminWithInvites#f2ecef23: %w", err)
		tl_chat_admin_with_invites_gen.go#L168: 		return fmt.Errorf("can't decode chatAdminWithInvites#f2ecef23 to nil")
		tl_chat_admin_with_invites_gen.go#L173: 			return fmt.Errorf("unable to decode chatAdminWithInvites#f2ecef23: field admin_id: %w", err)
		tl_chat_admin_with_invites_gen.go#L180: 			return fmt.Errorf("unable to decode chatAdminWithInvites#f2ecef23: field invites_count: %w", err)
		tl_chat_admin_with_invites_gen.go#L187: 			return fmt.Errorf("unable to decode chatAdminWithInvites#f2ecef23: field revoked_invites_count: %w", err)
		tl_chat_banned_rights_gen.go#L492: 		return fmt.Errorf("can't encode chatBannedRights#9f120418 as nil")
		tl_chat_banned_rights_gen.go#L501: 		return fmt.Errorf("can't encode chatBannedRights#9f120418 as nil")
		tl_chat_banned_rights_gen.go#L505: 		return fmt.Errorf("unable to encode chatBannedRights#9f120418: field flags: %w", err)
		tl_chat_banned_rights_gen.go#L514: 		return fmt.Errorf("can't decode chatBannedRights#9f120418 to nil")
		tl_chat_banned_rights_gen.go#L517: 		return fmt.Errorf("unable to decode chatBannedRights#9f120418: %w", err)
		tl_chat_banned_rights_gen.go#L525: 		return fmt.Errorf("can't decode chatBannedRights#9f120418 to nil")
		tl_chat_banned_rights_gen.go#L529: 			return fmt.Errorf("unable to decode chatBannedRights#9f120418: field flags: %w", err)
		tl_chat_banned_rights_gen.go#L555: 			return fmt.Errorf("unable to decode chatBannedRights#9f120418: field until_date: %w", err)
		tl_chat_full_gen.go#L475: 		return fmt.Errorf("can't encode chatFull#c9d31138 as nil")
		tl_chat_full_gen.go#L484: 		return fmt.Errorf("can't encode chatFull#c9d31138 as nil")
		tl_chat_full_gen.go#L488: 		return fmt.Errorf("unable to encode chatFull#c9d31138: field flags: %w", err)
		tl_chat_full_gen.go#L493: 		return fmt.Errorf("unable to encode chatFull#c9d31138: field participants is nil")
		tl_chat_full_gen.go#L496: 		return fmt.Errorf("unable to encode chatFull#c9d31138: field participants: %w", err)
		tl_chat_full_gen.go#L500: 			return fmt.Errorf("unable to encode chatFull#c9d31138: field chat_photo is nil")
		tl_chat_full_gen.go#L503: 			return fmt.Errorf("unable to encode chatFull#c9d31138: field chat_photo: %w", err)
		tl_chat_full_gen.go#L507: 		return fmt.Errorf("unable to encode chatFull#c9d31138: field notify_settings: %w", err)
		tl_chat_full_gen.go#L511: 			return fmt.Errorf("unable to encode chatFull#c9d31138: field exported_invite is nil")
		tl_chat_full_gen.go#L514: 			return fmt.Errorf("unable to encode chatFull#c9d31138: field exported_invite: %w", err)
		tl_chat_full_gen.go#L521: 				return fmt.Errorf("unable to encode chatFull#c9d31138: field bot_info element with index %d: %w", idx, err)
		tl_chat_full_gen.go#L533: 			return fmt.Errorf("unable to encode chatFull#c9d31138: field call: %w", err)
		tl_chat_full_gen.go#L541: 			return fmt.Errorf("unable to encode chatFull#c9d31138: field groupcall_default_join_as is nil")
		tl_chat_full_gen.go#L544: 			return fmt.Errorf("unable to encode chatFull#c9d31138: field groupcall_default_join_as: %w", err)
		tl_chat_full_gen.go#L561: 			return fmt.Errorf("unable to encode chatFull#c9d31138: field available_reactions is nil")
		tl_chat_full_gen.go#L564: 			return fmt.Errorf("unable to encode chatFull#c9d31138: field available_reactions: %w", err)
		tl_chat_full_gen.go#L573: 		return fmt.Errorf("can't decode chatFull#c9d31138 to nil")
		tl_chat_full_gen.go#L576: 		return fmt.Errorf("unable to decode chatFull#c9d31138: %w", err)
		tl_chat_full_gen.go#L584: 		return fmt.Errorf("can't decode chatFull#c9d31138 to nil")
		tl_chat_full_gen.go#L588: 			return fmt.Errorf("unable to decode chatFull#c9d31138: field flags: %w", err)
		tl_chat_full_gen.go#L597: 			return fmt.Errorf("unable to decode chatFull#c9d31138: field id: %w", err)
		tl_chat_full_gen.go#L604: 			return fmt.Errorf("unable to decode chatFull#c9d31138: field about: %w", err)
		tl_chat_full_gen.go#L611: 			return fmt.Errorf("unable to decode chatFull#c9d31138: field participants: %w", err)
		tl_chat_full_gen.go#L618: 			return fmt.Errorf("unable to decode chatFull#c9d31138: field chat_photo: %w", err)
		tl_chat_full_gen.go#L624: 			return fmt.Errorf("unable to decode chatFull#c9d31138: field notify_settings: %w", err)
		tl_chat_full_gen.go#L630: 			return fmt.Errorf("unable to decode chatFull#c9d31138: field exported_invite: %w", err)
		tl_chat_full_gen.go#L637: 			return fmt.Errorf("unable to decode chatFull#c9d31138: field bot_info: %w", err)
		tl_chat_full_gen.go#L646: 				return fmt.Errorf("unable to decode chatFull#c9d31138: field bot_info: %w", err)
		tl_chat_full_gen.go#L654: 			return fmt.Errorf("unable to decode chatFull#c9d31138: field pinned_msg_id: %w", err)
		tl_chat_full_gen.go#L661: 			return fmt.Errorf("unable to decode chatFull#c9d31138: field folder_id: %w", err)
		tl_chat_full_gen.go#L667: 			return fmt.Errorf("unable to decode chatFull#c9d31138: field call: %w", err)
		tl_chat_full_gen.go#L673: 			return fmt.Errorf("unable to decode chatFull#c9d31138: field ttl_period: %w", err)
		tl_chat_full_gen.go#L680: 			return fmt.Errorf("unable to decode chatFull#c9d31138: field groupcall_default_join_as: %w", err)
		tl_chat_full_gen.go#L687: 			return fmt.Errorf("unable to decode chatFull#c9d31138: field theme_emoticon: %w", err)
		tl_chat_full_gen.go#L694: 			return fmt.Errorf("unable to decode chatFull#c9d31138: field requests_pending: %w", err)
		tl_chat_full_gen.go#L701: 			return fmt.Errorf("unable to decode chatFull#c9d31138: field recent_requesters: %w", err)
		tl_chat_full_gen.go#L710: 				return fmt.Errorf("unable to decode chatFull#c9d31138: field recent_requesters: %w", err)
		tl_chat_full_gen.go#L718: 			return fmt.Errorf("unable to decode chatFull#c9d31138: field available_reactions: %w", err)
		tl_chat_full_gen.go#L2069: 		return fmt.Errorf("can't encode channelFull#f2bcb6f as nil")
		tl_chat_full_gen.go#L2078: 		return fmt.Errorf("can't encode channelFull#f2bcb6f as nil")
		tl_chat_full_gen.go#L2082: 		return fmt.Errorf("unable to encode channelFull#f2bcb6f: field flags: %w", err)
		tl_chat_full_gen.go#L2085: 		return fmt.Errorf("unable to encode channelFull#f2bcb6f: field flags2: %w", err)
		tl_chat_full_gen.go#L2108: 		return fmt.Errorf("unable to encode channelFull#f2bcb6f: field chat_photo is nil")
		tl_chat_full_gen.go#L2111: 		return fmt.Errorf("unable to encode channelFull#f2bcb6f: field chat_photo: %w", err)
		tl_chat_full_gen.go#L2114: 		return fmt.Errorf("unable to encode channelFull#f2bcb6f: field notify_settings: %w", err)
		tl_chat_full_gen.go#L2118: 			return fmt.Errorf("unable to encode channelFull#f2bcb6f: field exported_invite is nil")
		tl_chat_full_gen.go#L2121: 			return fmt.Errorf("unable to encode channelFull#f2bcb6f: field exported_invite: %w", err)
		tl_chat_full_gen.go#L2127: 			return fmt.Errorf("unable to encode channelFull#f2bcb6f: field bot_info element with index %d: %w", idx, err)
		tl_chat_full_gen.go#L2141: 			return fmt.Errorf("unable to encode channelFull#f2bcb6f: field stickerset: %w", err)
		tl_chat_full_gen.go#L2155: 			return fmt.Errorf("unable to encode channelFull#f2bcb6f: field location is nil")
		tl_chat_full_gen.go#L2158: 			return fmt.Errorf("unable to encode channelFull#f2bcb6f: field location: %w", err)
		tl_chat_full_gen.go#L2173: 			return fmt.Errorf("unable to encode channelFull#f2bcb6f: field call: %w", err)
		tl_chat_full_gen.go#L2187: 			return fmt.Errorf("unable to encode channelFull#f2bcb6f: field groupcall_default_join_as is nil")
		tl_chat_full_gen.go#L2190: 			return fmt.Errorf("unable to encode channelFull#f2bcb6f: field groupcall_default_join_as: %w", err)
		tl_chat_full_gen.go#L2207: 			return fmt.Errorf("unable to encode channelFull#f2bcb6f: field default_send_as is nil")
		tl_chat_full_gen.go#L2210: 			return fmt.Errorf("unable to encode channelFull#f2bcb6f: field default_send_as: %w", err)
		tl_chat_full_gen.go#L2215: 			return fmt.Errorf("unable to encode channelFull#f2bcb6f: field available_reactions is nil")
		tl_chat_full_gen.go#L2218: 			return fmt.Errorf("unable to encode channelFull#f2bcb6f: field available_reactions: %w", err)
		tl_chat_full_gen.go#L2223: 			return fmt.Errorf("unable to encode channelFull#f2bcb6f: field stories: %w", err)
		tl_chat_full_gen.go#L2228: 			return fmt.Errorf("unable to encode channelFull#f2bcb6f: field wallpaper is nil")
		tl_chat_full_gen.go#L2231: 			return fmt.Errorf("unable to encode channelFull#f2bcb6f: field wallpaper: %w", err)
		tl_chat_full_gen.go#L2240: 		return fmt.Errorf("can't decode channelFull#f2bcb6f to nil")
		tl_chat_full_gen.go#L2243: 		return fmt.Errorf("unable to decode channelFull#f2bcb6f: %w", err)
		tl_chat_full_gen.go#L2251: 		return fmt.Errorf("can't decode channelFull#f2bcb6f to nil")
		tl_chat_full_gen.go#L2255: 			return fmt.Errorf("unable to decode channelFull#f2bcb6f: field flags: %w", err)
		tl_chat_full_gen.go#L2268: 			return fmt.Errorf("unable to decode channelFull#f2bcb6f: field flags2: %w", err)
		tl_chat_full_gen.go#L2280: 			return fmt.Errorf("unable to decode channelFull#f2bcb6f: field id: %w", err)
		tl_chat_full_gen.go#L2287: 			return fmt.Errorf("unable to decode channelFull#f2bcb6f: field about: %w", err)
		tl_chat_full_gen.go#L2294: 			return fmt.Errorf("unable to decode channelFull#f2bcb6f: field participants_count: %w", err)
		tl_chat_full_gen.go#L2301: 			return fmt.Errorf("unable to decode channelFull#f2bcb6f: field admins_count: %w", err)
		tl_chat_full_gen.go#L2308: 			return fmt.Errorf("unable to decode channelFull#f2bcb6f: field kicked_count: %w", err)
		tl_chat_full_gen.go#L2315: 			return fmt.Errorf("unable to decode channelFull#f2bcb6f: field banned_count: %w", err)
		tl_chat_full_gen.go#L2322: 			return fmt.Errorf("unable to decode channelFull#f2bcb6f: field online_count: %w", err)
		tl_chat_full_gen.go#L2329: 			return fmt.Errorf("unable to decode channelFull#f2bcb6f: field read_inbox_max_id: %w", err)
		tl_chat_full_gen.go#L2336: 			return fmt.Errorf("unable to decode channelFull#f2bcb6f: field read_outbox_max_id: %w", err)
		tl_chat_full_gen.go#L2343: 			return fmt.Errorf("unable to decode channelFull#f2bcb6f: field unread_count: %w", err)
		tl_chat_full_gen.go#L2350: 			return fmt.Errorf("unable to decode channelFull#f2bcb6f: field chat_photo: %w", err)
		tl_chat_full_gen.go#L2356: 			return fmt.Errorf("unable to decode channelFull#f2bcb6f: field notify_settings: %w", err)
		tl_chat_full_gen.go#L2362: 			return fmt.Errorf("unable to decode channelFull#f2bcb6f: field exported_invite: %w", err)
		tl_chat_full_gen.go#L2369: 			return fmt.Errorf("unable to decode channelFull#f2bcb6f: field bot_info: %w", err)
		tl_chat_full_gen.go#L2378: 				return fmt.Errorf("unable to decode channelFull#f2bcb6f: field bot_info: %w", err)
		tl_chat_full_gen.go#L2386: 			return fmt.Errorf("unable to decode channelFull#f2bcb6f: field migrated_from_chat_id: %w", err)
		tl_chat_full_gen.go#L2393: 			return fmt.Errorf("unable to decode channelFull#f2bcb6f: field migrated_from_max_id: %w", err)
		tl_chat_full_gen.go#L2400: 			return fmt.Errorf("unable to decode channelFull#f2bcb6f: field pinned_msg_id: %w", err)
		tl_chat_full_gen.go#L2406: 			return fmt.Errorf("unable to decode channelFull#f2bcb6f: field stickerset: %w", err)
		tl_chat_full_gen.go#L2412: 			return fmt.Errorf("unable to decode channelFull#f2bcb6f: field available_min_id: %w", err)
		tl_chat_full_gen.go#L2419: 			return fmt.Errorf("unable to decode channelFull#f2bcb6f: field folder_id: %w", err)
		tl_chat_full_gen.go#L2426: 			return fmt.Errorf("unable to decode channelFull#f2bcb6f: field linked_chat_id: %w", err)
		tl_chat_full_gen.go#L2433: 			return fmt.Errorf("unable to decode channelFull#f2bcb6f: field location: %w", err)
		tl_chat_full_gen.go#L2440: 			return fmt.Errorf("unable to decode channelFull#f2bcb6f: field slowmode_seconds: %w", err)
		tl_chat_full_gen.go#L2447: 			return fmt.Errorf("unable to decode channelFull#f2bcb6f: field slowmode_next_send_date: %w", err)
		tl_chat_full_gen.go#L2454: 			return fmt.Errorf("unable to decode channelFull#f2bcb6f: field stats_dc: %w", err)
		tl_chat_full_gen.go#L2461: 			return fmt.Errorf("unable to decode channelFull#f2bcb6f: field pts: %w", err)
		tl_chat_full_gen.go#L2467: 			return fmt.Errorf("unable to decode channelFull#f2bcb6f: field call: %w", err)
		tl_chat_full_gen.go#L2473: 			return fmt.Errorf("unable to decode channelFull#f2bcb6f: field ttl_period: %w", err)
		tl_chat_full_gen.go#L2480: 			return fmt.Errorf("unable to decode channelFull#f2bcb6f: field pending_suggestions: %w", err)
		tl_chat_full_gen.go#L2489: 				return fmt.Errorf("unable to decode channelFull#f2bcb6f: field pending_suggestions: %w", err)
		tl_chat_full_gen.go#L2497: 			return fmt.Errorf("unable to decode channelFull#f2bcb6f: field groupcall_default_join_as: %w", err)
		tl_chat_full_gen.go#L2504: 			return fmt.Errorf("unable to decode channelFull#f2bcb6f: field theme_emoticon: %w", err)
		tl_chat_full_gen.go#L2511: 			return fmt.Errorf("unable to decode channelFull#f2bcb6f: field requests_pending: %w", err)
		tl_chat_full_gen.go#L2518: 			return fmt.Errorf("unable to decode channelFull#f2bcb6f: field recent_requesters: %w", err)
		tl_chat_full_gen.go#L2527: 				return fmt.Errorf("unable to decode channelFull#f2bcb6f: field recent_requesters: %w", err)
		tl_chat_full_gen.go#L2535: 			return fmt.Errorf("unable to decode channelFull#f2bcb6f: field default_send_as: %w", err)
		tl_chat_full_gen.go#L2542: 			return fmt.Errorf("unable to decode channelFull#f2bcb6f: field available_reactions: %w", err)
		tl_chat_full_gen.go#L2548: 			return fmt.Errorf("unable to decode channelFull#f2bcb6f: field stories: %w", err)
		tl_chat_full_gen.go#L2554: 			return fmt.Errorf("unable to decode channelFull#f2bcb6f: field wallpaper: %w", err)
		tl_chat_full_gen.go#L3520: 			return nil, fmt.Errorf("unable to decode ChatFullClass: %w", err)
		tl_chat_full_gen.go#L3527: 			return nil, fmt.Errorf("unable to decode ChatFullClass: %w", err)
		tl_chat_full_gen.go#L3531: 		return nil, fmt.Errorf("unable to decode ChatFullClass: %w", bin.NewUnexpectedID(id))
		tl_chat_full_gen.go#L3543: 		return fmt.Errorf("unable to decode ChatFullBox to nil")
		tl_chat_full_gen.go#L3547: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_chat_full_gen.go#L3556: 		return fmt.Errorf("unable to encode ChatFullClass as nil")
		tl_chat_gen.go#L120: 		return fmt.Errorf("can't encode chatEmpty#29562865 as nil")
		tl_chat_gen.go#L129: 		return fmt.Errorf("can't encode chatEmpty#29562865 as nil")
		tl_chat_gen.go#L138: 		return fmt.Errorf("can't decode chatEmpty#29562865 to nil")
		tl_chat_gen.go#L141: 		return fmt.Errorf("unable to decode chatEmpty#29562865: %w", err)
		tl_chat_gen.go#L149: 		return fmt.Errorf("can't decode chatEmpty#29562865 to nil")
		tl_chat_gen.go#L154: 			return fmt.Errorf("unable to decode chatEmpty#29562865: field id: %w", err)
		tl_chat_gen.go#L487: 		return fmt.Errorf("can't encode chat#41cbf256 as nil")
		tl_chat_gen.go#L496: 		return fmt.Errorf("can't encode chat#41cbf256 as nil")
		tl_chat_gen.go#L500: 		return fmt.Errorf("unable to encode chat#41cbf256: field flags: %w", err)
		tl_chat_gen.go#L505: 		return fmt.Errorf("unable to encode chat#41cbf256: field photo is nil")
		tl_chat_gen.go#L508: 		return fmt.Errorf("unable to encode chat#41cbf256: field photo: %w", err)
		tl_chat_gen.go#L515: 			return fmt.Errorf("unable to encode chat#41cbf256: field migrated_to is nil")
		tl_chat_gen.go#L518: 			return fmt.Errorf("unable to encode chat#41cbf256: field migrated_to: %w", err)
		tl_chat_gen.go#L523: 			return fmt.Errorf("unable to encode chat#41cbf256: field admin_rights: %w", err)
		tl_chat_gen.go#L528: 			return fmt.Errorf("unable to encode chat#41cbf256: field default_banned_rights: %w", err)
		tl_chat_gen.go#L537: 		return fmt.Errorf("can't decode chat#41cbf256 to nil")
		tl_chat_gen.go#L540: 		return fmt.Errorf("unable to decode chat#41cbf256: %w", err)
		tl_chat_gen.go#L548: 		return fmt.Errorf("can't decode chat#41cbf256 to nil")
		tl_chat_gen.go#L552: 			return fmt.Errorf("unable to decode chat#41cbf256: field flags: %w", err)
		tl_chat_gen.go#L564: 			return fmt.Errorf("unable to decode chat#41cbf256: field id: %w", err)
		tl_chat_gen.go#L571: 			return fmt.Errorf("unable to decode chat#41cbf256: field title: %w", err)
		tl_chat_gen.go#L578: 			return fmt.Errorf("unable to decode chat#41cbf256: field photo: %w", err)
		tl_chat_gen.go#L585: 			return fmt.Errorf("unable to decode chat#41cbf256: field participants_count: %w", err)
		tl_chat_gen.go#L592: 			return fmt.Errorf("unable to decode chat#41cbf256: field date: %w", err)
		tl_chat_gen.go#L599: 			return fmt.Errorf("unable to decode chat#41cbf256: field version: %w", err)
		tl_chat_gen.go#L606: 			return fmt.Errorf("unable to decode chat#41cbf256: field migrated_to: %w", err)
		tl_chat_gen.go#L612: 			return fmt.Errorf("unable to decode chat#41cbf256: field admin_rights: %w", err)
		tl_chat_gen.go#L617: 			return fmt.Errorf("unable to decode chat#41cbf256: field default_banned_rights: %w", err)
		tl_chat_gen.go#L937: 		return fmt.Errorf("can't encode chatForbidden#6592a1a7 as nil")
		tl_chat_gen.go#L946: 		return fmt.Errorf("can't encode chatForbidden#6592a1a7 as nil")
		tl_chat_gen.go#L956: 		return fmt.Errorf("can't decode chatForbidden#6592a1a7 to nil")
		tl_chat_gen.go#L959: 		return fmt.Errorf("unable to decode chatForbidden#6592a1a7: %w", err)
		tl_chat_gen.go#L967: 		return fmt.Errorf("can't decode chatForbidden#6592a1a7 to nil")
		tl_chat_gen.go#L972: 			return fmt.Errorf("unable to decode chatForbidden#6592a1a7: field id: %w", err)
		tl_chat_gen.go#L979: 			return fmt.Errorf("unable to decode chatForbidden#6592a1a7: field title: %w", err)
		tl_chat_gen.go#L1797: 		return fmt.Errorf("can't encode channel#aadfc8f as nil")
		tl_chat_gen.go#L1806: 		return fmt.Errorf("can't encode channel#aadfc8f as nil")
		tl_chat_gen.go#L1810: 		return fmt.Errorf("unable to encode channel#aadfc8f: field flags: %w", err)
		tl_chat_gen.go#L1813: 		return fmt.Errorf("unable to encode channel#aadfc8f: field flags2: %w", err)
		tl_chat_gen.go#L1824: 		return fmt.Errorf("unable to encode channel#aadfc8f: field photo is nil")
		tl_chat_gen.go#L1827: 		return fmt.Errorf("unable to encode channel#aadfc8f: field photo: %w", err)
		tl_chat_gen.go#L1834: 				return fmt.Errorf("unable to encode channel#aadfc8f: field restriction_reason element with index %d: %w", idx, err)
		tl_chat_gen.go#L1840: 			return fmt.Errorf("unable to encode channel#aadfc8f: field admin_rights: %w", err)
		tl_chat_gen.go#L1845: 			return fmt.Errorf("unable to encode channel#aadfc8f: field banned_rights: %w", err)
		tl_chat_gen.go#L1850: 			return fmt.Errorf("unable to encode channel#aadfc8f: field default_banned_rights: %w", err)
		tl_chat_gen.go#L1860: 				return fmt.Errorf("unable to encode channel#aadfc8f: field usernames element with index %d: %w", idx, err)
		tl_chat_gen.go#L1869: 			return fmt.Errorf("unable to encode channel#aadfc8f: field color: %w", err)
		tl_chat_gen.go#L1874: 			return fmt.Errorf("unable to encode channel#aadfc8f: field profile_color: %w", err)
		tl_chat_gen.go#L1879: 			return fmt.Errorf("unable to encode channel#aadfc8f: field emoji_status is nil")
		tl_chat_gen.go#L1882: 			return fmt.Errorf("unable to encode channel#aadfc8f: field emoji_status: %w", err)
		tl_chat_gen.go#L1894: 		return fmt.Errorf("can't decode channel#aadfc8f to nil")
		tl_chat_gen.go#L1897: 		return fmt.Errorf("unable to decode channel#aadfc8f: %w", err)
		tl_chat_gen.go#L1905: 		return fmt.Errorf("can't decode channel#aadfc8f to nil")
		tl_chat_gen.go#L1909: 			return fmt.Errorf("unable to decode channel#aadfc8f: field flags: %w", err)
		tl_chat_gen.go#L1934: 			return fmt.Errorf("unable to decode channel#aadfc8f: field flags2: %w", err)
		tl_chat_gen.go#L1943: 			return fmt.Errorf("unable to decode channel#aadfc8f: field id: %w", err)
		tl_chat_gen.go#L1950: 			return fmt.Errorf("unable to decode channel#aadfc8f: field access_hash: %w", err)
		tl_chat_gen.go#L1957: 			return fmt.Errorf("unable to decode channel#aadfc8f: field title: %w", err)
		tl_chat_gen.go#L1964: 			return fmt.Errorf("unable to decode channel#aadfc8f: field username: %w", err)
		tl_chat_gen.go#L1971: 			return fmt.Errorf("unable to decode channel#aadfc8f: field photo: %w", err)
		tl_chat_gen.go#L1978: 			return fmt.Errorf("unable to decode channel#aadfc8f: field date: %w", err)
		tl_chat_gen.go#L1985: 			return fmt.Errorf("unable to decode channel#aadfc8f: field restriction_reason: %w", err)
		tl_chat_gen.go#L1994: 				return fmt.Errorf("unable to decode channel#aadfc8f: field restriction_reason: %w", err)
		tl_chat_gen.go#L2001: 			return fmt.Errorf("unable to decode channel#aadfc8f: field admin_rights: %w", err)
		tl_chat_gen.go#L2006: 			return fmt.Errorf("unable to decode channel#aadfc8f: field banned_rights: %w", err)
		tl_chat_gen.go#L2011: 			return fmt.Errorf("unable to decode channel#aadfc8f: field default_banned_rights: %w", err)
		tl_chat_gen.go#L2017: 			return fmt.Errorf("unable to decode channel#aadfc8f: field participants_count: %w", err)
		tl_chat_gen.go#L2024: 			return fmt.Errorf("unable to decode channel#aadfc8f: field usernames: %w", err)
		tl_chat_gen.go#L2033: 				return fmt.Errorf("unable to decode channel#aadfc8f: field usernames: %w", err)
		tl_chat_gen.go#L2041: 			return fmt.Errorf("unable to decode channel#aadfc8f: field stories_max_id: %w", err)
		tl_chat_gen.go#L2047: 			return fmt.Errorf("unable to decode channel#aadfc8f: field color: %w", err)
		tl_chat_gen.go#L2052: 			return fmt.Errorf("unable to decode channel#aadfc8f: field profile_color: %w", err)
		tl_chat_gen.go#L2058: 			return fmt.Errorf("unable to decode channel#aadfc8f: field emoji_status: %w", err)
		tl_chat_gen.go#L2065: 			return fmt.Errorf("unable to decode channel#aadfc8f: field level: %w", err)
		tl_chat_gen.go#L2946: 		return fmt.Errorf("can't encode channelForbidden#17d493d5 as nil")
		tl_chat_gen.go#L2955: 		return fmt.Errorf("can't encode channelForbidden#17d493d5 as nil")
		tl_chat_gen.go#L2959: 		return fmt.Errorf("unable to encode channelForbidden#17d493d5: field flags: %w", err)
		tl_chat_gen.go#L2973: 		return fmt.Errorf("can't decode channelForbidden#17d493d5 to nil")
		tl_chat_gen.go#L2976: 		return fmt.Errorf("unable to decode channelForbidden#17d493d5: %w", err)
		tl_chat_gen.go#L2984: 		return fmt.Errorf("can't decode channelForbidden#17d493d5 to nil")
		tl_chat_gen.go#L2988: 			return fmt.Errorf("unable to decode channelForbidden#17d493d5: field flags: %w", err)
		tl_chat_gen.go#L2996: 			return fmt.Errorf("unable to decode channelForbidden#17d493d5: field id: %w", err)
		tl_chat_gen.go#L3003: 			return fmt.Errorf("unable to decode channelForbidden#17d493d5: field access_hash: %w", err)
		tl_chat_gen.go#L3010: 			return fmt.Errorf("unable to decode channelForbidden#17d493d5: field title: %w", err)
		tl_chat_gen.go#L3017: 			return fmt.Errorf("unable to decode channelForbidden#17d493d5: field until_date: %w", err)
		tl_chat_gen.go#L3396: 			return nil, fmt.Errorf("unable to decode ChatClass: %w", err)
		tl_chat_gen.go#L3403: 			return nil, fmt.Errorf("unable to decode ChatClass: %w", err)
		tl_chat_gen.go#L3410: 			return nil, fmt.Errorf("unable to decode ChatClass: %w", err)
		tl_chat_gen.go#L3417: 			return nil, fmt.Errorf("unable to decode ChatClass: %w", err)
		tl_chat_gen.go#L3424: 			return nil, fmt.Errorf("unable to decode ChatClass: %w", err)
		tl_chat_gen.go#L3428: 		return nil, fmt.Errorf("unable to decode ChatClass: %w", bin.NewUnexpectedID(id))
		tl_chat_gen.go#L3440: 		return fmt.Errorf("unable to decode ChatBox to nil")
		tl_chat_gen.go#L3444: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_chat_gen.go#L3453: 		return fmt.Errorf("unable to encode ChatClass as nil")
		tl_chat_invite_gen.go#L120: 		return fmt.Errorf("can't encode chatInviteAlready#5a686d7c as nil")
		tl_chat_invite_gen.go#L129: 		return fmt.Errorf("can't encode chatInviteAlready#5a686d7c as nil")
		tl_chat_invite_gen.go#L132: 		return fmt.Errorf("unable to encode chatInviteAlready#5a686d7c: field chat is nil")
		tl_chat_invite_gen.go#L135: 		return fmt.Errorf("unable to encode chatInviteAlready#5a686d7c: field chat: %w", err)
		tl_chat_invite_gen.go#L143: 		return fmt.Errorf("can't decode chatInviteAlready#5a686d7c to nil")
		tl_chat_invite_gen.go#L146: 		return fmt.Errorf("unable to decode chatInviteAlready#5a686d7c: %w", err)
		tl_chat_invite_gen.go#L154: 		return fmt.Errorf("can't decode chatInviteAlready#5a686d7c to nil")
		tl_chat_invite_gen.go#L159: 			return fmt.Errorf("unable to decode chatInviteAlready#5a686d7c: field chat: %w", err)
		tl_chat_invite_gen.go#L485: 		return fmt.Errorf("can't encode chatInvite#cde0ec40 as nil")
		tl_chat_invite_gen.go#L494: 		return fmt.Errorf("can't encode chatInvite#cde0ec40 as nil")
		tl_chat_invite_gen.go#L498: 		return fmt.Errorf("unable to encode chatInvite#cde0ec40: field flags: %w", err)
		tl_chat_invite_gen.go#L505: 		return fmt.Errorf("unable to encode chatInvite#cde0ec40: field photo is nil")
		tl_chat_invite_gen.go#L508: 		return fmt.Errorf("unable to encode chatInvite#cde0ec40: field photo: %w", err)
		tl_chat_invite_gen.go#L515: 				return fmt.Errorf("unable to encode chatInvite#cde0ec40: field participants element with index %d is nil", idx)
		tl_chat_invite_gen.go#L518: 				return fmt.Errorf("unable to encode chatInvite#cde0ec40: field participants element with index %d: %w", idx, err)
		tl_chat_invite_gen.go#L529: 		return fmt.Errorf("can't decode chatInvite#cde0ec40 to nil")
		tl_chat_invite_gen.go#L532: 		return fmt.Errorf("unable to decode chatInvite#cde0ec40: %w", err)
		tl_chat_invite_gen.go#L540: 		return fmt.Errorf("can't decode chatInvite#cde0ec40 to nil")
		tl_chat_invite_gen.go#L544: 			return fmt.Errorf("unable to decode chatInvite#cde0ec40: field flags: %w", err)
		tl_chat_invite_gen.go#L558: 			return fmt.Errorf("unable to decode chatInvite#cde0ec40: field title: %w", err)
		tl_chat_invite_gen.go#L565: 			return fmt.Errorf("unable to decode chatInvite#cde0ec40: field about: %w", err)
		tl_chat_invite_gen.go#L572: 			return fmt.Errorf("unable to decode chatInvite#cde0ec40: field photo: %w", err)
		tl_chat_invite_gen.go#L579: 			return fmt.Errorf("unable to decode chatInvite#cde0ec40: field participants_count: %w", err)
		tl_chat_invite_gen.go#L586: 			return fmt.Errorf("unable to decode chatInvite#cde0ec40: field participants: %w", err)
		tl_chat_invite_gen.go#L595: 				return fmt.Errorf("unable to decode chatInvite#cde0ec40: field participants: %w", err)
		tl_chat_invite_gen.go#L603: 			return fmt.Errorf("unable to decode chatInvite#cde0ec40: field color: %w", err)
		tl_chat_invite_gen.go#L936: 		return fmt.Errorf("can't encode chatInvitePeek#61695cb0 as nil")
		tl_chat_invite_gen.go#L945: 		return fmt.Errorf("can't encode chatInvitePeek#61695cb0 as nil")
		tl_chat_invite_gen.go#L948: 		return fmt.Errorf("unable to encode chatInvitePeek#61695cb0: field chat is nil")
		tl_chat_invite_gen.go#L951: 		return fmt.Errorf("unable to encode chatInvitePeek#61695cb0: field chat: %w", err)
		tl_chat_invite_gen.go#L960: 		return fmt.Errorf("can't decode chatInvitePeek#61695cb0 to nil")
		tl_chat_invite_gen.go#L963: 		return fmt.Errorf("unable to decode chatInvitePeek#61695cb0: %w", err)
		tl_chat_invite_gen.go#L971: 		return fmt.Errorf("can't decode chatInvitePeek#61695cb0 to nil")
		tl_chat_invite_gen.go#L976: 			return fmt.Errorf("unable to decode chatInvitePeek#61695cb0: field chat: %w", err)
		tl_chat_invite_gen.go#L983: 			return fmt.Errorf("unable to decode chatInvitePeek#61695cb0: field expires: %w", err)
		tl_chat_invite_gen.go#L1055: 			return nil, fmt.Errorf("unable to decode ChatInviteClass: %w", err)
		tl_chat_invite_gen.go#L1062: 			return nil, fmt.Errorf("unable to decode ChatInviteClass: %w", err)
		tl_chat_invite_gen.go#L1069: 			return nil, fmt.Errorf("unable to decode ChatInviteClass: %w", err)
		tl_chat_invite_gen.go#L1073: 		return nil, fmt.Errorf("unable to decode ChatInviteClass: %w", bin.NewUnexpectedID(id))
		tl_chat_invite_gen.go#L1085: 		return fmt.Errorf("unable to decode ChatInviteBox to nil")
		tl_chat_invite_gen.go#L1089: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_chat_invite_gen.go#L1098: 		return fmt.Errorf("unable to encode ChatInviteClass as nil")
		tl_chat_invite_importer_gen.go#L217: 		return fmt.Errorf("can't encode chatInviteImporter#8c5adfd9 as nil")
		tl_chat_invite_importer_gen.go#L226: 		return fmt.Errorf("can't encode chatInviteImporter#8c5adfd9 as nil")
		tl_chat_invite_importer_gen.go#L230: 		return fmt.Errorf("unable to encode chatInviteImporter#8c5adfd9: field flags: %w", err)
		tl_chat_invite_importer_gen.go#L246: 		return fmt.Errorf("can't decode chatInviteImporter#8c5adfd9 to nil")
		tl_chat_invite_importer_gen.go#L249: 		return fmt.Errorf("unable to decode chatInviteImporter#8c5adfd9: %w", err)
		tl_chat_invite_importer_gen.go#L257: 		return fmt.Errorf("can't decode chatInviteImporter#8c5adfd9 to nil")
		tl_chat_invite_importer_gen.go#L261: 			return fmt.Errorf("unable to decode chatInviteImporter#8c5adfd9: field flags: %w", err)
		tl_chat_invite_importer_gen.go#L269: 			return fmt.Errorf("unable to decode chatInviteImporter#8c5adfd9: field user_id: %w", err)
		tl_chat_invite_importer_gen.go#L276: 			return fmt.Errorf("unable to decode chatInviteImporter#8c5adfd9: field date: %w", err)
		tl_chat_invite_importer_gen.go#L283: 			return fmt.Errorf("unable to decode chatInviteImporter#8c5adfd9: field about: %w", err)
		tl_chat_invite_importer_gen.go#L290: 			return fmt.Errorf("unable to decode chatInviteImporter#8c5adfd9: field approved_by: %w", err)
		tl_chat_onlines_gen.go#L115: 		return fmt.Errorf("can't encode chatOnlines#f041e250 as nil")
		tl_chat_onlines_gen.go#L124: 		return fmt.Errorf("can't encode chatOnlines#f041e250 as nil")
		tl_chat_onlines_gen.go#L133: 		return fmt.Errorf("can't decode chatOnlines#f041e250 to nil")
		tl_chat_onlines_gen.go#L136: 		return fmt.Errorf("unable to decode chatOnlines#f041e250: %w", err)
		tl_chat_onlines_gen.go#L144: 		return fmt.Errorf("can't decode chatOnlines#f041e250 to nil")
		tl_chat_onlines_gen.go#L149: 			return fmt.Errorf("unable to decode chatOnlines#f041e250: field onlines: %w", err)
		tl_chat_participant_gen.go#L142: 		return fmt.Errorf("can't encode chatParticipant#c02d4007 as nil")
		tl_chat_participant_gen.go#L151: 		return fmt.Errorf("can't encode chatParticipant#c02d4007 as nil")
		tl_chat_participant_gen.go#L162: 		return fmt.Errorf("can't decode chatParticipant#c02d4007 to nil")
		tl_chat_participant_gen.go#L165: 		return fmt.Errorf("unable to decode chatParticipant#c02d4007: %w", err)
		tl_chat_participant_gen.go#L173: 		return fmt.Errorf("can't decode chatParticipant#c02d4007 to nil")
		tl_chat_participant_gen.go#L178: 			return fmt.Errorf("unable to decode chatParticipant#c02d4007: field user_id: %w", err)
		tl_chat_participant_gen.go#L185: 			return fmt.Errorf("unable to decode chatParticipant#c02d4007: field inviter_id: %w", err)
		tl_chat_participant_gen.go#L192: 			return fmt.Errorf("unable to decode chatParticipant#c02d4007: field date: %w", err)
		tl_chat_participant_gen.go#L309: 		return fmt.Errorf("can't encode chatParticipantCreator#e46bcee4 as nil")
		tl_chat_participant_gen.go#L318: 		return fmt.Errorf("can't encode chatParticipantCreator#e46bcee4 as nil")
		tl_chat_participant_gen.go#L327: 		return fmt.Errorf("can't decode chatParticipantCreator#e46bcee4 to nil")
		tl_chat_participant_gen.go#L330: 		return fmt.Errorf("unable to decode chatParticipantCreator#e46bcee4: %w", err)
		tl_chat_participant_gen.go#L338: 		return fmt.Errorf("can't decode chatParticipantCreator#e46bcee4 to nil")
		tl_chat_participant_gen.go#L343: 			return fmt.Errorf("unable to decode chatParticipantCreator#e46bcee4: field user_id: %w", err)
		tl_chat_participant_gen.go#L466: 		return fmt.Errorf("can't encode chatParticipantAdmin#a0933f5b as nil")
		tl_chat_participant_gen.go#L475: 		return fmt.Errorf("can't encode chatParticipantAdmin#a0933f5b as nil")
		tl_chat_participant_gen.go#L486: 		return fmt.Errorf("can't decode chatParticipantAdmin#a0933f5b to nil")
		tl_chat_participant_gen.go#L489: 		return fmt.Errorf("unable to decode chatParticipantAdmin#a0933f5b: %w", err)
		tl_chat_participant_gen.go#L497: 		return fmt.Errorf("can't decode chatParticipantAdmin#a0933f5b to nil")
		tl_chat_participant_gen.go#L502: 			return fmt.Errorf("unable to decode chatParticipantAdmin#a0933f5b: field user_id: %w", err)
		tl_chat_participant_gen.go#L509: 			return fmt.Errorf("unable to decode chatParticipantAdmin#a0933f5b: field inviter_id: %w", err)
		tl_chat_participant_gen.go#L516: 			return fmt.Errorf("unable to decode chatParticipantAdmin#a0933f5b: field date: %w", err)
		tl_chat_participant_gen.go#L599: 			return nil, fmt.Errorf("unable to decode ChatParticipantClass: %w", err)
		tl_chat_participant_gen.go#L606: 			return nil, fmt.Errorf("unable to decode ChatParticipantClass: %w", err)
		tl_chat_participant_gen.go#L613: 			return nil, fmt.Errorf("unable to decode ChatParticipantClass: %w", err)
		tl_chat_participant_gen.go#L617: 		return nil, fmt.Errorf("unable to decode ChatParticipantClass: %w", bin.NewUnexpectedID(id))
		tl_chat_participant_gen.go#L629: 		return fmt.Errorf("unable to decode ChatParticipantBox to nil")
		tl_chat_participant_gen.go#L633: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_chat_participant_gen.go#L642: 		return fmt.Errorf("unable to encode ChatParticipantClass as nil")
		tl_chat_participants_gen.go#L152: 		return fmt.Errorf("can't encode chatParticipantsForbidden#8763d3e1 as nil")
		tl_chat_participants_gen.go#L161: 		return fmt.Errorf("can't encode chatParticipantsForbidden#8763d3e1 as nil")
		tl_chat_participants_gen.go#L165: 		return fmt.Errorf("unable to encode chatParticipantsForbidden#8763d3e1: field flags: %w", err)
		tl_chat_participants_gen.go#L170: 			return fmt.Errorf("unable to encode chatParticipantsForbidden#8763d3e1: field self_participant is nil")
		tl_chat_participants_gen.go#L173: 			return fmt.Errorf("unable to encode chatParticipantsForbidden#8763d3e1: field self_participant: %w", err)
		tl_chat_participants_gen.go#L182: 		return fmt.Errorf("can't decode chatParticipantsForbidden#8763d3e1 to nil")
		tl_chat_participants_gen.go#L185: 		return fmt.Errorf("unable to decode chatParticipantsForbidden#8763d3e1: %w", err)
		tl_chat_participants_gen.go#L193: 		return fmt.Errorf("can't decode chatParticipantsForbidden#8763d3e1 to nil")
		tl_chat_participants_gen.go#L197: 			return fmt.Errorf("unable to decode chatParticipantsForbidden#8763d3e1: field flags: %w", err)
		tl_chat_participants_gen.go#L203: 			return fmt.Errorf("unable to decode chatParticipantsForbidden#8763d3e1: field chat_id: %w", err)
		tl_chat_participants_gen.go#L210: 			return fmt.Errorf("unable to decode chatParticipantsForbidden#8763d3e1: field self_participant: %w", err)
		tl_chat_participants_gen.go#L351: 		return fmt.Errorf("can't encode chatParticipants#3cbc93f8 as nil")
		tl_chat_participants_gen.go#L360: 		return fmt.Errorf("can't encode chatParticipants#3cbc93f8 as nil")
		tl_chat_participants_gen.go#L366: 			return fmt.Errorf("unable to encode chatParticipants#3cbc93f8: field participants element with index %d is nil", idx)
		tl_chat_participants_gen.go#L369: 			return fmt.Errorf("unable to encode chatParticipants#3cbc93f8: field participants element with index %d: %w", idx, err)
		tl_chat_participants_gen.go#L379: 		return fmt.Errorf("can't decode chatParticipants#3cbc93f8 to nil")
		tl_chat_participants_gen.go#L382: 		return fmt.Errorf("unable to decode chatParticipants#3cbc93f8: %w", err)
		tl_chat_participants_gen.go#L390: 		return fmt.Errorf("can't decode chatParticipants#3cbc93f8 to nil")
		tl_chat_participants_gen.go#L395: 			return fmt.Errorf("unable to decode chatParticipants#3cbc93f8: field chat_id: %w", err)
		tl_chat_participants_gen.go#L402: 			return fmt.Errorf("unable to decode chatParticipants#3cbc93f8: field participants: %w", err)
		tl_chat_participants_gen.go#L411: 				return fmt.Errorf("unable to decode chatParticipants#3cbc93f8: field participants: %w", err)
		tl_chat_participants_gen.go#L419: 			return fmt.Errorf("unable to decode chatParticipants#3cbc93f8: field version: %w", err)
		tl_chat_participants_gen.go#L519: 			return nil, fmt.Errorf("unable to decode ChatParticipantsClass: %w", err)
		tl_chat_participants_gen.go#L526: 			return nil, fmt.Errorf("unable to decode ChatParticipantsClass: %w", err)
		tl_chat_participants_gen.go#L530: 		return nil, fmt.Errorf("unable to decode ChatParticipantsClass: %w", bin.NewUnexpectedID(id))
		tl_chat_participants_gen.go#L542: 		return fmt.Errorf("unable to decode ChatParticipantsBox to nil")
		tl_chat_participants_gen.go#L546: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_chat_participants_gen.go#L555: 		return fmt.Errorf("unable to encode ChatParticipantsClass as nil")
		tl_chat_photo_gen.go#L103: 		return fmt.Errorf("can't encode chatPhotoEmpty#37c1011c as nil")
		tl_chat_photo_gen.go#L112: 		return fmt.Errorf("can't encode chatPhotoEmpty#37c1011c as nil")
		tl_chat_photo_gen.go#L120: 		return fmt.Errorf("can't decode chatPhotoEmpty#37c1011c to nil")
		tl_chat_photo_gen.go#L123: 		return fmt.Errorf("unable to decode chatPhotoEmpty#37c1011c: %w", err)
		tl_chat_photo_gen.go#L131: 		return fmt.Errorf("can't decode chatPhotoEmpty#37c1011c to nil")
		tl_chat_photo_gen.go#L283: 		return fmt.Errorf("can't encode chatPhoto#1c6e1c11 as nil")
		tl_chat_photo_gen.go#L292: 		return fmt.Errorf("can't encode chatPhoto#1c6e1c11 as nil")
		tl_chat_photo_gen.go#L296: 		return fmt.Errorf("unable to encode chatPhoto#1c6e1c11: field flags: %w", err)
		tl_chat_photo_gen.go#L309: 		return fmt.Errorf("can't decode chatPhoto#1c6e1c11 to nil")
		tl_chat_photo_gen.go#L312: 		return fmt.Errorf("unable to decode chatPhoto#1c6e1c11: %w", err)
		tl_chat_photo_gen.go#L320: 		return fmt.Errorf("can't decode chatPhoto#1c6e1c11 to nil")
		tl_chat_photo_gen.go#L324: 			return fmt.Errorf("unable to decode chatPhoto#1c6e1c11: field flags: %w", err)
		tl_chat_photo_gen.go#L331: 			return fmt.Errorf("unable to decode chatPhoto#1c6e1c11: field photo_id: %w", err)
		tl_chat_photo_gen.go#L338: 			return fmt.Errorf("unable to decode chatPhoto#1c6e1c11: field stripped_thumb: %w", err)
		tl_chat_photo_gen.go#L345: 			return fmt.Errorf("unable to decode chatPhoto#1c6e1c11: field dc_id: %w", err)
		tl_chat_photo_gen.go#L466: 			return nil, fmt.Errorf("unable to decode ChatPhotoClass: %w", err)
		tl_chat_photo_gen.go#L473: 			return nil, fmt.Errorf("unable to decode ChatPhotoClass: %w", err)
		tl_chat_photo_gen.go#L477: 		return nil, fmt.Errorf("unable to decode ChatPhotoClass: %w", bin.NewUnexpectedID(id))
		tl_chat_photo_gen.go#L489: 		return fmt.Errorf("unable to decode ChatPhotoBox to nil")
		tl_chat_photo_gen.go#L493: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_chat_photo_gen.go#L502: 		return fmt.Errorf("unable to encode ChatPhotoClass as nil")
		tl_chat_reactions_gen.go#L103: 		return fmt.Errorf("can't encode chatReactionsNone#eafc32bc as nil")
		tl_chat_reactions_gen.go#L112: 		return fmt.Errorf("can't encode chatReactionsNone#eafc32bc as nil")
		tl_chat_reactions_gen.go#L120: 		return fmt.Errorf("can't decode chatReactionsNone#eafc32bc to nil")
		tl_chat_reactions_gen.go#L123: 		return fmt.Errorf("unable to decode chatReactionsNone#eafc32bc: %w", err)
		tl_chat_reactions_gen.go#L131: 		return fmt.Errorf("can't decode chatReactionsNone#eafc32bc to nil")
		tl_chat_reactions_gen.go#L238: 		return fmt.Errorf("can't encode chatReactionsAll#52928bca as nil")
		tl_chat_reactions_gen.go#L247: 		return fmt.Errorf("can't encode chatReactionsAll#52928bca as nil")
		tl_chat_reactions_gen.go#L251: 		return fmt.Errorf("unable to encode chatReactionsAll#52928bca: field flags: %w", err)
		tl_chat_reactions_gen.go#L259: 		return fmt.Errorf("can't decode chatReactionsAll#52928bca to nil")
		tl_chat_reactions_gen.go#L262: 		return fmt.Errorf("unable to decode chatReactionsAll#52928bca: %w", err)
		tl_chat_reactions_gen.go#L270: 		return fmt.Errorf("can't decode chatReactionsAll#52928bca to nil")
		tl_chat_reactions_gen.go#L274: 			return fmt.Errorf("unable to decode chatReactionsAll#52928bca: field flags: %w", err)
		tl_chat_reactions_gen.go#L390: 		return fmt.Errorf("can't encode chatReactionsSome#661d4037 as nil")
		tl_chat_reactions_gen.go#L399: 		return fmt.Errorf("can't encode chatReactionsSome#661d4037 as nil")
		tl_chat_reactions_gen.go#L404: 			return fmt.Errorf("unable to encode chatReactionsSome#661d4037: field reactions element with index %d is nil", idx)
		tl_chat_reactions_gen.go#L407: 			return fmt.Errorf("unable to encode chatReactionsSome#661d4037: field reactions element with index %d: %w", idx, err)
		tl_chat_reactions_gen.go#L416: 		return fmt.Errorf("can't decode chatReactionsSome#661d4037 to nil")
		tl_chat_reactions_gen.go#L419: 		return fmt.Errorf("unable to decode chatReactionsSome#661d4037: %w", err)
		tl_chat_reactions_gen.go#L427: 		return fmt.Errorf("can't decode chatReactionsSome#661d4037 to nil")
		tl_chat_reactions_gen.go#L432: 			return fmt.Errorf("unable to decode chatReactionsSome#661d4037: field reactions: %w", err)
		tl_chat_reactions_gen.go#L441: 				return fmt.Errorf("unable to decode chatReactionsSome#661d4037: field reactions: %w", err)
		tl_chat_reactions_gen.go#L511: 			return nil, fmt.Errorf("unable to decode ChatReactionsClass: %w", err)
		tl_chat_reactions_gen.go#L518: 			return nil, fmt.Errorf("unable to decode ChatReactionsClass: %w", err)
		tl_chat_reactions_gen.go#L525: 			return nil, fmt.Errorf("unable to decode ChatReactionsClass: %w", err)
		tl_chat_reactions_gen.go#L529: 		return nil, fmt.Errorf("unable to decode ChatReactionsClass: %w", bin.NewUnexpectedID(id))
		tl_chat_reactions_gen.go#L541: 		return fmt.Errorf("unable to decode ChatReactionsBox to nil")
		tl_chat_reactions_gen.go#L545: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_chat_reactions_gen.go#L554: 		return fmt.Errorf("unable to encode ChatReactionsClass as nil")
		tl_chatlists_chatlist_invite_gen.go#L167: 		return fmt.Errorf("can't encode chatlists.chatlistInviteAlready#fa87f659 as nil")
		tl_chatlists_chatlist_invite_gen.go#L176: 		return fmt.Errorf("can't encode chatlists.chatlistInviteAlready#fa87f659 as nil")
		tl_chatlists_chatlist_invite_gen.go#L182: 			return fmt.Errorf("unable to encode chatlists.chatlistInviteAlready#fa87f659: field missing_peers element with index %d is nil", idx)
		tl_chatlists_chatlist_invite_gen.go#L185: 			return fmt.Errorf("unable to encode chatlists.chatlistInviteAlready#fa87f659: field missing_peers element with index %d: %w", idx, err)
		tl_chatlists_chatlist_invite_gen.go#L191: 			return fmt.Errorf("unable to encode chatlists.chatlistInviteAlready#fa87f659: field already_peers element with index %d is nil", idx)
		tl_chatlists_chatlist_invite_gen.go#L194: 			return fmt.Errorf("unable to encode chatlists.chatlistInviteAlready#fa87f659: field already_peers element with index %d: %w", idx, err)
		tl_chatlists_chatlist_invite_gen.go#L200: 			return fmt.Errorf("unable to encode chatlists.chatlistInviteAlready#fa87f659: field chats element with index %d is nil", idx)
		tl_chatlists_chatlist_invite_gen.go#L203: 			return fmt.Errorf("unable to encode chatlists.chatlistInviteAlready#fa87f659: field chats element with index %d: %w", idx, err)
		tl_chatlists_chatlist_invite_gen.go#L209: 			return fmt.Errorf("unable to encode chatlists.chatlistInviteAlready#fa87f659: field users element with index %d is nil", idx)
		tl_chatlists_chatlist_invite_gen.go#L212: 			return fmt.Errorf("unable to encode chatlists.chatlistInviteAlready#fa87f659: field users element with index %d: %w", idx, err)
		tl_chatlists_chatlist_invite_gen.go#L221: 		return fmt.Errorf("can't decode chatlists.chatlistInviteAlready#fa87f659 to nil")
		tl_chatlists_chatlist_invite_gen.go#L224: 		return fmt.Errorf("unable to decode chatlists.chatlistInviteAlready#fa87f659: %w", err)
		tl_chatlists_chatlist_invite_gen.go#L232: 		return fmt.Errorf("can't decode chatlists.chatlistInviteAlready#fa87f659 to nil")
		tl_chatlists_chatlist_invite_gen.go#L237: 			return fmt.Errorf("unable to decode chatlists.chatlistInviteAlready#fa87f659: field filter_id: %w", err)
		tl_chatlists_chatlist_invite_gen.go#L244: 			return fmt.Errorf("unable to decode chatlists.chatlistInviteAlready#fa87f659: field missing_peers: %w", err)
		tl_chatlists_chatlist_invite_gen.go#L253: 				return fmt.Errorf("unable to decode chatlists.chatlistInviteAlready#fa87f659: field missing_peers: %w", err)
		tl_chatlists_chatlist_invite_gen.go#L261: 			return fmt.Errorf("unable to decode chatlists.chatlistInviteAlready#fa87f659: field already_peers: %w", err)
		tl_chatlists_chatlist_invite_gen.go#L270: 				return fmt.Errorf("unable to decode chatlists.chatlistInviteAlready#fa87f659: field already_peers: %w", err)
		tl_chatlists_chatlist_invite_gen.go#L278: 			return fmt.Errorf("unable to decode chatlists.chatlistInviteAlready#fa87f659: field chats: %w", err)
		tl_chatlists_chatlist_invite_gen.go#L287: 				return fmt.Errorf("unable to decode chatlists.chatlistInviteAlready#fa87f659: field chats: %w", err)
		tl_chatlists_chatlist_invite_gen.go#L295: 			return fmt.Errorf("unable to decode chatlists.chatlistInviteAlready#fa87f659: field users: %w", err)
		tl_chatlists_chatlist_invite_gen.go#L304: 				return fmt.Errorf("unable to decode chatlists.chatlistInviteAlready#fa87f659: field users: %w", err)
		tl_chatlists_chatlist_invite_gen.go#L526: 		return fmt.Errorf("can't encode chatlists.chatlistInvite#1dcd839d as nil")
		tl_chatlists_chatlist_invite_gen.go#L535: 		return fmt.Errorf("can't encode chatlists.chatlistInvite#1dcd839d as nil")
		tl_chatlists_chatlist_invite_gen.go#L539: 		return fmt.Errorf("unable to encode chatlists.chatlistInvite#1dcd839d: field flags: %w", err)
		tl_chatlists_chatlist_invite_gen.go#L548: 			return fmt.Errorf("unable to encode chatlists.chatlistInvite#1dcd839d: field peers element with index %d is nil", idx)
		tl_chatlists_chatlist_invite_gen.go#L551: 			return fmt.Errorf("unable to encode chatlists.chatlistInvite#1dcd839d: field peers element with index %d: %w", idx, err)
		tl_chatlists_chatlist_invite_gen.go#L557: 			return fmt.Errorf("unable to encode chatlists.chatlistInvite#1dcd839d: field chats element with index %d is nil", idx)
		tl_chatlists_chatlist_invite_gen.go#L560: 			return fmt.Errorf("unable to encode chatlists.chatlistInvite#1dcd839d: field chats element with index %d: %w", idx, err)
		tl_chatlists_chatlist_invite_gen.go#L566: 			return fmt.Errorf("unable to encode chatlists.chatlistInvite#1dcd839d: field users element with index %d is nil", idx)
		tl_chatlists_chatlist_invite_gen.go#L569: 			return fmt.Errorf("unable to encode chatlists.chatlistInvite#1dcd839d: field users element with index %d: %w", idx, err)
		tl_chatlists_chatlist_invite_gen.go#L578: 		return fmt.Errorf("can't decode chatlists.chatlistInvite#1dcd839d to nil")
		tl_chatlists_chatlist_invite_gen.go#L581: 		return fmt.Errorf("unable to decode chatlists.chatlistInvite#1dcd839d: %w", err)
		tl_chatlists_chatlist_invite_gen.go#L589: 		return fmt.Errorf("can't decode chatlists.chatlistInvite#1dcd839d to nil")
		tl_chatlists_chatlist_invite_gen.go#L593: 			return fmt.Errorf("unable to decode chatlists.chatlistInvite#1dcd839d: field flags: %w", err)
		tl_chatlists_chatlist_invite_gen.go#L599: 			return fmt.Errorf("unable to decode chatlists.chatlistInvite#1dcd839d: field title: %w", err)
		tl_chatlists_chatlist_invite_gen.go#L606: 			return fmt.Errorf("unable to decode chatlists.chatlistInvite#1dcd839d: field emoticon: %w", err)
		tl_chatlists_chatlist_invite_gen.go#L613: 			return fmt.Errorf("unable to decode chatlists.chatlistInvite#1dcd839d: field peers: %w", err)
		tl_chatlists_chatlist_invite_gen.go#L622: 				return fmt.Errorf("unable to decode chatlists.chatlistInvite#1dcd839d: field peers: %w", err)
		tl_chatlists_chatlist_invite_gen.go#L630: 			return fmt.Errorf("unable to decode chatlists.chatlistInvite#1dcd839d: field chats: %w", err)
		tl_chatlists_chatlist_invite_gen.go#L639: 				return fmt.Errorf("unable to decode chatlists.chatlistInvite#1dcd839d: field chats: %w", err)
		tl_chatlists_chatlist_invite_gen.go#L647: 			return fmt.Errorf("unable to decode chatlists.chatlistInvite#1dcd839d: field users: %w", err)
		tl_chatlists_chatlist_invite_gen.go#L656: 				return fmt.Errorf("unable to decode chatlists.chatlistInvite#1dcd839d: field users: %w", err)
		tl_chatlists_chatlist_invite_gen.go#L786: 			return nil, fmt.Errorf("unable to decode ChatlistsChatlistInviteClass: %w", err)
		tl_chatlists_chatlist_invite_gen.go#L793: 			return nil, fmt.Errorf("unable to decode ChatlistsChatlistInviteClass: %w", err)
		tl_chatlists_chatlist_invite_gen.go#L797: 		return nil, fmt.Errorf("unable to decode ChatlistsChatlistInviteClass: %w", bin.NewUnexpectedID(id))
		tl_chatlists_chatlist_invite_gen.go#L809: 		return fmt.Errorf("unable to decode ChatlistsChatlistInviteBox to nil")
		tl_chatlists_chatlist_invite_gen.go#L813: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_chatlists_chatlist_invite_gen.go#L822: 		return fmt.Errorf("unable to encode ChatlistsChatlistInviteClass as nil")
		tl_chatlists_chatlist_updates_gen.go#L140: 		return fmt.Errorf("can't encode chatlists.chatlistUpdates#93bd878d as nil")
		tl_chatlists_chatlist_updates_gen.go#L149: 		return fmt.Errorf("can't encode chatlists.chatlistUpdates#93bd878d as nil")
		tl_chatlists_chatlist_updates_gen.go#L154: 			return fmt.Errorf("unable to encode chatlists.chatlistUpdates#93bd878d: field missing_peers element with index %d is nil", idx)
		tl_chatlists_chatlist_updates_gen.go#L157: 			return fmt.Errorf("unable to encode chatlists.chatlistUpdates#93bd878d: field missing_peers element with index %d: %w", idx, err)
		tl_chatlists_chatlist_updates_gen.go#L163: 			return fmt.Errorf("unable to encode chatlists.chatlistUpdates#93bd878d: field chats element with index %d is nil", idx)
		tl_chatlists_chatlist_updates_gen.go#L166: 			return fmt.Errorf("unable to encode chatlists.chatlistUpdates#93bd878d: field chats element with index %d: %w", idx, err)
		tl_chatlists_chatlist_updates_gen.go#L172: 			return fmt.Errorf("unable to encode chatlists.chatlistUpdates#93bd878d: field users element with index %d is nil", idx)
		tl_chatlists_chatlist_updates_gen.go#L175: 			return fmt.Errorf("unable to encode chatlists.chatlistUpdates#93bd878d: field users element with index %d: %w", idx, err)
		tl_chatlists_chatlist_updates_gen.go#L184: 		return fmt.Errorf("can't decode chatlists.chatlistUpdates#93bd878d to nil")
		tl_chatlists_chatlist_updates_gen.go#L187: 		return fmt.Errorf("unable to decode chatlists.chatlistUpdates#93bd878d: %w", err)
		tl_chatlists_chatlist_updates_gen.go#L195: 		return fmt.Errorf("can't decode chatlists.chatlistUpdates#93bd878d to nil")
		tl_chatlists_chatlist_updates_gen.go#L200: 			return fmt.Errorf("unable to decode chatlists.chatlistUpdates#93bd878d: field missing_peers: %w", err)
		tl_chatlists_chatlist_updates_gen.go#L209: 				return fmt.Errorf("unable to decode chatlists.chatlistUpdates#93bd878d: field missing_peers: %w", err)
		tl_chatlists_chatlist_updates_gen.go#L217: 			return fmt.Errorf("unable to decode chatlists.chatlistUpdates#93bd878d: field chats: %w", err)
		tl_chatlists_chatlist_updates_gen.go#L226: 				return fmt.Errorf("unable to decode chatlists.chatlistUpdates#93bd878d: field chats: %w", err)
		tl_chatlists_chatlist_updates_gen.go#L234: 			return fmt.Errorf("unable to decode chatlists.chatlistUpdates#93bd878d: field users: %w", err)
		tl_chatlists_chatlist_updates_gen.go#L243: 				return fmt.Errorf("unable to decode chatlists.chatlistUpdates#93bd878d: field users: %w", err)
		tl_chatlists_check_chatlist_invite_gen.go#L121: 		return fmt.Errorf("can't encode chatlists.checkChatlistInvite#41c10fff as nil")
		tl_chatlists_check_chatlist_invite_gen.go#L130: 		return fmt.Errorf("can't encode chatlists.checkChatlistInvite#41c10fff as nil")
		tl_chatlists_check_chatlist_invite_gen.go#L139: 		return fmt.Errorf("can't decode chatlists.checkChatlistInvite#41c10fff to nil")
		tl_chatlists_check_chatlist_invite_gen.go#L142: 		return fmt.Errorf("unable to decode chatlists.checkChatlistInvite#41c10fff: %w", err)
		tl_chatlists_check_chatlist_invite_gen.go#L150: 		return fmt.Errorf("can't decode chatlists.checkChatlistInvite#41c10fff to nil")
		tl_chatlists_check_chatlist_invite_gen.go#L155: 			return fmt.Errorf("unable to decode chatlists.checkChatlistInvite#41c10fff: field slug: %w", err)
		tl_chatlists_delete_exported_invite_gen.go#L132: 		return fmt.Errorf("can't encode chatlists.deleteExportedInvite#719c5c5e as nil")
		tl_chatlists_delete_exported_invite_gen.go#L141: 		return fmt.Errorf("can't encode chatlists.deleteExportedInvite#719c5c5e as nil")
		tl_chatlists_delete_exported_invite_gen.go#L144: 		return fmt.Errorf("unable to encode chatlists.deleteExportedInvite#719c5c5e: field chatlist: %w", err)
		tl_chatlists_delete_exported_invite_gen.go#L153: 		return fmt.Errorf("can't decode chatlists.deleteExportedInvite#719c5c5e to nil")
		tl_chatlists_delete_exported_invite_gen.go#L156: 		return fmt.Errorf("unable to decode chatlists.deleteExportedInvite#719c5c5e: %w", err)
		tl_chatlists_delete_exported_invite_gen.go#L164: 		return fmt.Errorf("can't decode chatlists.deleteExportedInvite#719c5c5e to nil")
		tl_chatlists_delete_exported_invite_gen.go#L168: 			return fmt.Errorf("unable to decode chatlists.deleteExportedInvite#719c5c5e: field chatlist: %w", err)
		tl_chatlists_delete_exported_invite_gen.go#L174: 			return fmt.Errorf("unable to decode chatlists.deleteExportedInvite#719c5c5e: field slug: %w", err)
		tl_chatlists_edit_exported_invite_gen.go#L184: 		return fmt.Errorf("can't encode chatlists.editExportedInvite#653db63d as nil")
		tl_chatlists_edit_exported_invite_gen.go#L193: 		return fmt.Errorf("can't encode chatlists.editExportedInvite#653db63d as nil")
		tl_chatlists_edit_exported_invite_gen.go#L197: 		return fmt.Errorf("unable to encode chatlists.editExportedInvite#653db63d: field flags: %w", err)
		tl_chatlists_edit_exported_invite_gen.go#L200: 		return fmt.Errorf("unable to encode chatlists.editExportedInvite#653db63d: field chatlist: %w", err)
		tl_chatlists_edit_exported_invite_gen.go#L210: 				return fmt.Errorf("unable to encode chatlists.editExportedInvite#653db63d: field peers element with index %d is nil", idx)
		tl_chatlists_edit_exported_invite_gen.go#L213: 				return fmt.Errorf("unable to encode chatlists.editExportedInvite#653db63d: field peers element with index %d: %w", idx, err)
		tl_chatlists_edit_exported_invite_gen.go#L223: 		return fmt.Errorf("can't decode chatlists.editExportedInvite#653db63d to nil")
		tl_chatlists_edit_exported_invite_gen.go#L226: 		return fmt.Errorf("unable to decode chatlists.editExportedInvite#653db63d: %w", err)
		tl_chatlists_edit_exported_invite_gen.go#L234: 		return fmt.Errorf("can't decode chatlists.editExportedInvite#653db63d to nil")
		tl_chatlists_edit_exported_invite_gen.go#L238: 			return fmt.Errorf("unable to decode chatlists.editExportedInvite#653db63d: field flags: %w", err)
		tl_chatlists_edit_exported_invite_gen.go#L243: 			return fmt.Errorf("unable to decode chatlists.editExportedInvite#653db63d: field chatlist: %w", err)
		tl_chatlists_edit_exported_invite_gen.go#L249: 			return fmt.Errorf("unable to decode chatlists.editExportedInvite#653db63d: field slug: %w", err)
		tl_chatlists_edit_exported_invite_gen.go#L256: 			return fmt.Errorf("unable to decode chatlists.editExportedInvite#653db63d: field title: %w", err)
		tl_chatlists_edit_exported_invite_gen.go#L263: 			return fmt.Errorf("unable to decode chatlists.editExportedInvite#653db63d: field peers: %w", err)
		tl_chatlists_edit_exported_invite_gen.go#L272: 				return fmt.Errorf("unable to decode chatlists.editExportedInvite#653db63d: field peers: %w", err)
		tl_chatlists_export_chatlist_invite_gen.go#L145: 		return fmt.Errorf("can't encode chatlists.exportChatlistInvite#8472478e as nil")
		tl_chatlists_export_chatlist_invite_gen.go#L154: 		return fmt.Errorf("can't encode chatlists.exportChatlistInvite#8472478e as nil")
		tl_chatlists_export_chatlist_invite_gen.go#L157: 		return fmt.Errorf("unable to encode chatlists.exportChatlistInvite#8472478e: field chatlist: %w", err)
		tl_chatlists_export_chatlist_invite_gen.go#L163: 			return fmt.Errorf("unable to encode chatlists.exportChatlistInvite#8472478e: field peers element with index %d is nil", idx)
		tl_chatlists_export_chatlist_invite_gen.go#L166: 			return fmt.Errorf("unable to encode chatlists.exportChatlistInvite#8472478e: field peers element with index %d: %w", idx, err)
		tl_chatlists_export_chatlist_invite_gen.go#L175: 		return fmt.Errorf("can't decode chatlists.exportChatlistInvite#8472478e to nil")
		tl_chatlists_export_chatlist_invite_gen.go#L178: 		return fmt.Errorf("unable to decode chatlists.exportChatlistInvite#8472478e: %w", err)
		tl_chatlists_export_chatlist_invite_gen.go#L186: 		return fmt.Errorf("can't decode chatlists.exportChatlistInvite#8472478e to nil")
		tl_chatlists_export_chatlist_invite_gen.go#L190: 			return fmt.Errorf("unable to decode chatlists.exportChatlistInvite#8472478e: field chatlist: %w", err)
		tl_chatlists_export_chatlist_invite_gen.go#L196: 			return fmt.Errorf("unable to decode chatlists.exportChatlistInvite#8472478e: field title: %w", err)
		tl_chatlists_export_chatlist_invite_gen.go#L203: 			return fmt.Errorf("unable to decode chatlists.exportChatlistInvite#8472478e: field peers: %w", err)
		tl_chatlists_export_chatlist_invite_gen.go#L212: 				return fmt.Errorf("unable to decode chatlists.exportChatlistInvite#8472478e: field peers: %w", err)
		tl_chatlists_exported_chatlist_invite_gen.go#L132: 		return fmt.Errorf("can't encode chatlists.exportedChatlistInvite#10e6e3a6 as nil")
		tl_chatlists_exported_chatlist_invite_gen.go#L141: 		return fmt.Errorf("can't encode chatlists.exportedChatlistInvite#10e6e3a6 as nil")
		tl_chatlists_exported_chatlist_invite_gen.go#L144: 		return fmt.Errorf("unable to encode chatlists.exportedChatlistInvite#10e6e3a6: field filter is nil")
		tl_chatlists_exported_chatlist_invite_gen.go#L147: 		return fmt.Errorf("unable to encode chatlists.exportedChatlistInvite#10e6e3a6: field filter: %w", err)
		tl_chatlists_exported_chatlist_invite_gen.go#L150: 		return fmt.Errorf("unable to encode chatlists.exportedChatlistInvite#10e6e3a6: field invite: %w", err)
		tl_chatlists_exported_chatlist_invite_gen.go#L158: 		return fmt.Errorf("can't decode chatlists.exportedChatlistInvite#10e6e3a6 to nil")
		tl_chatlists_exported_chatlist_invite_gen.go#L161: 		return fmt.Errorf("unable to decode chatlists.exportedChatlistInvite#10e6e3a6: %w", err)
		tl_chatlists_exported_chatlist_invite_gen.go#L169: 		return fmt.Errorf("can't decode chatlists.exportedChatlistInvite#10e6e3a6 to nil")
		tl_chatlists_exported_chatlist_invite_gen.go#L174: 			return fmt.Errorf("unable to decode chatlists.exportedChatlistInvite#10e6e3a6: field filter: %w", err)
		tl_chatlists_exported_chatlist_invite_gen.go#L180: 			return fmt.Errorf("unable to decode chatlists.exportedChatlistInvite#10e6e3a6: field invite: %w", err)
		tl_chatlists_exported_invites_gen.go#L143: 		return fmt.Errorf("can't encode chatlists.exportedInvites#10ab6dc7 as nil")
		tl_chatlists_exported_invites_gen.go#L152: 		return fmt.Errorf("can't encode chatlists.exportedInvites#10ab6dc7 as nil")
		tl_chatlists_exported_invites_gen.go#L157: 			return fmt.Errorf("unable to encode chatlists.exportedInvites#10ab6dc7: field invites element with index %d: %w", idx, err)
		tl_chatlists_exported_invites_gen.go#L163: 			return fmt.Errorf("unable to encode chatlists.exportedInvites#10ab6dc7: field chats element with index %d is nil", idx)
		tl_chatlists_exported_invites_gen.go#L166: 			return fmt.Errorf("unable to encode chatlists.exportedInvites#10ab6dc7: field chats element with index %d: %w", idx, err)
		tl_chatlists_exported_invites_gen.go#L172: 			return fmt.Errorf("unable to encode chatlists.exportedInvites#10ab6dc7: field users element with index %d is nil", idx)
		tl_chatlists_exported_invites_gen.go#L175: 			return fmt.Errorf("unable to encode chatlists.exportedInvites#10ab6dc7: field users element with index %d: %w", idx, err)
		tl_chatlists_exported_invites_gen.go#L184: 		return fmt.Errorf("can't decode chatlists.exportedInvites#10ab6dc7 to nil")
		tl_chatlists_exported_invites_gen.go#L187: 		return fmt.Errorf("unable to decode chatlists.exportedInvites#10ab6dc7: %w", err)
		tl_chatlists_exported_invites_gen.go#L195: 		return fmt.Errorf("can't decode chatlists.exportedInvites#10ab6dc7 to nil")
		tl_chatlists_exported_invites_gen.go#L200: 			return fmt.Errorf("unable to decode chatlists.exportedInvites#10ab6dc7: field invites: %w", err)
		tl_chatlists_exported_invites_gen.go#L209: 				return fmt.Errorf("unable to decode chatlists.exportedInvites#10ab6dc7: field invites: %w", err)
		tl_chatlists_exported_invites_gen.go#L217: 			return fmt.Errorf("unable to decode chatlists.exportedInvites#10ab6dc7: field chats: %w", err)
		tl_chatlists_exported_invites_gen.go#L226: 				return fmt.Errorf("unable to decode chatlists.exportedInvites#10ab6dc7: field chats: %w", err)
		tl_chatlists_exported_invites_gen.go#L234: 			return fmt.Errorf("unable to decode chatlists.exportedInvites#10ab6dc7: field users: %w", err)
		tl_chatlists_exported_invites_gen.go#L243: 				return fmt.Errorf("unable to decode chatlists.exportedInvites#10ab6dc7: field users: %w", err)
		tl_chatlists_get_chatlist_updates_gen.go#L121: 		return fmt.Errorf("can't encode chatlists.getChatlistUpdates#89419521 as nil")
		tl_chatlists_get_chatlist_updates_gen.go#L130: 		return fmt.Errorf("can't encode chatlists.getChatlistUpdates#89419521 as nil")
		tl_chatlists_get_chatlist_updates_gen.go#L133: 		return fmt.Errorf("unable to encode chatlists.getChatlistUpdates#89419521: field chatlist: %w", err)
		tl_chatlists_get_chatlist_updates_gen.go#L141: 		return fmt.Errorf("can't decode chatlists.getChatlistUpdates#89419521 to nil")
		tl_chatlists_get_chatlist_updates_gen.go#L144: 		return fmt.Errorf("unable to decode chatlists.getChatlistUpdates#89419521: %w", err)
		tl_chatlists_get_chatlist_updates_gen.go#L152: 		return fmt.Errorf("can't decode chatlists.getChatlistUpdates#89419521 to nil")
		tl_chatlists_get_chatlist_updates_gen.go#L156: 			return fmt.Errorf("unable to decode chatlists.getChatlistUpdates#89419521: field chatlist: %w", err)
		tl_chatlists_get_exported_invites_gen.go#L118: 		return fmt.Errorf("can't encode chatlists.getExportedInvites#ce03da83 as nil")
		tl_chatlists_get_exported_invites_gen.go#L127: 		return fmt.Errorf("can't encode chatlists.getExportedInvites#ce03da83 as nil")
		tl_chatlists_get_exported_invites_gen.go#L130: 		return fmt.Errorf("unable to encode chatlists.getExportedInvites#ce03da83: field chatlist: %w", err)
		tl_chatlists_get_exported_invites_gen.go#L138: 		return fmt.Errorf("can't decode chatlists.getExportedInvites#ce03da83 to nil")
		tl_chatlists_get_exported_invites_gen.go#L141: 		return fmt.Errorf("unable to decode chatlists.getExportedInvites#ce03da83: %w", err)
		tl_chatlists_get_exported_invites_gen.go#L149: 		return fmt.Errorf("can't decode chatlists.getExportedInvites#ce03da83 to nil")
		tl_chatlists_get_exported_invites_gen.go#L153: 			return fmt.Errorf("unable to decode chatlists.getExportedInvites#ce03da83: field chatlist: %w", err)
		tl_chatlists_get_leave_chatlist_suggestions_gen.go#L120: 		return fmt.Errorf("can't encode chatlists.getLeaveChatlistSuggestions#fdbcd714 as nil")
		tl_chatlists_get_leave_chatlist_suggestions_gen.go#L129: 		return fmt.Errorf("can't encode chatlists.getLeaveChatlistSuggestions#fdbcd714 as nil")
		tl_chatlists_get_leave_chatlist_suggestions_gen.go#L132: 		return fmt.Errorf("unable to encode chatlists.getLeaveChatlistSuggestions#fdbcd714: field chatlist: %w", err)
		tl_chatlists_get_leave_chatlist_suggestions_gen.go#L140: 		return fmt.Errorf("can't decode chatlists.getLeaveChatlistSuggestions#fdbcd714 to nil")
		tl_chatlists_get_leave_chatlist_suggestions_gen.go#L143: 		return fmt.Errorf("unable to decode chatlists.getLeaveChatlistSuggestions#fdbcd714: %w", err)
		tl_chatlists_get_leave_chatlist_suggestions_gen.go#L151: 		return fmt.Errorf("can't decode chatlists.getLeaveChatlistSuggestions#fdbcd714 to nil")
		tl_chatlists_get_leave_chatlist_suggestions_gen.go#L155: 			return fmt.Errorf("unable to decode chatlists.getLeaveChatlistSuggestions#fdbcd714: field chatlist: %w", err)
		tl_chatlists_hide_chatlist_updates_gen.go#L118: 		return fmt.Errorf("can't encode chatlists.hideChatlistUpdates#66e486fb as nil")
		tl_chatlists_hide_chatlist_updates_gen.go#L127: 		return fmt.Errorf("can't encode chatlists.hideChatlistUpdates#66e486fb as nil")
		tl_chatlists_hide_chatlist_updates_gen.go#L130: 		return fmt.Errorf("unable to encode chatlists.hideChatlistUpdates#66e486fb: field chatlist: %w", err)
		tl_chatlists_hide_chatlist_updates_gen.go#L138: 		return fmt.Errorf("can't decode chatlists.hideChatlistUpdates#66e486fb to nil")
		tl_chatlists_hide_chatlist_updates_gen.go#L141: 		return fmt.Errorf("unable to decode chatlists.hideChatlistUpdates#66e486fb: %w", err)
		tl_chatlists_hide_chatlist_updates_gen.go#L149: 		return fmt.Errorf("can't decode chatlists.hideChatlistUpdates#66e486fb to nil")
		tl_chatlists_hide_chatlist_updates_gen.go#L153: 			return fmt.Errorf("unable to decode chatlists.hideChatlistUpdates#66e486fb: field chatlist: %w", err)
		tl_chatlists_join_chatlist_invite_gen.go#L137: 		return fmt.Errorf("can't encode chatlists.joinChatlistInvite#a6b1e39a as nil")
		tl_chatlists_join_chatlist_invite_gen.go#L146: 		return fmt.Errorf("can't encode chatlists.joinChatlistInvite#a6b1e39a as nil")
		tl_chatlists_join_chatlist_invite_gen.go#L152: 			return fmt.Errorf("unable to encode chatlists.joinChatlistInvite#a6b1e39a: field peers element with index %d is nil", idx)
		tl_chatlists_join_chatlist_invite_gen.go#L155: 			return fmt.Errorf("unable to encode chatlists.joinChatlistInvite#a6b1e39a: field peers element with index %d: %w", idx, err)
		tl_chatlists_join_chatlist_invite_gen.go#L164: 		return fmt.Errorf("can't decode chatlists.joinChatlistInvite#a6b1e39a to nil")
		tl_chatlists_join_chatlist_invite_gen.go#L167: 		return fmt.Errorf("unable to decode chatlists.joinChatlistInvite#a6b1e39a: %w", err)
		tl_chatlists_join_chatlist_invite_gen.go#L175: 		return fmt.Errorf("can't decode chatlists.joinChatlistInvite#a6b1e39a to nil")
		tl_chatlists_join_chatlist_invite_gen.go#L180: 			return fmt.Errorf("unable to decode chatlists.joinChatlistInvite#a6b1e39a: field slug: %w", err)
		tl_chatlists_join_chatlist_invite_gen.go#L187: 			return fmt.Errorf("unable to decode chatlists.joinChatlistInvite#a6b1e39a: field peers: %w", err)
		tl_chatlists_join_chatlist_invite_gen.go#L196: 				return fmt.Errorf("unable to decode chatlists.joinChatlistInvite#a6b1e39a: field peers: %w", err)
		tl_chatlists_join_chatlist_updates_gen.go#L134: 		return fmt.Errorf("can't encode chatlists.joinChatlistUpdates#e089f8f5 as nil")
		tl_chatlists_join_chatlist_updates_gen.go#L143: 		return fmt.Errorf("can't encode chatlists.joinChatlistUpdates#e089f8f5 as nil")
		tl_chatlists_join_chatlist_updates_gen.go#L146: 		return fmt.Errorf("unable to encode chatlists.joinChatlistUpdates#e089f8f5: field chatlist: %w", err)
		tl_chatlists_join_chatlist_updates_gen.go#L151: 			return fmt.Errorf("unable to encode chatlists.joinChatlistUpdates#e089f8f5: field peers element with index %d is nil", idx)
		tl_chatlists_join_chatlist_updates_gen.go#L154: 			return fmt.Errorf("unable to encode chatlists.joinChatlistUpdates#e089f8f5: field peers element with index %d: %w", idx, err)
		tl_chatlists_join_chatlist_updates_gen.go#L163: 		return fmt.Errorf("can't decode chatlists.joinChatlistUpdates#e089f8f5 to nil")
		tl_chatlists_join_chatlist_updates_gen.go#L166: 		return fmt.Errorf("unable to decode chatlists.joinChatlistUpdates#e089f8f5: %w", err)
		tl_chatlists_join_chatlist_updates_gen.go#L174: 		return fmt.Errorf("can't decode chatlists.joinChatlistUpdates#e089f8f5 to nil")
		tl_chatlists_join_chatlist_updates_gen.go#L178: 			return fmt.Errorf("unable to decode chatlists.joinChatlistUpdates#e089f8f5: field chatlist: %w", err)
		tl_chatlists_join_chatlist_updates_gen.go#L184: 			return fmt.Errorf("unable to decode chatlists.joinChatlistUpdates#e089f8f5: field peers: %w", err)
		tl_chatlists_join_chatlist_updates_gen.go#L193: 				return fmt.Errorf("unable to decode chatlists.joinChatlistUpdates#e089f8f5: field peers: %w", err)
		tl_chatlists_leave_chatlist_gen.go#L129: 		return fmt.Errorf("can't encode chatlists.leaveChatlist#74fae13a as nil")
		tl_chatlists_leave_chatlist_gen.go#L138: 		return fmt.Errorf("can't encode chatlists.leaveChatlist#74fae13a as nil")
		tl_chatlists_leave_chatlist_gen.go#L141: 		return fmt.Errorf("unable to encode chatlists.leaveChatlist#74fae13a: field chatlist: %w", err)
		tl_chatlists_leave_chatlist_gen.go#L146: 			return fmt.Errorf("unable to encode chatlists.leaveChatlist#74fae13a: field peers element with index %d is nil", idx)
		tl_chatlists_leave_chatlist_gen.go#L149: 			return fmt.Errorf("unable to encode chatlists.leaveChatlist#74fae13a: field peers element with index %d: %w", idx, err)
		tl_chatlists_leave_chatlist_gen.go#L158: 		return fmt.Errorf("can't decode chatlists.leaveChatlist#74fae13a to nil")
		tl_chatlists_leave_chatlist_gen.go#L161: 		return fmt.Errorf("unable to decode chatlists.leaveChatlist#74fae13a: %w", err)
		tl_chatlists_leave_chatlist_gen.go#L169: 		return fmt.Errorf("can't decode chatlists.leaveChatlist#74fae13a to nil")
		tl_chatlists_leave_chatlist_gen.go#L173: 			return fmt.Errorf("unable to decode chatlists.leaveChatlist#74fae13a: field chatlist: %w", err)
		tl_chatlists_leave_chatlist_gen.go#L179: 			return fmt.Errorf("unable to decode chatlists.leaveChatlist#74fae13a: field peers: %w", err)
		tl_chatlists_leave_chatlist_gen.go#L188: 				return fmt.Errorf("unable to decode chatlists.leaveChatlist#74fae13a: field peers: %w", err)
		tl_code_settings_gen.go#L272: 		return fmt.Errorf("can't encode codeSettings#ad253d78 as nil")
		tl_code_settings_gen.go#L281: 		return fmt.Errorf("can't encode codeSettings#ad253d78 as nil")
		tl_code_settings_gen.go#L285: 		return fmt.Errorf("unable to encode codeSettings#ad253d78: field flags: %w", err)
		tl_code_settings_gen.go#L305: 		return fmt.Errorf("can't decode codeSettings#ad253d78 to nil")
		tl_code_settings_gen.go#L308: 		return fmt.Errorf("unable to decode codeSettings#ad253d78: %w", err)
		tl_code_settings_gen.go#L316: 		return fmt.Errorf("can't decode codeSettings#ad253d78 to nil")
		tl_code_settings_gen.go#L320: 			return fmt.Errorf("unable to decode codeSettings#ad253d78: field flags: %w", err)
		tl_code_settings_gen.go#L331: 			return fmt.Errorf("unable to decode codeSettings#ad253d78: field logout_tokens: %w", err)
		tl_code_settings_gen.go#L340: 				return fmt.Errorf("unable to decode codeSettings#ad253d78: field logout_tokens: %w", err)
		tl_code_settings_gen.go#L348: 			return fmt.Errorf("unable to decode codeSettings#ad253d78: field token: %w", err)
		tl_code_settings_gen.go#L355: 			return fmt.Errorf("unable to decode codeSettings#ad253d78: field app_sandbox: %w", err)
		tl_config_gen.go#L801: 		return fmt.Errorf("can't encode config#cc1a241e as nil")
		tl_config_gen.go#L810: 		return fmt.Errorf("can't encode config#cc1a241e as nil")
		tl_config_gen.go#L814: 		return fmt.Errorf("unable to encode config#cc1a241e: field flags: %w", err)
		tl_config_gen.go#L823: 			return fmt.Errorf("unable to encode config#cc1a241e: field dc_options element with index %d: %w", idx, err)
		tl_config_gen.go#L881: 			return fmt.Errorf("unable to encode config#cc1a241e: field reactions_default is nil")
		tl_config_gen.go#L884: 			return fmt.Errorf("unable to encode config#cc1a241e: field reactions_default: %w", err)
		tl_config_gen.go#L896: 		return fmt.Errorf("can't decode config#cc1a241e to nil")
		tl_config_gen.go#L899: 		return fmt.Errorf("unable to decode config#cc1a241e: %w", err)
		tl_config_gen.go#L907: 		return fmt.Errorf("can't decode config#cc1a241e to nil")
		tl_config_gen.go#L911: 			return fmt.Errorf("unable to decode config#cc1a241e: field flags: %w", err)
		tl_config_gen.go#L922: 			return fmt.Errorf("unable to decode config#cc1a241e: field date: %w", err)
		tl_config_gen.go#L929: 			return fmt.Errorf("unable to decode config#cc1a241e: field expires: %w", err)
		tl_config_gen.go#L936: 			return fmt.Errorf("unable to decode config#cc1a241e: field test_mode: %w", err)
		tl_config_gen.go#L943: 			return fmt.Errorf("unable to decode config#cc1a241e: field this_dc: %w", err)
		tl_config_gen.go#L950: 			return fmt.Errorf("unable to decode config#cc1a241e: field dc_options: %w", err)
		tl_config_gen.go#L959: 				return fmt.Errorf("unable to decode config#cc1a241e: field dc_options: %w", err)
		tl_config_gen.go#L967: 			return fmt.Errorf("unable to decode config#cc1a241e: field dc_txt_domain_name: %w", err)
		tl_config_gen.go#L974: 			return fmt.Errorf("unable to decode config#cc1a241e: field chat_size_max: %w", err)
		tl_config_gen.go#L981: 			return fmt.Errorf("unable to decode config#cc1a241e: field megagroup_size_max: %w", err)
		tl_config_gen.go#L988: 			return fmt.Errorf("unable to decode config#cc1a241e: field forwarded_count_max: %w", err)
		tl_config_gen.go#L995: 			return fmt.Errorf("unable to decode config#cc1a241e: field online_update_period_ms: %w", err)
		tl_config_gen.go#L1002: 			return fmt.Errorf("unable to decode config#cc1a241e: field offline_blur_timeout_ms: %w", err)
		tl_config_gen.go#L1009: 			return fmt.Errorf("unable to decode config#cc1a241e: field offline_idle_timeout_ms: %w", err)
		tl_config_gen.go#L1016: 			return fmt.Errorf("unable to decode config#cc1a241e: field online_cloud_timeout_ms: %w", err)
		tl_config_gen.go#L1023: 			return fmt.Errorf("unable to decode config#cc1a241e: field notify_cloud_delay_ms: %w", err)
		tl_config_gen.go#L1030: 			return fmt.Errorf("unable to decode config#cc1a241e: field notify_default_delay_ms: %w", err)
		tl_config_gen.go#L1037: 			return fmt.Errorf("unable to decode config#cc1a241e: field push_chat_period_ms: %w", err)
		tl_config_gen.go#L1044: 			return fmt.Errorf("unable to decode config#cc1a241e: field push_chat_limit: %w", err)
		tl_config_gen.go#L1051: 			return fmt.Errorf("unable to decode config#cc1a241e: field edit_time_limit: %w", err)
		tl_config_gen.go#L1058: 			return fmt.Errorf("unable to decode config#cc1a241e: field revoke_time_limit: %w", err)
		tl_config_gen.go#L1065: 			return fmt.Errorf("unable to decode config#cc1a241e: field revoke_pm_time_limit: %w", err)
		tl_config_gen.go#L1072: 			return fmt.Errorf("unable to decode config#cc1a241e: field rating_e_decay: %w", err)
		tl_config_gen.go#L1079: 			return fmt.Errorf("unable to decode config#cc1a241e: field stickers_recent_limit: %w", err)
		tl_config_gen.go#L1086: 			return fmt.Errorf("unable to decode config#cc1a241e: field channels_read_media_period: %w", err)
		tl_config_gen.go#L1093: 			return fmt.Errorf("unable to decode config#cc1a241e: field tmp_sessions: %w", err)
		tl_config_gen.go#L1100: 			return fmt.Errorf("unable to decode config#cc1a241e: field call_receive_timeout_ms: %w", err)
		tl_config_gen.go#L1107: 			return fmt.Errorf("unable to decode config#cc1a241e: field call_ring_timeout_ms: %w", err)
		tl_config_gen.go#L1114: 			return fmt.Errorf("unable to decode config#cc1a241e: field call_connect_timeout_ms: %w", err)
		tl_config_gen.go#L1121: 			return fmt.Errorf("unable to decode config#cc1a241e: field call_packet_timeout_ms: %w", err)
		tl_config_gen.go#L1128: 			return fmt.Errorf("unable to decode config#cc1a241e: field me_url_prefix: %w", err)
		tl_config_gen.go#L1135: 			return fmt.Errorf("unable to decode config#cc1a241e: field autoupdate_url_prefix: %w", err)
		tl_config_gen.go#L1142: 			return fmt.Errorf("unable to decode config#cc1a241e: field gif_search_username: %w", err)
		tl_config_gen.go#L1149: 			return fmt.Errorf("unable to decode config#cc1a241e: field venue_search_username: %w", err)
		tl_config_gen.go#L1156: 			return fmt.Errorf("unable to decode config#cc1a241e: field img_search_username: %w", err)
		tl_config_gen.go#L1163: 			return fmt.Errorf("unable to decode config#cc1a241e: field static_maps_provider: %w", err)
		tl_config_gen.go#L1170: 			return fmt.Errorf("unable to decode config#cc1a241e: field caption_length_max: %w", err)
		tl_config_gen.go#L1177: 			return fmt.Errorf("unable to decode config#cc1a241e: field message_length_max: %w", err)
		tl_config_gen.go#L1184: 			return fmt.Errorf("unable to decode config#cc1a241e: field webfile_dc_id: %w", err)
		tl_config_gen.go#L1191: 			return fmt.Errorf("unable to decode config#cc1a241e: field suggested_lang_code: %w", err)
		tl_config_gen.go#L1198: 			return fmt.Errorf("unable to decode config#cc1a241e: field lang_pack_version: %w", err)
		tl_config_gen.go#L1205: 			return fmt.Errorf("unable to decode config#cc1a241e: field base_lang_pack_version: %w", err)
		tl_config_gen.go#L1212: 			return fmt.Errorf("unable to decode config#cc1a241e: field reactions_default: %w", err)
		tl_config_gen.go#L1219: 			return fmt.Errorf("unable to decode config#cc1a241e: field autologin_token: %w", err)
		tl_contact_gen.go#L126: 		return fmt.Errorf("can't encode contact#145ade0b as nil")
		tl_contact_gen.go#L135: 		return fmt.Errorf("can't encode contact#145ade0b as nil")
		tl_contact_gen.go#L145: 		return fmt.Errorf("can't decode contact#145ade0b to nil")
		tl_contact_gen.go#L148: 		return fmt.Errorf("unable to decode contact#145ade0b: %w", err)
		tl_contact_gen.go#L156: 		return fmt.Errorf("can't decode contact#145ade0b to nil")
		tl_contact_gen.go#L161: 			return fmt.Errorf("unable to decode contact#145ade0b: field user_id: %w", err)
		tl_contact_gen.go#L168: 			return fmt.Errorf("unable to decode contact#145ade0b: field mutual: %w", err)
		tl_contact_status_gen.go#L126: 		return fmt.Errorf("can't encode contactStatus#16d9703b as nil")
		tl_contact_status_gen.go#L135: 		return fmt.Errorf("can't encode contactStatus#16d9703b as nil")
		tl_contact_status_gen.go#L139: 		return fmt.Errorf("unable to encode contactStatus#16d9703b: field status is nil")
		tl_contact_status_gen.go#L142: 		return fmt.Errorf("unable to encode contactStatus#16d9703b: field status: %w", err)
		tl_contact_status_gen.go#L150: 		return fmt.Errorf("can't decode contactStatus#16d9703b to nil")
		tl_contact_status_gen.go#L153: 		return fmt.Errorf("unable to decode contactStatus#16d9703b: %w", err)
		tl_contact_status_gen.go#L161: 		return fmt.Errorf("can't decode contactStatus#16d9703b to nil")
		tl_contact_status_gen.go#L166: 			return fmt.Errorf("unable to decode contactStatus#16d9703b: field user_id: %w", err)
		tl_contact_status_gen.go#L173: 			return fmt.Errorf("unable to decode contactStatus#16d9703b: field status: %w", err)
		tl_contact_status_vector_gen.go#L112: 		return fmt.Errorf("can't encode Vector<ContactStatus> as nil")
		tl_contact_status_vector_gen.go#L121: 		return fmt.Errorf("can't encode Vector<ContactStatus> as nil")
		tl_contact_status_vector_gen.go#L126: 			return fmt.Errorf("unable to encode Vector<ContactStatus>: field Elems element with index %d: %w", idx, err)
		tl_contact_status_vector_gen.go#L135: 		return fmt.Errorf("can't decode Vector<ContactStatus> to nil")
		tl_contact_status_vector_gen.go#L144: 		return fmt.Errorf("can't decode Vector<ContactStatus> to nil")
		tl_contact_status_vector_gen.go#L149: 			return fmt.Errorf("unable to decode Vector<ContactStatus>: field Elems: %w", err)
		tl_contact_status_vector_gen.go#L158: 				return fmt.Errorf("unable to decode Vector<ContactStatus>: field Elems: %w", err)
		tl_contacts_accept_contact_gen.go#L118: 		return fmt.Errorf("can't encode contacts.acceptContact#f831a20f as nil")
		tl_contacts_accept_contact_gen.go#L127: 		return fmt.Errorf("can't encode contacts.acceptContact#f831a20f as nil")
		tl_contacts_accept_contact_gen.go#L130: 		return fmt.Errorf("unable to encode contacts.acceptContact#f831a20f: field id is nil")
		tl_contacts_accept_contact_gen.go#L133: 		return fmt.Errorf("unable to encode contacts.acceptContact#f831a20f: field id: %w", err)
		tl_contacts_accept_contact_gen.go#L141: 		return fmt.Errorf("can't decode contacts.acceptContact#f831a20f to nil")
		tl_contacts_accept_contact_gen.go#L144: 		return fmt.Errorf("unable to decode contacts.acceptContact#f831a20f: %w", err)
		tl_contacts_accept_contact_gen.go#L152: 		return fmt.Errorf("can't decode contacts.acceptContact#f831a20f to nil")
		tl_contacts_accept_contact_gen.go#L157: 			return fmt.Errorf("unable to decode contacts.acceptContact#f831a20f: field id: %w", err)
		tl_contacts_add_contact_gen.go#L181: 		return fmt.Errorf("can't encode contacts.addContact#e8f463d0 as nil")
		tl_contacts_add_contact_gen.go#L190: 		return fmt.Errorf("can't encode contacts.addContact#e8f463d0 as nil")
		tl_contacts_add_contact_gen.go#L194: 		return fmt.Errorf("unable to encode contacts.addContact#e8f463d0: field flags: %w", err)
		tl_contacts_add_contact_gen.go#L197: 		return fmt.Errorf("unable to encode contacts.addContact#e8f463d0: field id is nil")
		tl_contacts_add_contact_gen.go#L200: 		return fmt.Errorf("unable to encode contacts.addContact#e8f463d0: field id: %w", err)
		tl_contacts_add_contact_gen.go#L211: 		return fmt.Errorf("can't decode contacts.addContact#e8f463d0 to nil")
		tl_contacts_add_contact_gen.go#L214: 		return fmt.Errorf("unable to decode contacts.addContact#e8f463d0: %w", err)
		tl_contacts_add_contact_gen.go#L222: 		return fmt.Errorf("can't decode contacts.addContact#e8f463d0 to nil")
		tl_contacts_add_contact_gen.go#L226: 			return fmt.Errorf("unable to decode contacts.addContact#e8f463d0: field flags: %w", err)
		tl_contacts_add_contact_gen.go#L233: 			return fmt.Errorf("unable to decode contacts.addContact#e8f463d0: field id: %w", err)
		tl_contacts_add_contact_gen.go#L240: 			return fmt.Errorf("unable to decode contacts.addContact#e8f463d0: field first_name: %w", err)
		tl_contacts_add_contact_gen.go#L247: 			return fmt.Errorf("unable to decode contacts.addContact#e8f463d0: field last_name: %w", err)
		tl_contacts_add_contact_gen.go#L254: 			return fmt.Errorf("unable to decode contacts.addContact#e8f463d0: field phone: %w", err)
		tl_contacts_block_from_replies_gen.go#L178: 		return fmt.Errorf("can't encode contacts.blockFromReplies#29a8962c as nil")
		tl_contacts_block_from_replies_gen.go#L187: 		return fmt.Errorf("can't encode contacts.blockFromReplies#29a8962c as nil")
		tl_contacts_block_from_replies_gen.go#L191: 		return fmt.Errorf("unable to encode contacts.blockFromReplies#29a8962c: field flags: %w", err)
		tl_contacts_block_from_replies_gen.go#L200: 		return fmt.Errorf("can't decode contacts.blockFromReplies#29a8962c to nil")
		tl_contacts_block_from_replies_gen.go#L203: 		return fmt.Errorf("unable to decode contacts.blockFromReplies#29a8962c: %w", err)
		tl_contacts_block_from_replies_gen.go#L211: 		return fmt.Errorf("can't decode contacts.blockFromReplies#29a8962c to nil")
		tl_contacts_block_from_replies_gen.go#L215: 			return fmt.Errorf("unable to decode contacts.blockFromReplies#29a8962c: field flags: %w", err)
		tl_contacts_block_from_replies_gen.go#L224: 			return fmt.Errorf("unable to decode contacts.blockFromReplies#29a8962c: field msg_id: %w", err)
		tl_contacts_block_gen.go#L149: 		return fmt.Errorf("can't encode contacts.block#2e2e8734 as nil")
		tl_contacts_block_gen.go#L158: 		return fmt.Errorf("can't encode contacts.block#2e2e8734 as nil")
		tl_contacts_block_gen.go#L162: 		return fmt.Errorf("unable to encode contacts.block#2e2e8734: field flags: %w", err)
		tl_contacts_block_gen.go#L165: 		return fmt.Errorf("unable to encode contacts.block#2e2e8734: field id is nil")
		tl_contacts_block_gen.go#L168: 		return fmt.Errorf("unable to encode contacts.block#2e2e8734: field id: %w", err)
		tl_contacts_block_gen.go#L176: 		return fmt.Errorf("can't decode contacts.block#2e2e8734 to nil")
		tl_contacts_block_gen.go#L179: 		return fmt.Errorf("unable to decode contacts.block#2e2e8734: %w", err)
		tl_contacts_block_gen.go#L187: 		return fmt.Errorf("can't decode contacts.block#2e2e8734 to nil")
		tl_contacts_block_gen.go#L191: 			return fmt.Errorf("unable to decode contacts.block#2e2e8734: field flags: %w", err)
		tl_contacts_block_gen.go#L198: 			return fmt.Errorf("unable to decode contacts.block#2e2e8734: field id: %w", err)
		tl_contacts_blocked_gen.go#L142: 		return fmt.Errorf("can't encode contacts.blocked#ade1591 as nil")
		tl_contacts_blocked_gen.go#L151: 		return fmt.Errorf("can't encode contacts.blocked#ade1591 as nil")
		tl_contacts_blocked_gen.go#L156: 			return fmt.Errorf("unable to encode contacts.blocked#ade1591: field blocked element with index %d: %w", idx, err)
		tl_contacts_blocked_gen.go#L162: 			return fmt.Errorf("unable to encode contacts.blocked#ade1591: field chats element with index %d is nil", idx)
		tl_contacts_blocked_gen.go#L165: 			return fmt.Errorf("unable to encode contacts.blocked#ade1591: field chats element with index %d: %w", idx, err)
		tl_contacts_blocked_gen.go#L171: 			return fmt.Errorf("unable to encode contacts.blocked#ade1591: field users element with index %d is nil", idx)
		tl_contacts_blocked_gen.go#L174: 			return fmt.Errorf("unable to encode contacts.blocked#ade1591: field users element with index %d: %w", idx, err)
		tl_contacts_blocked_gen.go#L183: 		return fmt.Errorf("can't decode contacts.blocked#ade1591 to nil")
		tl_contacts_blocked_gen.go#L186: 		return fmt.Errorf("unable to decode contacts.blocked#ade1591: %w", err)
		tl_contacts_blocked_gen.go#L194: 		return fmt.Errorf("can't decode contacts.blocked#ade1591 to nil")
		tl_contacts_blocked_gen.go#L199: 			return fmt.Errorf("unable to decode contacts.blocked#ade1591: field blocked: %w", err)
		tl_contacts_blocked_gen.go#L208: 				return fmt.Errorf("unable to decode contacts.blocked#ade1591: field blocked: %w", err)
		tl_contacts_blocked_gen.go#L216: 			return fmt.Errorf("unable to decode contacts.blocked#ade1591: field chats: %w", err)
		tl_contacts_blocked_gen.go#L225: 				return fmt.Errorf("unable to decode contacts.blocked#ade1591: field chats: %w", err)
		tl_contacts_blocked_gen.go#L233: 			return fmt.Errorf("unable to decode contacts.blocked#ade1591: field users: %w", err)
		tl_contacts_blocked_gen.go#L242: 				return fmt.Errorf("unable to decode contacts.blocked#ade1591: field users: %w", err)
		tl_contacts_blocked_gen.go#L403: 		return fmt.Errorf("can't encode contacts.blockedSlice#e1664194 as nil")
		tl_contacts_blocked_gen.go#L412: 		return fmt.Errorf("can't encode contacts.blockedSlice#e1664194 as nil")
		tl_contacts_blocked_gen.go#L418: 			return fmt.Errorf("unable to encode contacts.blockedSlice#e1664194: field blocked element with index %d: %w", idx, err)
		tl_contacts_blocked_gen.go#L424: 			return fmt.Errorf("unable to encode contacts.blockedSlice#e1664194: field chats element with index %d is nil", idx)
		tl_contacts_blocked_gen.go#L427: 			return fmt.Errorf("unable to encode contacts.blockedSlice#e1664194: field chats element with index %d: %w", idx, err)
		tl_contacts_blocked_gen.go#L433: 			return fmt.Errorf("unable to encode contacts.blockedSlice#e1664194: field users element with index %d is nil", idx)
		tl_contacts_blocked_gen.go#L436: 			return fmt.Errorf("unable to encode contacts.blockedSlice#e1664194: field users element with index %d: %w", idx, err)
		tl_contacts_blocked_gen.go#L445: 		return fmt.Errorf("can't decode contacts.blockedSlice#e1664194 to nil")
		tl_contacts_blocked_gen.go#L448: 		return fmt.Errorf("unable to decode contacts.blockedSlice#e1664194: %w", err)
		tl_contacts_blocked_gen.go#L456: 		return fmt.Errorf("can't decode contacts.blockedSlice#e1664194 to nil")
		tl_contacts_blocked_gen.go#L461: 			return fmt.Errorf("unable to decode contacts.blockedSlice#e1664194: field count: %w", err)
		tl_contacts_blocked_gen.go#L468: 			return fmt.Errorf("unable to decode contacts.blockedSlice#e1664194: field blocked: %w", err)
		tl_contacts_blocked_gen.go#L477: 				return fmt.Errorf("unable to decode contacts.blockedSlice#e1664194: field blocked: %w", err)
		tl_contacts_blocked_gen.go#L485: 			return fmt.Errorf("unable to decode contacts.blockedSlice#e1664194: field chats: %w", err)
		tl_contacts_blocked_gen.go#L494: 				return fmt.Errorf("unable to decode contacts.blockedSlice#e1664194: field chats: %w", err)
		tl_contacts_blocked_gen.go#L502: 			return fmt.Errorf("unable to decode contacts.blockedSlice#e1664194: field users: %w", err)
		tl_contacts_blocked_gen.go#L511: 				return fmt.Errorf("unable to decode contacts.blockedSlice#e1664194: field users: %w", err)
		tl_contacts_blocked_gen.go#L620: 			return nil, fmt.Errorf("unable to decode ContactsBlockedClass: %w", err)
		tl_contacts_blocked_gen.go#L627: 			return nil, fmt.Errorf("unable to decode ContactsBlockedClass: %w", err)
		tl_contacts_blocked_gen.go#L631: 		return nil, fmt.Errorf("unable to decode ContactsBlockedClass: %w", bin.NewUnexpectedID(id))
		tl_contacts_blocked_gen.go#L643: 		return fmt.Errorf("unable to decode ContactsBlockedBox to nil")
		tl_contacts_blocked_gen.go#L647: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_contacts_blocked_gen.go#L656: 		return fmt.Errorf("unable to encode ContactsBlockedClass as nil")
		tl_contacts_contacts_gen.go#L103: 		return fmt.Errorf("can't encode contacts.contactsNotModified#b74ba9d2 as nil")
		tl_contacts_contacts_gen.go#L112: 		return fmt.Errorf("can't encode contacts.contactsNotModified#b74ba9d2 as nil")
		tl_contacts_contacts_gen.go#L120: 		return fmt.Errorf("can't decode contacts.contactsNotModified#b74ba9d2 to nil")
		tl_contacts_contacts_gen.go#L123: 		return fmt.Errorf("unable to decode contacts.contactsNotModified#b74ba9d2: %w", err)
		tl_contacts_contacts_gen.go#L131: 		return fmt.Errorf("can't decode contacts.contactsNotModified#b74ba9d2 to nil")
		tl_contacts_contacts_gen.go#L244: 		return fmt.Errorf("can't encode contacts.contacts#eae87e42 as nil")
		tl_contacts_contacts_gen.go#L253: 		return fmt.Errorf("can't encode contacts.contacts#eae87e42 as nil")
		tl_contacts_contacts_gen.go#L258: 			return fmt.Errorf("unable to encode contacts.contacts#eae87e42: field contacts element with index %d: %w", idx, err)
		tl_contacts_contacts_gen.go#L265: 			return fmt.Errorf("unable to encode contacts.contacts#eae87e42: field users element with index %d is nil", idx)
		tl_contacts_contacts_gen.go#L268: 			return fmt.Errorf("unable to encode contacts.contacts#eae87e42: field users element with index %d: %w", idx, err)
		tl_contacts_contacts_gen.go#L277: 		return fmt.Errorf("can't decode contacts.contacts#eae87e42 to nil")
		tl_contacts_contacts_gen.go#L280: 		return fmt.Errorf("unable to decode contacts.contacts#eae87e42: %w", err)
		tl_contacts_contacts_gen.go#L288: 		return fmt.Errorf("can't decode contacts.contacts#eae87e42 to nil")
		tl_contacts_contacts_gen.go#L293: 			return fmt.Errorf("unable to decode contacts.contacts#eae87e42: field contacts: %w", err)
		tl_contacts_contacts_gen.go#L302: 				return fmt.Errorf("unable to decode contacts.contacts#eae87e42: field contacts: %w", err)
		tl_contacts_contacts_gen.go#L310: 			return fmt.Errorf("unable to decode contacts.contacts#eae87e42: field saved_count: %w", err)
		tl_contacts_contacts_gen.go#L317: 			return fmt.Errorf("unable to decode contacts.contacts#eae87e42: field users: %w", err)
		tl_contacts_contacts_gen.go#L326: 				return fmt.Errorf("unable to decode contacts.contacts#eae87e42: field users: %w", err)
		tl_contacts_contacts_gen.go#L424: 			return nil, fmt.Errorf("unable to decode ContactsContactsClass: %w", err)
		tl_contacts_contacts_gen.go#L431: 			return nil, fmt.Errorf("unable to decode ContactsContactsClass: %w", err)
		tl_contacts_contacts_gen.go#L435: 		return nil, fmt.Errorf("unable to decode ContactsContactsClass: %w", bin.NewUnexpectedID(id))
		tl_contacts_contacts_gen.go#L447: 		return fmt.Errorf("unable to decode ContactsContactsBox to nil")
		tl_contacts_contacts_gen.go#L451: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_contacts_contacts_gen.go#L460: 		return fmt.Errorf("unable to encode ContactsContactsClass as nil")
		tl_contacts_delete_by_phones_gen.go#L115: 		return fmt.Errorf("can't encode contacts.deleteByPhones#1013fd9e as nil")
		tl_contacts_delete_by_phones_gen.go#L124: 		return fmt.Errorf("can't encode contacts.deleteByPhones#1013fd9e as nil")
		tl_contacts_delete_by_phones_gen.go#L136: 		return fmt.Errorf("can't decode contacts.deleteByPhones#1013fd9e to nil")
		tl_contacts_delete_by_phones_gen.go#L139: 		return fmt.Errorf("unable to decode contacts.deleteByPhones#1013fd9e: %w", err)
		tl_contacts_delete_by_phones_gen.go#L147: 		return fmt.Errorf("can't decode contacts.deleteByPhones#1013fd9e to nil")
		tl_contacts_delete_by_phones_gen.go#L152: 			return fmt.Errorf("unable to decode contacts.deleteByPhones#1013fd9e: field phones: %w", err)
		tl_contacts_delete_by_phones_gen.go#L161: 				return fmt.Errorf("unable to decode contacts.deleteByPhones#1013fd9e: field phones: %w", err)
		tl_contacts_delete_contacts_gen.go#L115: 		return fmt.Errorf("can't encode contacts.deleteContacts#96a0e00 as nil")
		tl_contacts_delete_contacts_gen.go#L124: 		return fmt.Errorf("can't encode contacts.deleteContacts#96a0e00 as nil")
		tl_contacts_delete_contacts_gen.go#L129: 			return fmt.Errorf("unable to encode contacts.deleteContacts#96a0e00: field id element with index %d is nil", idx)
		tl_contacts_delete_contacts_gen.go#L132: 			return fmt.Errorf("unable to encode contacts.deleteContacts#96a0e00: field id element with index %d: %w", idx, err)
		tl_contacts_delete_contacts_gen.go#L141: 		return fmt.Errorf("can't decode contacts.deleteContacts#96a0e00 to nil")
		tl_contacts_delete_contacts_gen.go#L144: 		return fmt.Errorf("unable to decode contacts.deleteContacts#96a0e00: %w", err)
		tl_contacts_delete_contacts_gen.go#L152: 		return fmt.Errorf("can't decode contacts.deleteContacts#96a0e00 to nil")
		tl_contacts_delete_contacts_gen.go#L157: 			return fmt.Errorf("unable to decode contacts.deleteContacts#96a0e00: field id: %w", err)
		tl_contacts_delete_contacts_gen.go#L166: 				return fmt.Errorf("unable to decode contacts.deleteContacts#96a0e00: field id: %w", err)
		tl_contacts_edit_close_friends_gen.go#L121: 		return fmt.Errorf("can't encode contacts.editCloseFriends#ba6705f0 as nil")
		tl_contacts_edit_close_friends_gen.go#L130: 		return fmt.Errorf("can't encode contacts.editCloseFriends#ba6705f0 as nil")
		tl_contacts_edit_close_friends_gen.go#L142: 		return fmt.Errorf("can't decode contacts.editCloseFriends#ba6705f0 to nil")
		tl_contacts_edit_close_friends_gen.go#L145: 		return fmt.Errorf("unable to decode contacts.editCloseFriends#ba6705f0: %w", err)
		tl_contacts_edit_close_friends_gen.go#L153: 		return fmt.Errorf("can't decode contacts.editCloseFriends#ba6705f0 to nil")
		tl_contacts_edit_close_friends_gen.go#L158: 			return fmt.Errorf("unable to decode contacts.editCloseFriends#ba6705f0: field id: %w", err)
		tl_contacts_edit_close_friends_gen.go#L167: 				return fmt.Errorf("unable to decode contacts.editCloseFriends#ba6705f0: field id: %w", err)
		tl_contacts_export_contact_token_gen.go#L101: 		return fmt.Errorf("can't encode contacts.exportContactToken#f8654027 as nil")
		tl_contacts_export_contact_token_gen.go#L110: 		return fmt.Errorf("can't encode contacts.exportContactToken#f8654027 as nil")
		tl_contacts_export_contact_token_gen.go#L118: 		return fmt.Errorf("can't decode contacts.exportContactToken#f8654027 to nil")
		tl_contacts_export_contact_token_gen.go#L121: 		return fmt.Errorf("unable to decode contacts.exportContactToken#f8654027: %w", err)
		tl_contacts_export_contact_token_gen.go#L129: 		return fmt.Errorf("can't decode contacts.exportContactToken#f8654027 to nil")
		tl_contacts_found_gen.go#L148: 		return fmt.Errorf("can't encode contacts.found#b3134d9d as nil")
		tl_contacts_found_gen.go#L157: 		return fmt.Errorf("can't encode contacts.found#b3134d9d as nil")
		tl_contacts_found_gen.go#L162: 			return fmt.Errorf("unable to encode contacts.found#b3134d9d: field my_results element with index %d is nil", idx)
		tl_contacts_found_gen.go#L165: 			return fmt.Errorf("unable to encode contacts.found#b3134d9d: field my_results element with index %d: %w", idx, err)
		tl_contacts_found_gen.go#L171: 			return fmt.Errorf("unable to encode contacts.found#b3134d9d: field results element with index %d is nil", idx)
		tl_contacts_found_gen.go#L174: 			return fmt.Errorf("unable to encode contacts.found#b3134d9d: field results element with index %d: %w", idx, err)
		tl_contacts_found_gen.go#L180: 			return fmt.Errorf("unable to encode contacts.found#b3134d9d: field chats element with index %d is nil", idx)
		tl_contacts_found_gen.go#L183: 			return fmt.Errorf("unable to encode contacts.found#b3134d9d: field chats element with index %d: %w", idx, err)
		tl_contacts_found_gen.go#L189: 			return fmt.Errorf("unable to encode contacts.found#b3134d9d: field users element with index %d is nil", idx)
		tl_contacts_found_gen.go#L192: 			return fmt.Errorf("unable to encode contacts.found#b3134d9d: field users element with index %d: %w", idx, err)
		tl_contacts_found_gen.go#L201: 		return fmt.Errorf("can't decode contacts.found#b3134d9d to nil")
		tl_contacts_found_gen.go#L204: 		return fmt.Errorf("unable to decode contacts.found#b3134d9d: %w", err)
		tl_contacts_found_gen.go#L212: 		return fmt.Errorf("can't decode contacts.found#b3134d9d to nil")
		tl_contacts_found_gen.go#L217: 			return fmt.Errorf("unable to decode contacts.found#b3134d9d: field my_results: %w", err)
		tl_contacts_found_gen.go#L226: 				return fmt.Errorf("unable to decode contacts.found#b3134d9d: field my_results: %w", err)
		tl_contacts_found_gen.go#L234: 			return fmt.Errorf("unable to decode contacts.found#b3134d9d: field results: %w", err)
		tl_contacts_found_gen.go#L243: 				return fmt.Errorf("unable to decode contacts.found#b3134d9d: field results: %w", err)
		tl_contacts_found_gen.go#L251: 			return fmt.Errorf("unable to decode contacts.found#b3134d9d: field chats: %w", err)
		tl_contacts_found_gen.go#L260: 				return fmt.Errorf("unable to decode contacts.found#b3134d9d: field chats: %w", err)
		tl_contacts_found_gen.go#L268: 			return fmt.Errorf("unable to decode contacts.found#b3134d9d: field users: %w", err)
		tl_contacts_found_gen.go#L277: 				return fmt.Errorf("unable to decode contacts.found#b3134d9d: field users: %w", err)
		tl_contacts_get_blocked_gen.go#L157: 		return fmt.Errorf("can't encode contacts.getBlocked#9a868f80 as nil")
		tl_contacts_get_blocked_gen.go#L166: 		return fmt.Errorf("can't encode contacts.getBlocked#9a868f80 as nil")
		tl_contacts_get_blocked_gen.go#L170: 		return fmt.Errorf("unable to encode contacts.getBlocked#9a868f80: field flags: %w", err)
		tl_contacts_get_blocked_gen.go#L180: 		return fmt.Errorf("can't decode contacts.getBlocked#9a868f80 to nil")
		tl_contacts_get_blocked_gen.go#L183: 		return fmt.Errorf("unable to decode contacts.getBlocked#9a868f80: %w", err)
		tl_contacts_get_blocked_gen.go#L191: 		return fmt.Errorf("can't decode contacts.getBlocked#9a868f80 to nil")
		tl_contacts_get_blocked_gen.go#L195: 			return fmt.Errorf("unable to decode contacts.getBlocked#9a868f80: field flags: %w", err)
		tl_contacts_get_blocked_gen.go#L202: 			return fmt.Errorf("unable to decode contacts.getBlocked#9a868f80: field offset: %w", err)
		tl_contacts_get_blocked_gen.go#L209: 			return fmt.Errorf("unable to decode contacts.getBlocked#9a868f80: field limit: %w", err)
		tl_contacts_get_contact_ids_gen.go#L118: 		return fmt.Errorf("can't encode contacts.getContactIDs#7adc669d as nil")
		tl_contacts_get_contact_ids_gen.go#L127: 		return fmt.Errorf("can't encode contacts.getContactIDs#7adc669d as nil")
		tl_contacts_get_contact_ids_gen.go#L136: 		return fmt.Errorf("can't decode contacts.getContactIDs#7adc669d to nil")
		tl_contacts_get_contact_ids_gen.go#L139: 		return fmt.Errorf("unable to decode contacts.getContactIDs#7adc669d: %w", err)
		tl_contacts_get_contact_ids_gen.go#L147: 		return fmt.Errorf("can't decode contacts.getContactIDs#7adc669d to nil")
		tl_contacts_get_contact_ids_gen.go#L152: 			return fmt.Errorf("unable to decode contacts.getContactIDs#7adc669d: field hash: %w", err)
		tl_contacts_get_contacts_gen.go#L121: 		return fmt.Errorf("can't encode contacts.getContacts#5dd69e12 as nil")
		tl_contacts_get_contacts_gen.go#L130: 		return fmt.Errorf("can't encode contacts.getContacts#5dd69e12 as nil")
		tl_contacts_get_contacts_gen.go#L139: 		return fmt.Errorf("can't decode contacts.getContacts#5dd69e12 to nil")
		tl_contacts_get_contacts_gen.go#L142: 		return fmt.Errorf("unable to decode contacts.getContacts#5dd69e12: %w", err)
		tl_contacts_get_contacts_gen.go#L150: 		return fmt.Errorf("can't decode contacts.getContacts#5dd69e12 to nil")
		tl_contacts_get_contacts_gen.go#L155: 			return fmt.Errorf("unable to decode contacts.getContacts#5dd69e12: field hash: %w", err)
		tl_contacts_get_located_gen.go#L170: 		return fmt.Errorf("can't encode contacts.getLocated#d348bc44 as nil")
		tl_contacts_get_located_gen.go#L179: 		return fmt.Errorf("can't encode contacts.getLocated#d348bc44 as nil")
		tl_contacts_get_located_gen.go#L183: 		return fmt.Errorf("unable to encode contacts.getLocated#d348bc44: field flags: %w", err)
		tl_contacts_get_located_gen.go#L186: 		return fmt.Errorf("unable to encode contacts.getLocated#d348bc44: field geo_point is nil")
		tl_contacts_get_located_gen.go#L189: 		return fmt.Errorf("unable to encode contacts.getLocated#d348bc44: field geo_point: %w", err)
		tl_contacts_get_located_gen.go#L200: 		return fmt.Errorf("can't decode contacts.getLocated#d348bc44 to nil")
		tl_contacts_get_located_gen.go#L203: 		return fmt.Errorf("unable to decode contacts.getLocated#d348bc44: %w", err)
		tl_contacts_get_located_gen.go#L211: 		return fmt.Errorf("can't decode contacts.getLocated#d348bc44 to nil")
		tl_contacts_get_located_gen.go#L215: 			return fmt.Errorf("unable to decode contacts.getLocated#d348bc44: field flags: %w", err)
		tl_contacts_get_located_gen.go#L222: 			return fmt.Errorf("unable to decode contacts.getLocated#d348bc44: field geo_point: %w", err)
		tl_contacts_get_located_gen.go#L229: 			return fmt.Errorf("unable to decode contacts.getLocated#d348bc44: field self_expires: %w", err)
		tl_contacts_get_saved_gen.go#L101: 		return fmt.Errorf("can't encode contacts.getSaved#82f1e39f as nil")
		tl_contacts_get_saved_gen.go#L110: 		return fmt.Errorf("can't encode contacts.getSaved#82f1e39f as nil")
		tl_contacts_get_saved_gen.go#L118: 		return fmt.Errorf("can't decode contacts.getSaved#82f1e39f to nil")
		tl_contacts_get_saved_gen.go#L121: 		return fmt.Errorf("unable to decode contacts.getSaved#82f1e39f: %w", err)
		tl_contacts_get_saved_gen.go#L129: 		return fmt.Errorf("can't decode contacts.getSaved#82f1e39f to nil")
		tl_contacts_get_statuses_gen.go#L98: 		return fmt.Errorf("can't encode contacts.getStatuses#c4a353ee as nil")
		tl_contacts_get_statuses_gen.go#L107: 		return fmt.Errorf("can't encode contacts.getStatuses#c4a353ee as nil")
		tl_contacts_get_statuses_gen.go#L115: 		return fmt.Errorf("can't decode contacts.getStatuses#c4a353ee to nil")
		tl_contacts_get_statuses_gen.go#L118: 		return fmt.Errorf("unable to decode contacts.getStatuses#c4a353ee: %w", err)
		tl_contacts_get_statuses_gen.go#L126: 		return fmt.Errorf("can't decode contacts.getStatuses#c4a353ee to nil")
		tl_contacts_get_top_peers_gen.go#L278: 		return fmt.Errorf("can't encode contacts.getTopPeers#973478b6 as nil")
		tl_contacts_get_top_peers_gen.go#L287: 		return fmt.Errorf("can't encode contacts.getTopPeers#973478b6 as nil")
		tl_contacts_get_top_peers_gen.go#L291: 		return fmt.Errorf("unable to encode contacts.getTopPeers#973478b6: field flags: %w", err)
		tl_contacts_get_top_peers_gen.go#L302: 		return fmt.Errorf("can't decode contacts.getTopPeers#973478b6 to nil")
		tl_contacts_get_top_peers_gen.go#L305: 		return fmt.Errorf("unable to decode contacts.getTopPeers#973478b6: %w", err)
		tl_contacts_get_top_peers_gen.go#L313: 		return fmt.Errorf("can't decode contacts.getTopPeers#973478b6 to nil")
		tl_contacts_get_top_peers_gen.go#L317: 			return fmt.Errorf("unable to decode contacts.getTopPeers#973478b6: field flags: %w", err)
		tl_contacts_get_top_peers_gen.go#L331: 			return fmt.Errorf("unable to decode contacts.getTopPeers#973478b6: field offset: %w", err)
		tl_contacts_get_top_peers_gen.go#L338: 			return fmt.Errorf("unable to decode contacts.getTopPeers#973478b6: field limit: %w", err)
		tl_contacts_get_top_peers_gen.go#L345: 			return fmt.Errorf("unable to decode contacts.getTopPeers#973478b6: field hash: %w", err)
		tl_contacts_import_contact_token_gen.go#L121: 		return fmt.Errorf("can't encode contacts.importContactToken#13005788 as nil")
		tl_contacts_import_contact_token_gen.go#L130: 		return fmt.Errorf("can't encode contacts.importContactToken#13005788 as nil")
		tl_contacts_import_contact_token_gen.go#L139: 		return fmt.Errorf("can't decode contacts.importContactToken#13005788 to nil")
		tl_contacts_import_contact_token_gen.go#L142: 		return fmt.Errorf("unable to decode contacts.importContactToken#13005788: %w", err)
		tl_contacts_import_contact_token_gen.go#L150: 		return fmt.Errorf("can't decode contacts.importContactToken#13005788 to nil")
		tl_contacts_import_contact_token_gen.go#L155: 			return fmt.Errorf("unable to decode contacts.importContactToken#13005788: field token: %w", err)
		tl_contacts_import_contacts_gen.go#L121: 		return fmt.Errorf("can't encode contacts.importContacts#2c800be5 as nil")
		tl_contacts_import_contacts_gen.go#L130: 		return fmt.Errorf("can't encode contacts.importContacts#2c800be5 as nil")
		tl_contacts_import_contacts_gen.go#L135: 			return fmt.Errorf("unable to encode contacts.importContacts#2c800be5: field contacts element with index %d: %w", idx, err)
		tl_contacts_import_contacts_gen.go#L144: 		return fmt.Errorf("can't decode contacts.importContacts#2c800be5 to nil")
		tl_contacts_import_contacts_gen.go#L147: 		return fmt.Errorf("unable to decode contacts.importContacts#2c800be5: %w", err)
		tl_contacts_import_contacts_gen.go#L155: 		return fmt.Errorf("can't decode contacts.importContacts#2c800be5 to nil")
		tl_contacts_import_contacts_gen.go#L160: 			return fmt.Errorf("unable to decode contacts.importContacts#2c800be5: field contacts: %w", err)
		tl_contacts_import_contacts_gen.go#L169: 				return fmt.Errorf("unable to decode contacts.importContacts#2c800be5: field contacts: %w", err)
		tl_contacts_imported_contacts_gen.go#L149: 		return fmt.Errorf("can't encode contacts.importedContacts#77d01c3b as nil")
		tl_contacts_imported_contacts_gen.go#L158: 		return fmt.Errorf("can't encode contacts.importedContacts#77d01c3b as nil")
		tl_contacts_imported_contacts_gen.go#L163: 			return fmt.Errorf("unable to encode contacts.importedContacts#77d01c3b: field imported element with index %d: %w", idx, err)
		tl_contacts_imported_contacts_gen.go#L169: 			return fmt.Errorf("unable to encode contacts.importedContacts#77d01c3b: field popular_invites element with index %d: %w", idx, err)
		tl_contacts_imported_contacts_gen.go#L179: 			return fmt.Errorf("unable to encode contacts.importedContacts#77d01c3b: field users element with index %d is nil", idx)
		tl_contacts_imported_contacts_gen.go#L182: 			return fmt.Errorf("unable to encode contacts.importedContacts#77d01c3b: field users element with index %d: %w", idx, err)
		tl_contacts_imported_contacts_gen.go#L191: 		return fmt.Errorf("can't decode contacts.importedContacts#77d01c3b to nil")
		tl_contacts_imported_contacts_gen.go#L194: 		return fmt.Errorf("unable to decode contacts.importedContacts#77d01c3b: %w", err)
		tl_contacts_imported_contacts_gen.go#L202: 		return fmt.Errorf("can't decode contacts.importedContacts#77d01c3b to nil")
		tl_contacts_imported_contacts_gen.go#L207: 			return fmt.Errorf("unable to decode contacts.importedContacts#77d01c3b: field imported: %w", err)
		tl_contacts_imported_contacts_gen.go#L216: 				return fmt.Errorf("unable to decode contacts.importedContacts#77d01c3b: field imported: %w", err)
		tl_contacts_imported_contacts_gen.go#L224: 			return fmt.Errorf("unable to decode contacts.importedContacts#77d01c3b: field popular_invites: %w", err)
		tl_contacts_imported_contacts_gen.go#L233: 				return fmt.Errorf("unable to decode contacts.importedContacts#77d01c3b: field popular_invites: %w", err)
		tl_contacts_imported_contacts_gen.go#L241: 			return fmt.Errorf("unable to decode contacts.importedContacts#77d01c3b: field retry_contacts: %w", err)
		tl_contacts_imported_contacts_gen.go#L250: 				return fmt.Errorf("unable to decode contacts.importedContacts#77d01c3b: field retry_contacts: %w", err)
		tl_contacts_imported_contacts_gen.go#L258: 			return fmt.Errorf("unable to decode contacts.importedContacts#77d01c3b: field users: %w", err)
		tl_contacts_imported_contacts_gen.go#L267: 				return fmt.Errorf("unable to decode contacts.importedContacts#77d01c3b: field users: %w", err)
		tl_contacts_reset_saved_gen.go#L98: 		return fmt.Errorf("can't encode contacts.resetSaved#879537f1 as nil")
		tl_contacts_reset_saved_gen.go#L107: 		return fmt.Errorf("can't encode contacts.resetSaved#879537f1 as nil")
		tl_contacts_reset_saved_gen.go#L115: 		return fmt.Errorf("can't decode contacts.resetSaved#879537f1 to nil")
		tl_contacts_reset_saved_gen.go#L118: 		return fmt.Errorf("unable to decode contacts.resetSaved#879537f1: %w", err)
		tl_contacts_reset_saved_gen.go#L126: 		return fmt.Errorf("can't decode contacts.resetSaved#879537f1 to nil")
		tl_contacts_reset_top_peer_rating_gen.go#L129: 		return fmt.Errorf("can't encode contacts.resetTopPeerRating#1ae373ac as nil")
		tl_contacts_reset_top_peer_rating_gen.go#L138: 		return fmt.Errorf("can't encode contacts.resetTopPeerRating#1ae373ac as nil")
		tl_contacts_reset_top_peer_rating_gen.go#L141: 		return fmt.Errorf("unable to encode contacts.resetTopPeerRating#1ae373ac: field category is nil")
		tl_contacts_reset_top_peer_rating_gen.go#L144: 		return fmt.Errorf("unable to encode contacts.resetTopPeerRating#1ae373ac: field category: %w", err)
		tl_contacts_reset_top_peer_rating_gen.go#L147: 		return fmt.Errorf("unable to encode contacts.resetTopPeerRating#1ae373ac: field peer is nil")
		tl_contacts_reset_top_peer_rating_gen.go#L150: 		return fmt.Errorf("unable to encode contacts.resetTopPeerRating#1ae373ac: field peer: %w", err)
		tl_contacts_reset_top_peer_rating_gen.go#L158: 		return fmt.Errorf("can't decode contacts.resetTopPeerRating#1ae373ac to nil")
		tl_contacts_reset_top_peer_rating_gen.go#L161: 		return fmt.Errorf("unable to decode contacts.resetTopPeerRating#1ae373ac: %w", err)
		tl_contacts_reset_top_peer_rating_gen.go#L169: 		return fmt.Errorf("can't decode contacts.resetTopPeerRating#1ae373ac to nil")
		tl_contacts_reset_top_peer_rating_gen.go#L174: 			return fmt.Errorf("unable to decode contacts.resetTopPeerRating#1ae373ac: field category: %w", err)
		tl_contacts_reset_top_peer_rating_gen.go#L181: 			return fmt.Errorf("unable to decode contacts.resetTopPeerRating#1ae373ac: field peer: %w", err)
		tl_contacts_resolve_phone_gen.go#L119: 		return fmt.Errorf("can't encode contacts.resolvePhone#8af94344 as nil")
		tl_contacts_resolve_phone_gen.go#L128: 		return fmt.Errorf("can't encode contacts.resolvePhone#8af94344 as nil")
		tl_contacts_resolve_phone_gen.go#L137: 		return fmt.Errorf("can't decode contacts.resolvePhone#8af94344 to nil")
		tl_contacts_resolve_phone_gen.go#L140: 		return fmt.Errorf("unable to decode contacts.resolvePhone#8af94344: %w", err)
		tl_contacts_resolve_phone_gen.go#L148: 		return fmt.Errorf("can't decode contacts.resolvePhone#8af94344 to nil")
		tl_contacts_resolve_phone_gen.go#L153: 			return fmt.Errorf("unable to decode contacts.resolvePhone#8af94344: field phone: %w", err)
		tl_contacts_resolve_username_gen.go#L115: 		return fmt.Errorf("can't encode contacts.resolveUsername#f93ccba3 as nil")
		tl_contacts_resolve_username_gen.go#L124: 		return fmt.Errorf("can't encode contacts.resolveUsername#f93ccba3 as nil")
		tl_contacts_resolve_username_gen.go#L133: 		return fmt.Errorf("can't decode contacts.resolveUsername#f93ccba3 to nil")
		tl_contacts_resolve_username_gen.go#L136: 		return fmt.Errorf("unable to decode contacts.resolveUsername#f93ccba3: %w", err)
		tl_contacts_resolve_username_gen.go#L144: 		return fmt.Errorf("can't decode contacts.resolveUsername#f93ccba3 to nil")
		tl_contacts_resolve_username_gen.go#L149: 			return fmt.Errorf("unable to decode contacts.resolveUsername#f93ccba3: field username: %w", err)
		tl_contacts_resolved_peer_gen.go#L137: 		return fmt.Errorf("can't encode contacts.resolvedPeer#7f077ad9 as nil")
		tl_contacts_resolved_peer_gen.go#L146: 		return fmt.Errorf("can't encode contacts.resolvedPeer#7f077ad9 as nil")
		tl_contacts_resolved_peer_gen.go#L149: 		return fmt.Errorf("unable to encode contacts.resolvedPeer#7f077ad9: field peer is nil")
		tl_contacts_resolved_peer_gen.go#L152: 		return fmt.Errorf("unable to encode contacts.resolvedPeer#7f077ad9: field peer: %w", err)
		tl_contacts_resolved_peer_gen.go#L157: 			return fmt.Errorf("unable to encode contacts.resolvedPeer#7f077ad9: field chats element with index %d is nil", idx)
		tl_contacts_resolved_peer_gen.go#L160: 			return fmt.Errorf("unable to encode contacts.resolvedPeer#7f077ad9: field chats element with index %d: %w", idx, err)
		tl_contacts_resolved_peer_gen.go#L166: 			return fmt.Errorf("unable to encode contacts.resolvedPeer#7f077ad9: field users element with index %d is nil", idx)
		tl_contacts_resolved_peer_gen.go#L169: 			return fmt.Errorf("unable to encode contacts.resolvedPeer#7f077ad9: field users element with index %d: %w", idx, err)
		tl_contacts_resolved_peer_gen.go#L178: 		return fmt.Errorf("can't decode contacts.resolvedPeer#7f077ad9 to nil")
		tl_contacts_resolved_peer_gen.go#L181: 		return fmt.Errorf("unable to decode contacts.resolvedPeer#7f077ad9: %w", err)
		tl_contacts_resolved_peer_gen.go#L189: 		return fmt.Errorf("can't decode contacts.resolvedPeer#7f077ad9 to nil")
		tl_contacts_resolved_peer_gen.go#L194: 			return fmt.Errorf("unable to decode contacts.resolvedPeer#7f077ad9: field peer: %w", err)
		tl_contacts_resolved_peer_gen.go#L201: 			return fmt.Errorf("unable to decode contacts.resolvedPeer#7f077ad9: field chats: %w", err)
		tl_contacts_resolved_peer_gen.go#L210: 				return fmt.Errorf("unable to decode contacts.resolvedPeer#7f077ad9: field chats: %w", err)
		tl_contacts_resolved_peer_gen.go#L218: 			return fmt.Errorf("unable to decode contacts.resolvedPeer#7f077ad9: field users: %w", err)
		tl_contacts_resolved_peer_gen.go#L227: 				return fmt.Errorf("unable to decode contacts.resolvedPeer#7f077ad9: field users: %w", err)
		tl_contacts_search_gen.go#L126: 		return fmt.Errorf("can't encode contacts.search#11f812d8 as nil")
		tl_contacts_search_gen.go#L135: 		return fmt.Errorf("can't encode contacts.search#11f812d8 as nil")
		tl_contacts_search_gen.go#L145: 		return fmt.Errorf("can't decode contacts.search#11f812d8 to nil")
		tl_contacts_search_gen.go#L148: 		return fmt.Errorf("unable to decode contacts.search#11f812d8: %w", err)
		tl_contacts_search_gen.go#L156: 		return fmt.Errorf("can't decode contacts.search#11f812d8 to nil")
		tl_contacts_search_gen.go#L161: 			return fmt.Errorf("unable to decode contacts.search#11f812d8: field q: %w", err)
		tl_contacts_search_gen.go#L168: 			return fmt.Errorf("unable to decode contacts.search#11f812d8: field limit: %w", err)
		tl_contacts_set_blocked_gen.go#L163: 		return fmt.Errorf("can't encode contacts.setBlocked#94c65c76 as nil")
		tl_contacts_set_blocked_gen.go#L172: 		return fmt.Errorf("can't encode contacts.setBlocked#94c65c76 as nil")
		tl_contacts_set_blocked_gen.go#L176: 		return fmt.Errorf("unable to encode contacts.setBlocked#94c65c76: field flags: %w", err)
		tl_contacts_set_blocked_gen.go#L181: 			return fmt.Errorf("unable to encode contacts.setBlocked#94c65c76: field id element with index %d is nil", idx)
		tl_contacts_set_blocked_gen.go#L184: 			return fmt.Errorf("unable to encode contacts.setBlocked#94c65c76: field id element with index %d: %w", idx, err)
		tl_contacts_set_blocked_gen.go#L194: 		return fmt.Errorf("can't decode contacts.setBlocked#94c65c76 to nil")
		tl_contacts_set_blocked_gen.go#L197: 		return fmt.Errorf("unable to decode contacts.setBlocked#94c65c76: %w", err)
		tl_contacts_set_blocked_gen.go#L205: 		return fmt.Errorf("can't decode contacts.setBlocked#94c65c76 to nil")
		tl_contacts_set_blocked_gen.go#L209: 			return fmt.Errorf("unable to decode contacts.setBlocked#94c65c76: field flags: %w", err)
		tl_contacts_set_blocked_gen.go#L216: 			return fmt.Errorf("unable to decode contacts.setBlocked#94c65c76: field id: %w", err)
		tl_contacts_set_blocked_gen.go#L225: 				return fmt.Errorf("unable to decode contacts.setBlocked#94c65c76: field id: %w", err)
		tl_contacts_set_blocked_gen.go#L233: 			return fmt.Errorf("unable to decode contacts.setBlocked#94c65c76: field limit: %w", err)
		tl_contacts_toggle_top_peers_gen.go#L118: 		return fmt.Errorf("can't encode contacts.toggleTopPeers#8514bdda as nil")
		tl_contacts_toggle_top_peers_gen.go#L127: 		return fmt.Errorf("can't encode contacts.toggleTopPeers#8514bdda as nil")
		tl_contacts_toggle_top_peers_gen.go#L136: 		return fmt.Errorf("can't decode contacts.toggleTopPeers#8514bdda to nil")
		tl_contacts_toggle_top_peers_gen.go#L139: 		return fmt.Errorf("unable to decode contacts.toggleTopPeers#8514bdda: %w", err)
		tl_contacts_toggle_top_peers_gen.go#L147: 		return fmt.Errorf("can't decode contacts.toggleTopPeers#8514bdda to nil")
		tl_contacts_toggle_top_peers_gen.go#L152: 			return fmt.Errorf("unable to decode contacts.toggleTopPeers#8514bdda: field enabled: %w", err)
		tl_contacts_top_peers_gen.go#L103: 		return fmt.Errorf("can't encode contacts.topPeersNotModified#de266ef5 as nil")
		tl_contacts_top_peers_gen.go#L112: 		return fmt.Errorf("can't encode contacts.topPeersNotModified#de266ef5 as nil")
		tl_contacts_top_peers_gen.go#L120: 		return fmt.Errorf("can't decode contacts.topPeersNotModified#de266ef5 to nil")
		tl_contacts_top_peers_gen.go#L123: 		return fmt.Errorf("unable to decode contacts.topPeersNotModified#de266ef5: %w", err)
		tl_contacts_top_peers_gen.go#L131: 		return fmt.Errorf("can't decode contacts.topPeersNotModified#de266ef5 to nil")
		tl_contacts_top_peers_gen.go#L244: 		return fmt.Errorf("can't encode contacts.topPeers#70b772a8 as nil")
		tl_contacts_top_peers_gen.go#L253: 		return fmt.Errorf("can't encode contacts.topPeers#70b772a8 as nil")
		tl_contacts_top_peers_gen.go#L258: 			return fmt.Errorf("unable to encode contacts.topPeers#70b772a8: field categories element with index %d: %w", idx, err)
		tl_contacts_top_peers_gen.go#L264: 			return fmt.Errorf("unable to encode contacts.topPeers#70b772a8: field chats element with index %d is nil", idx)
		tl_contacts_top_peers_gen.go#L267: 			return fmt.Errorf("unable to encode contacts.topPeers#70b772a8: field chats element with index %d: %w", idx, err)
		tl_contacts_top_peers_gen.go#L273: 			return fmt.Errorf("unable to encode contacts.topPeers#70b772a8: field users element with index %d is nil", idx)
		tl_contacts_top_peers_gen.go#L276: 			return fmt.Errorf("unable to encode contacts.topPeers#70b772a8: field users element with index %d: %w", idx, err)
		tl_contacts_top_peers_gen.go#L285: 		return fmt.Errorf("can't decode contacts.topPeers#70b772a8 to nil")
		tl_contacts_top_peers_gen.go#L288: 		return fmt.Errorf("unable to decode contacts.topPeers#70b772a8: %w", err)
		tl_contacts_top_peers_gen.go#L296: 		return fmt.Errorf("can't decode contacts.topPeers#70b772a8 to nil")
		tl_contacts_top_peers_gen.go#L301: 			return fmt.Errorf("unable to decode contacts.topPeers#70b772a8: field categories: %w", err)
		tl_contacts_top_peers_gen.go#L310: 				return fmt.Errorf("unable to decode contacts.topPeers#70b772a8: field categories: %w", err)
		tl_contacts_top_peers_gen.go#L318: 			return fmt.Errorf("unable to decode contacts.topPeers#70b772a8: field chats: %w", err)
		tl_contacts_top_peers_gen.go#L327: 				return fmt.Errorf("unable to decode contacts.topPeers#70b772a8: field chats: %w", err)
		tl_contacts_top_peers_gen.go#L335: 			return fmt.Errorf("unable to decode contacts.topPeers#70b772a8: field users: %w", err)
		tl_contacts_top_peers_gen.go#L344: 				return fmt.Errorf("unable to decode contacts.topPeers#70b772a8: field users: %w", err)
		tl_contacts_top_peers_gen.go#L455: 		return fmt.Errorf("can't encode contacts.topPeersDisabled#b52c939d as nil")
		tl_contacts_top_peers_gen.go#L464: 		return fmt.Errorf("can't encode contacts.topPeersDisabled#b52c939d as nil")
		tl_contacts_top_peers_gen.go#L472: 		return fmt.Errorf("can't decode contacts.topPeersDisabled#b52c939d to nil")
		tl_contacts_top_peers_gen.go#L475: 		return fmt.Errorf("unable to decode contacts.topPeersDisabled#b52c939d: %w", err)
		tl_contacts_top_peers_gen.go#L483: 		return fmt.Errorf("can't decode contacts.topPeersDisabled#b52c939d to nil")
		tl_contacts_top_peers_gen.go#L537: 			return nil, fmt.Errorf("unable to decode ContactsTopPeersClass: %w", err)
		tl_contacts_top_peers_gen.go#L544: 			return nil, fmt.Errorf("unable to decode ContactsTopPeersClass: %w", err)
		tl_contacts_top_peers_gen.go#L551: 			return nil, fmt.Errorf("unable to decode ContactsTopPeersClass: %w", err)
		tl_contacts_top_peers_gen.go#L555: 		return nil, fmt.Errorf("unable to decode ContactsTopPeersClass: %w", bin.NewUnexpectedID(id))
		tl_contacts_top_peers_gen.go#L567: 		return fmt.Errorf("unable to decode ContactsTopPeersBox to nil")
		tl_contacts_top_peers_gen.go#L571: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_contacts_top_peers_gen.go#L580: 		return fmt.Errorf("unable to encode ContactsTopPeersClass as nil")
		tl_contacts_unblock_gen.go#L149: 		return fmt.Errorf("can't encode contacts.unblock#b550d328 as nil")
		tl_contacts_unblock_gen.go#L158: 		return fmt.Errorf("can't encode contacts.unblock#b550d328 as nil")
		tl_contacts_unblock_gen.go#L162: 		return fmt.Errorf("unable to encode contacts.unblock#b550d328: field flags: %w", err)
		tl_contacts_unblock_gen.go#L165: 		return fmt.Errorf("unable to encode contacts.unblock#b550d328: field id is nil")
		tl_contacts_unblock_gen.go#L168: 		return fmt.Errorf("unable to encode contacts.unblock#b550d328: field id: %w", err)
		tl_contacts_unblock_gen.go#L176: 		return fmt.Errorf("can't decode contacts.unblock#b550d328 to nil")
		tl_contacts_unblock_gen.go#L179: 		return fmt.Errorf("unable to decode contacts.unblock#b550d328: %w", err)
		tl_contacts_unblock_gen.go#L187: 		return fmt.Errorf("can't decode contacts.unblock#b550d328 to nil")
		tl_contacts_unblock_gen.go#L191: 			return fmt.Errorf("unable to decode contacts.unblock#b550d328: field flags: %w", err)
		tl_contacts_unblock_gen.go#L198: 			return fmt.Errorf("unable to decode contacts.unblock#b550d328: field id: %w", err)
		tl_data_json_gen.go#L115: 		return fmt.Errorf("can't encode dataJSON#7d748d04 as nil")
		tl_data_json_gen.go#L124: 		return fmt.Errorf("can't encode dataJSON#7d748d04 as nil")
		tl_data_json_gen.go#L133: 		return fmt.Errorf("can't decode dataJSON#7d748d04 to nil")
		tl_data_json_gen.go#L136: 		return fmt.Errorf("unable to decode dataJSON#7d748d04: %w", err)
		tl_data_json_gen.go#L144: 		return fmt.Errorf("can't decode dataJSON#7d748d04 to nil")
		tl_data_json_gen.go#L149: 			return fmt.Errorf("unable to decode dataJSON#7d748d04: field data: %w", err)
		tl_dc_option_gen.go#L273: 		return fmt.Errorf("can't encode dcOption#18b7a10d as nil")
		tl_dc_option_gen.go#L282: 		return fmt.Errorf("can't encode dcOption#18b7a10d as nil")
		tl_dc_option_gen.go#L286: 		return fmt.Errorf("unable to encode dcOption#18b7a10d: field flags: %w", err)
		tl_dc_option_gen.go#L300: 		return fmt.Errorf("can't decode dcOption#18b7a10d to nil")
		tl_dc_option_gen.go#L303: 		return fmt.Errorf("unable to decode dcOption#18b7a10d: %w", err)
		tl_dc_option_gen.go#L311: 		return fmt.Errorf("can't decode dcOption#18b7a10d to nil")
		tl_dc_option_gen.go#L315: 			return fmt.Errorf("unable to decode dcOption#18b7a10d: field flags: %w", err)
		tl_dc_option_gen.go#L327: 			return fmt.Errorf("unable to decode dcOption#18b7a10d: field id: %w", err)
		tl_dc_option_gen.go#L334: 			return fmt.Errorf("unable to decode dcOption#18b7a10d: field ip_address: %w", err)
		tl_dc_option_gen.go#L341: 			return fmt.Errorf("unable to decode dcOption#18b7a10d: field port: %w", err)
		tl_dc_option_gen.go#L348: 			return fmt.Errorf("unable to decode dcOption#18b7a10d: field secret: %w", err)
		tl_default_history_ttl_gen.go#L116: 		return fmt.Errorf("can't encode defaultHistoryTTL#43b46b20 as nil")
		tl_default_history_ttl_gen.go#L125: 		return fmt.Errorf("can't encode defaultHistoryTTL#43b46b20 as nil")
		tl_default_history_ttl_gen.go#L134: 		return fmt.Errorf("can't decode defaultHistoryTTL#43b46b20 to nil")
		tl_default_history_ttl_gen.go#L137: 		return fmt.Errorf("unable to decode defaultHistoryTTL#43b46b20: %w", err)
		tl_default_history_ttl_gen.go#L145: 		return fmt.Errorf("can't decode defaultHistoryTTL#43b46b20 to nil")
		tl_default_history_ttl_gen.go#L150: 			return fmt.Errorf("unable to decode defaultHistoryTTL#43b46b20: field period: %w", err)
		tl_dialog_filter_class_vector_gen.go#L112: 		return fmt.Errorf("can't encode Vector<DialogFilter> as nil")
		tl_dialog_filter_class_vector_gen.go#L121: 		return fmt.Errorf("can't encode Vector<DialogFilter> as nil")
		tl_dialog_filter_class_vector_gen.go#L126: 			return fmt.Errorf("unable to encode Vector<DialogFilter>: field Elems element with index %d is nil", idx)
		tl_dialog_filter_class_vector_gen.go#L129: 			return fmt.Errorf("unable to encode Vector<DialogFilter>: field Elems element with index %d: %w", idx, err)
		tl_dialog_filter_class_vector_gen.go#L138: 		return fmt.Errorf("can't decode Vector<DialogFilter> to nil")
		tl_dialog_filter_class_vector_gen.go#L147: 		return fmt.Errorf("can't decode Vector<DialogFilter> to nil")
		tl_dialog_filter_class_vector_gen.go#L152: 			return fmt.Errorf("unable to decode Vector<DialogFilter>: field Elems: %w", err)
		tl_dialog_filter_class_vector_gen.go#L161: 				return fmt.Errorf("unable to decode Vector<DialogFilter>: field Elems: %w", err)
		tl_dialog_filter_gen.go#L358: 		return fmt.Errorf("can't encode dialogFilter#7438f7e8 as nil")
		tl_dialog_filter_gen.go#L367: 		return fmt.Errorf("can't encode dialogFilter#7438f7e8 as nil")
		tl_dialog_filter_gen.go#L371: 		return fmt.Errorf("unable to encode dialogFilter#7438f7e8: field flags: %w", err)
		tl_dialog_filter_gen.go#L381: 			return fmt.Errorf("unable to encode dialogFilter#7438f7e8: field pinned_peers element with index %d is nil", idx)
		tl_dialog_filter_gen.go#L384: 			return fmt.Errorf("unable to encode dialogFilter#7438f7e8: field pinned_peers element with index %d: %w", idx, err)
		tl_dialog_filter_gen.go#L390: 			return fmt.Errorf("unable to encode dialogFilter#7438f7e8: field include_peers element with index %d is nil", idx)
		tl_dialog_filter_gen.go#L393: 			return fmt.Errorf("unable to encode dialogFilter#7438f7e8: field include_peers element with index %d: %w", idx, err)
		tl_dialog_filter_gen.go#L399: 			return fmt.Errorf("unable to encode dialogFilter#7438f7e8: field exclude_peers element with index %d is nil", idx)
		tl_dialog_filter_gen.go#L402: 			return fmt.Errorf("unable to encode dialogFilter#7438f7e8: field exclude_peers element with index %d: %w", idx, err)
		tl_dialog_filter_gen.go#L411: 		return fmt.Errorf("can't decode dialogFilter#7438f7e8 to nil")
		tl_dialog_filter_gen.go#L414: 		return fmt.Errorf("unable to decode dialogFilter#7438f7e8: %w", err)
		tl_dialog_filter_gen.go#L422: 		return fmt.Errorf("can't decode dialogFilter#7438f7e8 to nil")
		tl_dialog_filter_gen.go#L426: 			return fmt.Errorf("unable to decode dialogFilter#7438f7e8: field flags: %w", err)
		tl_dialog_filter_gen.go#L440: 			return fmt.Errorf("unable to decode dialogFilter#7438f7e8: field id: %w", err)
		tl_dialog_filter_gen.go#L447: 			return fmt.Errorf("unable to decode dialogFilter#7438f7e8: field title: %w", err)
		tl_dialog_filter_gen.go#L454: 			return fmt.Errorf("unable to decode dialogFilter#7438f7e8: field emoticon: %w", err)
		tl_dialog_filter_gen.go#L461: 			return fmt.Errorf("unable to decode dialogFilter#7438f7e8: field pinned_peers: %w", err)
		tl_dialog_filter_gen.go#L470: 				return fmt.Errorf("unable to decode dialogFilter#7438f7e8: field pinned_peers: %w", err)
		tl_dialog_filter_gen.go#L478: 			return fmt.Errorf("unable to decode dialogFilter#7438f7e8: field include_peers: %w", err)
		tl_dialog_filter_gen.go#L487: 				return fmt.Errorf("unable to decode dialogFilter#7438f7e8: field include_peers: %w", err)
		tl_dialog_filter_gen.go#L495: 			return fmt.Errorf("unable to decode dialogFilter#7438f7e8: field exclude_peers: %w", err)
		tl_dialog_filter_gen.go#L504: 				return fmt.Errorf("unable to decode dialogFilter#7438f7e8: field exclude_peers: %w", err)
		tl_dialog_filter_gen.go#L806: 		return fmt.Errorf("can't encode dialogFilterDefault#363293ae as nil")
		tl_dialog_filter_gen.go#L815: 		return fmt.Errorf("can't encode dialogFilterDefault#363293ae as nil")
		tl_dialog_filter_gen.go#L823: 		return fmt.Errorf("can't decode dialogFilterDefault#363293ae to nil")
		tl_dialog_filter_gen.go#L826: 		return fmt.Errorf("unable to decode dialogFilterDefault#363293ae: %w", err)
		tl_dialog_filter_gen.go#L834: 		return fmt.Errorf("can't decode dialogFilterDefault#363293ae to nil")
		tl_dialog_filter_gen.go#L1015: 		return fmt.Errorf("can't encode dialogFilterChatlist#d64a04a8 as nil")
		tl_dialog_filter_gen.go#L1024: 		return fmt.Errorf("can't encode dialogFilterChatlist#d64a04a8 as nil")
		tl_dialog_filter_gen.go#L1028: 		return fmt.Errorf("unable to encode dialogFilterChatlist#d64a04a8: field flags: %w", err)
		tl_dialog_filter_gen.go#L1038: 			return fmt.Errorf("unable to encode dialogFilterChatlist#d64a04a8: field pinned_peers element with index %d is nil", idx)
		tl_dialog_filter_gen.go#L1041: 			return fmt.Errorf("unable to encode dialogFilterChatlist#d64a04a8: field pinned_peers element with index %d: %w", idx, err)
		tl_dialog_filter_gen.go#L1047: 			return fmt.Errorf("unable to encode dialogFilterChatlist#d64a04a8: field include_peers element with index %d is nil", idx)
		tl_dialog_filter_gen.go#L1050: 			return fmt.Errorf("unable to encode dialogFilterChatlist#d64a04a8: field include_peers element with index %d: %w", idx, err)
		tl_dialog_filter_gen.go#L1059: 		return fmt.Errorf("can't decode dialogFilterChatlist#d64a04a8 to nil")
		tl_dialog_filter_gen.go#L1062: 		return fmt.Errorf("unable to decode dialogFilterChatlist#d64a04a8: %w", err)
		tl_dialog_filter_gen.go#L1070: 		return fmt.Errorf("can't decode dialogFilterChatlist#d64a04a8 to nil")
		tl_dialog_filter_gen.go#L1074: 			return fmt.Errorf("unable to decode dialogFilterChatlist#d64a04a8: field flags: %w", err)
		tl_dialog_filter_gen.go#L1081: 			return fmt.Errorf("unable to decode dialogFilterChatlist#d64a04a8: field id: %w", err)
		tl_dialog_filter_gen.go#L1088: 			return fmt.Errorf("unable to decode dialogFilterChatlist#d64a04a8: field title: %w", err)
		tl_dialog_filter_gen.go#L1095: 			return fmt.Errorf("unable to decode dialogFilterChatlist#d64a04a8: field emoticon: %w", err)
		tl_dialog_filter_gen.go#L1102: 			return fmt.Errorf("unable to decode dialogFilterChatlist#d64a04a8: field pinned_peers: %w", err)
		tl_dialog_filter_gen.go#L1111: 				return fmt.Errorf("unable to decode dialogFilterChatlist#d64a04a8: field pinned_peers: %w", err)
		tl_dialog_filter_gen.go#L1119: 			return fmt.Errorf("unable to decode dialogFilterChatlist#d64a04a8: field include_peers: %w", err)
		tl_dialog_filter_gen.go#L1128: 				return fmt.Errorf("unable to decode dialogFilterChatlist#d64a04a8: field include_peers: %w", err)
		tl_dialog_filter_gen.go#L1272: 			return nil, fmt.Errorf("unable to decode DialogFilterClass: %w", err)
		tl_dialog_filter_gen.go#L1279: 			return nil, fmt.Errorf("unable to decode DialogFilterClass: %w", err)
		tl_dialog_filter_gen.go#L1286: 			return nil, fmt.Errorf("unable to decode DialogFilterClass: %w", err)
		tl_dialog_filter_gen.go#L1290: 		return nil, fmt.Errorf("unable to decode DialogFilterClass: %w", bin.NewUnexpectedID(id))
		tl_dialog_filter_gen.go#L1302: 		return fmt.Errorf("unable to decode DialogFilterBox to nil")
		tl_dialog_filter_gen.go#L1306: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_dialog_filter_gen.go#L1315: 		return fmt.Errorf("unable to encode DialogFilterClass as nil")
		tl_dialog_filter_suggested_gen.go#L135: 		return fmt.Errorf("can't encode dialogFilterSuggested#77744d4a as nil")
		tl_dialog_filter_suggested_gen.go#L144: 		return fmt.Errorf("can't encode dialogFilterSuggested#77744d4a as nil")
		tl_dialog_filter_suggested_gen.go#L147: 		return fmt.Errorf("unable to encode dialogFilterSuggested#77744d4a: field filter is nil")
		tl_dialog_filter_suggested_gen.go#L150: 		return fmt.Errorf("unable to encode dialogFilterSuggested#77744d4a: field filter: %w", err)
		tl_dialog_filter_suggested_gen.go#L159: 		return fmt.Errorf("can't decode dialogFilterSuggested#77744d4a to nil")
		tl_dialog_filter_suggested_gen.go#L162: 		return fmt.Errorf("unable to decode dialogFilterSuggested#77744d4a: %w", err)
		tl_dialog_filter_suggested_gen.go#L170: 		return fmt.Errorf("can't decode dialogFilterSuggested#77744d4a to nil")
		tl_dialog_filter_suggested_gen.go#L175: 			return fmt.Errorf("unable to decode dialogFilterSuggested#77744d4a: field filter: %w", err)
		tl_dialog_filter_suggested_gen.go#L182: 			return fmt.Errorf("unable to decode dialogFilterSuggested#77744d4a: field description: %w", err)
		tl_dialog_filter_suggested_vector_gen.go#L112: 		return fmt.Errorf("can't encode Vector<DialogFilterSuggested> as nil")
		tl_dialog_filter_suggested_vector_gen.go#L121: 		return fmt.Errorf("can't encode Vector<DialogFilterSuggested> as nil")
		tl_dialog_filter_suggested_vector_gen.go#L126: 			return fmt.Errorf("unable to encode Vector<DialogFilterSuggested>: field Elems element with index %d: %w", idx, err)
		tl_dialog_filter_suggested_vector_gen.go#L135: 		return fmt.Errorf("can't decode Vector<DialogFilterSuggested> to nil")
		tl_dialog_filter_suggested_vector_gen.go#L144: 		return fmt.Errorf("can't decode Vector<DialogFilterSuggested> to nil")
		tl_dialog_filter_suggested_vector_gen.go#L149: 			return fmt.Errorf("unable to decode Vector<DialogFilterSuggested>: field Elems: %w", err)
		tl_dialog_filter_suggested_vector_gen.go#L158: 				return fmt.Errorf("unable to decode Vector<DialogFilterSuggested>: field Elems: %w", err)
		tl_dialog_gen.go#L354: 		return fmt.Errorf("can't encode dialog#d58a08c6 as nil")
		tl_dialog_gen.go#L363: 		return fmt.Errorf("can't encode dialog#d58a08c6 as nil")
		tl_dialog_gen.go#L367: 		return fmt.Errorf("unable to encode dialog#d58a08c6: field flags: %w", err)
		tl_dialog_gen.go#L370: 		return fmt.Errorf("unable to encode dialog#d58a08c6: field peer is nil")
		tl_dialog_gen.go#L373: 		return fmt.Errorf("unable to encode dialog#d58a08c6: field peer: %w", err)
		tl_dialog_gen.go#L382: 		return fmt.Errorf("unable to encode dialog#d58a08c6: field notify_settings: %w", err)
		tl_dialog_gen.go#L389: 			return fmt.Errorf("unable to encode dialog#d58a08c6: field draft is nil")
		tl_dialog_gen.go#L392: 			return fmt.Errorf("unable to encode dialog#d58a08c6: field draft: %w", err)
		tl_dialog_gen.go#L407: 		return fmt.Errorf("can't decode dialog#d58a08c6 to nil")
		tl_dialog_gen.go#L410: 		return fmt.Errorf("unable to decode dialog#d58a08c6: %w", err)
		tl_dialog_gen.go#L418: 		return fmt.Errorf("can't decode dialog#d58a08c6 to nil")
		tl_dialog_gen.go#L422: 			return fmt.Errorf("unable to decode dialog#d58a08c6: field flags: %w", err)
		tl_dialog_gen.go#L431: 			return fmt.Errorf("unable to decode dialog#d58a08c6: field peer: %w", err)
		tl_dialog_gen.go#L438: 			return fmt.Errorf("unable to decode dialog#d58a08c6: field top_message: %w", err)
		tl_dialog_gen.go#L445: 			return fmt.Errorf("unable to decode dialog#d58a08c6: field read_inbox_max_id: %w", err)
		tl_dialog_gen.go#L452: 			return fmt.Errorf("unable to decode dialog#d58a08c6: field read_outbox_max_id: %w", err)
		tl_dialog_gen.go#L459: 			return fmt.Errorf("unable to decode dialog#d58a08c6: field unread_count: %w", err)
		tl_dialog_gen.go#L466: 			return fmt.Errorf("unable to decode dialog#d58a08c6: field unread_mentions_count: %w", err)
		tl_dialog_gen.go#L473: 			return fmt.Errorf("unable to decode dialog#d58a08c6: field unread_reactions_count: %w", err)
		tl_dialog_gen.go#L479: 			return fmt.Errorf("unable to decode dialog#d58a08c6: field notify_settings: %w", err)
		tl_dialog_gen.go#L485: 			return fmt.Errorf("unable to decode dialog#d58a08c6: field pts: %w", err)
		tl_dialog_gen.go#L492: 			return fmt.Errorf("unable to decode dialog#d58a08c6: field draft: %w", err)
		tl_dialog_gen.go#L499: 			return fmt.Errorf("unable to decode dialog#d58a08c6: field folder_id: %w", err)
		tl_dialog_gen.go#L506: 			return fmt.Errorf("unable to decode dialog#d58a08c6: field ttl_period: %w", err)
		tl_dialog_gen.go#L885: 		return fmt.Errorf("can't encode dialogFolder#71bd134c as nil")
		tl_dialog_gen.go#L894: 		return fmt.Errorf("can't encode dialogFolder#71bd134c as nil")
		tl_dialog_gen.go#L898: 		return fmt.Errorf("unable to encode dialogFolder#71bd134c: field flags: %w", err)
		tl_dialog_gen.go#L901: 		return fmt.Errorf("unable to encode dialogFolder#71bd134c: field folder: %w", err)
		tl_dialog_gen.go#L904: 		return fmt.Errorf("unable to encode dialogFolder#71bd134c: field peer is nil")
		tl_dialog_gen.go#L907: 		return fmt.Errorf("unable to encode dialogFolder#71bd134c: field peer: %w", err)
		tl_dialog_gen.go#L920: 		return fmt.Errorf("can't decode dialogFolder#71bd134c to nil")
		tl_dialog_gen.go#L923: 		return fmt.Errorf("unable to decode dialogFolder#71bd134c: %w", err)
		tl_dialog_gen.go#L931: 		return fmt.Errorf("can't decode dialogFolder#71bd134c to nil")
		tl_dialog_gen.go#L935: 			return fmt.Errorf("unable to decode dialogFolder#71bd134c: field flags: %w", err)
		tl_dialog_gen.go#L941: 			return fmt.Errorf("unable to decode dialogFolder#71bd134c: field folder: %w", err)
		tl_dialog_gen.go#L947: 			return fmt.Errorf("unable to decode dialogFolder#71bd134c: field peer: %w", err)
		tl_dialog_gen.go#L954: 			return fmt.Errorf("unable to decode dialogFolder#71bd134c: field top_message: %w", err)
		tl_dialog_gen.go#L961: 			return fmt.Errorf("unable to decode dialogFolder#71bd134c: field unread_muted_peers_count: %w", err)
		tl_dialog_gen.go#L968: 			return fmt.Errorf("unable to decode dialogFolder#71bd134c: field unread_unmuted_peers_count: %w", err)
		tl_dialog_gen.go#L975: 			return fmt.Errorf("unable to decode dialogFolder#71bd134c: field unread_muted_messages_count: %w", err)
		tl_dialog_gen.go#L982: 			return fmt.Errorf("unable to decode dialogFolder#71bd134c: field unread_unmuted_messages_count: %w", err)
		tl_dialog_gen.go#L1131: 			return nil, fmt.Errorf("unable to decode DialogClass: %w", err)
		tl_dialog_gen.go#L1138: 			return nil, fmt.Errorf("unable to decode DialogClass: %w", err)
		tl_dialog_gen.go#L1142: 		return nil, fmt.Errorf("unable to decode DialogClass: %w", bin.NewUnexpectedID(id))
		tl_dialog_gen.go#L1154: 		return fmt.Errorf("unable to decode DialogBox to nil")
		tl_dialog_gen.go#L1158: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_dialog_gen.go#L1167: 		return fmt.Errorf("unable to encode DialogClass as nil")
		tl_dialog_peer_class_vector_gen.go#L112: 		return fmt.Errorf("can't encode Vector<DialogPeer> as nil")
		tl_dialog_peer_class_vector_gen.go#L121: 		return fmt.Errorf("can't encode Vector<DialogPeer> as nil")
		tl_dialog_peer_class_vector_gen.go#L126: 			return fmt.Errorf("unable to encode Vector<DialogPeer>: field Elems element with index %d is nil", idx)
		tl_dialog_peer_class_vector_gen.go#L129: 			return fmt.Errorf("unable to encode Vector<DialogPeer>: field Elems element with index %d: %w", idx, err)
		tl_dialog_peer_class_vector_gen.go#L138: 		return fmt.Errorf("can't decode Vector<DialogPeer> to nil")
		tl_dialog_peer_class_vector_gen.go#L147: 		return fmt.Errorf("can't decode Vector<DialogPeer> to nil")
		tl_dialog_peer_class_vector_gen.go#L152: 			return fmt.Errorf("unable to decode Vector<DialogPeer>: field Elems: %w", err)
		tl_dialog_peer_class_vector_gen.go#L161: 				return fmt.Errorf("unable to decode Vector<DialogPeer>: field Elems: %w", err)
		tl_dialog_peer_gen.go#L120: 		return fmt.Errorf("can't encode dialogPeer#e56dbf05 as nil")
		tl_dialog_peer_gen.go#L129: 		return fmt.Errorf("can't encode dialogPeer#e56dbf05 as nil")
		tl_dialog_peer_gen.go#L132: 		return fmt.Errorf("unable to encode dialogPeer#e56dbf05: field peer is nil")
		tl_dialog_peer_gen.go#L135: 		return fmt.Errorf("unable to encode dialogPeer#e56dbf05: field peer: %w", err)
		tl_dialog_peer_gen.go#L143: 		return fmt.Errorf("can't decode dialogPeer#e56dbf05 to nil")
		tl_dialog_peer_gen.go#L146: 		return fmt.Errorf("unable to decode dialogPeer#e56dbf05: %w", err)
		tl_dialog_peer_gen.go#L154: 		return fmt.Errorf("can't decode dialogPeer#e56dbf05 to nil")
		tl_dialog_peer_gen.go#L159: 			return fmt.Errorf("unable to decode dialogPeer#e56dbf05: field peer: %w", err)
		tl_dialog_peer_gen.go#L266: 		return fmt.Errorf("can't encode dialogPeerFolder#514519e2 as nil")
		tl_dialog_peer_gen.go#L275: 		return fmt.Errorf("can't encode dialogPeerFolder#514519e2 as nil")
		tl_dialog_peer_gen.go#L284: 		return fmt.Errorf("can't decode dialogPeerFolder#514519e2 to nil")
		tl_dialog_peer_gen.go#L287: 		return fmt.Errorf("unable to decode dialogPeerFolder#514519e2: %w", err)
		tl_dialog_peer_gen.go#L295: 		return fmt.Errorf("can't decode dialogPeerFolder#514519e2 to nil")
		tl_dialog_peer_gen.go#L300: 			return fmt.Errorf("unable to decode dialogPeerFolder#514519e2: field folder_id: %w", err)
		tl_dialog_peer_gen.go#L371: 			return nil, fmt.Errorf("unable to decode DialogPeerClass: %w", err)
		tl_dialog_peer_gen.go#L378: 			return nil, fmt.Errorf("unable to decode DialogPeerClass: %w", err)
		tl_dialog_peer_gen.go#L382: 		return nil, fmt.Errorf("unable to decode DialogPeerClass: %w", bin.NewUnexpectedID(id))
		tl_dialog_peer_gen.go#L394: 		return fmt.Errorf("unable to decode DialogPeerBox to nil")
		tl_dialog_peer_gen.go#L398: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_dialog_peer_gen.go#L407: 		return fmt.Errorf("unable to encode DialogPeerClass as nil")
		tl_document_attribute_gen.go#L131: 		return fmt.Errorf("can't encode documentAttributeImageSize#6c37c15c as nil")
		tl_document_attribute_gen.go#L140: 		return fmt.Errorf("can't encode documentAttributeImageSize#6c37c15c as nil")
		tl_document_attribute_gen.go#L150: 		return fmt.Errorf("can't decode documentAttributeImageSize#6c37c15c to nil")
		tl_document_attribute_gen.go#L153: 		return fmt.Errorf("unable to decode documentAttributeImageSize#6c37c15c: %w", err)
		tl_document_attribute_gen.go#L161: 		return fmt.Errorf("can't decode documentAttributeImageSize#6c37c15c to nil")
		tl_document_attribute_gen.go#L166: 			return fmt.Errorf("unable to decode documentAttributeImageSize#6c37c15c: field w: %w", err)
		tl_document_attribute_gen.go#L173: 			return fmt.Errorf("unable to decode documentAttributeImageSize#6c37c15c: field h: %w", err)
		tl_document_attribute_gen.go#L265: 		return fmt.Errorf("can't encode documentAttributeAnimated#11b58939 as nil")
		tl_document_attribute_gen.go#L274: 		return fmt.Errorf("can't encode documentAttributeAnimated#11b58939 as nil")
		tl_document_attribute_gen.go#L282: 		return fmt.Errorf("can't decode documentAttributeAnimated#11b58939 to nil")
		tl_document_attribute_gen.go#L285: 		return fmt.Errorf("unable to decode documentAttributeAnimated#11b58939: %w", err)
		tl_document_attribute_gen.go#L293: 		return fmt.Errorf("can't decode documentAttributeAnimated#11b58939 to nil")
		tl_document_attribute_gen.go#L442: 		return fmt.Errorf("can't encode documentAttributeSticker#6319d612 as nil")
		tl_document_attribute_gen.go#L451: 		return fmt.Errorf("can't encode documentAttributeSticker#6319d612 as nil")
		tl_document_attribute_gen.go#L455: 		return fmt.Errorf("unable to encode documentAttributeSticker#6319d612: field flags: %w", err)
		tl_document_attribute_gen.go#L459: 		return fmt.Errorf("unable to encode documentAttributeSticker#6319d612: field stickerset is nil")
		tl_document_attribute_gen.go#L462: 		return fmt.Errorf("unable to encode documentAttributeSticker#6319d612: field stickerset: %w", err)
		tl_document_attribute_gen.go#L466: 			return fmt.Errorf("unable to encode documentAttributeSticker#6319d612: field mask_coords: %w", err)
		tl_document_attribute_gen.go#L475: 		return fmt.Errorf("can't decode documentAttributeSticker#6319d612 to nil")
		tl_document_attribute_gen.go#L478: 		return fmt.Errorf("unable to decode documentAttributeSticker#6319d612: %w", err)
		tl_document_attribute_gen.go#L486: 		return fmt.Errorf("can't decode documentAttributeSticker#6319d612 to nil")
		tl_document_attribute_gen.go#L490: 			return fmt.Errorf("unable to decode documentAttributeSticker#6319d612: field flags: %w", err)
		tl_document_attribute_gen.go#L497: 			return fmt.Errorf("unable to decode documentAttributeSticker#6319d612: field alt: %w", err)
		tl_document_attribute_gen.go#L504: 			return fmt.Errorf("unable to decode documentAttributeSticker#6319d612: field stickerset: %w", err)
		tl_document_attribute_gen.go#L510: 			return fmt.Errorf("unable to decode documentAttributeSticker#6319d612: field mask_coords: %w", err)
		tl_document_attribute_gen.go#L758: 		return fmt.Errorf("can't encode documentAttributeVideo#d38ff1c2 as nil")
		tl_document_attribute_gen.go#L767: 		return fmt.Errorf("can't encode documentAttributeVideo#d38ff1c2 as nil")
		tl_document_attribute_gen.go#L771: 		return fmt.Errorf("unable to encode documentAttributeVideo#d38ff1c2: field flags: %w", err)
		tl_document_attribute_gen.go#L785: 		return fmt.Errorf("can't decode documentAttributeVideo#d38ff1c2 to nil")
		tl_document_attribute_gen.go#L788: 		return fmt.Errorf("unable to decode documentAttributeVideo#d38ff1c2: %w", err)
		tl_document_attribute_gen.go#L796: 		return fmt.Errorf("can't decode documentAttributeVideo#d38ff1c2 to nil")
		tl_document_attribute_gen.go#L800: 			return fmt.Errorf("unable to decode documentAttributeVideo#d38ff1c2: field flags: %w", err)
		tl_document_attribute_gen.go#L809: 			return fmt.Errorf("unable to decode documentAttributeVideo#d38ff1c2: field duration: %w", err)
		tl_document_attribute_gen.go#L816: 			return fmt.Errorf("unable to decode documentAttributeVideo#d38ff1c2: field w: %w", err)
		tl_document_attribute_gen.go#L823: 			return fmt.Errorf("unable to decode documentAttributeVideo#d38ff1c2: field h: %w", err)
		tl_document_attribute_gen.go#L830: 			return fmt.Errorf("unable to decode documentAttributeVideo#d38ff1c2: field preload_prefix_size: %w", err)
		tl_document_attribute_gen.go#L1113: 		return fmt.Errorf("can't encode documentAttributeAudio#9852f9c6 as nil")
		tl_document_attribute_gen.go#L1122: 		return fmt.Errorf("can't encode documentAttributeAudio#9852f9c6 as nil")
		tl_document_attribute_gen.go#L1126: 		return fmt.Errorf("unable to encode documentAttributeAudio#9852f9c6: field flags: %w", err)
		tl_document_attribute_gen.go#L1144: 		return fmt.Errorf("can't decode documentAttributeAudio#9852f9c6 to nil")
		tl_document_attribute_gen.go#L1147: 		return fmt.Errorf("unable to decode documentAttributeAudio#9852f9c6: %w", err)
		tl_document_attribute_gen.go#L1155: 		return fmt.Errorf("can't decode documentAttributeAudio#9852f9c6 to nil")
		tl_document_attribute_gen.go#L1159: 			return fmt.Errorf("unable to decode documentAttributeAudio#9852f9c6: field flags: %w", err)
		tl_document_attribute_gen.go#L1166: 			return fmt.Errorf("unable to decode documentAttributeAudio#9852f9c6: field duration: %w", err)
		tl_document_attribute_gen.go#L1173: 			return fmt.Errorf("unable to decode documentAttributeAudio#9852f9c6: field title: %w", err)
		tl_document_attribute_gen.go#L1180: 			return fmt.Errorf("unable to decode documentAttributeAudio#9852f9c6: field performer: %w", err)
		tl_document_attribute_gen.go#L1187: 			return fmt.Errorf("unable to decode documentAttributeAudio#9852f9c6: field waveform: %w", err)
		tl_document_attribute_gen.go#L1361: 		return fmt.Errorf("can't encode documentAttributeFilename#15590068 as nil")
		tl_document_attribute_gen.go#L1370: 		return fmt.Errorf("can't encode documentAttributeFilename#15590068 as nil")
		tl_document_attribute_gen.go#L1379: 		return fmt.Errorf("can't decode documentAttributeFilename#15590068 to nil")
		tl_document_attribute_gen.go#L1382: 		return fmt.Errorf("unable to decode documentAttributeFilename#15590068: %w", err)
		tl_document_attribute_gen.go#L1390: 		return fmt.Errorf("can't decode documentAttributeFilename#15590068 to nil")
		tl_document_attribute_gen.go#L1395: 			return fmt.Errorf("unable to decode documentAttributeFilename#15590068: field file_name: %w", err)
		tl_document_attribute_gen.go#L1479: 		return fmt.Errorf("can't encode documentAttributeHasStickers#9801d2f7 as nil")
		tl_document_attribute_gen.go#L1488: 		return fmt.Errorf("can't encode documentAttributeHasStickers#9801d2f7 as nil")
		tl_document_attribute_gen.go#L1496: 		return fmt.Errorf("can't decode documentAttributeHasStickers#9801d2f7 to nil")
		tl_document_attribute_gen.go#L1499: 		return fmt.Errorf("unable to decode documentAttributeHasStickers#9801d2f7: %w", err)
		tl_document_attribute_gen.go#L1507: 		return fmt.Errorf("can't decode documentAttributeHasStickers#9801d2f7 to nil")
		tl_document_attribute_gen.go#L1653: 		return fmt.Errorf("can't encode documentAttributeCustomEmoji#fd149899 as nil")
		tl_document_attribute_gen.go#L1662: 		return fmt.Errorf("can't encode documentAttributeCustomEmoji#fd149899 as nil")
		tl_document_attribute_gen.go#L1666: 		return fmt.Errorf("unable to encode documentAttributeCustomEmoji#fd149899: field flags: %w", err)
		tl_document_attribute_gen.go#L1670: 		return fmt.Errorf("unable to encode documentAttributeCustomEmoji#fd149899: field stickerset is nil")
		tl_document_attribute_gen.go#L1673: 		return fmt.Errorf("unable to encode documentAttributeCustomEmoji#fd149899: field stickerset: %w", err)
		tl_document_attribute_gen.go#L1681: 		return fmt.Errorf("can't decode documentAttributeCustomEmoji#fd149899 to nil")
		tl_document_attribute_gen.go#L1684: 		return fmt.Errorf("unable to decode documentAttributeCustomEmoji#fd149899: %w", err)
		tl_document_attribute_gen.go#L1692: 		return fmt.Errorf("can't decode documentAttributeCustomEmoji#fd149899 to nil")
		tl_document_attribute_gen.go#L1696: 			return fmt.Errorf("unable to decode documentAttributeCustomEmoji#fd149899: field flags: %w", err)
		tl_document_attribute_gen.go#L1704: 			return fmt.Errorf("unable to decode documentAttributeCustomEmoji#fd149899: field alt: %w", err)
		tl_document_attribute_gen.go#L1711: 			return fmt.Errorf("unable to decode documentAttributeCustomEmoji#fd149899: field stickerset: %w", err)
		tl_document_attribute_gen.go#L1826: 			return nil, fmt.Errorf("unable to decode DocumentAttributeClass: %w", err)
		tl_document_attribute_gen.go#L1833: 			return nil, fmt.Errorf("unable to decode DocumentAttributeClass: %w", err)
		tl_document_attribute_gen.go#L1840: 			return nil, fmt.Errorf("unable to decode DocumentAttributeClass: %w", err)
		tl_document_attribute_gen.go#L1847: 			return nil, fmt.Errorf("unable to decode DocumentAttributeClass: %w", err)
		tl_document_attribute_gen.go#L1854: 			return nil, fmt.Errorf("unable to decode DocumentAttributeClass: %w", err)
		tl_document_attribute_gen.go#L1861: 			return nil, fmt.Errorf("unable to decode DocumentAttributeClass: %w", err)
		tl_document_attribute_gen.go#L1868: 			return nil, fmt.Errorf("unable to decode DocumentAttributeClass: %w", err)
		tl_document_attribute_gen.go#L1875: 			return nil, fmt.Errorf("unable to decode DocumentAttributeClass: %w", err)
		tl_document_attribute_gen.go#L1879: 		return nil, fmt.Errorf("unable to decode DocumentAttributeClass: %w", bin.NewUnexpectedID(id))
		tl_document_attribute_gen.go#L1891: 		return fmt.Errorf("unable to decode DocumentAttributeBox to nil")
		tl_document_attribute_gen.go#L1895: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_document_attribute_gen.go#L1904: 		return fmt.Errorf("unable to encode DocumentAttributeClass as nil")
		tl_document_class_vector_gen.go#L112: 		return fmt.Errorf("can't encode Vector<Document> as nil")
		tl_document_class_vector_gen.go#L121: 		return fmt.Errorf("can't encode Vector<Document> as nil")
		tl_document_class_vector_gen.go#L126: 			return fmt.Errorf("unable to encode Vector<Document>: field Elems element with index %d is nil", idx)
		tl_document_class_vector_gen.go#L129: 			return fmt.Errorf("unable to encode Vector<Document>: field Elems element with index %d: %w", idx, err)
		tl_document_class_vector_gen.go#L138: 		return fmt.Errorf("can't decode Vector<Document> to nil")
		tl_document_class_vector_gen.go#L147: 		return fmt.Errorf("can't decode Vector<Document> to nil")
		tl_document_class_vector_gen.go#L152: 			return fmt.Errorf("unable to decode Vector<Document>: field Elems: %w", err)
		tl_document_class_vector_gen.go#L161: 				return fmt.Errorf("unable to decode Vector<Document>: field Elems: %w", err)
		tl_document_gen.go#L120: 		return fmt.Errorf("can't encode documentEmpty#36f8c871 as nil")
		tl_document_gen.go#L129: 		return fmt.Errorf("can't encode documentEmpty#36f8c871 as nil")
		tl_document_gen.go#L138: 		return fmt.Errorf("can't decode documentEmpty#36f8c871 to nil")
		tl_document_gen.go#L141: 		return fmt.Errorf("unable to decode documentEmpty#36f8c871: %w", err)
		tl_document_gen.go#L149: 		return fmt.Errorf("can't decode documentEmpty#36f8c871 to nil")
		tl_document_gen.go#L154: 			return fmt.Errorf("unable to decode documentEmpty#36f8c871: field id: %w", err)
		tl_document_gen.go#L387: 		return fmt.Errorf("can't encode document#8fd4c4d8 as nil")
		tl_document_gen.go#L396: 		return fmt.Errorf("can't encode document#8fd4c4d8 as nil")
		tl_document_gen.go#L400: 		return fmt.Errorf("unable to encode document#8fd4c4d8: field flags: %w", err)
		tl_document_gen.go#L412: 				return fmt.Errorf("unable to encode document#8fd4c4d8: field thumbs element with index %d is nil", idx)
		tl_document_gen.go#L415: 				return fmt.Errorf("unable to encode document#8fd4c4d8: field thumbs element with index %d: %w", idx, err)
		tl_document_gen.go#L423: 				return fmt.Errorf("unable to encode document#8fd4c4d8: field video_thumbs element with index %d is nil", idx)
		tl_document_gen.go#L426: 				return fmt.Errorf("unable to encode document#8fd4c4d8: field video_thumbs element with index %d: %w", idx, err)
		tl_document_gen.go#L434: 			return fmt.Errorf("unable to encode document#8fd4c4d8: field attributes element with index %d is nil", idx)
		tl_document_gen.go#L437: 			return fmt.Errorf("unable to encode document#8fd4c4d8: field attributes element with index %d: %w", idx, err)
		tl_document_gen.go#L446: 		return fmt.Errorf("can't decode document#8fd4c4d8 to nil")
		tl_document_gen.go#L449: 		return fmt.Errorf("unable to decode document#8fd4c4d8: %w", err)
		tl_document_gen.go#L457: 		return fmt.Errorf("can't decode document#8fd4c4d8 to nil")
		tl_document_gen.go#L461: 			return fmt.Errorf("unable to decode document#8fd4c4d8: field flags: %w", err)
		tl_document_gen.go#L467: 			return fmt.Errorf("unable to decode document#8fd4c4d8: field id: %w", err)
		tl_document_gen.go#L474: 			return fmt.Errorf("unable to decode document#8fd4c4d8: field access_hash: %w", err)
		tl_document_gen.go#L481: 			return fmt.Errorf("unable to decode document#8fd4c4d8: field file_reference: %w", err)
		tl_document_gen.go#L488: 			return fmt.Errorf("unable to decode document#8fd4c4d8: field date: %w", err)
		tl_document_gen.go#L495: 			return fmt.Errorf("unable to decode document#8fd4c4d8: field mime_type: %w", err)
		tl_document_gen.go#L502: 			return fmt.Errorf("unable to decode document#8fd4c4d8: field size: %w", err)
		tl_document_gen.go#L509: 			return fmt.Errorf("unable to decode document#8fd4c4d8: field thumbs: %w", err)
		tl_document_gen.go#L518: 				return fmt.Errorf("unable to decode document#8fd4c4d8: field thumbs: %w", err)
		tl_document_gen.go#L526: 			return fmt.Errorf("unable to decode document#8fd4c4d8: field video_thumbs: %w", err)
		tl_document_gen.go#L535: 				return fmt.Errorf("unable to decode document#8fd4c4d8: field video_thumbs: %w", err)
		tl_document_gen.go#L543: 			return fmt.Errorf("unable to decode document#8fd4c4d8: field dc_id: %w", err)
		tl_document_gen.go#L550: 			return fmt.Errorf("unable to decode document#8fd4c4d8: field attributes: %w", err)
		tl_document_gen.go#L559: 				return fmt.Errorf("unable to decode document#8fd4c4d8: field attributes: %w", err)
		tl_document_gen.go#L772: 			return nil, fmt.Errorf("unable to decode DocumentClass: %w", err)
		tl_document_gen.go#L779: 			return nil, fmt.Errorf("unable to decode DocumentClass: %w", err)
		tl_document_gen.go#L783: 		return nil, fmt.Errorf("unable to decode DocumentClass: %w", bin.NewUnexpectedID(id))
		tl_document_gen.go#L795: 		return fmt.Errorf("unable to decode DocumentBox to nil")
		tl_document_gen.go#L799: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_document_gen.go#L808: 		return fmt.Errorf("unable to encode DocumentClass as nil")
		tl_double_gen.go#L97: 		return fmt.Errorf("can't encode double#2210c154 as nil")
		tl_double_gen.go#L106: 		return fmt.Errorf("can't encode double#2210c154 as nil")
		tl_double_gen.go#L114: 		return fmt.Errorf("can't decode double#2210c154 to nil")
		tl_double_gen.go#L117: 		return fmt.Errorf("unable to decode double#2210c154: %w", err)
		tl_double_gen.go#L125: 		return fmt.Errorf("can't decode double#2210c154 to nil")
		tl_draft_message_gen.go#L141: 		return fmt.Errorf("can't encode draftMessageEmpty#1b0c841a as nil")
		tl_draft_message_gen.go#L150: 		return fmt.Errorf("can't encode draftMessageEmpty#1b0c841a as nil")
		tl_draft_message_gen.go#L154: 		return fmt.Errorf("unable to encode draftMessageEmpty#1b0c841a: field flags: %w", err)
		tl_draft_message_gen.go#L165: 		return fmt.Errorf("can't decode draftMessageEmpty#1b0c841a to nil")
		tl_draft_message_gen.go#L168: 		return fmt.Errorf("unable to decode draftMessageEmpty#1b0c841a: %w", err)
		tl_draft_message_gen.go#L176: 		return fmt.Errorf("can't decode draftMessageEmpty#1b0c841a to nil")
		tl_draft_message_gen.go#L180: 			return fmt.Errorf("unable to decode draftMessageEmpty#1b0c841a: field flags: %w", err)
		tl_draft_message_gen.go#L186: 			return fmt.Errorf("unable to decode draftMessageEmpty#1b0c841a: field date: %w", err)
		tl_draft_message_gen.go#L418: 		return fmt.Errorf("can't encode draftMessage#3fccf7ef as nil")
		tl_draft_message_gen.go#L427: 		return fmt.Errorf("can't encode draftMessage#3fccf7ef as nil")
		tl_draft_message_gen.go#L431: 		return fmt.Errorf("unable to encode draftMessage#3fccf7ef: field flags: %w", err)
		tl_draft_message_gen.go#L435: 			return fmt.Errorf("unable to encode draftMessage#3fccf7ef: field reply_to is nil")
		tl_draft_message_gen.go#L438: 			return fmt.Errorf("unable to encode draftMessage#3fccf7ef: field reply_to: %w", err)
		tl_draft_message_gen.go#L446: 				return fmt.Errorf("unable to encode draftMessage#3fccf7ef: field entities element with index %d is nil", idx)
		tl_draft_message_gen.go#L449: 				return fmt.Errorf("unable to encode draftMessage#3fccf7ef: field entities element with index %d: %w", idx, err)
		tl_draft_message_gen.go#L455: 			return fmt.Errorf("unable to encode draftMessage#3fccf7ef: field media is nil")
		tl_draft_message_gen.go#L458: 			return fmt.Errorf("unable to encode draftMessage#3fccf7ef: field media: %w", err)
		tl_draft_message_gen.go#L468: 		return fmt.Errorf("can't decode draftMessage#3fccf7ef to nil")
		tl_draft_message_gen.go#L471: 		return fmt.Errorf("unable to decode draftMessage#3fccf7ef: %w", err)
		tl_draft_message_gen.go#L479: 		return fmt.Errorf("can't decode draftMessage#3fccf7ef to nil")
		tl_draft_message_gen.go#L483: 			return fmt.Errorf("unable to decode draftMessage#3fccf7ef: field flags: %w", err)
		tl_draft_message_gen.go#L491: 			return fmt.Errorf("unable to decode draftMessage#3fccf7ef: field reply_to: %w", err)
		tl_draft_message_gen.go#L498: 			return fmt.Errorf("unable to decode draftMessage#3fccf7ef: field message: %w", err)
		tl_draft_message_gen.go#L505: 			return fmt.Errorf("unable to decode draftMessage#3fccf7ef: field entities: %w", err)
		tl_draft_message_gen.go#L514: 				return fmt.Errorf("unable to decode draftMessage#3fccf7ef: field entities: %w", err)
		tl_draft_message_gen.go#L522: 			return fmt.Errorf("unable to decode draftMessage#3fccf7ef: field media: %w", err)
		tl_draft_message_gen.go#L529: 			return fmt.Errorf("unable to decode draftMessage#3fccf7ef: field date: %w", err)
		tl_draft_message_gen.go#L713: 			return nil, fmt.Errorf("unable to decode DraftMessageClass: %w", err)
		tl_draft_message_gen.go#L720: 			return nil, fmt.Errorf("unable to decode DraftMessageClass: %w", err)
		tl_draft_message_gen.go#L724: 		return nil, fmt.Errorf("unable to decode DraftMessageClass: %w", bin.NewUnexpectedID(id))
		tl_draft_message_gen.go#L736: 		return fmt.Errorf("unable to decode DraftMessageBox to nil")
		tl_draft_message_gen.go#L740: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_draft_message_gen.go#L749: 		return fmt.Errorf("unable to encode DraftMessageClass as nil")
		tl_email_verification_gen.go#L120: 		return fmt.Errorf("can't encode emailVerificationCode#922e55a9 as nil")
		tl_email_verification_gen.go#L129: 		return fmt.Errorf("can't encode emailVerificationCode#922e55a9 as nil")
		tl_email_verification_gen.go#L138: 		return fmt.Errorf("can't decode emailVerificationCode#922e55a9 to nil")
		tl_email_verification_gen.go#L141: 		return fmt.Errorf("unable to decode emailVerificationCode#922e55a9: %w", err)
		tl_email_verification_gen.go#L149: 		return fmt.Errorf("can't decode emailVerificationCode#922e55a9 to nil")
		tl_email_verification_gen.go#L154: 			return fmt.Errorf("unable to decode emailVerificationCode#922e55a9: field code: %w", err)
		tl_email_verification_gen.go#L255: 		return fmt.Errorf("can't encode emailVerificationGoogle#db909ec2 as nil")
		tl_email_verification_gen.go#L264: 		return fmt.Errorf("can't encode emailVerificationGoogle#db909ec2 as nil")
		tl_email_verification_gen.go#L273: 		return fmt.Errorf("can't decode emailVerificationGoogle#db909ec2 to nil")
		tl_email_verification_gen.go#L276: 		return fmt.Errorf("unable to decode emailVerificationGoogle#db909ec2: %w", err)
		tl_email_verification_gen.go#L284: 		return fmt.Errorf("can't decode emailVerificationGoogle#db909ec2 to nil")
		tl_email_verification_gen.go#L289: 			return fmt.Errorf("unable to decode emailVerificationGoogle#db909ec2: field token: %w", err)
		tl_email_verification_gen.go#L390: 		return fmt.Errorf("can't encode emailVerificationApple#96d074fd as nil")
		tl_email_verification_gen.go#L399: 		return fmt.Errorf("can't encode emailVerificationApple#96d074fd as nil")
		tl_email_verification_gen.go#L408: 		return fmt.Errorf("can't decode emailVerificationApple#96d074fd to nil")
		tl_email_verification_gen.go#L411: 		return fmt.Errorf("unable to decode emailVerificationApple#96d074fd: %w", err)
		tl_email_verification_gen.go#L419: 		return fmt.Errorf("can't decode emailVerificationApple#96d074fd to nil")
		tl_email_verification_gen.go#L424: 			return fmt.Errorf("unable to decode emailVerificationApple#96d074fd: field token: %w", err)
		tl_email_verification_gen.go#L488: 			return nil, fmt.Errorf("unable to decode EmailVerificationClass: %w", err)
		tl_email_verification_gen.go#L495: 			return nil, fmt.Errorf("unable to decode EmailVerificationClass: %w", err)
		tl_email_verification_gen.go#L502: 			return nil, fmt.Errorf("unable to decode EmailVerificationClass: %w", err)
		tl_email_verification_gen.go#L506: 		return nil, fmt.Errorf("unable to decode EmailVerificationClass: %w", bin.NewUnexpectedID(id))
		tl_email_verification_gen.go#L518: 		return fmt.Errorf("unable to decode EmailVerificationBox to nil")
		tl_email_verification_gen.go#L522: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_email_verification_gen.go#L531: 		return fmt.Errorf("unable to encode EmailVerificationClass as nil")
		tl_email_verify_purpose_gen.go#L134: 		return fmt.Errorf("can't encode emailVerifyPurposeLoginSetup#4345be73 as nil")
		tl_email_verify_purpose_gen.go#L143: 		return fmt.Errorf("can't encode emailVerifyPurposeLoginSetup#4345be73 as nil")
		tl_email_verify_purpose_gen.go#L153: 		return fmt.Errorf("can't decode emailVerifyPurposeLoginSetup#4345be73 to nil")
		tl_email_verify_purpose_gen.go#L156: 		return fmt.Errorf("unable to decode emailVerifyPurposeLoginSetup#4345be73: %w", err)
		tl_email_verify_purpose_gen.go#L164: 		return fmt.Errorf("can't decode emailVerifyPurposeLoginSetup#4345be73 to nil")
		tl_email_verify_purpose_gen.go#L169: 			return fmt.Errorf("unable to decode emailVerifyPurposeLoginSetup#4345be73: field phone_number: %w", err)
		tl_email_verify_purpose_gen.go#L176: 			return fmt.Errorf("unable to decode emailVerifyPurposeLoginSetup#4345be73: field phone_code_hash: %w", err)
		tl_email_verify_purpose_gen.go#L268: 		return fmt.Errorf("can't encode emailVerifyPurposeLoginChange#527d22eb as nil")
		tl_email_verify_purpose_gen.go#L277: 		return fmt.Errorf("can't encode emailVerifyPurposeLoginChange#527d22eb as nil")
		tl_email_verify_purpose_gen.go#L285: 		return fmt.Errorf("can't decode emailVerifyPurposeLoginChange#527d22eb to nil")
		tl_email_verify_purpose_gen.go#L288: 		return fmt.Errorf("unable to decode emailVerifyPurposeLoginChange#527d22eb: %w", err)
		tl_email_verify_purpose_gen.go#L296: 		return fmt.Errorf("can't decode emailVerifyPurposeLoginChange#527d22eb to nil")
		tl_email_verify_purpose_gen.go#L373: 		return fmt.Errorf("can't encode emailVerifyPurposePassport#bbf51685 as nil")
		tl_email_verify_purpose_gen.go#L382: 		return fmt.Errorf("can't encode emailVerifyPurposePassport#bbf51685 as nil")
		tl_email_verify_purpose_gen.go#L390: 		return fmt.Errorf("can't decode emailVerifyPurposePassport#bbf51685 to nil")
		tl_email_verify_purpose_gen.go#L393: 		return fmt.Errorf("unable to decode emailVerifyPurposePassport#bbf51685: %w", err)
		tl_email_verify_purpose_gen.go#L401: 		return fmt.Errorf("can't decode emailVerifyPurposePassport#bbf51685 to nil")
		tl_email_verify_purpose_gen.go#L455: 			return nil, fmt.Errorf("unable to decode EmailVerifyPurposeClass: %w", err)
		tl_email_verify_purpose_gen.go#L462: 			return nil, fmt.Errorf("unable to decode EmailVerifyPurposeClass: %w", err)
		tl_email_verify_purpose_gen.go#L469: 			return nil, fmt.Errorf("unable to decode EmailVerifyPurposeClass: %w", err)
		tl_email_verify_purpose_gen.go#L473: 		return nil, fmt.Errorf("unable to decode EmailVerifyPurposeClass: %w", bin.NewUnexpectedID(id))
		tl_email_verify_purpose_gen.go#L485: 		return fmt.Errorf("unable to decode EmailVerifyPurposeBox to nil")
		tl_email_verify_purpose_gen.go#L489: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_email_verify_purpose_gen.go#L498: 		return fmt.Errorf("unable to encode EmailVerifyPurposeClass as nil")
		tl_emoji_group_gen.go#L140: 		return fmt.Errorf("can't encode emojiGroup#7a9abda9 as nil")
		tl_emoji_group_gen.go#L149: 		return fmt.Errorf("can't encode emojiGroup#7a9abda9 as nil")
		tl_emoji_group_gen.go#L163: 		return fmt.Errorf("can't decode emojiGroup#7a9abda9 to nil")
		tl_emoji_group_gen.go#L166: 		return fmt.Errorf("unable to decode emojiGroup#7a9abda9: %w", err)
		tl_emoji_group_gen.go#L174: 		return fmt.Errorf("can't decode emojiGroup#7a9abda9 to nil")
		tl_emoji_group_gen.go#L179: 			return fmt.Errorf("unable to decode emojiGroup#7a9abda9: field title: %w", err)
		tl_emoji_group_gen.go#L186: 			return fmt.Errorf("unable to decode emojiGroup#7a9abda9: field icon_emoji_id: %w", err)
		tl_emoji_group_gen.go#L193: 			return fmt.Errorf("unable to decode emojiGroup#7a9abda9: field emoticons: %w", err)
		tl_emoji_group_gen.go#L202: 				return fmt.Errorf("unable to decode emojiGroup#7a9abda9: field emoticons: %w", err)
		tl_emoji_keyword_gen.go#L131: 		return fmt.Errorf("can't encode emojiKeyword#d5b3b9f9 as nil")
		tl_emoji_keyword_gen.go#L140: 		return fmt.Errorf("can't encode emojiKeyword#d5b3b9f9 as nil")
		tl_emoji_keyword_gen.go#L153: 		return fmt.Errorf("can't decode emojiKeyword#d5b3b9f9 to nil")
		tl_emoji_keyword_gen.go#L156: 		return fmt.Errorf("unable to decode emojiKeyword#d5b3b9f9: %w", err)
		tl_emoji_keyword_gen.go#L164: 		return fmt.Errorf("can't decode emojiKeyword#d5b3b9f9 to nil")
		tl_emoji_keyword_gen.go#L169: 			return fmt.Errorf("unable to decode emojiKeyword#d5b3b9f9: field keyword: %w", err)
		tl_emoji_keyword_gen.go#L176: 			return fmt.Errorf("unable to decode emojiKeyword#d5b3b9f9: field emoticons: %w", err)
		tl_emoji_keyword_gen.go#L185: 				return fmt.Errorf("unable to decode emojiKeyword#d5b3b9f9: field emoticons: %w", err)
		tl_emoji_keyword_gen.go#L306: 		return fmt.Errorf("can't encode emojiKeywordDeleted#236df622 as nil")
		tl_emoji_keyword_gen.go#L315: 		return fmt.Errorf("can't encode emojiKeywordDeleted#236df622 as nil")
		tl_emoji_keyword_gen.go#L328: 		return fmt.Errorf("can't decode emojiKeywordDeleted#236df622 to nil")
		tl_emoji_keyword_gen.go#L331: 		return fmt.Errorf("unable to decode emojiKeywordDeleted#236df622: %w", err)
		tl_emoji_keyword_gen.go#L339: 		return fmt.Errorf("can't decode emojiKeywordDeleted#236df622 to nil")
		tl_emoji_keyword_gen.go#L344: 			return fmt.Errorf("unable to decode emojiKeywordDeleted#236df622: field keyword: %w", err)
		tl_emoji_keyword_gen.go#L351: 			return fmt.Errorf("unable to decode emojiKeywordDeleted#236df622: field emoticons: %w", err)
		tl_emoji_keyword_gen.go#L360: 				return fmt.Errorf("unable to decode emojiKeywordDeleted#236df622: field emoticons: %w", err)
		tl_emoji_keyword_gen.go#L438: 			return nil, fmt.Errorf("unable to decode EmojiKeywordClass: %w", err)
		tl_emoji_keyword_gen.go#L445: 			return nil, fmt.Errorf("unable to decode EmojiKeywordClass: %w", err)
		tl_emoji_keyword_gen.go#L449: 		return nil, fmt.Errorf("unable to decode EmojiKeywordClass: %w", bin.NewUnexpectedID(id))
		tl_emoji_keyword_gen.go#L461: 		return fmt.Errorf("unable to decode EmojiKeywordBox to nil")
		tl_emoji_keyword_gen.go#L465: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_emoji_keyword_gen.go#L474: 		return fmt.Errorf("unable to encode EmojiKeywordClass as nil")
		tl_emoji_keywords_difference_gen.go#L148: 		return fmt.Errorf("can't encode emojiKeywordsDifference#5cc761bd as nil")
		tl_emoji_keywords_difference_gen.go#L157: 		return fmt.Errorf("can't encode emojiKeywordsDifference#5cc761bd as nil")
		tl_emoji_keywords_difference_gen.go#L165: 			return fmt.Errorf("unable to encode emojiKeywordsDifference#5cc761bd: field keywords element with index %d is nil", idx)
		tl_emoji_keywords_difference_gen.go#L168: 			return fmt.Errorf("unable to encode emojiKeywordsDifference#5cc761bd: field keywords element with index %d: %w", idx, err)
		tl_emoji_keywords_difference_gen.go#L177: 		return fmt.Errorf("can't decode emojiKeywordsDifference#5cc761bd to nil")
		tl_emoji_keywords_difference_gen.go#L180: 		return fmt.Errorf("unable to decode emojiKeywordsDifference#5cc761bd: %w", err)
		tl_emoji_keywords_difference_gen.go#L188: 		return fmt.Errorf("can't decode emojiKeywordsDifference#5cc761bd to nil")
		tl_emoji_keywords_difference_gen.go#L193: 			return fmt.Errorf("unable to decode emojiKeywordsDifference#5cc761bd: field lang_code: %w", err)
		tl_emoji_keywords_difference_gen.go#L200: 			return fmt.Errorf("unable to decode emojiKeywordsDifference#5cc761bd: field from_version: %w", err)
		tl_emoji_keywords_difference_gen.go#L207: 			return fmt.Errorf("unable to decode emojiKeywordsDifference#5cc761bd: field version: %w", err)
		tl_emoji_keywords_difference_gen.go#L214: 			return fmt.Errorf("unable to decode emojiKeywordsDifference#5cc761bd: field keywords: %w", err)
		tl_emoji_keywords_difference_gen.go#L223: 				return fmt.Errorf("unable to decode emojiKeywordsDifference#5cc761bd: field keywords: %w", err)
		tl_emoji_language_gen.go#L115: 		return fmt.Errorf("can't encode emojiLanguage#b3fb5361 as nil")
		tl_emoji_language_gen.go#L124: 		return fmt.Errorf("can't encode emojiLanguage#b3fb5361 as nil")
		tl_emoji_language_gen.go#L133: 		return fmt.Errorf("can't decode emojiLanguage#b3fb5361 to nil")
		tl_emoji_language_gen.go#L136: 		return fmt.Errorf("unable to decode emojiLanguage#b3fb5361: %w", err)
		tl_emoji_language_gen.go#L144: 		return fmt.Errorf("can't decode emojiLanguage#b3fb5361 to nil")
		tl_emoji_language_gen.go#L149: 			return fmt.Errorf("unable to decode emojiLanguage#b3fb5361: field lang_code: %w", err)
		tl_emoji_language_vector_gen.go#L112: 		return fmt.Errorf("can't encode Vector<EmojiLanguage> as nil")
		tl_emoji_language_vector_gen.go#L121: 		return fmt.Errorf("can't encode Vector<EmojiLanguage> as nil")
		tl_emoji_language_vector_gen.go#L126: 			return fmt.Errorf("unable to encode Vector<EmojiLanguage>: field Elems element with index %d: %w", idx, err)
		tl_emoji_language_vector_gen.go#L135: 		return fmt.Errorf("can't decode Vector<EmojiLanguage> to nil")
		tl_emoji_language_vector_gen.go#L144: 		return fmt.Errorf("can't decode Vector<EmojiLanguage> to nil")
		tl_emoji_language_vector_gen.go#L149: 			return fmt.Errorf("unable to decode Vector<EmojiLanguage>: field Elems: %w", err)
		tl_emoji_language_vector_gen.go#L158: 				return fmt.Errorf("unable to decode Vector<EmojiLanguage>: field Elems: %w", err)
		tl_emoji_list_gen.go#L106: 		return fmt.Errorf("can't encode emojiListNotModified#481eadfa as nil")
		tl_emoji_list_gen.go#L115: 		return fmt.Errorf("can't encode emojiListNotModified#481eadfa as nil")
		tl_emoji_list_gen.go#L123: 		return fmt.Errorf("can't decode emojiListNotModified#481eadfa to nil")
		tl_emoji_list_gen.go#L126: 		return fmt.Errorf("unable to decode emojiListNotModified#481eadfa: %w", err)
		tl_emoji_list_gen.go#L134: 		return fmt.Errorf("can't decode emojiListNotModified#481eadfa to nil")
		tl_emoji_list_gen.go#L242: 		return fmt.Errorf("can't encode emojiList#7a1e11d1 as nil")
		tl_emoji_list_gen.go#L251: 		return fmt.Errorf("can't encode emojiList#7a1e11d1 as nil")
		tl_emoji_list_gen.go#L264: 		return fmt.Errorf("can't decode emojiList#7a1e11d1 to nil")
		tl_emoji_list_gen.go#L267: 		return fmt.Errorf("unable to decode emojiList#7a1e11d1: %w", err)
		tl_emoji_list_gen.go#L275: 		return fmt.Errorf("can't decode emojiList#7a1e11d1 to nil")
		tl_emoji_list_gen.go#L280: 			return fmt.Errorf("unable to decode emojiList#7a1e11d1: field hash: %w", err)
		tl_emoji_list_gen.go#L287: 			return fmt.Errorf("unable to decode emojiList#7a1e11d1: field document_id: %w", err)
		tl_emoji_list_gen.go#L296: 				return fmt.Errorf("unable to decode emojiList#7a1e11d1: field document_id: %w", err)
		tl_emoji_list_gen.go#L381: 			return nil, fmt.Errorf("unable to decode EmojiListClass: %w", err)
		tl_emoji_list_gen.go#L388: 			return nil, fmt.Errorf("unable to decode EmojiListClass: %w", err)
		tl_emoji_list_gen.go#L392: 		return nil, fmt.Errorf("unable to decode EmojiListClass: %w", bin.NewUnexpectedID(id))
		tl_emoji_list_gen.go#L404: 		return fmt.Errorf("unable to decode EmojiListBox to nil")
		tl_emoji_list_gen.go#L408: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_emoji_list_gen.go#L417: 		return fmt.Errorf("unable to encode EmojiListClass as nil")
		tl_emoji_status_gen.go#L103: 		return fmt.Errorf("can't encode emojiStatusEmpty#2de11aae as nil")
		tl_emoji_status_gen.go#L112: 		return fmt.Errorf("can't encode emojiStatusEmpty#2de11aae as nil")
		tl_emoji_status_gen.go#L120: 		return fmt.Errorf("can't decode emojiStatusEmpty#2de11aae to nil")
		tl_emoji_status_gen.go#L123: 		return fmt.Errorf("unable to decode emojiStatusEmpty#2de11aae: %w", err)
		tl_emoji_status_gen.go#L131: 		return fmt.Errorf("can't decode emojiStatusEmpty#2de11aae to nil")
		tl_emoji_status_gen.go#L228: 		return fmt.Errorf("can't encode emojiStatus#929b619d as nil")
		tl_emoji_status_gen.go#L237: 		return fmt.Errorf("can't encode emojiStatus#929b619d as nil")
		tl_emoji_status_gen.go#L246: 		return fmt.Errorf("can't decode emojiStatus#929b619d to nil")
		tl_emoji_status_gen.go#L249: 		return fmt.Errorf("unable to decode emojiStatus#929b619d: %w", err)
		tl_emoji_status_gen.go#L257: 		return fmt.Errorf("can't decode emojiStatus#929b619d to nil")
		tl_emoji_status_gen.go#L262: 			return fmt.Errorf("unable to decode emojiStatus#929b619d: field document_id: %w", err)
		tl_emoji_status_gen.go#L380: 		return fmt.Errorf("can't encode emojiStatusUntil#fa30a8c7 as nil")
		tl_emoji_status_gen.go#L389: 		return fmt.Errorf("can't encode emojiStatusUntil#fa30a8c7 as nil")
		tl_emoji_status_gen.go#L399: 		return fmt.Errorf("can't decode emojiStatusUntil#fa30a8c7 to nil")
		tl_emoji_status_gen.go#L402: 		return fmt.Errorf("unable to decode emojiStatusUntil#fa30a8c7: %w", err)
		tl_emoji_status_gen.go#L410: 		return fmt.Errorf("can't decode emojiStatusUntil#fa30a8c7 to nil")
		tl_emoji_status_gen.go#L415: 			return fmt.Errorf("unable to decode emojiStatusUntil#fa30a8c7: field document_id: %w", err)
		tl_emoji_status_gen.go#L422: 			return fmt.Errorf("unable to decode emojiStatusUntil#fa30a8c7: field until: %w", err)
		tl_emoji_status_gen.go#L541: 			return nil, fmt.Errorf("unable to decode EmojiStatusClass: %w", err)
		tl_emoji_status_gen.go#L548: 			return nil, fmt.Errorf("unable to decode EmojiStatusClass: %w", err)
		tl_emoji_status_gen.go#L555: 			return nil, fmt.Errorf("unable to decode EmojiStatusClass: %w", err)
		tl_emoji_status_gen.go#L559: 		return nil, fmt.Errorf("unable to decode EmojiStatusClass: %w", bin.NewUnexpectedID(id))
		tl_emoji_status_gen.go#L571: 		return fmt.Errorf("unable to decode EmojiStatusBox to nil")
		tl_emoji_status_gen.go#L575: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_emoji_status_gen.go#L584: 		return fmt.Errorf("unable to encode EmojiStatusClass as nil")
		tl_emoji_url_gen.go#L117: 		return fmt.Errorf("can't encode emojiURL#a575739d as nil")
		tl_emoji_url_gen.go#L126: 		return fmt.Errorf("can't encode emojiURL#a575739d as nil")
		tl_emoji_url_gen.go#L135: 		return fmt.Errorf("can't decode emojiURL#a575739d to nil")
		tl_emoji_url_gen.go#L138: 		return fmt.Errorf("unable to decode emojiURL#a575739d: %w", err)
		tl_emoji_url_gen.go#L146: 		return fmt.Errorf("can't decode emojiURL#a575739d to nil")
		tl_emoji_url_gen.go#L151: 			return fmt.Errorf("unable to decode emojiURL#a575739d: field url: %w", err)
		tl_encrypted_chat_gen.go#L120: 		return fmt.Errorf("can't encode encryptedChatEmpty#ab7ec0a0 as nil")
		tl_encrypted_chat_gen.go#L129: 		return fmt.Errorf("can't encode encryptedChatEmpty#ab7ec0a0 as nil")
		tl_encrypted_chat_gen.go#L138: 		return fmt.Errorf("can't decode encryptedChatEmpty#ab7ec0a0 to nil")
		tl_encrypted_chat_gen.go#L141: 		return fmt.Errorf("unable to decode encryptedChatEmpty#ab7ec0a0: %w", err)
		tl_encrypted_chat_gen.go#L149: 		return fmt.Errorf("can't decode encryptedChatEmpty#ab7ec0a0 to nil")
		tl_encrypted_chat_gen.go#L154: 			return fmt.Errorf("unable to decode encryptedChatEmpty#ab7ec0a0: field id: %w", err)
		tl_encrypted_chat_gen.go#L299: 		return fmt.Errorf("can't encode encryptedChatWaiting#66b25953 as nil")
		tl_encrypted_chat_gen.go#L308: 		return fmt.Errorf("can't encode encryptedChatWaiting#66b25953 as nil")
		tl_encrypted_chat_gen.go#L321: 		return fmt.Errorf("can't decode encryptedChatWaiting#66b25953 to nil")
		tl_encrypted_chat_gen.go#L324: 		return fmt.Errorf("unable to decode encryptedChatWaiting#66b25953: %w", err)
		tl_encrypted_chat_gen.go#L332: 		return fmt.Errorf("can't decode encryptedChatWaiting#66b25953 to nil")
		tl_encrypted_chat_gen.go#L337: 			return fmt.Errorf("unable to decode encryptedChatWaiting#66b25953: field id: %w", err)
		tl_encrypted_chat_gen.go#L344: 			return fmt.Errorf("unable to decode encryptedChatWaiting#66b25953: field access_hash: %w", err)
		tl_encrypted_chat_gen.go#L351: 			return fmt.Errorf("unable to decode encryptedChatWaiting#66b25953: field date: %w", err)
		tl_encrypted_chat_gen.go#L358: 			return fmt.Errorf("unable to decode encryptedChatWaiting#66b25953: field admin_id: %w", err)
		tl_encrypted_chat_gen.go#L365: 			return fmt.Errorf("unable to decode encryptedChatWaiting#66b25953: field participant_id: %w", err)
		tl_encrypted_chat_gen.go#L591: 		return fmt.Errorf("can't encode encryptedChatRequested#48f1d94c as nil")
		tl_encrypted_chat_gen.go#L600: 		return fmt.Errorf("can't encode encryptedChatRequested#48f1d94c as nil")
		tl_encrypted_chat_gen.go#L604: 		return fmt.Errorf("unable to encode encryptedChatRequested#48f1d94c: field flags: %w", err)
		tl_encrypted_chat_gen.go#L621: 		return fmt.Errorf("can't decode encryptedChatRequested#48f1d94c to nil")
		tl_encrypted_chat_gen.go#L624: 		return fmt.Errorf("unable to decode encryptedChatRequested#48f1d94c: %w", err)
		tl_encrypted_chat_gen.go#L632: 		return fmt.Errorf("can't decode encryptedChatRequested#48f1d94c to nil")
		tl_encrypted_chat_gen.go#L636: 			return fmt.Errorf("unable to decode encryptedChatRequested#48f1d94c: field flags: %w", err)
		tl_encrypted_chat_gen.go#L642: 			return fmt.Errorf("unable to decode encryptedChatRequested#48f1d94c: field folder_id: %w", err)
		tl_encrypted_chat_gen.go#L649: 			return fmt.Errorf("unable to decode encryptedChatRequested#48f1d94c: field id: %w", err)
		tl_encrypted_chat_gen.go#L656: 			return fmt.Errorf("unable to decode encryptedChatRequested#48f1d94c: field access_hash: %w", err)
		tl_encrypted_chat_gen.go#L663: 			return fmt.Errorf("unable to decode encryptedChatRequested#48f1d94c: field date: %w", err)
		tl_encrypted_chat_gen.go#L670: 			return fmt.Errorf("unable to decode encryptedChatRequested#48f1d94c: field admin_id: %w", err)
		tl_encrypted_chat_gen.go#L677: 			return fmt.Errorf("unable to decode encryptedChatRequested#48f1d94c: field participant_id: %w", err)
		tl_encrypted_chat_gen.go#L684: 			return fmt.Errorf("unable to decode encryptedChatRequested#48f1d94c: field g_a: %w", err)
		tl_encrypted_chat_gen.go#L913: 		return fmt.Errorf("can't encode encryptedChat#61f0d4c7 as nil")
		tl_encrypted_chat_gen.go#L922: 		return fmt.Errorf("can't encode encryptedChat#61f0d4c7 as nil")
		tl_encrypted_chat_gen.go#L937: 		return fmt.Errorf("can't decode encryptedChat#61f0d4c7 to nil")
		tl_encrypted_chat_gen.go#L940: 		return fmt.Errorf("unable to decode encryptedChat#61f0d4c7: %w", err)
		tl_encrypted_chat_gen.go#L948: 		return fmt.Errorf("can't decode encryptedChat#61f0d4c7 to nil")
		tl_encrypted_chat_gen.go#L953: 			return fmt.Errorf("unable to decode encryptedChat#61f0d4c7: field id: %w", err)
		tl_encrypted_chat_gen.go#L960: 			return fmt.Errorf("unable to decode encryptedChat#61f0d4c7: field access_hash: %w", err)
		tl_encrypted_chat_gen.go#L967: 			return fmt.Errorf("unable to decode encryptedChat#61f0d4c7: field date: %w", err)
		tl_encrypted_chat_gen.go#L974: 			return fmt.Errorf("unable to decode encryptedChat#61f0d4c7: field admin_id: %w", err)
		tl_encrypted_chat_gen.go#L981: 			return fmt.Errorf("unable to decode encryptedChat#61f0d4c7: field participant_id: %w", err)
		tl_encrypted_chat_gen.go#L988: 			return fmt.Errorf("unable to decode encryptedChat#61f0d4c7: field g_a_or_b: %w", err)
		tl_encrypted_chat_gen.go#L995: 			return fmt.Errorf("unable to decode encryptedChat#61f0d4c7: field key_fingerprint: %w", err)
		tl_encrypted_chat_gen.go#L1171: 		return fmt.Errorf("can't encode encryptedChatDiscarded#1e1c7c45 as nil")
		tl_encrypted_chat_gen.go#L1180: 		return fmt.Errorf("can't encode encryptedChatDiscarded#1e1c7c45 as nil")
		tl_encrypted_chat_gen.go#L1184: 		return fmt.Errorf("unable to encode encryptedChatDiscarded#1e1c7c45: field flags: %w", err)
		tl_encrypted_chat_gen.go#L1193: 		return fmt.Errorf("can't decode encryptedChatDiscarded#1e1c7c45 to nil")
		tl_encrypted_chat_gen.go#L1196: 		return fmt.Errorf("unable to decode encryptedChatDiscarded#1e1c7c45: %w", err)
		tl_encrypted_chat_gen.go#L1204: 		return fmt.Errorf("can't decode encryptedChatDiscarded#1e1c7c45 to nil")
		tl_encrypted_chat_gen.go#L1208: 			return fmt.Errorf("unable to decode encryptedChatDiscarded#1e1c7c45: field flags: %w", err)
		tl_encrypted_chat_gen.go#L1215: 			return fmt.Errorf("unable to decode encryptedChatDiscarded#1e1c7c45: field id: %w", err)
		tl_encrypted_chat_gen.go#L1368: 			return nil, fmt.Errorf("unable to decode EncryptedChatClass: %w", err)
		tl_encrypted_chat_gen.go#L1375: 			return nil, fmt.Errorf("unable to decode EncryptedChatClass: %w", err)
		tl_encrypted_chat_gen.go#L1382: 			return nil, fmt.Errorf("unable to decode EncryptedChatClass: %w", err)
		tl_encrypted_chat_gen.go#L1389: 			return nil, fmt.Errorf("unable to decode EncryptedChatClass: %w", err)
		tl_encrypted_chat_gen.go#L1396: 			return nil, fmt.Errorf("unable to decode EncryptedChatClass: %w", err)
		tl_encrypted_chat_gen.go#L1400: 		return nil, fmt.Errorf("unable to decode EncryptedChatClass: %w", bin.NewUnexpectedID(id))
		tl_encrypted_chat_gen.go#L1412: 		return fmt.Errorf("unable to decode EncryptedChatBox to nil")
		tl_encrypted_chat_gen.go#L1416: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_encrypted_chat_gen.go#L1425: 		return fmt.Errorf("unable to encode EncryptedChatClass as nil")
		tl_encrypted_file_gen.go#L103: 		return fmt.Errorf("can't encode encryptedFileEmpty#c21f497e as nil")
		tl_encrypted_file_gen.go#L112: 		return fmt.Errorf("can't encode encryptedFileEmpty#c21f497e as nil")
		tl_encrypted_file_gen.go#L120: 		return fmt.Errorf("can't decode encryptedFileEmpty#c21f497e to nil")
		tl_encrypted_file_gen.go#L123: 		return fmt.Errorf("unable to decode encryptedFileEmpty#c21f497e: %w", err)
		tl_encrypted_file_gen.go#L131: 		return fmt.Errorf("can't decode encryptedFileEmpty#c21f497e to nil")
		tl_encrypted_file_gen.go#L266: 		return fmt.Errorf("can't encode encryptedFile#a8008cd8 as nil")
		tl_encrypted_file_gen.go#L275: 		return fmt.Errorf("can't encode encryptedFile#a8008cd8 as nil")
		tl_encrypted_file_gen.go#L288: 		return fmt.Errorf("can't decode encryptedFile#a8008cd8 to nil")
		tl_encrypted_file_gen.go#L291: 		return fmt.Errorf("unable to decode encryptedFile#a8008cd8: %w", err)
		tl_encrypted_file_gen.go#L299: 		return fmt.Errorf("can't decode encryptedFile#a8008cd8 to nil")
		tl_encrypted_file_gen.go#L304: 			return fmt.Errorf("unable to decode encryptedFile#a8008cd8: field id: %w", err)
		tl_encrypted_file_gen.go#L311: 			return fmt.Errorf("unable to decode encryptedFile#a8008cd8: field access_hash: %w", err)
		tl_encrypted_file_gen.go#L318: 			return fmt.Errorf("unable to decode encryptedFile#a8008cd8: field size: %w", err)
		tl_encrypted_file_gen.go#L325: 			return fmt.Errorf("unable to decode encryptedFile#a8008cd8: field dc_id: %w", err)
		tl_encrypted_file_gen.go#L332: 			return fmt.Errorf("unable to decode encryptedFile#a8008cd8: field key_fingerprint: %w", err)
		tl_encrypted_file_gen.go#L458: 			return nil, fmt.Errorf("unable to decode EncryptedFileClass: %w", err)
		tl_encrypted_file_gen.go#L465: 			return nil, fmt.Errorf("unable to decode EncryptedFileClass: %w", err)
		tl_encrypted_file_gen.go#L469: 		return nil, fmt.Errorf("unable to decode EncryptedFileClass: %w", bin.NewUnexpectedID(id))
		tl_encrypted_file_gen.go#L481: 		return fmt.Errorf("unable to decode EncryptedFileBox to nil")
		tl_encrypted_file_gen.go#L485: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_encrypted_file_gen.go#L494: 		return fmt.Errorf("unable to encode EncryptedFileClass as nil")
		tl_encrypted_message_gen.go#L168: 		return fmt.Errorf("can't encode encryptedMessage#ed18c118 as nil")
		tl_encrypted_message_gen.go#L177: 		return fmt.Errorf("can't encode encryptedMessage#ed18c118 as nil")
		tl_encrypted_message_gen.go#L184: 		return fmt.Errorf("unable to encode encryptedMessage#ed18c118: field file is nil")
		tl_encrypted_message_gen.go#L187: 		return fmt.Errorf("unable to encode encryptedMessage#ed18c118: field file: %w", err)
		tl_encrypted_message_gen.go#L195: 		return fmt.Errorf("can't decode encryptedMessage#ed18c118 to nil")
		tl_encrypted_message_gen.go#L198: 		return fmt.Errorf("unable to decode encryptedMessage#ed18c118: %w", err)
		tl_encrypted_message_gen.go#L206: 		return fmt.Errorf("can't decode encryptedMessage#ed18c118 to nil")
		tl_encrypted_message_gen.go#L211: 			return fmt.Errorf("unable to decode encryptedMessage#ed18c118: field random_id: %w", err)
		tl_encrypted_message_gen.go#L218: 			return fmt.Errorf("unable to decode encryptedMessage#ed18c118: field chat_id: %w", err)
		tl_encrypted_message_gen.go#L225: 			return fmt.Errorf("unable to decode encryptedMessage#ed18c118: field date: %w", err)
		tl_encrypted_message_gen.go#L232: 			return fmt.Errorf("unable to decode encryptedMessage#ed18c118: field bytes: %w", err)
		tl_encrypted_message_gen.go#L239: 			return fmt.Errorf("unable to decode encryptedMessage#ed18c118: field file: %w", err)
		tl_encrypted_message_gen.go#L409: 		return fmt.Errorf("can't encode encryptedMessageService#23734b06 as nil")
		tl_encrypted_message_gen.go#L418: 		return fmt.Errorf("can't encode encryptedMessageService#23734b06 as nil")
		tl_encrypted_message_gen.go#L430: 		return fmt.Errorf("can't decode encryptedMessageService#23734b06 to nil")
		tl_encrypted_message_gen.go#L433: 		return fmt.Errorf("unable to decode encryptedMessageService#23734b06: %w", err)
		tl_encrypted_message_gen.go#L441: 		return fmt.Errorf("can't decode encryptedMessageService#23734b06 to nil")
		tl_encrypted_message_gen.go#L446: 			return fmt.Errorf("unable to decode encryptedMessageService#23734b06: field random_id: %w", err)
		tl_encrypted_message_gen.go#L453: 			return fmt.Errorf("unable to decode encryptedMessageService#23734b06: field chat_id: %w", err)
		tl_encrypted_message_gen.go#L460: 			return fmt.Errorf("unable to decode encryptedMessageService#23734b06: field date: %w", err)
		tl_encrypted_message_gen.go#L467: 			return fmt.Errorf("unable to decode encryptedMessageService#23734b06: field bytes: %w", err)
		tl_encrypted_message_gen.go#L570: 			return nil, fmt.Errorf("unable to decode EncryptedMessageClass: %w", err)
		tl_encrypted_message_gen.go#L577: 			return nil, fmt.Errorf("unable to decode EncryptedMessageClass: %w", err)
		tl_encrypted_message_gen.go#L581: 		return nil, fmt.Errorf("unable to decode EncryptedMessageClass: %w", bin.NewUnexpectedID(id))
		tl_encrypted_message_gen.go#L593: 		return fmt.Errorf("unable to decode EncryptedMessageBox to nil")
		tl_encrypted_message_gen.go#L597: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_encrypted_message_gen.go#L606: 		return fmt.Errorf("unable to encode EncryptedMessageClass as nil")
		tl_error_gen.go#L126: 		return fmt.Errorf("can't encode error#c4b9f9bb as nil")
		tl_error_gen.go#L135: 		return fmt.Errorf("can't encode error#c4b9f9bb as nil")
		tl_error_gen.go#L145: 		return fmt.Errorf("can't decode error#c4b9f9bb to nil")
		tl_error_gen.go#L148: 		return fmt.Errorf("unable to decode error#c4b9f9bb: %w", err)
		tl_error_gen.go#L156: 		return fmt.Errorf("can't decode error#c4b9f9bb to nil")
		tl_error_gen.go#L161: 			return fmt.Errorf("unable to decode error#c4b9f9bb: field code: %w", err)
		tl_error_gen.go#L168: 			return fmt.Errorf("unable to decode error#c4b9f9bb: field text: %w", err)
		tl_exported_chat_invite_gen.go#L320: 		return fmt.Errorf("can't encode chatInviteExported#ab4a819 as nil")
		tl_exported_chat_invite_gen.go#L329: 		return fmt.Errorf("can't encode chatInviteExported#ab4a819 as nil")
		tl_exported_chat_invite_gen.go#L333: 		return fmt.Errorf("unable to encode chatInviteExported#ab4a819: field flags: %w", err)
		tl_exported_chat_invite_gen.go#L362: 		return fmt.Errorf("can't decode chatInviteExported#ab4a819 to nil")
		tl_exported_chat_invite_gen.go#L365: 		return fmt.Errorf("unable to decode chatInviteExported#ab4a819: %w", err)
		tl_exported_chat_invite_gen.go#L373: 		return fmt.Errorf("can't decode chatInviteExported#ab4a819 to nil")
		tl_exported_chat_invite_gen.go#L377: 			return fmt.Errorf("unable to decode chatInviteExported#ab4a819: field flags: %w", err)
		tl_exported_chat_invite_gen.go#L386: 			return fmt.Errorf("unable to decode chatInviteExported#ab4a819: field link: %w", err)
		tl_exported_chat_invite_gen.go#L393: 			return fmt.Errorf("unable to decode chatInviteExported#ab4a819: field admin_id: %w", err)
		tl_exported_chat_invite_gen.go#L400: 			return fmt.Errorf("unable to decode chatInviteExported#ab4a819: field date: %w", err)
		tl_exported_chat_invite_gen.go#L407: 			return fmt.Errorf("unable to decode chatInviteExported#ab4a819: field start_date: %w", err)
		tl_exported_chat_invite_gen.go#L414: 			return fmt.Errorf("unable to decode chatInviteExported#ab4a819: field expire_date: %w", err)
		tl_exported_chat_invite_gen.go#L421: 			return fmt.Errorf("unable to decode chatInviteExported#ab4a819: field usage_limit: %w", err)
		tl_exported_chat_invite_gen.go#L428: 			return fmt.Errorf("unable to decode chatInviteExported#ab4a819: field usage: %w", err)
		tl_exported_chat_invite_gen.go#L435: 			return fmt.Errorf("unable to decode chatInviteExported#ab4a819: field requested: %w", err)
		tl_exported_chat_invite_gen.go#L442: 			return fmt.Errorf("unable to decode chatInviteExported#ab4a819: field title: %w", err)
		tl_exported_chat_invite_gen.go#L711: 		return fmt.Errorf("can't encode chatInvitePublicJoinRequests#ed107ab7 as nil")
		tl_exported_chat_invite_gen.go#L720: 		return fmt.Errorf("can't encode chatInvitePublicJoinRequests#ed107ab7 as nil")
		tl_exported_chat_invite_gen.go#L728: 		return fmt.Errorf("can't decode chatInvitePublicJoinRequests#ed107ab7 to nil")
		tl_exported_chat_invite_gen.go#L731: 		return fmt.Errorf("unable to decode chatInvitePublicJoinRequests#ed107ab7: %w", err)
		tl_exported_chat_invite_gen.go#L739: 		return fmt.Errorf("can't decode chatInvitePublicJoinRequests#ed107ab7 to nil")
		tl_exported_chat_invite_gen.go#L792: 			return nil, fmt.Errorf("unable to decode ExportedChatInviteClass: %w", err)
		tl_exported_chat_invite_gen.go#L799: 			return nil, fmt.Errorf("unable to decode ExportedChatInviteClass: %w", err)
		tl_exported_chat_invite_gen.go#L803: 		return nil, fmt.Errorf("unable to decode ExportedChatInviteClass: %w", bin.NewUnexpectedID(id))
		tl_exported_chat_invite_gen.go#L815: 		return fmt.Errorf("unable to decode ExportedChatInviteBox to nil")
		tl_exported_chat_invite_gen.go#L819: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_exported_chat_invite_gen.go#L828: 		return fmt.Errorf("unable to encode ExportedChatInviteClass as nil")
		tl_exported_chatlist_invite_gen.go#L155: 		return fmt.Errorf("can't encode exportedChatlistInvite#c5181ac as nil")
		tl_exported_chatlist_invite_gen.go#L164: 		return fmt.Errorf("can't encode exportedChatlistInvite#c5181ac as nil")
		tl_exported_chatlist_invite_gen.go#L168: 		return fmt.Errorf("unable to encode exportedChatlistInvite#c5181ac: field flags: %w", err)
		tl_exported_chatlist_invite_gen.go#L175: 			return fmt.Errorf("unable to encode exportedChatlistInvite#c5181ac: field peers element with index %d is nil", idx)
		tl_exported_chatlist_invite_gen.go#L178: 			return fmt.Errorf("unable to encode exportedChatlistInvite#c5181ac: field peers element with index %d: %w", idx, err)
		tl_exported_chatlist_invite_gen.go#L187: 		return fmt.Errorf("can't decode exportedChatlistInvite#c5181ac to nil")
		tl_exported_chatlist_invite_gen.go#L190: 		return fmt.Errorf("unable to decode exportedChatlistInvite#c5181ac: %w", err)
		tl_exported_chatlist_invite_gen.go#L198: 		return fmt.Errorf("can't decode exportedChatlistInvite#c5181ac to nil")
		tl_exported_chatlist_invite_gen.go#L202: 			return fmt.Errorf("unable to decode exportedChatlistInvite#c5181ac: field flags: %w", err)
		tl_exported_chatlist_invite_gen.go#L208: 			return fmt.Errorf("unable to decode exportedChatlistInvite#c5181ac: field title: %w", err)
		tl_exported_chatlist_invite_gen.go#L215: 			return fmt.Errorf("unable to decode exportedChatlistInvite#c5181ac: field url: %w", err)
		tl_exported_chatlist_invite_gen.go#L222: 			return fmt.Errorf("unable to decode exportedChatlistInvite#c5181ac: field peers: %w", err)
		tl_exported_chatlist_invite_gen.go#L231: 				return fmt.Errorf("unable to decode exportedChatlistInvite#c5181ac: field peers: %w", err)
		tl_exported_contact_token_gen.go#L132: 		return fmt.Errorf("can't encode exportedContactToken#41bf109b as nil")
		tl_exported_contact_token_gen.go#L141: 		return fmt.Errorf("can't encode exportedContactToken#41bf109b as nil")
		tl_exported_contact_token_gen.go#L151: 		return fmt.Errorf("can't decode exportedContactToken#41bf109b to nil")
		tl_exported_contact_token_gen.go#L154: 		return fmt.Errorf("unable to decode exportedContactToken#41bf109b: %w", err)
		tl_exported_contact_token_gen.go#L162: 		return fmt.Errorf("can't decode exportedContactToken#41bf109b to nil")
		tl_exported_contact_token_gen.go#L167: 			return fmt.Errorf("unable to decode exportedContactToken#41bf109b: field url: %w", err)
		tl_exported_contact_token_gen.go#L174: 			return fmt.Errorf("unable to decode exportedContactToken#41bf109b: field expires: %w", err)
		tl_exported_message_link_gen.go#L126: 		return fmt.Errorf("can't encode exportedMessageLink#5dab1af4 as nil")
		tl_exported_message_link_gen.go#L135: 		return fmt.Errorf("can't encode exportedMessageLink#5dab1af4 as nil")
		tl_exported_message_link_gen.go#L145: 		return fmt.Errorf("can't decode exportedMessageLink#5dab1af4 to nil")
		tl_exported_message_link_gen.go#L148: 		return fmt.Errorf("unable to decode exportedMessageLink#5dab1af4: %w", err)
		tl_exported_message_link_gen.go#L156: 		return fmt.Errorf("can't decode exportedMessageLink#5dab1af4 to nil")
		tl_exported_message_link_gen.go#L161: 			return fmt.Errorf("unable to decode exportedMessageLink#5dab1af4: field link: %w", err)
		tl_exported_message_link_gen.go#L168: 			return fmt.Errorf("unable to decode exportedMessageLink#5dab1af4: field html: %w", err)
		tl_exported_story_link_gen.go#L121: 		return fmt.Errorf("can't encode exportedStoryLink#3fc9053b as nil")
		tl_exported_story_link_gen.go#L130: 		return fmt.Errorf("can't encode exportedStoryLink#3fc9053b as nil")
		tl_exported_story_link_gen.go#L139: 		return fmt.Errorf("can't decode exportedStoryLink#3fc9053b to nil")
		tl_exported_story_link_gen.go#L142: 		return fmt.Errorf("unable to decode exportedStoryLink#3fc9053b: %w", err)
		tl_exported_story_link_gen.go#L150: 		return fmt.Errorf("can't decode exportedStoryLink#3fc9053b to nil")
		tl_exported_story_link_gen.go#L155: 			return fmt.Errorf("unable to decode exportedStoryLink#3fc9053b: field link: %w", err)
		tl_file_hash_gen.go#L136: 		return fmt.Errorf("can't encode fileHash#f39b035c as nil")
		tl_file_hash_gen.go#L145: 		return fmt.Errorf("can't encode fileHash#f39b035c as nil")
		tl_file_hash_gen.go#L156: 		return fmt.Errorf("can't decode fileHash#f39b035c to nil")
		tl_file_hash_gen.go#L159: 		return fmt.Errorf("unable to decode fileHash#f39b035c: %w", err)
		tl_file_hash_gen.go#L167: 		return fmt.Errorf("can't decode fileHash#f39b035c to nil")
		tl_file_hash_gen.go#L172: 			return fmt.Errorf("unable to decode fileHash#f39b035c: field offset: %w", err)
		tl_file_hash_gen.go#L179: 			return fmt.Errorf("unable to decode fileHash#f39b035c: field limit: %w", err)
		tl_file_hash_gen.go#L186: 			return fmt.Errorf("unable to decode fileHash#f39b035c: field hash: %w", err)
		tl_file_hash_vector_gen.go#L112: 		return fmt.Errorf("can't encode Vector<FileHash> as nil")
		tl_file_hash_vector_gen.go#L121: 		return fmt.Errorf("can't encode Vector<FileHash> as nil")
		tl_file_hash_vector_gen.go#L126: 			return fmt.Errorf("unable to encode Vector<FileHash>: field Elems element with index %d: %w", idx, err)
		tl_file_hash_vector_gen.go#L135: 		return fmt.Errorf("can't decode Vector<FileHash> to nil")
		tl_file_hash_vector_gen.go#L144: 		return fmt.Errorf("can't decode Vector<FileHash> to nil")
		tl_file_hash_vector_gen.go#L149: 			return fmt.Errorf("unable to decode Vector<FileHash>: field Elems: %w", err)
		tl_file_hash_vector_gen.go#L158: 				return fmt.Errorf("unable to decode Vector<FileHash>: field Elems: %w", err)
		tl_folder_gen.go#L203: 		return fmt.Errorf("can't encode folder#ff544e65 as nil")
		tl_folder_gen.go#L212: 		return fmt.Errorf("can't encode folder#ff544e65 as nil")
		tl_folder_gen.go#L216: 		return fmt.Errorf("unable to encode folder#ff544e65: field flags: %w", err)
		tl_folder_gen.go#L222: 			return fmt.Errorf("unable to encode folder#ff544e65: field photo is nil")
		tl_folder_gen.go#L225: 			return fmt.Errorf("unable to encode folder#ff544e65: field photo: %w", err)
		tl_folder_gen.go#L234: 		return fmt.Errorf("can't decode folder#ff544e65 to nil")
		tl_folder_gen.go#L237: 		return fmt.Errorf("unable to decode folder#ff544e65: %w", err)
		tl_folder_gen.go#L245: 		return fmt.Errorf("can't decode folder#ff544e65 to nil")
		tl_folder_gen.go#L249: 			return fmt.Errorf("unable to decode folder#ff544e65: field flags: %w", err)
		tl_folder_gen.go#L258: 			return fmt.Errorf("unable to decode folder#ff544e65: field id: %w", err)
		tl_folder_gen.go#L265: 			return fmt.Errorf("unable to decode folder#ff544e65: field title: %w", err)
		tl_folder_gen.go#L272: 			return fmt.Errorf("unable to decode folder#ff544e65: field photo: %w", err)
		tl_folder_peer_gen.go#L129: 		return fmt.Errorf("can't encode folderPeer#e9baa668 as nil")
		tl_folder_peer_gen.go#L138: 		return fmt.Errorf("can't encode folderPeer#e9baa668 as nil")
		tl_folder_peer_gen.go#L141: 		return fmt.Errorf("unable to encode folderPeer#e9baa668: field peer is nil")
		tl_folder_peer_gen.go#L144: 		return fmt.Errorf("unable to encode folderPeer#e9baa668: field peer: %w", err)
		tl_folder_peer_gen.go#L153: 		return fmt.Errorf("can't decode folderPeer#e9baa668 to nil")
		tl_folder_peer_gen.go#L156: 		return fmt.Errorf("unable to decode folderPeer#e9baa668: %w", err)
		tl_folder_peer_gen.go#L164: 		return fmt.Errorf("can't decode folderPeer#e9baa668 to nil")
		tl_folder_peer_gen.go#L169: 			return fmt.Errorf("unable to decode folderPeer#e9baa668: field peer: %w", err)
		tl_folder_peer_gen.go#L176: 			return fmt.Errorf("unable to decode folderPeer#e9baa668: field folder_id: %w", err)
		tl_folders_edit_peer_folders_gen.go#L118: 		return fmt.Errorf("can't encode folders.editPeerFolders#6847d0ab as nil")
		tl_folders_edit_peer_folders_gen.go#L127: 		return fmt.Errorf("can't encode folders.editPeerFolders#6847d0ab as nil")
		tl_folders_edit_peer_folders_gen.go#L132: 			return fmt.Errorf("unable to encode folders.editPeerFolders#6847d0ab: field folder_peers element with index %d: %w", idx, err)
		tl_folders_edit_peer_folders_gen.go#L141: 		return fmt.Errorf("can't decode folders.editPeerFolders#6847d0ab to nil")
		tl_folders_edit_peer_folders_gen.go#L144: 		return fmt.Errorf("unable to decode folders.editPeerFolders#6847d0ab: %w", err)
		tl_folders_edit_peer_folders_gen.go#L152: 		return fmt.Errorf("can't decode folders.editPeerFolders#6847d0ab to nil")
		tl_folders_edit_peer_folders_gen.go#L157: 			return fmt.Errorf("unable to decode folders.editPeerFolders#6847d0ab: field folder_peers: %w", err)
		tl_folders_edit_peer_folders_gen.go#L166: 				return fmt.Errorf("unable to decode folders.editPeerFolders#6847d0ab: field folder_peers: %w", err)
		tl_forum_topic_gen.go#L120: 		return fmt.Errorf("can't encode forumTopicDeleted#23f109b as nil")
		tl_forum_topic_gen.go#L129: 		return fmt.Errorf("can't encode forumTopicDeleted#23f109b as nil")
		tl_forum_topic_gen.go#L138: 		return fmt.Errorf("can't decode forumTopicDeleted#23f109b to nil")
		tl_forum_topic_gen.go#L141: 		return fmt.Errorf("unable to decode forumTopicDeleted#23f109b: %w", err)
		tl_forum_topic_gen.go#L149: 		return fmt.Errorf("can't decode forumTopicDeleted#23f109b to nil")
		tl_forum_topic_gen.go#L154: 			return fmt.Errorf("unable to decode forumTopicDeleted#23f109b: field id: %w", err)
		tl_forum_topic_gen.go#L528: 		return fmt.Errorf("can't encode forumTopic#71701da9 as nil")
		tl_forum_topic_gen.go#L537: 		return fmt.Errorf("can't encode forumTopic#71701da9 as nil")
		tl_forum_topic_gen.go#L541: 		return fmt.Errorf("unable to encode forumTopic#71701da9: field flags: %w", err)
		tl_forum_topic_gen.go#L557: 		return fmt.Errorf("unable to encode forumTopic#71701da9: field from_id is nil")
		tl_forum_topic_gen.go#L560: 		return fmt.Errorf("unable to encode forumTopic#71701da9: field from_id: %w", err)
		tl_forum_topic_gen.go#L563: 		return fmt.Errorf("unable to encode forumTopic#71701da9: field notify_settings: %w", err)
		tl_forum_topic_gen.go#L567: 			return fmt.Errorf("unable to encode forumTopic#71701da9: field draft is nil")
		tl_forum_topic_gen.go#L570: 			return fmt.Errorf("unable to encode forumTopic#71701da9: field draft: %w", err)
		tl_forum_topic_gen.go#L579: 		return fmt.Errorf("can't decode forumTopic#71701da9 to nil")
		tl_forum_topic_gen.go#L582: 		return fmt.Errorf("unable to decode forumTopic#71701da9: %w", err)
		tl_forum_topic_gen.go#L590: 		return fmt.Errorf("can't decode forumTopic#71701da9 to nil")
		tl_forum_topic_gen.go#L594: 			return fmt.Errorf("unable to decode forumTopic#71701da9: field flags: %w", err)
		tl_forum_topic_gen.go#L605: 			return fmt.Errorf("unable to decode forumTopic#71701da9: field id: %w", err)
		tl_forum_topic_gen.go#L612: 			return fmt.Errorf("unable to decode forumTopic#71701da9: field date: %w", err)
		tl_forum_topic_gen.go#L619: 			return fmt.Errorf("unable to decode forumTopic#71701da9: field title: %w", err)
		tl_forum_topic_gen.go#L626: 			return fmt.Errorf("unable to decode forumTopic#71701da9: field icon_color: %w", err)
		tl_forum_topic_gen.go#L633: 			return fmt.Errorf("unable to decode forumTopic#71701da9: field icon_emoji_id: %w", err)
		tl_forum_topic_gen.go#L640: 			return fmt.Errorf("unable to decode forumTopic#71701da9: field top_message: %w", err)
		tl_forum_topic_gen.go#L647: 			return fmt.Errorf("unable to decode forumTopic#71701da9: field read_inbox_max_id: %w", err)
		tl_forum_topic_gen.go#L654: 			return fmt.Errorf("unable to decode forumTopic#71701da9: field read_outbox_max_id: %w", err)
		tl_forum_topic_gen.go#L661: 			return fmt.Errorf("unable to decode forumTopic#71701da9: field unread_count: %w", err)
		tl_forum_topic_gen.go#L668: 			return fmt.Errorf("unable to decode forumTopic#71701da9: field unread_mentions_count: %w", err)
		tl_forum_topic_gen.go#L675: 			return fmt.Errorf("unable to decode forumTopic#71701da9: field unread_reactions_count: %w", err)
		tl_forum_topic_gen.go#L682: 			return fmt.Errorf("unable to decode forumTopic#71701da9: field from_id: %w", err)
		tl_forum_topic_gen.go#L688: 			return fmt.Errorf("unable to decode forumTopic#71701da9: field notify_settings: %w", err)
		tl_forum_topic_gen.go#L694: 			return fmt.Errorf("unable to decode forumTopic#71701da9: field draft: %w", err)
		tl_forum_topic_gen.go#L979: 			return nil, fmt.Errorf("unable to decode ForumTopicClass: %w", err)
		tl_forum_topic_gen.go#L986: 			return nil, fmt.Errorf("unable to decode ForumTopicClass: %w", err)
		tl_forum_topic_gen.go#L990: 		return nil, fmt.Errorf("unable to decode ForumTopicClass: %w", bin.NewUnexpectedID(id))
		tl_forum_topic_gen.go#L1002: 		return fmt.Errorf("unable to decode ForumTopicBox to nil")
		tl_forum_topic_gen.go#L1006: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_forum_topic_gen.go#L1015: 		return fmt.Errorf("unable to encode ForumTopicClass as nil")
		tl_game_gen.go#L202: 		return fmt.Errorf("can't encode game#bdf9653b as nil")
		tl_game_gen.go#L211: 		return fmt.Errorf("can't encode game#bdf9653b as nil")
		tl_game_gen.go#L215: 		return fmt.Errorf("unable to encode game#bdf9653b: field flags: %w", err)
		tl_game_gen.go#L223: 		return fmt.Errorf("unable to encode game#bdf9653b: field photo is nil")
		tl_game_gen.go#L226: 		return fmt.Errorf("unable to encode game#bdf9653b: field photo: %w", err)
		tl_game_gen.go#L230: 			return fmt.Errorf("unable to encode game#bdf9653b: field document is nil")
		tl_game_gen.go#L233: 			return fmt.Errorf("unable to encode game#bdf9653b: field document: %w", err)
		tl_game_gen.go#L242: 		return fmt.Errorf("can't decode game#bdf9653b to nil")
		tl_game_gen.go#L245: 		return fmt.Errorf("unable to decode game#bdf9653b: %w", err)
		tl_game_gen.go#L253: 		return fmt.Errorf("can't decode game#bdf9653b to nil")
		tl_game_gen.go#L257: 			return fmt.Errorf("unable to decode game#bdf9653b: field flags: %w", err)
		tl_game_gen.go#L263: 			return fmt.Errorf("unable to decode game#bdf9653b: field id: %w", err)
		tl_game_gen.go#L270: 			return fmt.Errorf("unable to decode game#bdf9653b: field access_hash: %w", err)
		tl_game_gen.go#L277: 			return fmt.Errorf("unable to decode game#bdf9653b: field short_name: %w", err)
		tl_game_gen.go#L284: 			return fmt.Errorf("unable to decode game#bdf9653b: field title: %w", err)
		tl_game_gen.go#L291: 			return fmt.Errorf("unable to decode game#bdf9653b: field description: %w", err)
		tl_game_gen.go#L298: 			return fmt.Errorf("unable to decode game#bdf9653b: field photo: %w", err)
		tl_game_gen.go#L305: 			return fmt.Errorf("unable to decode game#bdf9653b: field document: %w", err)
		tl_geo_point_gen.go#L103: 		return fmt.Errorf("can't encode geoPointEmpty#1117dd5f as nil")
		tl_geo_point_gen.go#L112: 		return fmt.Errorf("can't encode geoPointEmpty#1117dd5f as nil")
		tl_geo_point_gen.go#L120: 		return fmt.Errorf("can't decode geoPointEmpty#1117dd5f to nil")
		tl_geo_point_gen.go#L123: 		return fmt.Errorf("unable to decode geoPointEmpty#1117dd5f: %w", err)
		tl_geo_point_gen.go#L131: 		return fmt.Errorf("can't decode geoPointEmpty#1117dd5f to nil")
		tl_geo_point_gen.go#L276: 		return fmt.Errorf("can't encode geoPoint#b2a2f663 as nil")
		tl_geo_point_gen.go#L285: 		return fmt.Errorf("can't encode geoPoint#b2a2f663 as nil")
		tl_geo_point_gen.go#L289: 		return fmt.Errorf("unable to encode geoPoint#b2a2f663: field flags: %w", err)
		tl_geo_point_gen.go#L303: 		return fmt.Errorf("can't decode geoPoint#b2a2f663 to nil")
		tl_geo_point_gen.go#L306: 		return fmt.Errorf("unable to decode geoPoint#b2a2f663: %w", err)
		tl_geo_point_gen.go#L314: 		return fmt.Errorf("can't decode geoPoint#b2a2f663 to nil")
		tl_geo_point_gen.go#L318: 			return fmt.Errorf("unable to decode geoPoint#b2a2f663: field flags: %w", err)
		tl_geo_point_gen.go#L324: 			return fmt.Errorf("unable to decode geoPoint#b2a2f663: field long: %w", err)
		tl_geo_point_gen.go#L331: 			return fmt.Errorf("unable to decode geoPoint#b2a2f663: field lat: %w", err)
		tl_geo_point_gen.go#L338: 			return fmt.Errorf("unable to decode geoPoint#b2a2f663: field access_hash: %w", err)
		tl_geo_point_gen.go#L345: 			return fmt.Errorf("unable to decode geoPoint#b2a2f663: field accuracy_radius: %w", err)
		tl_geo_point_gen.go#L455: 			return nil, fmt.Errorf("unable to decode GeoPointClass: %w", err)
		tl_geo_point_gen.go#L462: 			return nil, fmt.Errorf("unable to decode GeoPointClass: %w", err)
		tl_geo_point_gen.go#L466: 		return nil, fmt.Errorf("unable to decode GeoPointClass: %w", bin.NewUnexpectedID(id))
		tl_geo_point_gen.go#L478: 		return fmt.Errorf("unable to decode GeoPointBox to nil")
		tl_geo_point_gen.go#L482: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_geo_point_gen.go#L491: 		return fmt.Errorf("unable to encode GeoPointClass as nil")
		tl_global_privacy_settings_gen.go#L167: 		return fmt.Errorf("can't encode globalPrivacySettings#734c4ccb as nil")
		tl_global_privacy_settings_gen.go#L176: 		return fmt.Errorf("can't encode globalPrivacySettings#734c4ccb as nil")
		tl_global_privacy_settings_gen.go#L180: 		return fmt.Errorf("unable to encode globalPrivacySettings#734c4ccb: field flags: %w", err)
		tl_global_privacy_settings_gen.go#L188: 		return fmt.Errorf("can't decode globalPrivacySettings#734c4ccb to nil")
		tl_global_privacy_settings_gen.go#L191: 		return fmt.Errorf("unable to decode globalPrivacySettings#734c4ccb: %w", err)
		tl_global_privacy_settings_gen.go#L199: 		return fmt.Errorf("can't decode globalPrivacySettings#734c4ccb to nil")
		tl_global_privacy_settings_gen.go#L203: 			return fmt.Errorf("unable to decode globalPrivacySettings#734c4ccb: field flags: %w", err)
		tl_group_call_gen.go#L142: 		return fmt.Errorf("can't encode groupCallDiscarded#7780bcb4 as nil")
		tl_group_call_gen.go#L151: 		return fmt.Errorf("can't encode groupCallDiscarded#7780bcb4 as nil")
		tl_group_call_gen.go#L162: 		return fmt.Errorf("can't decode groupCallDiscarded#7780bcb4 to nil")
		tl_group_call_gen.go#L165: 		return fmt.Errorf("unable to decode groupCallDiscarded#7780bcb4: %w", err)
		tl_group_call_gen.go#L173: 		return fmt.Errorf("can't decode groupCallDiscarded#7780bcb4 to nil")
		tl_group_call_gen.go#L178: 			return fmt.Errorf("unable to decode groupCallDiscarded#7780bcb4: field id: %w", err)
		tl_group_call_gen.go#L185: 			return fmt.Errorf("unable to decode groupCallDiscarded#7780bcb4: field access_hash: %w", err)
		tl_group_call_gen.go#L192: 			return fmt.Errorf("unable to decode groupCallDiscarded#7780bcb4: field duration: %w", err)
		tl_group_call_gen.go#L595: 		return fmt.Errorf("can't encode groupCall#d597650c as nil")
		tl_group_call_gen.go#L604: 		return fmt.Errorf("can't encode groupCall#d597650c as nil")
		tl_group_call_gen.go#L608: 		return fmt.Errorf("unable to encode groupCall#d597650c: field flags: %w", err)
		tl_group_call_gen.go#L636: 		return fmt.Errorf("can't decode groupCall#d597650c to nil")
		tl_group_call_gen.go#L639: 		return fmt.Errorf("unable to decode groupCall#d597650c: %w", err)
		tl_group_call_gen.go#L647: 		return fmt.Errorf("can't decode groupCall#d597650c to nil")
		tl_group_call_gen.go#L651: 			return fmt.Errorf("unable to decode groupCall#d597650c: field flags: %w", err)
		tl_group_call_gen.go#L665: 			return fmt.Errorf("unable to decode groupCall#d597650c: field id: %w", err)
		tl_group_call_gen.go#L672: 			return fmt.Errorf("unable to decode groupCall#d597650c: field access_hash: %w", err)
		tl_group_call_gen.go#L679: 			return fmt.Errorf("unable to decode groupCall#d597650c: field participants_count: %w", err)
		tl_group_call_gen.go#L686: 			return fmt.Errorf("unable to decode groupCall#d597650c: field title: %w", err)
		tl_group_call_gen.go#L693: 			return fmt.Errorf("unable to decode groupCall#d597650c: field stream_dc_id: %w", err)
		tl_group_call_gen.go#L700: 			return fmt.Errorf("unable to decode groupCall#d597650c: field record_start_date: %w", err)
		tl_group_call_gen.go#L707: 			return fmt.Errorf("unable to decode groupCall#d597650c: field schedule_date: %w", err)
		tl_group_call_gen.go#L714: 			return fmt.Errorf("unable to decode groupCall#d597650c: field unmuted_video_count: %w", err)
		tl_group_call_gen.go#L721: 			return fmt.Errorf("unable to decode groupCall#d597650c: field unmuted_video_limit: %w", err)
		tl_group_call_gen.go#L728: 			return fmt.Errorf("unable to decode groupCall#d597650c: field version: %w", err)
		tl_group_call_gen.go#L1080: 			return nil, fmt.Errorf("unable to decode GroupCallClass: %w", err)
		tl_group_call_gen.go#L1087: 			return nil, fmt.Errorf("unable to decode GroupCallClass: %w", err)
		tl_group_call_gen.go#L1091: 		return nil, fmt.Errorf("unable to decode GroupCallClass: %w", bin.NewUnexpectedID(id))
		tl_group_call_gen.go#L1103: 		return fmt.Errorf("unable to decode GroupCallBox to nil")
		tl_group_call_gen.go#L1107: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_group_call_gen.go#L1116: 		return fmt.Errorf("unable to encode GroupCallClass as nil")
		tl_group_call_participant_gen.go#L430: 		return fmt.Errorf("can't encode groupCallParticipant#eba636fe as nil")
		tl_group_call_participant_gen.go#L439: 		return fmt.Errorf("can't encode groupCallParticipant#eba636fe as nil")
		tl_group_call_participant_gen.go#L443: 		return fmt.Errorf("unable to encode groupCallParticipant#eba636fe: field flags: %w", err)
		tl_group_call_participant_gen.go#L446: 		return fmt.Errorf("unable to encode groupCallParticipant#eba636fe: field peer is nil")
		tl_group_call_participant_gen.go#L449: 		return fmt.Errorf("unable to encode groupCallParticipant#eba636fe: field peer: %w", err)
		tl_group_call_participant_gen.go#L467: 			return fmt.Errorf("unable to encode groupCallParticipant#eba636fe: field video: %w", err)
		tl_group_call_participant_gen.go#L472: 			return fmt.Errorf("unable to encode groupCallParticipant#eba636fe: field presentation: %w", err)
		tl_group_call_participant_gen.go#L481: 		return fmt.Errorf("can't decode groupCallParticipant#eba636fe to nil")
		tl_group_call_participant_gen.go#L484: 		return fmt.Errorf("unable to decode groupCallParticipant#eba636fe: %w", err)
		tl_group_call_participant_gen.go#L492: 		return fmt.Errorf("can't decode groupCallParticipant#eba636fe to nil")
		tl_group_call_participant_gen.go#L496: 			return fmt.Errorf("unable to decode groupCallParticipant#eba636fe: field flags: %w", err)
		tl_group_call_participant_gen.go#L512: 			return fmt.Errorf("unable to decode groupCallParticipant#eba636fe: field peer: %w", err)
		tl_group_call_participant_gen.go#L519: 			return fmt.Errorf("unable to decode groupCallParticipant#eba636fe: field date: %w", err)
		tl_group_call_participant_gen.go#L526: 			return fmt.Errorf("unable to decode groupCallParticipant#eba636fe: field active_date: %w", err)
		tl_group_call_participant_gen.go#L533: 			return fmt.Errorf("unable to decode groupCallParticipant#eba636fe: field source: %w", err)
		tl_group_call_participant_gen.go#L540: 			return fmt.Errorf("unable to decode groupCallParticipant#eba636fe: field volume: %w", err)
		tl_group_call_participant_gen.go#L547: 			return fmt.Errorf("unable to decode groupCallParticipant#eba636fe: field about: %w", err)
		tl_group_call_participant_gen.go#L554: 			return fmt.Errorf("unable to decode groupCallParticipant#eba636fe: field raise_hand_rating: %w", err)
		tl_group_call_participant_gen.go#L560: 			return fmt.Errorf("unable to decode groupCallParticipant#eba636fe: field video: %w", err)
		tl_group_call_participant_gen.go#L565: 			return fmt.Errorf("unable to decode groupCallParticipant#eba636fe: field presentation: %w", err)
		tl_group_call_participant_video_gen.go#L173: 		return fmt.Errorf("can't encode groupCallParticipantVideo#67753ac8 as nil")
		tl_group_call_participant_video_gen.go#L182: 		return fmt.Errorf("can't encode groupCallParticipantVideo#67753ac8 as nil")
		tl_group_call_participant_video_gen.go#L186: 		return fmt.Errorf("unable to encode groupCallParticipantVideo#67753ac8: field flags: %w", err)
		tl_group_call_participant_video_gen.go#L192: 			return fmt.Errorf("unable to encode groupCallParticipantVideo#67753ac8: field source_groups element with index %d: %w", idx, err)
		tl_group_call_participant_video_gen.go#L204: 		return fmt.Errorf("can't decode groupCallParticipantVideo#67753ac8 to nil")
		tl_group_call_participant_video_gen.go#L207: 		return fmt.Errorf("unable to decode groupCallParticipantVideo#67753ac8: %w", err)
		tl_group_call_participant_video_gen.go#L215: 		return fmt.Errorf("can't decode groupCallParticipantVideo#67753ac8 to nil")
		tl_group_call_participant_video_gen.go#L219: 			return fmt.Errorf("unable to decode groupCallParticipantVideo#67753ac8: field flags: %w", err)
		tl_group_call_participant_video_gen.go#L226: 			return fmt.Errorf("unable to decode groupCallParticipantVideo#67753ac8: field endpoint: %w", err)
		tl_group_call_participant_video_gen.go#L233: 			return fmt.Errorf("unable to decode groupCallParticipantVideo#67753ac8: field source_groups: %w", err)
		tl_group_call_participant_video_gen.go#L242: 				return fmt.Errorf("unable to decode groupCallParticipantVideo#67753ac8: field source_groups: %w", err)
		tl_group_call_participant_video_gen.go#L250: 			return fmt.Errorf("unable to decode groupCallParticipantVideo#67753ac8: field audio_source: %w", err)
		tl_group_call_participant_video_source_group_gen.go#L126: 		return fmt.Errorf("can't encode groupCallParticipantVideoSourceGroup#dcb118b7 as nil")
		tl_group_call_participant_video_source_group_gen.go#L135: 		return fmt.Errorf("can't encode groupCallParticipantVideoSourceGroup#dcb118b7 as nil")
		tl_group_call_participant_video_source_group_gen.go#L148: 		return fmt.Errorf("can't decode groupCallParticipantVideoSourceGroup#dcb118b7 to nil")
		tl_group_call_participant_video_source_group_gen.go#L151: 		return fmt.Errorf("unable to decode groupCallParticipantVideoSourceGroup#dcb118b7: %w", err)
		tl_group_call_participant_video_source_group_gen.go#L159: 		return fmt.Errorf("can't decode groupCallParticipantVideoSourceGroup#dcb118b7 to nil")
		tl_group_call_participant_video_source_group_gen.go#L164: 			return fmt.Errorf("unable to decode groupCallParticipantVideoSourceGroup#dcb118b7: field semantics: %w", err)
		tl_group_call_participant_video_source_group_gen.go#L171: 			return fmt.Errorf("unable to decode groupCallParticipantVideoSourceGroup#dcb118b7: field sources: %w", err)
		tl_group_call_participant_video_source_group_gen.go#L180: 				return fmt.Errorf("unable to decode groupCallParticipantVideoSourceGroup#dcb118b7: field sources: %w", err)
		tl_group_call_stream_channel_gen.go#L142: 		return fmt.Errorf("can't encode groupCallStreamChannel#80eb48af as nil")
		tl_group_call_stream_channel_gen.go#L151: 		return fmt.Errorf("can't encode groupCallStreamChannel#80eb48af as nil")
		tl_group_call_stream_channel_gen.go#L162: 		return fmt.Errorf("can't decode groupCallStreamChannel#80eb48af to nil")
		tl_group_call_stream_channel_gen.go#L165: 		return fmt.Errorf("unable to decode groupCallStreamChannel#80eb48af: %w", err)
		tl_group_call_stream_channel_gen.go#L173: 		return fmt.Errorf("can't decode groupCallStreamChannel#80eb48af to nil")
		tl_group_call_stream_channel_gen.go#L178: 			return fmt.Errorf("unable to decode groupCallStreamChannel#80eb48af: field channel: %w", err)
		tl_group_call_stream_channel_gen.go#L185: 			return fmt.Errorf("unable to decode groupCallStreamChannel#80eb48af: field scale: %w", err)
		tl_group_call_stream_channel_gen.go#L192: 			return fmt.Errorf("unable to decode groupCallStreamChannel#80eb48af: field last_timestamp_ms: %w", err)
		tl_help_accept_terms_of_service_gen.go#L115: 		return fmt.Errorf("can't encode help.acceptTermsOfService#ee72f79a as nil")
		tl_help_accept_terms_of_service_gen.go#L124: 		return fmt.Errorf("can't encode help.acceptTermsOfService#ee72f79a as nil")
		tl_help_accept_terms_of_service_gen.go#L127: 		return fmt.Errorf("unable to encode help.acceptTermsOfService#ee72f79a: field id: %w", err)
		tl_help_accept_terms_of_service_gen.go#L135: 		return fmt.Errorf("can't decode help.acceptTermsOfService#ee72f79a to nil")
		tl_help_accept_terms_of_service_gen.go#L138: 		return fmt.Errorf("unable to decode help.acceptTermsOfService#ee72f79a: %w", err)
		tl_help_accept_terms_of_service_gen.go#L146: 		return fmt.Errorf("can't decode help.acceptTermsOfService#ee72f79a to nil")
		tl_help_accept_terms_of_service_gen.go#L150: 			return fmt.Errorf("unable to decode help.acceptTermsOfService#ee72f79a: field id: %w", err)
		tl_help_app_config_gen.go#L103: 		return fmt.Errorf("can't encode help.appConfigNotModified#7cde641d as nil")
		tl_help_app_config_gen.go#L112: 		return fmt.Errorf("can't encode help.appConfigNotModified#7cde641d as nil")
		tl_help_app_config_gen.go#L120: 		return fmt.Errorf("can't decode help.appConfigNotModified#7cde641d to nil")
		tl_help_app_config_gen.go#L123: 		return fmt.Errorf("unable to decode help.appConfigNotModified#7cde641d: %w", err)
		tl_help_app_config_gen.go#L131: 		return fmt.Errorf("can't decode help.appConfigNotModified#7cde641d to nil")
		tl_help_app_config_gen.go#L242: 		return fmt.Errorf("can't encode help.appConfig#dd18782e as nil")
		tl_help_app_config_gen.go#L251: 		return fmt.Errorf("can't encode help.appConfig#dd18782e as nil")
		tl_help_app_config_gen.go#L255: 		return fmt.Errorf("unable to encode help.appConfig#dd18782e: field config is nil")
		tl_help_app_config_gen.go#L258: 		return fmt.Errorf("unable to encode help.appConfig#dd18782e: field config: %w", err)
		tl_help_app_config_gen.go#L266: 		return fmt.Errorf("can't decode help.appConfig#dd18782e to nil")
		tl_help_app_config_gen.go#L269: 		return fmt.Errorf("unable to decode help.appConfig#dd18782e: %w", err)
		tl_help_app_config_gen.go#L277: 		return fmt.Errorf("can't decode help.appConfig#dd18782e to nil")
		tl_help_app_config_gen.go#L282: 			return fmt.Errorf("unable to decode help.appConfig#dd18782e: field hash: %w", err)
		tl_help_app_config_gen.go#L289: 			return fmt.Errorf("unable to decode help.appConfig#dd18782e: field config: %w", err)
		tl_help_app_config_gen.go#L373: 			return nil, fmt.Errorf("unable to decode HelpAppConfigClass: %w", err)
		tl_help_app_config_gen.go#L380: 			return nil, fmt.Errorf("unable to decode HelpAppConfigClass: %w", err)
		tl_help_app_config_gen.go#L384: 		return nil, fmt.Errorf("unable to decode HelpAppConfigClass: %w", bin.NewUnexpectedID(id))
		tl_help_app_config_gen.go#L396: 		return fmt.Errorf("unable to decode HelpAppConfigBox to nil")
		tl_help_app_config_gen.go#L400: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_help_app_config_gen.go#L409: 		return fmt.Errorf("unable to encode HelpAppConfigClass as nil")
		tl_help_app_update_gen.go#L243: 		return fmt.Errorf("can't encode help.appUpdate#ccbbce30 as nil")
		tl_help_app_update_gen.go#L252: 		return fmt.Errorf("can't encode help.appUpdate#ccbbce30 as nil")
		tl_help_app_update_gen.go#L256: 		return fmt.Errorf("unable to encode help.appUpdate#ccbbce30: field flags: %w", err)
		tl_help_app_update_gen.go#L264: 			return fmt.Errorf("unable to encode help.appUpdate#ccbbce30: field entities element with index %d is nil", idx)
		tl_help_app_update_gen.go#L267: 			return fmt.Errorf("unable to encode help.appUpdate#ccbbce30: field entities element with index %d: %w", idx, err)
		tl_help_app_update_gen.go#L272: 			return fmt.Errorf("unable to encode help.appUpdate#ccbbce30: field document is nil")
		tl_help_app_update_gen.go#L275: 			return fmt.Errorf("unable to encode help.appUpdate#ccbbce30: field document: %w", err)
		tl_help_app_update_gen.go#L283: 			return fmt.Errorf("unable to encode help.appUpdate#ccbbce30: field sticker is nil")
		tl_help_app_update_gen.go#L286: 			return fmt.Errorf("unable to encode help.appUpdate#ccbbce30: field sticker: %w", err)
		tl_help_app_update_gen.go#L295: 		return fmt.Errorf("can't decode help.appUpdate#ccbbce30 to nil")
		tl_help_app_update_gen.go#L298: 		return fmt.Errorf("unable to decode help.appUpdate#ccbbce30: %w", err)
		tl_help_app_update_gen.go#L306: 		return fmt.Errorf("can't decode help.appUpdate#ccbbce30 to nil")
		tl_help_app_update_gen.go#L310: 			return fmt.Errorf("unable to decode help.appUpdate#ccbbce30: field flags: %w", err)
		tl_help_app_update_gen.go#L317: 			return fmt.Errorf("unable to decode help.appUpdate#ccbbce30: field id: %w", err)
		tl_help_app_update_gen.go#L324: 			return fmt.Errorf("unable to decode help.appUpdate#ccbbce30: field version: %w", err)
		tl_help_app_update_gen.go#L331: 			return fmt.Errorf("unable to decode help.appUpdate#ccbbce30: field text: %w", err)
		tl_help_app_update_gen.go#L338: 			return fmt.Errorf("unable to decode help.appUpdate#ccbbce30: field entities: %w", err)
		tl_help_app_update_gen.go#L347: 				return fmt.Errorf("unable to decode help.appUpdate#ccbbce30: field entities: %w", err)
		tl_help_app_update_gen.go#L355: 			return fmt.Errorf("unable to decode help.appUpdate#ccbbce30: field document: %w", err)
		tl_help_app_update_gen.go#L362: 			return fmt.Errorf("unable to decode help.appUpdate#ccbbce30: field url: %w", err)
		tl_help_app_update_gen.go#L369: 			return fmt.Errorf("unable to decode help.appUpdate#ccbbce30: field sticker: %w", err)
		tl_help_app_update_gen.go#L555: 		return fmt.Errorf("can't encode help.noAppUpdate#c45a6536 as nil")
		tl_help_app_update_gen.go#L564: 		return fmt.Errorf("can't encode help.noAppUpdate#c45a6536 as nil")
		tl_help_app_update_gen.go#L572: 		return fmt.Errorf("can't decode help.noAppUpdate#c45a6536 to nil")
		tl_help_app_update_gen.go#L575: 		return fmt.Errorf("unable to decode help.noAppUpdate#c45a6536: %w", err)
		tl_help_app_update_gen.go#L583: 		return fmt.Errorf("can't decode help.noAppUpdate#c45a6536 to nil")
		tl_help_app_update_gen.go#L636: 			return nil, fmt.Errorf("unable to decode HelpAppUpdateClass: %w", err)
		tl_help_app_update_gen.go#L643: 			return nil, fmt.Errorf("unable to decode HelpAppUpdateClass: %w", err)
		tl_help_app_update_gen.go#L647: 		return nil, fmt.Errorf("unable to decode HelpAppUpdateClass: %w", bin.NewUnexpectedID(id))
		tl_help_app_update_gen.go#L659: 		return fmt.Errorf("unable to decode HelpAppUpdateBox to nil")
		tl_help_app_update_gen.go#L663: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_help_app_update_gen.go#L672: 		return fmt.Errorf("unable to encode HelpAppUpdateClass as nil")
		tl_help_config_simple_gen.go#L136: 		return fmt.Errorf("can't encode help.configSimple#5a592a6c as nil")
		tl_help_config_simple_gen.go#L145: 		return fmt.Errorf("can't encode help.configSimple#5a592a6c as nil")
		tl_help_config_simple_gen.go#L152: 			return fmt.Errorf("unable to encode help.configSimple#5a592a6c: field rules element with index %d: %w", idx, err)
		tl_help_config_simple_gen.go#L161: 		return fmt.Errorf("can't decode help.configSimple#5a592a6c to nil")
		tl_help_config_simple_gen.go#L164: 		return fmt.Errorf("unable to decode help.configSimple#5a592a6c: %w", err)
		tl_help_config_simple_gen.go#L172: 		return fmt.Errorf("can't decode help.configSimple#5a592a6c to nil")
		tl_help_config_simple_gen.go#L177: 			return fmt.Errorf("unable to decode help.configSimple#5a592a6c: field date: %w", err)
		tl_help_config_simple_gen.go#L184: 			return fmt.Errorf("unable to decode help.configSimple#5a592a6c: field expires: %w", err)
		tl_help_config_simple_gen.go#L191: 			return fmt.Errorf("unable to decode help.configSimple#5a592a6c: field rules: %w", err)
		tl_help_config_simple_gen.go#L200: 				return fmt.Errorf("unable to decode help.configSimple#5a592a6c: field rules: %w", err)
		tl_help_countries_list_gen.go#L103: 		return fmt.Errorf("can't encode help.countriesListNotModified#93cc1f32 as nil")
		tl_help_countries_list_gen.go#L112: 		return fmt.Errorf("can't encode help.countriesListNotModified#93cc1f32 as nil")
		tl_help_countries_list_gen.go#L120: 		return fmt.Errorf("can't decode help.countriesListNotModified#93cc1f32 to nil")
		tl_help_countries_list_gen.go#L123: 		return fmt.Errorf("unable to decode help.countriesListNotModified#93cc1f32: %w", err)
		tl_help_countries_list_gen.go#L131: 		return fmt.Errorf("can't decode help.countriesListNotModified#93cc1f32 to nil")
		tl_help_countries_list_gen.go#L236: 		return fmt.Errorf("can't encode help.countriesList#87d0759e as nil")
		tl_help_countries_list_gen.go#L245: 		return fmt.Errorf("can't encode help.countriesList#87d0759e as nil")
		tl_help_countries_list_gen.go#L250: 			return fmt.Errorf("unable to encode help.countriesList#87d0759e: field countries element with index %d: %w", idx, err)
		tl_help_countries_list_gen.go#L260: 		return fmt.Errorf("can't decode help.countriesList#87d0759e to nil")
		tl_help_countries_list_gen.go#L263: 		return fmt.Errorf("unable to decode help.countriesList#87d0759e: %w", err)
		tl_help_countries_list_gen.go#L271: 		return fmt.Errorf("can't decode help.countriesList#87d0759e to nil")
		tl_help_countries_list_gen.go#L276: 			return fmt.Errorf("unable to decode help.countriesList#87d0759e: field countries: %w", err)
		tl_help_countries_list_gen.go#L285: 				return fmt.Errorf("unable to decode help.countriesList#87d0759e: field countries: %w", err)
		tl_help_countries_list_gen.go#L293: 			return fmt.Errorf("unable to decode help.countriesList#87d0759e: field hash: %w", err)
		tl_help_countries_list_gen.go#L377: 			return nil, fmt.Errorf("unable to decode HelpCountriesListClass: %w", err)
		tl_help_countries_list_gen.go#L384: 			return nil, fmt.Errorf("unable to decode HelpCountriesListClass: %w", err)
		tl_help_countries_list_gen.go#L388: 		return nil, fmt.Errorf("unable to decode HelpCountriesListClass: %w", bin.NewUnexpectedID(id))
		tl_help_countries_list_gen.go#L400: 		return fmt.Errorf("unable to decode HelpCountriesListBox to nil")
		tl_help_countries_list_gen.go#L404: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_help_countries_list_gen.go#L413: 		return fmt.Errorf("unable to encode HelpCountriesListClass as nil")
		tl_help_country_code_gen.go#L167: 		return fmt.Errorf("can't encode help.countryCode#4203c5ef as nil")
		tl_help_country_code_gen.go#L176: 		return fmt.Errorf("can't encode help.countryCode#4203c5ef as nil")
		tl_help_country_code_gen.go#L180: 		return fmt.Errorf("unable to encode help.countryCode#4203c5ef: field flags: %w", err)
		tl_help_country_code_gen.go#L201: 		return fmt.Errorf("can't decode help.countryCode#4203c5ef to nil")
		tl_help_country_code_gen.go#L204: 		return fmt.Errorf("unable to decode help.countryCode#4203c5ef: %w", err)
		tl_help_country_code_gen.go#L212: 		return fmt.Errorf("can't decode help.countryCode#4203c5ef to nil")
		tl_help_country_code_gen.go#L216: 			return fmt.Errorf("unable to decode help.countryCode#4203c5ef: field flags: %w", err)
		tl_help_country_code_gen.go#L222: 			return fmt.Errorf("unable to decode help.countryCode#4203c5ef: field country_code: %w", err)
		tl_help_country_code_gen.go#L229: 			return fmt.Errorf("unable to decode help.countryCode#4203c5ef: field prefixes: %w", err)
		tl_help_country_code_gen.go#L238: 				return fmt.Errorf("unable to decode help.countryCode#4203c5ef: field prefixes: %w", err)
		tl_help_country_code_gen.go#L246: 			return fmt.Errorf("unable to decode help.countryCode#4203c5ef: field patterns: %w", err)
		tl_help_country_code_gen.go#L255: 				return fmt.Errorf("unable to decode help.countryCode#4203c5ef: field patterns: %w", err)
		tl_help_country_gen.go#L184: 		return fmt.Errorf("can't encode help.country#c3878e23 as nil")
		tl_help_country_gen.go#L193: 		return fmt.Errorf("can't encode help.country#c3878e23 as nil")
		tl_help_country_gen.go#L197: 		return fmt.Errorf("unable to encode help.country#c3878e23: field flags: %w", err)
		tl_help_country_gen.go#L207: 			return fmt.Errorf("unable to encode help.country#c3878e23: field country_codes element with index %d: %w", idx, err)
		tl_help_country_gen.go#L216: 		return fmt.Errorf("can't decode help.country#c3878e23 to nil")
		tl_help_country_gen.go#L219: 		return fmt.Errorf("unable to decode help.country#c3878e23: %w", err)
		tl_help_country_gen.go#L227: 		return fmt.Errorf("can't decode help.country#c3878e23 to nil")
		tl_help_country_gen.go#L231: 			return fmt.Errorf("unable to decode help.country#c3878e23: field flags: %w", err)
		tl_help_country_gen.go#L238: 			return fmt.Errorf("unable to decode help.country#c3878e23: field iso2: %w", err)
		tl_help_country_gen.go#L245: 			return fmt.Errorf("unable to decode help.country#c3878e23: field default_name: %w", err)
		tl_help_country_gen.go#L252: 			return fmt.Errorf("unable to decode help.country#c3878e23: field name: %w", err)
		tl_help_country_gen.go#L259: 			return fmt.Errorf("unable to decode help.country#c3878e23: field country_codes: %w", err)
		tl_help_country_gen.go#L268: 				return fmt.Errorf("unable to decode help.country#c3878e23: field country_codes: %w", err)
		tl_help_deep_link_info_gen.go#L103: 		return fmt.Errorf("can't encode help.deepLinkInfoEmpty#66afa166 as nil")
		tl_help_deep_link_info_gen.go#L112: 		return fmt.Errorf("can't encode help.deepLinkInfoEmpty#66afa166 as nil")
		tl_help_deep_link_info_gen.go#L120: 		return fmt.Errorf("can't decode help.deepLinkInfoEmpty#66afa166 to nil")
		tl_help_deep_link_info_gen.go#L123: 		return fmt.Errorf("unable to decode help.deepLinkInfoEmpty#66afa166: %w", err)
		tl_help_deep_link_info_gen.go#L131: 		return fmt.Errorf("can't decode help.deepLinkInfoEmpty#66afa166 to nil")
		tl_help_deep_link_info_gen.go#L275: 		return fmt.Errorf("can't encode help.deepLinkInfo#6a4ee832 as nil")
		tl_help_deep_link_info_gen.go#L284: 		return fmt.Errorf("can't encode help.deepLinkInfo#6a4ee832 as nil")
		tl_help_deep_link_info_gen.go#L288: 		return fmt.Errorf("unable to encode help.deepLinkInfo#6a4ee832: field flags: %w", err)
		tl_help_deep_link_info_gen.go#L295: 				return fmt.Errorf("unable to encode help.deepLinkInfo#6a4ee832: field entities element with index %d is nil", idx)
		tl_help_deep_link_info_gen.go#L298: 				return fmt.Errorf("unable to encode help.deepLinkInfo#6a4ee832: field entities element with index %d: %w", idx, err)
		tl_help_deep_link_info_gen.go#L308: 		return fmt.Errorf("can't decode help.deepLinkInfo#6a4ee832 to nil")
		tl_help_deep_link_info_gen.go#L311: 		return fmt.Errorf("unable to decode help.deepLinkInfo#6a4ee832: %w", err)
		tl_help_deep_link_info_gen.go#L319: 		return fmt.Errorf("can't decode help.deepLinkInfo#6a4ee832 to nil")
		tl_help_deep_link_info_gen.go#L323: 			return fmt.Errorf("unable to decode help.deepLinkInfo#6a4ee832: field flags: %w", err)
		tl_help_deep_link_info_gen.go#L330: 			return fmt.Errorf("unable to decode help.deepLinkInfo#6a4ee832: field message: %w", err)
		tl_help_deep_link_info_gen.go#L337: 			return fmt.Errorf("unable to decode help.deepLinkInfo#6a4ee832: field entities: %w", err)
		tl_help_deep_link_info_gen.go#L346: 				return fmt.Errorf("unable to decode help.deepLinkInfo#6a4ee832: field entities: %w", err)
		tl_help_deep_link_info_gen.go#L468: 			return nil, fmt.Errorf("unable to decode HelpDeepLinkInfoClass: %w", err)
		tl_help_deep_link_info_gen.go#L475: 			return nil, fmt.Errorf("unable to decode HelpDeepLinkInfoClass: %w", err)
		tl_help_deep_link_info_gen.go#L479: 		return nil, fmt.Errorf("unable to decode HelpDeepLinkInfoClass: %w", bin.NewUnexpectedID(id))
		tl_help_deep_link_info_gen.go#L491: 		return fmt.Errorf("unable to decode HelpDeepLinkInfoBox to nil")
		tl_help_deep_link_info_gen.go#L495: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_help_deep_link_info_gen.go#L504: 		return fmt.Errorf("unable to encode HelpDeepLinkInfoClass as nil")
		tl_help_dismiss_suggestion_gen.go#L135: 		return fmt.Errorf("can't encode help.dismissSuggestion#f50dbaa1 as nil")
		tl_help_dismiss_suggestion_gen.go#L144: 		return fmt.Errorf("can't encode help.dismissSuggestion#f50dbaa1 as nil")
		tl_help_dismiss_suggestion_gen.go#L147: 		return fmt.Errorf("unable to encode help.dismissSuggestion#f50dbaa1: field peer is nil")
		tl_help_dismiss_suggestion_gen.go#L150: 		return fmt.Errorf("unable to encode help.dismissSuggestion#f50dbaa1: field peer: %w", err)
		tl_help_dismiss_suggestion_gen.go#L159: 		return fmt.Errorf("can't decode help.dismissSuggestion#f50dbaa1 to nil")
		tl_help_dismiss_suggestion_gen.go#L162: 		return fmt.Errorf("unable to decode help.dismissSuggestion#f50dbaa1: %w", err)
		tl_help_dismiss_suggestion_gen.go#L170: 		return fmt.Errorf("can't decode help.dismissSuggestion#f50dbaa1 to nil")
		tl_help_dismiss_suggestion_gen.go#L175: 			return fmt.Errorf("unable to decode help.dismissSuggestion#f50dbaa1: field peer: %w", err)
		tl_help_dismiss_suggestion_gen.go#L182: 			return fmt.Errorf("unable to decode help.dismissSuggestion#f50dbaa1: field suggestion: %w", err)
		tl_help_edit_user_info_gen.go#L140: 		return fmt.Errorf("can't encode help.editUserInfo#66b91b70 as nil")
		tl_help_edit_user_info_gen.go#L149: 		return fmt.Errorf("can't encode help.editUserInfo#66b91b70 as nil")
		tl_help_edit_user_info_gen.go#L152: 		return fmt.Errorf("unable to encode help.editUserInfo#66b91b70: field user_id is nil")
		tl_help_edit_user_info_gen.go#L155: 		return fmt.Errorf("unable to encode help.editUserInfo#66b91b70: field user_id: %w", err)
		tl_help_edit_user_info_gen.go#L161: 			return fmt.Errorf("unable to encode help.editUserInfo#66b91b70: field entities element with index %d is nil", idx)
		tl_help_edit_user_info_gen.go#L164: 			return fmt.Errorf("unable to encode help.editUserInfo#66b91b70: field entities element with index %d: %w", idx, err)
		tl_help_edit_user_info_gen.go#L173: 		return fmt.Errorf("can't decode help.editUserInfo#66b91b70 to nil")
		tl_help_edit_user_info_gen.go#L176: 		return fmt.Errorf("unable to decode help.editUserInfo#66b91b70: %w", err)
		tl_help_edit_user_info_gen.go#L184: 		return fmt.Errorf("can't decode help.editUserInfo#66b91b70 to nil")
		tl_help_edit_user_info_gen.go#L189: 			return fmt.Errorf("unable to decode help.editUserInfo#66b91b70: field user_id: %w", err)
		tl_help_edit_user_info_gen.go#L196: 			return fmt.Errorf("unable to decode help.editUserInfo#66b91b70: field message: %w", err)
		tl_help_edit_user_info_gen.go#L203: 			return fmt.Errorf("unable to decode help.editUserInfo#66b91b70: field entities: %w", err)
		tl_help_edit_user_info_gen.go#L212: 				return fmt.Errorf("unable to decode help.editUserInfo#66b91b70: field entities: %w", err)
		tl_help_get_app_config_gen.go#L121: 		return fmt.Errorf("can't encode help.getAppConfig#61e3f854 as nil")
		tl_help_get_app_config_gen.go#L130: 		return fmt.Errorf("can't encode help.getAppConfig#61e3f854 as nil")
		tl_help_get_app_config_gen.go#L139: 		return fmt.Errorf("can't decode help.getAppConfig#61e3f854 to nil")
		tl_help_get_app_config_gen.go#L142: 		return fmt.Errorf("unable to decode help.getAppConfig#61e3f854: %w", err)
		tl_help_get_app_config_gen.go#L150: 		return fmt.Errorf("can't decode help.getAppConfig#61e3f854 to nil")
		tl_help_get_app_config_gen.go#L155: 			return fmt.Errorf("unable to decode help.getAppConfig#61e3f854: field hash: %w", err)
		tl_help_get_app_update_gen.go#L115: 		return fmt.Errorf("can't encode help.getAppUpdate#522d5a7d as nil")
		tl_help_get_app_update_gen.go#L124: 		return fmt.Errorf("can't encode help.getAppUpdate#522d5a7d as nil")
		tl_help_get_app_update_gen.go#L133: 		return fmt.Errorf("can't decode help.getAppUpdate#522d5a7d to nil")
		tl_help_get_app_update_gen.go#L136: 		return fmt.Errorf("unable to decode help.getAppUpdate#522d5a7d: %w", err)
		tl_help_get_app_update_gen.go#L144: 		return fmt.Errorf("can't decode help.getAppUpdate#522d5a7d to nil")
		tl_help_get_app_update_gen.go#L149: 			return fmt.Errorf("unable to decode help.getAppUpdate#522d5a7d: field source: %w", err)
		tl_help_get_cdn_config_gen.go#L101: 		return fmt.Errorf("can't encode help.getCdnConfig#52029342 as nil")
		tl_help_get_cdn_config_gen.go#L110: 		return fmt.Errorf("can't encode help.getCdnConfig#52029342 as nil")
		tl_help_get_cdn_config_gen.go#L118: 		return fmt.Errorf("can't decode help.getCdnConfig#52029342 to nil")
		tl_help_get_cdn_config_gen.go#L121: 		return fmt.Errorf("unable to decode help.getCdnConfig#52029342: %w", err)
		tl_help_get_cdn_config_gen.go#L129: 		return fmt.Errorf("can't decode help.getCdnConfig#52029342 to nil")
		tl_help_get_config_gen.go#L98: 		return fmt.Errorf("can't encode help.getConfig#c4f9186b as nil")
		tl_help_get_config_gen.go#L107: 		return fmt.Errorf("can't encode help.getConfig#c4f9186b as nil")
		tl_help_get_config_gen.go#L115: 		return fmt.Errorf("can't decode help.getConfig#c4f9186b to nil")
		tl_help_get_config_gen.go#L118: 		return fmt.Errorf("unable to decode help.getConfig#c4f9186b: %w", err)
		tl_help_get_config_gen.go#L126: 		return fmt.Errorf("can't decode help.getConfig#c4f9186b to nil")
		tl_help_get_countries_list_gen.go#L129: 		return fmt.Errorf("can't encode help.getCountriesList#735787a8 as nil")
		tl_help_get_countries_list_gen.go#L138: 		return fmt.Errorf("can't encode help.getCountriesList#735787a8 as nil")
		tl_help_get_countries_list_gen.go#L148: 		return fmt.Errorf("can't decode help.getCountriesList#735787a8 to nil")
		tl_help_get_countries_list_gen.go#L151: 		return fmt.Errorf("unable to decode help.getCountriesList#735787a8: %w", err)
		tl_help_get_countries_list_gen.go#L159: 		return fmt.Errorf("can't decode help.getCountriesList#735787a8 to nil")
		tl_help_get_countries_list_gen.go#L164: 			return fmt.Errorf("unable to decode help.getCountriesList#735787a8: field lang_code: %w", err)
		tl_help_get_countries_list_gen.go#L171: 			return fmt.Errorf("unable to decode help.getCountriesList#735787a8: field hash: %w", err)
		tl_help_get_deep_link_info_gen.go#L118: 		return fmt.Errorf("can't encode help.getDeepLinkInfo#3fedc75f as nil")
		tl_help_get_deep_link_info_gen.go#L127: 		return fmt.Errorf("can't encode help.getDeepLinkInfo#3fedc75f as nil")
		tl_help_get_deep_link_info_gen.go#L136: 		return fmt.Errorf("can't decode help.getDeepLinkInfo#3fedc75f to nil")
		tl_help_get_deep_link_info_gen.go#L139: 		return fmt.Errorf("unable to decode help.getDeepLinkInfo#3fedc75f: %w", err)
		tl_help_get_deep_link_info_gen.go#L147: 		return fmt.Errorf("can't decode help.getDeepLinkInfo#3fedc75f to nil")
		tl_help_get_deep_link_info_gen.go#L152: 			return fmt.Errorf("unable to decode help.getDeepLinkInfo#3fedc75f: field path: %w", err)
		tl_help_get_invite_text_gen.go#L98: 		return fmt.Errorf("can't encode help.getInviteText#4d392343 as nil")
		tl_help_get_invite_text_gen.go#L107: 		return fmt.Errorf("can't encode help.getInviteText#4d392343 as nil")
		tl_help_get_invite_text_gen.go#L115: 		return fmt.Errorf("can't decode help.getInviteText#4d392343 to nil")
		tl_help_get_invite_text_gen.go#L118: 		return fmt.Errorf("unable to decode help.getInviteText#4d392343: %w", err)
		tl_help_get_invite_text_gen.go#L126: 		return fmt.Errorf("can't decode help.getInviteText#4d392343 to nil")
		tl_help_get_nearest_dc_gen.go#L98: 		return fmt.Errorf("can't encode help.getNearestDc#1fb33026 as nil")
		tl_help_get_nearest_dc_gen.go#L107: 		return fmt.Errorf("can't encode help.getNearestDc#1fb33026 as nil")
		tl_help_get_nearest_dc_gen.go#L115: 		return fmt.Errorf("can't decode help.getNearestDc#1fb33026 to nil")
		tl_help_get_nearest_dc_gen.go#L118: 		return fmt.Errorf("unable to decode help.getNearestDc#1fb33026: %w", err)
		tl_help_get_nearest_dc_gen.go#L126: 		return fmt.Errorf("can't decode help.getNearestDc#1fb33026 to nil")
		tl_help_get_passport_config_gen.go#L121: 		return fmt.Errorf("can't encode help.getPassportConfig#c661ad08 as nil")
		tl_help_get_passport_config_gen.go#L130: 		return fmt.Errorf("can't encode help.getPassportConfig#c661ad08 as nil")
		tl_help_get_passport_config_gen.go#L139: 		return fmt.Errorf("can't decode help.getPassportConfig#c661ad08 to nil")
		tl_help_get_passport_config_gen.go#L142: 		return fmt.Errorf("unable to decode help.getPassportConfig#c661ad08: %w", err)
		tl_help_get_passport_config_gen.go#L150: 		return fmt.Errorf("can't decode help.getPassportConfig#c661ad08 to nil")
		tl_help_get_passport_config_gen.go#L155: 			return fmt.Errorf("unable to decode help.getPassportConfig#c661ad08: field hash: %w", err)
		tl_help_get_peer_colors_gen.go#L121: 		return fmt.Errorf("can't encode help.getPeerColors#da80f42f as nil")
		tl_help_get_peer_colors_gen.go#L130: 		return fmt.Errorf("can't encode help.getPeerColors#da80f42f as nil")
		tl_help_get_peer_colors_gen.go#L139: 		return fmt.Errorf("can't decode help.getPeerColors#da80f42f to nil")
		tl_help_get_peer_colors_gen.go#L142: 		return fmt.Errorf("unable to decode help.getPeerColors#da80f42f: %w", err)
		tl_help_get_peer_colors_gen.go#L150: 		return fmt.Errorf("can't decode help.getPeerColors#da80f42f to nil")
		tl_help_get_peer_colors_gen.go#L155: 			return fmt.Errorf("unable to decode help.getPeerColors#da80f42f: field hash: %w", err)
		tl_help_get_peer_profile_colors_gen.go#L121: 		return fmt.Errorf("can't encode help.getPeerProfileColors#abcfa9fd as nil")
		tl_help_get_peer_profile_colors_gen.go#L130: 		return fmt.Errorf("can't encode help.getPeerProfileColors#abcfa9fd as nil")
		tl_help_get_peer_profile_colors_gen.go#L139: 		return fmt.Errorf("can't decode help.getPeerProfileColors#abcfa9fd to nil")
		tl_help_get_peer_profile_colors_gen.go#L142: 		return fmt.Errorf("unable to decode help.getPeerProfileColors#abcfa9fd: %w", err)
		tl_help_get_peer_profile_colors_gen.go#L150: 		return fmt.Errorf("can't decode help.getPeerProfileColors#abcfa9fd to nil")
		tl_help_get_peer_profile_colors_gen.go#L155: 			return fmt.Errorf("unable to decode help.getPeerProfileColors#abcfa9fd: field hash: %w", err)
		tl_help_get_premium_promo_gen.go#L98: 		return fmt.Errorf("can't encode help.getPremiumPromo#b81b93d4 as nil")
		tl_help_get_premium_promo_gen.go#L107: 		return fmt.Errorf("can't encode help.getPremiumPromo#b81b93d4 as nil")
		tl_help_get_premium_promo_gen.go#L115: 		return fmt.Errorf("can't decode help.getPremiumPromo#b81b93d4 to nil")
		tl_help_get_premium_promo_gen.go#L118: 		return fmt.Errorf("unable to decode help.getPremiumPromo#b81b93d4: %w", err)
		tl_help_get_premium_promo_gen.go#L126: 		return fmt.Errorf("can't decode help.getPremiumPromo#b81b93d4 to nil")
		tl_help_get_promo_data_gen.go#L98: 		return fmt.Errorf("can't encode help.getPromoData#c0977421 as nil")
		tl_help_get_promo_data_gen.go#L107: 		return fmt.Errorf("can't encode help.getPromoData#c0977421 as nil")
		tl_help_get_promo_data_gen.go#L115: 		return fmt.Errorf("can't decode help.getPromoData#c0977421 to nil")
		tl_help_get_promo_data_gen.go#L118: 		return fmt.Errorf("unable to decode help.getPromoData#c0977421: %w", err)
		tl_help_get_promo_data_gen.go#L126: 		return fmt.Errorf("can't decode help.getPromoData#c0977421 to nil")
		tl_help_get_recent_me_urls_gen.go#L125: 		return fmt.Errorf("can't encode help.getRecentMeUrls#3dc0f114 as nil")
		tl_help_get_recent_me_urls_gen.go#L134: 		return fmt.Errorf("can't encode help.getRecentMeUrls#3dc0f114 as nil")
		tl_help_get_recent_me_urls_gen.go#L143: 		return fmt.Errorf("can't decode help.getRecentMeUrls#3dc0f114 to nil")
		tl_help_get_recent_me_urls_gen.go#L146: 		return fmt.Errorf("unable to decode help.getRecentMeUrls#3dc0f114: %w", err)
		tl_help_get_recent_me_urls_gen.go#L154: 		return fmt.Errorf("can't decode help.getRecentMeUrls#3dc0f114 to nil")
		tl_help_get_recent_me_urls_gen.go#L159: 			return fmt.Errorf("unable to decode help.getRecentMeUrls#3dc0f114: field referer: %w", err)
		tl_help_get_support_gen.go#L98: 		return fmt.Errorf("can't encode help.getSupport#9cdf08cd as nil")
		tl_help_get_support_gen.go#L107: 		return fmt.Errorf("can't encode help.getSupport#9cdf08cd as nil")
		tl_help_get_support_gen.go#L115: 		return fmt.Errorf("can't decode help.getSupport#9cdf08cd to nil")
		tl_help_get_support_gen.go#L118: 		return fmt.Errorf("unable to decode help.getSupport#9cdf08cd: %w", err)
		tl_help_get_support_gen.go#L126: 		return fmt.Errorf("can't decode help.getSupport#9cdf08cd to nil")
		tl_help_get_support_name_gen.go#L98: 		return fmt.Errorf("can't encode help.getSupportName#d360e72c as nil")
		tl_help_get_support_name_gen.go#L107: 		return fmt.Errorf("can't encode help.getSupportName#d360e72c as nil")
		tl_help_get_support_name_gen.go#L115: 		return fmt.Errorf("can't decode help.getSupportName#d360e72c to nil")
		tl_help_get_support_name_gen.go#L118: 		return fmt.Errorf("unable to decode help.getSupportName#d360e72c: %w", err)
		tl_help_get_support_name_gen.go#L126: 		return fmt.Errorf("can't decode help.getSupportName#d360e72c to nil")
		tl_help_get_terms_of_service_update_gen.go#L98: 		return fmt.Errorf("can't encode help.getTermsOfServiceUpdate#2ca51fd1 as nil")
		tl_help_get_terms_of_service_update_gen.go#L107: 		return fmt.Errorf("can't encode help.getTermsOfServiceUpdate#2ca51fd1 as nil")
		tl_help_get_terms_of_service_update_gen.go#L115: 		return fmt.Errorf("can't decode help.getTermsOfServiceUpdate#2ca51fd1 to nil")
		tl_help_get_terms_of_service_update_gen.go#L118: 		return fmt.Errorf("unable to decode help.getTermsOfServiceUpdate#2ca51fd1: %w", err)
		tl_help_get_terms_of_service_update_gen.go#L126: 		return fmt.Errorf("can't decode help.getTermsOfServiceUpdate#2ca51fd1 to nil")
		tl_help_get_user_info_gen.go#L115: 		return fmt.Errorf("can't encode help.getUserInfo#38a08d3 as nil")
		tl_help_get_user_info_gen.go#L124: 		return fmt.Errorf("can't encode help.getUserInfo#38a08d3 as nil")
		tl_help_get_user_info_gen.go#L127: 		return fmt.Errorf("unable to encode help.getUserInfo#38a08d3: field user_id is nil")
		tl_help_get_user_info_gen.go#L130: 		return fmt.Errorf("unable to encode help.getUserInfo#38a08d3: field user_id: %w", err)
		tl_help_get_user_info_gen.go#L138: 		return fmt.Errorf("can't decode help.getUserInfo#38a08d3 to nil")
		tl_help_get_user_info_gen.go#L141: 		return fmt.Errorf("unable to decode help.getUserInfo#38a08d3: %w", err)
		tl_help_get_user_info_gen.go#L149: 		return fmt.Errorf("can't decode help.getUserInfo#38a08d3 to nil")
		tl_help_get_user_info_gen.go#L154: 			return fmt.Errorf("unable to decode help.getUserInfo#38a08d3: field user_id: %w", err)
		tl_help_hide_promo_data_gen.go#L115: 		return fmt.Errorf("can't encode help.hidePromoData#1e251c95 as nil")
		tl_help_hide_promo_data_gen.go#L124: 		return fmt.Errorf("can't encode help.hidePromoData#1e251c95 as nil")
		tl_help_hide_promo_data_gen.go#L127: 		return fmt.Errorf("unable to encode help.hidePromoData#1e251c95: field peer is nil")
		tl_help_hide_promo_data_gen.go#L130: 		return fmt.Errorf("unable to encode help.hidePromoData#1e251c95: field peer: %w", err)
		tl_help_hide_promo_data_gen.go#L138: 		return fmt.Errorf("can't decode help.hidePromoData#1e251c95 to nil")
		tl_help_hide_promo_data_gen.go#L141: 		return fmt.Errorf("unable to decode help.hidePromoData#1e251c95: %w", err)
		tl_help_hide_promo_data_gen.go#L149: 		return fmt.Errorf("can't decode help.hidePromoData#1e251c95 to nil")
		tl_help_hide_promo_data_gen.go#L154: 			return fmt.Errorf("unable to decode help.hidePromoData#1e251c95: field peer: %w", err)
		tl_help_invite_text_gen.go#L115: 		return fmt.Errorf("can't encode help.inviteText#18cb9f78 as nil")
		tl_help_invite_text_gen.go#L124: 		return fmt.Errorf("can't encode help.inviteText#18cb9f78 as nil")
		tl_help_invite_text_gen.go#L133: 		return fmt.Errorf("can't decode help.inviteText#18cb9f78 to nil")
		tl_help_invite_text_gen.go#L136: 		return fmt.Errorf("unable to decode help.inviteText#18cb9f78: %w", err)
		tl_help_invite_text_gen.go#L144: 		return fmt.Errorf("can't decode help.inviteText#18cb9f78 to nil")
		tl_help_invite_text_gen.go#L149: 			return fmt.Errorf("unable to decode help.inviteText#18cb9f78: field message: %w", err)
		tl_help_passport_config_gen.go#L103: 		return fmt.Errorf("can't encode help.passportConfigNotModified#bfb9f457 as nil")
		tl_help_passport_config_gen.go#L112: 		return fmt.Errorf("can't encode help.passportConfigNotModified#bfb9f457 as nil")
		tl_help_passport_config_gen.go#L120: 		return fmt.Errorf("can't decode help.passportConfigNotModified#bfb9f457 to nil")
		tl_help_passport_config_gen.go#L123: 		return fmt.Errorf("unable to decode help.passportConfigNotModified#bfb9f457: %w", err)
		tl_help_passport_config_gen.go#L131: 		return fmt.Errorf("can't decode help.passportConfigNotModified#bfb9f457 to nil")
		tl_help_passport_config_gen.go#L239: 		return fmt.Errorf("can't encode help.passportConfig#a098d6af as nil")
		tl_help_passport_config_gen.go#L248: 		return fmt.Errorf("can't encode help.passportConfig#a098d6af as nil")
		tl_help_passport_config_gen.go#L252: 		return fmt.Errorf("unable to encode help.passportConfig#a098d6af: field countries_langs: %w", err)
		tl_help_passport_config_gen.go#L260: 		return fmt.Errorf("can't decode help.passportConfig#a098d6af to nil")
		tl_help_passport_config_gen.go#L263: 		return fmt.Errorf("unable to decode help.passportConfig#a098d6af: %w", err)
		tl_help_passport_config_gen.go#L271: 		return fmt.Errorf("can't decode help.passportConfig#a098d6af to nil")
		tl_help_passport_config_gen.go#L276: 			return fmt.Errorf("unable to decode help.passportConfig#a098d6af: field hash: %w", err)
		tl_help_passport_config_gen.go#L282: 			return fmt.Errorf("unable to decode help.passportConfig#a098d6af: field countries_langs: %w", err)
		tl_help_passport_config_gen.go#L365: 			return nil, fmt.Errorf("unable to decode HelpPassportConfigClass: %w", err)
		tl_help_passport_config_gen.go#L372: 			return nil, fmt.Errorf("unable to decode HelpPassportConfigClass: %w", err)
		tl_help_passport_config_gen.go#L376: 		return nil, fmt.Errorf("unable to decode HelpPassportConfigClass: %w", bin.NewUnexpectedID(id))
		tl_help_passport_config_gen.go#L388: 		return fmt.Errorf("unable to decode HelpPassportConfigBox to nil")
		tl_help_passport_config_gen.go#L392: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_help_passport_config_gen.go#L401: 		return fmt.Errorf("unable to encode HelpPassportConfigClass as nil")
		tl_help_peer_color_option_gen.go#L209: 		return fmt.Errorf("can't encode help.peerColorOption#ef8430ab as nil")
		tl_help_peer_color_option_gen.go#L218: 		return fmt.Errorf("can't encode help.peerColorOption#ef8430ab as nil")
		tl_help_peer_color_option_gen.go#L222: 		return fmt.Errorf("unable to encode help.peerColorOption#ef8430ab: field flags: %w", err)
		tl_help_peer_color_option_gen.go#L227: 			return fmt.Errorf("unable to encode help.peerColorOption#ef8430ab: field colors is nil")
		tl_help_peer_color_option_gen.go#L230: 			return fmt.Errorf("unable to encode help.peerColorOption#ef8430ab: field colors: %w", err)
		tl_help_peer_color_option_gen.go#L235: 			return fmt.Errorf("unable to encode help.peerColorOption#ef8430ab: field dark_colors is nil")
		tl_help_peer_color_option_gen.go#L238: 			return fmt.Errorf("unable to encode help.peerColorOption#ef8430ab: field dark_colors: %w", err)
		tl_help_peer_color_option_gen.go#L250: 		return fmt.Errorf("can't decode help.peerColorOption#ef8430ab to nil")
		tl_help_peer_color_option_gen.go#L253: 		return fmt.Errorf("unable to decode help.peerColorOption#ef8430ab: %w", err)
		tl_help_peer_color_option_gen.go#L261: 		return fmt.Errorf("can't decode help.peerColorOption#ef8430ab to nil")
		tl_help_peer_color_option_gen.go#L265: 			return fmt.Errorf("unable to decode help.peerColorOption#ef8430ab: field flags: %w", err)
		tl_help_peer_color_option_gen.go#L272: 			return fmt.Errorf("unable to decode help.peerColorOption#ef8430ab: field color_id: %w", err)
		tl_help_peer_color_option_gen.go#L279: 			return fmt.Errorf("unable to decode help.peerColorOption#ef8430ab: field colors: %w", err)
		tl_help_peer_color_option_gen.go#L286: 			return fmt.Errorf("unable to decode help.peerColorOption#ef8430ab: field dark_colors: %w", err)
		tl_help_peer_color_option_gen.go#L293: 			return fmt.Errorf("unable to decode help.peerColorOption#ef8430ab: field channel_min_level: %w", err)
		tl_help_peer_color_set_gen.go#L123: 		return fmt.Errorf("can't encode help.peerColorSet#26219a58 as nil")
		tl_help_peer_color_set_gen.go#L132: 		return fmt.Errorf("can't encode help.peerColorSet#26219a58 as nil")
		tl_help_peer_color_set_gen.go#L144: 		return fmt.Errorf("can't decode help.peerColorSet#26219a58 to nil")
		tl_help_peer_color_set_gen.go#L147: 		return fmt.Errorf("unable to decode help.peerColorSet#26219a58: %w", err)
		tl_help_peer_color_set_gen.go#L155: 		return fmt.Errorf("can't decode help.peerColorSet#26219a58 to nil")
		tl_help_peer_color_set_gen.go#L160: 			return fmt.Errorf("unable to decode help.peerColorSet#26219a58: field colors: %w", err)
		tl_help_peer_color_set_gen.go#L169: 				return fmt.Errorf("unable to decode help.peerColorSet#26219a58: field colors: %w", err)
		tl_help_peer_color_set_gen.go#L299: 		return fmt.Errorf("can't encode help.peerColorProfileSet#767d61eb as nil")
		tl_help_peer_color_set_gen.go#L308: 		return fmt.Errorf("can't encode help.peerColorProfileSet#767d61eb as nil")
		tl_help_peer_color_set_gen.go#L328: 		return fmt.Errorf("can't decode help.peerColorProfileSet#767d61eb to nil")
		tl_help_peer_color_set_gen.go#L331: 		return fmt.Errorf("unable to decode help.peerColorProfileSet#767d61eb: %w", err)
		tl_help_peer_color_set_gen.go#L339: 		return fmt.Errorf("can't decode help.peerColorProfileSet#767d61eb to nil")
		tl_help_peer_color_set_gen.go#L344: 			return fmt.Errorf("unable to decode help.peerColorProfileSet#767d61eb: field palette_colors: %w", err)
		tl_help_peer_color_set_gen.go#L353: 				return fmt.Errorf("unable to decode help.peerColorProfileSet#767d61eb: field palette_colors: %w", err)
		tl_help_peer_color_set_gen.go#L361: 			return fmt.Errorf("unable to decode help.peerColorProfileSet#767d61eb: field bg_colors: %w", err)
		tl_help_peer_color_set_gen.go#L370: 				return fmt.Errorf("unable to decode help.peerColorProfileSet#767d61eb: field bg_colors: %w", err)
		tl_help_peer_color_set_gen.go#L378: 			return fmt.Errorf("unable to decode help.peerColorProfileSet#767d61eb: field story_colors: %w", err)
		tl_help_peer_color_set_gen.go#L387: 				return fmt.Errorf("unable to decode help.peerColorProfileSet#767d61eb: field story_colors: %w", err)
		tl_help_peer_color_set_gen.go#L467: 			return nil, fmt.Errorf("unable to decode HelpPeerColorSetClass: %w", err)
		tl_help_peer_color_set_gen.go#L474: 			return nil, fmt.Errorf("unable to decode HelpPeerColorSetClass: %w", err)
		tl_help_peer_color_set_gen.go#L478: 		return nil, fmt.Errorf("unable to decode HelpPeerColorSetClass: %w", bin.NewUnexpectedID(id))
		tl_help_peer_color_set_gen.go#L490: 		return fmt.Errorf("unable to decode HelpPeerColorSetBox to nil")
		tl_help_peer_color_set_gen.go#L494: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_help_peer_color_set_gen.go#L503: 		return fmt.Errorf("unable to encode HelpPeerColorSetClass as nil")
		tl_help_peer_colors_gen.go#L103: 		return fmt.Errorf("can't encode help.peerColorsNotModified#2ba1f5ce as nil")
		tl_help_peer_colors_gen.go#L112: 		return fmt.Errorf("can't encode help.peerColorsNotModified#2ba1f5ce as nil")
		tl_help_peer_colors_gen.go#L120: 		return fmt.Errorf("can't decode help.peerColorsNotModified#2ba1f5ce to nil")
		tl_help_peer_colors_gen.go#L123: 		return fmt.Errorf("unable to decode help.peerColorsNotModified#2ba1f5ce: %w", err)
		tl_help_peer_colors_gen.go#L131: 		return fmt.Errorf("can't decode help.peerColorsNotModified#2ba1f5ce to nil")
		tl_help_peer_colors_gen.go#L242: 		return fmt.Errorf("can't encode help.peerColors#f8ed08 as nil")
		tl_help_peer_colors_gen.go#L251: 		return fmt.Errorf("can't encode help.peerColors#f8ed08 as nil")
		tl_help_peer_colors_gen.go#L257: 			return fmt.Errorf("unable to encode help.peerColors#f8ed08: field colors element with index %d: %w", idx, err)
		tl_help_peer_colors_gen.go#L266: 		return fmt.Errorf("can't decode help.peerColors#f8ed08 to nil")
		tl_help_peer_colors_gen.go#L269: 		return fmt.Errorf("unable to decode help.peerColors#f8ed08: %w", err)
		tl_help_peer_colors_gen.go#L277: 		return fmt.Errorf("can't decode help.peerColors#f8ed08 to nil")
		tl_help_peer_colors_gen.go#L282: 			return fmt.Errorf("unable to decode help.peerColors#f8ed08: field hash: %w", err)
		tl_help_peer_colors_gen.go#L289: 			return fmt.Errorf("unable to decode help.peerColors#f8ed08: field colors: %w", err)
		tl_help_peer_colors_gen.go#L298: 				return fmt.Errorf("unable to decode help.peerColors#f8ed08: field colors: %w", err)
		tl_help_peer_colors_gen.go#L383: 			return nil, fmt.Errorf("unable to decode HelpPeerColorsClass: %w", err)
		tl_help_peer_colors_gen.go#L390: 			return nil, fmt.Errorf("unable to decode HelpPeerColorsClass: %w", err)
		tl_help_peer_colors_gen.go#L394: 		return nil, fmt.Errorf("unable to decode HelpPeerColorsClass: %w", bin.NewUnexpectedID(id))
		tl_help_peer_colors_gen.go#L406: 		return fmt.Errorf("unable to decode HelpPeerColorsBox to nil")
		tl_help_peer_colors_gen.go#L410: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_help_peer_colors_gen.go#L419: 		return fmt.Errorf("unable to encode HelpPeerColorsClass as nil")
		tl_help_premium_promo_gen.go#L183: 		return fmt.Errorf("can't encode help.premiumPromo#5334759c as nil")
		tl_help_premium_promo_gen.go#L192: 		return fmt.Errorf("can't encode help.premiumPromo#5334759c as nil")
		tl_help_premium_promo_gen.go#L198: 			return fmt.Errorf("unable to encode help.premiumPromo#5334759c: field status_entities element with index %d is nil", idx)
		tl_help_premium_promo_gen.go#L201: 			return fmt.Errorf("unable to encode help.premiumPromo#5334759c: field status_entities element with index %d: %w", idx, err)
		tl_help_premium_promo_gen.go#L211: 			return fmt.Errorf("unable to encode help.premiumPromo#5334759c: field videos element with index %d is nil", idx)
		tl_help_premium_promo_gen.go#L214: 			return fmt.Errorf("unable to encode help.premiumPromo#5334759c: field videos element with index %d: %w", idx, err)
		tl_help_premium_promo_gen.go#L220: 			return fmt.Errorf("unable to encode help.premiumPromo#5334759c: field period_options element with index %d: %w", idx, err)
		tl_help_premium_promo_gen.go#L226: 			return fmt.Errorf("unable to encode help.premiumPromo#5334759c: field users element with index %d is nil", idx)
		tl_help_premium_promo_gen.go#L229: 			return fmt.Errorf("unable to encode help.premiumPromo#5334759c: field users element with index %d: %w", idx, err)
		tl_help_premium_promo_gen.go#L238: 		return fmt.Errorf("can't decode help.premiumPromo#5334759c to nil")
		tl_help_premium_promo_gen.go#L241: 		return fmt.Errorf("unable to decode help.premiumPromo#5334759c: %w", err)
		tl_help_premium_promo_gen.go#L249: 		return fmt.Errorf("can't decode help.premiumPromo#5334759c to nil")
		tl_help_premium_promo_gen.go#L254: 			return fmt.Errorf("unable to decode help.premiumPromo#5334759c: field status_text: %w", err)
		tl_help_premium_promo_gen.go#L261: 			return fmt.Errorf("unable to decode help.premiumPromo#5334759c: field status_entities: %w", err)
		tl_help_premium_promo_gen.go#L270: 				return fmt.Errorf("unable to decode help.premiumPromo#5334759c: field status_entities: %w", err)
		tl_help_premium_promo_gen.go#L278: 			return fmt.Errorf("unable to decode help.premiumPromo#5334759c: field video_sections: %w", err)
		tl_help_premium_promo_gen.go#L287: 				return fmt.Errorf("unable to decode help.premiumPromo#5334759c: field video_sections: %w", err)
		tl_help_premium_promo_gen.go#L295: 			return fmt.Errorf("unable to decode help.premiumPromo#5334759c: field videos: %w", err)
		tl_help_premium_promo_gen.go#L304: 				return fmt.Errorf("unable to decode help.premiumPromo#5334759c: field videos: %w", err)
		tl_help_premium_promo_gen.go#L312: 			return fmt.Errorf("unable to decode help.premiumPromo#5334759c: field period_options: %w", err)
		tl_help_premium_promo_gen.go#L321: 				return fmt.Errorf("unable to decode help.premiumPromo#5334759c: field period_options: %w", err)
		tl_help_premium_promo_gen.go#L329: 			return fmt.Errorf("unable to decode help.premiumPromo#5334759c: field users: %w", err)
		tl_help_premium_promo_gen.go#L338: 				return fmt.Errorf("unable to decode help.premiumPromo#5334759c: field users: %w", err)
		tl_help_promo_data_gen.go#L120: 		return fmt.Errorf("can't encode help.promoDataEmpty#98f6ac75 as nil")
		tl_help_promo_data_gen.go#L129: 		return fmt.Errorf("can't encode help.promoDataEmpty#98f6ac75 as nil")
		tl_help_promo_data_gen.go#L138: 		return fmt.Errorf("can't decode help.promoDataEmpty#98f6ac75 to nil")
		tl_help_promo_data_gen.go#L141: 		return fmt.Errorf("unable to decode help.promoDataEmpty#98f6ac75: %w", err)
		tl_help_promo_data_gen.go#L149: 		return fmt.Errorf("can't decode help.promoDataEmpty#98f6ac75 to nil")
		tl_help_promo_data_gen.go#L154: 			return fmt.Errorf("unable to decode help.promoDataEmpty#98f6ac75: field expires: %w", err)
		tl_help_promo_data_gen.go#L355: 		return fmt.Errorf("can't encode help.promoData#8c39793f as nil")
		tl_help_promo_data_gen.go#L364: 		return fmt.Errorf("can't encode help.promoData#8c39793f as nil")
		tl_help_promo_data_gen.go#L368: 		return fmt.Errorf("unable to encode help.promoData#8c39793f: field flags: %w", err)
		tl_help_promo_data_gen.go#L372: 		return fmt.Errorf("unable to encode help.promoData#8c39793f: field peer is nil")
		tl_help_promo_data_gen.go#L375: 		return fmt.Errorf("unable to encode help.promoData#8c39793f: field peer: %w", err)
		tl_help_promo_data_gen.go#L380: 			return fmt.Errorf("unable to encode help.promoData#8c39793f: field chats element with index %d is nil", idx)
		tl_help_promo_data_gen.go#L383: 			return fmt.Errorf("unable to encode help.promoData#8c39793f: field chats element with index %d: %w", idx, err)
		tl_help_promo_data_gen.go#L389: 			return fmt.Errorf("unable to encode help.promoData#8c39793f: field users element with index %d is nil", idx)
		tl_help_promo_data_gen.go#L392: 			return fmt.Errorf("unable to encode help.promoData#8c39793f: field users element with index %d: %w", idx, err)
		tl_help_promo_data_gen.go#L407: 		return fmt.Errorf("can't decode help.promoData#8c39793f to nil")
		tl_help_promo_data_gen.go#L410: 		return fmt.Errorf("unable to decode help.promoData#8c39793f: %w", err)
		tl_help_promo_data_gen.go#L418: 		return fmt.Errorf("can't decode help.promoData#8c39793f to nil")
		tl_help_promo_data_gen.go#L422: 			return fmt.Errorf("unable to decode help.promoData#8c39793f: field flags: %w", err)
		tl_help_promo_data_gen.go#L429: 			return fmt.Errorf("unable to decode help.promoData#8c39793f: field expires: %w", err)
		tl_help_promo_data_gen.go#L436: 			return fmt.Errorf("unable to decode help.promoData#8c39793f: field peer: %w", err)
		tl_help_promo_data_gen.go#L443: 			return fmt.Errorf("unable to decode help.promoData#8c39793f: field chats: %w", err)
		tl_help_promo_data_gen.go#L452: 				return fmt.Errorf("unable to decode help.promoData#8c39793f: field chats: %w", err)
		tl_help_promo_data_gen.go#L460: 			return fmt.Errorf("unable to decode help.promoData#8c39793f: field users: %w", err)
		tl_help_promo_data_gen.go#L469: 				return fmt.Errorf("unable to decode help.promoData#8c39793f: field users: %w", err)
		tl_help_promo_data_gen.go#L477: 			return fmt.Errorf("unable to decode help.promoData#8c39793f: field psa_type: %w", err)
		tl_help_promo_data_gen.go#L484: 			return fmt.Errorf("unable to decode help.promoData#8c39793f: field psa_message: %w", err)
		tl_help_promo_data_gen.go#L652: 			return nil, fmt.Errorf("unable to decode HelpPromoDataClass: %w", err)
		tl_help_promo_data_gen.go#L659: 			return nil, fmt.Errorf("unable to decode HelpPromoDataClass: %w", err)
		tl_help_promo_data_gen.go#L663: 		return nil, fmt.Errorf("unable to decode HelpPromoDataClass: %w", bin.NewUnexpectedID(id))
		tl_help_promo_data_gen.go#L675: 		return fmt.Errorf("unable to decode HelpPromoDataBox to nil")
		tl_help_promo_data_gen.go#L679: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_help_promo_data_gen.go#L688: 		return fmt.Errorf("unable to encode HelpPromoDataClass as nil")
		tl_help_recent_me_urls_gen.go#L137: 		return fmt.Errorf("can't encode help.recentMeUrls#e0310d7 as nil")
		tl_help_recent_me_urls_gen.go#L146: 		return fmt.Errorf("can't encode help.recentMeUrls#e0310d7 as nil")
		tl_help_recent_me_urls_gen.go#L151: 			return fmt.Errorf("unable to encode help.recentMeUrls#e0310d7: field urls element with index %d is nil", idx)
		tl_help_recent_me_urls_gen.go#L154: 			return fmt.Errorf("unable to encode help.recentMeUrls#e0310d7: field urls element with index %d: %w", idx, err)
		tl_help_recent_me_urls_gen.go#L160: 			return fmt.Errorf("unable to encode help.recentMeUrls#e0310d7: field chats element with index %d is nil", idx)
		tl_help_recent_me_urls_gen.go#L163: 			return fmt.Errorf("unable to encode help.recentMeUrls#e0310d7: field chats element with index %d: %w", idx, err)
		tl_help_recent_me_urls_gen.go#L169: 			return fmt.Errorf("unable to encode help.recentMeUrls#e0310d7: field users element with index %d is nil", idx)
		tl_help_recent_me_urls_gen.go#L172: 			return fmt.Errorf("unable to encode help.recentMeUrls#e0310d7: field users element with index %d: %w", idx, err)
		tl_help_recent_me_urls_gen.go#L181: 		return fmt.Errorf("can't decode help.recentMeUrls#e0310d7 to nil")
		tl_help_recent_me_urls_gen.go#L184: 		return fmt.Errorf("unable to decode help.recentMeUrls#e0310d7: %w", err)
		tl_help_recent_me_urls_gen.go#L192: 		return fmt.Errorf("can't decode help.recentMeUrls#e0310d7 to nil")
		tl_help_recent_me_urls_gen.go#L197: 			return fmt.Errorf("unable to decode help.recentMeUrls#e0310d7: field urls: %w", err)
		tl_help_recent_me_urls_gen.go#L206: 				return fmt.Errorf("unable to decode help.recentMeUrls#e0310d7: field urls: %w", err)
		tl_help_recent_me_urls_gen.go#L214: 			return fmt.Errorf("unable to decode help.recentMeUrls#e0310d7: field chats: %w", err)
		tl_help_recent_me_urls_gen.go#L223: 				return fmt.Errorf("unable to decode help.recentMeUrls#e0310d7: field chats: %w", err)
		tl_help_recent_me_urls_gen.go#L231: 			return fmt.Errorf("unable to decode help.recentMeUrls#e0310d7: field users: %w", err)
		tl_help_recent_me_urls_gen.go#L240: 				return fmt.Errorf("unable to decode help.recentMeUrls#e0310d7: field users: %w", err)
		tl_help_save_app_log_gen.go#L115: 		return fmt.Errorf("can't encode help.saveAppLog#6f02f748 as nil")
		tl_help_save_app_log_gen.go#L124: 		return fmt.Errorf("can't encode help.saveAppLog#6f02f748 as nil")
		tl_help_save_app_log_gen.go#L129: 			return fmt.Errorf("unable to encode help.saveAppLog#6f02f748: field events element with index %d: %w", idx, err)
		tl_help_save_app_log_gen.go#L138: 		return fmt.Errorf("can't decode help.saveAppLog#6f02f748 to nil")
		tl_help_save_app_log_gen.go#L141: 		return fmt.Errorf("unable to decode help.saveAppLog#6f02f748: %w", err)
		tl_help_save_app_log_gen.go#L149: 		return fmt.Errorf("can't decode help.saveAppLog#6f02f748 to nil")
		tl_help_save_app_log_gen.go#L154: 			return fmt.Errorf("unable to decode help.saveAppLog#6f02f748: field events: %w", err)
		tl_help_save_app_log_gen.go#L163: 				return fmt.Errorf("unable to decode help.saveAppLog#6f02f748: field events: %w", err)
		tl_help_set_bot_updates_status_gen.go#L127: 		return fmt.Errorf("can't encode help.setBotUpdatesStatus#ec22cfcd as nil")
		tl_help_set_bot_updates_status_gen.go#L136: 		return fmt.Errorf("can't encode help.setBotUpdatesStatus#ec22cfcd as nil")
		tl_help_set_bot_updates_status_gen.go#L146: 		return fmt.Errorf("can't decode help.setBotUpdatesStatus#ec22cfcd to nil")
		tl_help_set_bot_updates_status_gen.go#L149: 		return fmt.Errorf("unable to decode help.setBotUpdatesStatus#ec22cfcd: %w", err)
		tl_help_set_bot_updates_status_gen.go#L157: 		return fmt.Errorf("can't decode help.setBotUpdatesStatus#ec22cfcd to nil")
		tl_help_set_bot_updates_status_gen.go#L162: 			return fmt.Errorf("unable to decode help.setBotUpdatesStatus#ec22cfcd: field pending_updates_count: %w", err)
		tl_help_set_bot_updates_status_gen.go#L169: 			return fmt.Errorf("unable to decode help.setBotUpdatesStatus#ec22cfcd: field message: %w", err)
		tl_help_support_gen.go#L126: 		return fmt.Errorf("can't encode help.support#17c6b5f6 as nil")
		tl_help_support_gen.go#L135: 		return fmt.Errorf("can't encode help.support#17c6b5f6 as nil")
		tl_help_support_gen.go#L139: 		return fmt.Errorf("unable to encode help.support#17c6b5f6: field user is nil")
		tl_help_support_gen.go#L142: 		return fmt.Errorf("unable to encode help.support#17c6b5f6: field user: %w", err)
		tl_help_support_gen.go#L150: 		return fmt.Errorf("can't decode help.support#17c6b5f6 to nil")
		tl_help_support_gen.go#L153: 		return fmt.Errorf("unable to decode help.support#17c6b5f6: %w", err)
		tl_help_support_gen.go#L161: 		return fmt.Errorf("can't decode help.support#17c6b5f6 to nil")
		tl_help_support_gen.go#L166: 			return fmt.Errorf("unable to decode help.support#17c6b5f6: field phone_number: %w", err)
		tl_help_support_gen.go#L173: 			return fmt.Errorf("unable to decode help.support#17c6b5f6: field user: %w", err)
		tl_help_support_name_gen.go#L115: 		return fmt.Errorf("can't encode help.supportName#8c05f1c9 as nil")
		tl_help_support_name_gen.go#L124: 		return fmt.Errorf("can't encode help.supportName#8c05f1c9 as nil")
		tl_help_support_name_gen.go#L133: 		return fmt.Errorf("can't decode help.supportName#8c05f1c9 to nil")
		tl_help_support_name_gen.go#L136: 		return fmt.Errorf("unable to decode help.supportName#8c05f1c9: %w", err)
		tl_help_support_name_gen.go#L144: 		return fmt.Errorf("can't decode help.supportName#8c05f1c9 to nil")
		tl_help_support_name_gen.go#L149: 			return fmt.Errorf("unable to decode help.supportName#8c05f1c9: field name: %w", err)
		tl_help_terms_of_service_gen.go#L188: 		return fmt.Errorf("can't encode help.termsOfService#780a0310 as nil")
		tl_help_terms_of_service_gen.go#L197: 		return fmt.Errorf("can't encode help.termsOfService#780a0310 as nil")
		tl_help_terms_of_service_gen.go#L201: 		return fmt.Errorf("unable to encode help.termsOfService#780a0310: field flags: %w", err)
		tl_help_terms_of_service_gen.go#L204: 		return fmt.Errorf("unable to encode help.termsOfService#780a0310: field id: %w", err)
		tl_help_terms_of_service_gen.go#L210: 			return fmt.Errorf("unable to encode help.termsOfService#780a0310: field entities element with index %d is nil", idx)
		tl_help_terms_of_service_gen.go#L213: 			return fmt.Errorf("unable to encode help.termsOfService#780a0310: field entities element with index %d: %w", idx, err)
		tl_help_terms_of_service_gen.go#L225: 		return fmt.Errorf("can't decode help.termsOfService#780a0310 to nil")
		tl_help_terms_of_service_gen.go#L228: 		return fmt.Errorf("unable to decode help.termsOfService#780a0310: %w", err)
		tl_help_terms_of_service_gen.go#L236: 		return fmt.Errorf("can't decode help.termsOfService#780a0310 to nil")
		tl_help_terms_of_service_gen.go#L240: 			return fmt.Errorf("unable to decode help.termsOfService#780a0310: field flags: %w", err)
		tl_help_terms_of_service_gen.go#L246: 			return fmt.Errorf("unable to decode help.termsOfService#780a0310: field id: %w", err)
		tl_help_terms_of_service_gen.go#L252: 			return fmt.Errorf("unable to decode help.termsOfService#780a0310: field text: %w", err)
		tl_help_terms_of_service_gen.go#L259: 			return fmt.Errorf("unable to decode help.termsOfService#780a0310: field entities: %w", err)
		tl_help_terms_of_service_gen.go#L268: 				return fmt.Errorf("unable to decode help.termsOfService#780a0310: field entities: %w", err)
		tl_help_terms_of_service_gen.go#L276: 			return fmt.Errorf("unable to decode help.termsOfService#780a0310: field min_age_confirm: %w", err)
		tl_help_terms_of_service_update_gen.go#L124: 		return fmt.Errorf("can't encode help.termsOfServiceUpdateEmpty#e3309f7f as nil")
		tl_help_terms_of_service_update_gen.go#L133: 		return fmt.Errorf("can't encode help.termsOfServiceUpdateEmpty#e3309f7f as nil")
		tl_help_terms_of_service_update_gen.go#L142: 		return fmt.Errorf("can't decode help.termsOfServiceUpdateEmpty#e3309f7f to nil")
		tl_help_terms_of_service_update_gen.go#L145: 		return fmt.Errorf("unable to decode help.termsOfServiceUpdateEmpty#e3309f7f: %w", err)
		tl_help_terms_of_service_update_gen.go#L153: 		return fmt.Errorf("can't decode help.termsOfServiceUpdateEmpty#e3309f7f to nil")
		tl_help_terms_of_service_update_gen.go#L158: 			return fmt.Errorf("unable to decode help.termsOfServiceUpdateEmpty#e3309f7f: field expires: %w", err)
		tl_help_terms_of_service_update_gen.go#L279: 		return fmt.Errorf("can't encode help.termsOfServiceUpdate#28ecf961 as nil")
		tl_help_terms_of_service_update_gen.go#L288: 		return fmt.Errorf("can't encode help.termsOfServiceUpdate#28ecf961 as nil")
		tl_help_terms_of_service_update_gen.go#L292: 		return fmt.Errorf("unable to encode help.termsOfServiceUpdate#28ecf961: field terms_of_service: %w", err)
		tl_help_terms_of_service_update_gen.go#L300: 		return fmt.Errorf("can't decode help.termsOfServiceUpdate#28ecf961 to nil")
		tl_help_terms_of_service_update_gen.go#L303: 		return fmt.Errorf("unable to decode help.termsOfServiceUpdate#28ecf961: %w", err)
		tl_help_terms_of_service_update_gen.go#L311: 		return fmt.Errorf("can't decode help.termsOfServiceUpdate#28ecf961 to nil")
		tl_help_terms_of_service_update_gen.go#L316: 			return fmt.Errorf("unable to decode help.termsOfServiceUpdate#28ecf961: field expires: %w", err)
		tl_help_terms_of_service_update_gen.go#L322: 			return fmt.Errorf("unable to decode help.termsOfServiceUpdate#28ecf961: field terms_of_service: %w", err)
		tl_help_terms_of_service_update_gen.go#L412: 			return nil, fmt.Errorf("unable to decode HelpTermsOfServiceUpdateClass: %w", err)
		tl_help_terms_of_service_update_gen.go#L419: 			return nil, fmt.Errorf("unable to decode HelpTermsOfServiceUpdateClass: %w", err)
		tl_help_terms_of_service_update_gen.go#L423: 		return nil, fmt.Errorf("unable to decode HelpTermsOfServiceUpdateClass: %w", bin.NewUnexpectedID(id))
		tl_help_terms_of_service_update_gen.go#L435: 		return fmt.Errorf("unable to decode HelpTermsOfServiceUpdateBox to nil")
		tl_help_terms_of_service_update_gen.go#L439: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_help_terms_of_service_update_gen.go#L448: 		return fmt.Errorf("unable to encode HelpTermsOfServiceUpdateClass as nil")
		tl_help_user_info_gen.go#L103: 		return fmt.Errorf("can't encode help.userInfoEmpty#f3ae2eed as nil")
		tl_help_user_info_gen.go#L112: 		return fmt.Errorf("can't encode help.userInfoEmpty#f3ae2eed as nil")
		tl_help_user_info_gen.go#L120: 		return fmt.Errorf("can't decode help.userInfoEmpty#f3ae2eed to nil")
		tl_help_user_info_gen.go#L123: 		return fmt.Errorf("unable to decode help.userInfoEmpty#f3ae2eed: %w", err)
		tl_help_user_info_gen.go#L131: 		return fmt.Errorf("can't decode help.userInfoEmpty#f3ae2eed to nil")
		tl_help_user_info_gen.go#L258: 		return fmt.Errorf("can't encode help.userInfo#1eb3758 as nil")
		tl_help_user_info_gen.go#L267: 		return fmt.Errorf("can't encode help.userInfo#1eb3758 as nil")
		tl_help_user_info_gen.go#L273: 			return fmt.Errorf("unable to encode help.userInfo#1eb3758: field entities element with index %d is nil", idx)
		tl_help_user_info_gen.go#L276: 			return fmt.Errorf("unable to encode help.userInfo#1eb3758: field entities element with index %d: %w", idx, err)
		tl_help_user_info_gen.go#L287: 		return fmt.Errorf("can't decode help.userInfo#1eb3758 to nil")
		tl_help_user_info_gen.go#L290: 		return fmt.Errorf("unable to decode help.userInfo#1eb3758: %w", err)
		tl_help_user_info_gen.go#L298: 		return fmt.Errorf("can't decode help.userInfo#1eb3758 to nil")
		tl_help_user_info_gen.go#L303: 			return fmt.Errorf("unable to decode help.userInfo#1eb3758: field message: %w", err)
		tl_help_user_info_gen.go#L310: 			return fmt.Errorf("unable to decode help.userInfo#1eb3758: field entities: %w", err)
		tl_help_user_info_gen.go#L319: 				return fmt.Errorf("unable to decode help.userInfo#1eb3758: field entities: %w", err)
		tl_help_user_info_gen.go#L327: 			return fmt.Errorf("unable to decode help.userInfo#1eb3758: field author: %w", err)
		tl_help_user_info_gen.go#L334: 			return fmt.Errorf("unable to decode help.userInfo#1eb3758: field date: %w", err)
		tl_help_user_info_gen.go#L439: 			return nil, fmt.Errorf("unable to decode HelpUserInfoClass: %w", err)
		tl_help_user_info_gen.go#L446: 			return nil, fmt.Errorf("unable to decode HelpUserInfoClass: %w", err)
		tl_help_user_info_gen.go#L450: 		return nil, fmt.Errorf("unable to decode HelpUserInfoClass: %w", bin.NewUnexpectedID(id))
		tl_help_user_info_gen.go#L462: 		return fmt.Errorf("unable to decode HelpUserInfoBox to nil")
		tl_help_user_info_gen.go#L466: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_help_user_info_gen.go#L475: 		return fmt.Errorf("unable to encode HelpUserInfoClass as nil")
		tl_high_score_gen.go#L137: 		return fmt.Errorf("can't encode highScore#73a379eb as nil")
		tl_high_score_gen.go#L146: 		return fmt.Errorf("can't encode highScore#73a379eb as nil")
		tl_high_score_gen.go#L157: 		return fmt.Errorf("can't decode highScore#73a379eb to nil")
		tl_high_score_gen.go#L160: 		return fmt.Errorf("unable to decode highScore#73a379eb: %w", err)
		tl_high_score_gen.go#L168: 		return fmt.Errorf("can't decode highScore#73a379eb to nil")
		tl_high_score_gen.go#L173: 			return fmt.Errorf("unable to decode highScore#73a379eb: field pos: %w", err)
		tl_high_score_gen.go#L180: 			return fmt.Errorf("unable to decode highScore#73a379eb: field user_id: %w", err)
		tl_high_score_gen.go#L187: 			return fmt.Errorf("unable to decode highScore#73a379eb: field score: %w", err)
		tl_imported_contact_gen.go#L129: 		return fmt.Errorf("can't encode importedContact#c13e3c50 as nil")
		tl_imported_contact_gen.go#L138: 		return fmt.Errorf("can't encode importedContact#c13e3c50 as nil")
		tl_imported_contact_gen.go#L148: 		return fmt.Errorf("can't decode importedContact#c13e3c50 to nil")
		tl_imported_contact_gen.go#L151: 		return fmt.Errorf("unable to decode importedContact#c13e3c50: %w", err)
		tl_imported_contact_gen.go#L159: 		return fmt.Errorf("can't decode importedContact#c13e3c50 to nil")
		tl_imported_contact_gen.go#L164: 			return fmt.Errorf("unable to decode importedContact#c13e3c50: field user_id: %w", err)
		tl_imported_contact_gen.go#L171: 			return fmt.Errorf("unable to decode importedContact#c13e3c50: field client_id: %w", err)
		tl_init_connection_gen.go#L248: 		return fmt.Errorf("can't encode initConnection#c1cd5ea9 as nil")
		tl_init_connection_gen.go#L257: 		return fmt.Errorf("can't encode initConnection#c1cd5ea9 as nil")
		tl_init_connection_gen.go#L261: 		return fmt.Errorf("unable to encode initConnection#c1cd5ea9: field flags: %w", err)
		tl_init_connection_gen.go#L272: 			return fmt.Errorf("unable to encode initConnection#c1cd5ea9: field proxy: %w", err)
		tl_init_connection_gen.go#L277: 			return fmt.Errorf("unable to encode initConnection#c1cd5ea9: field params is nil")
		tl_init_connection_gen.go#L280: 			return fmt.Errorf("unable to encode initConnection#c1cd5ea9: field params: %w", err)
		tl_init_connection_gen.go#L284: 		return fmt.Errorf("unable to encode initConnection#c1cd5ea9: field query: %w", err)
		tl_init_connection_gen.go#L292: 		return fmt.Errorf("can't decode initConnection#c1cd5ea9 to nil")
		tl_init_connection_gen.go#L295: 		return fmt.Errorf("unable to decode initConnection#c1cd5ea9: %w", err)
		tl_init_connection_gen.go#L303: 		return fmt.Errorf("can't decode initConnection#c1cd5ea9 to nil")
		tl_init_connection_gen.go#L307: 			return fmt.Errorf("unable to decode initConnection#c1cd5ea9: field flags: %w", err)
		tl_init_connection_gen.go#L313: 			return fmt.Errorf("unable to decode initConnection#c1cd5ea9: field api_id: %w", err)
		tl_init_connection_gen.go#L320: 			return fmt.Errorf("unable to decode initConnection#c1cd5ea9: field device_model: %w", err)
		tl_init_connection_gen.go#L327: 			return fmt.Errorf("unable to decode initConnection#c1cd5ea9: field system_version: %w", err)
		tl_init_connection_gen.go#L334: 			return fmt.Errorf("unable to decode initConnection#c1cd5ea9: field app_version: %w", err)
		tl_init_connection_gen.go#L341: 			return fmt.Errorf("unable to decode initConnection#c1cd5ea9: field system_lang_code: %w", err)
		tl_init_connection_gen.go#L348: 			return fmt.Errorf("unable to decode initConnection#c1cd5ea9: field lang_pack: %w", err)
		tl_init_connection_gen.go#L355: 			return fmt.Errorf("unable to decode initConnection#c1cd5ea9: field lang_code: %w", err)
		tl_init_connection_gen.go#L361: 			return fmt.Errorf("unable to decode initConnection#c1cd5ea9: field proxy: %w", err)
		tl_init_connection_gen.go#L367: 			return fmt.Errorf("unable to decode initConnection#c1cd5ea9: field params: %w", err)
		tl_init_connection_gen.go#L373: 			return fmt.Errorf("unable to decode initConnection#c1cd5ea9: field query: %w", err)
		tl_inline_bot_switch_p_m_gen.go#L127: 		return fmt.Errorf("can't encode inlineBotSwitchPM#3c20629f as nil")
		tl_inline_bot_switch_p_m_gen.go#L136: 		return fmt.Errorf("can't encode inlineBotSwitchPM#3c20629f as nil")
		tl_inline_bot_switch_p_m_gen.go#L146: 		return fmt.Errorf("can't decode inlineBotSwitchPM#3c20629f to nil")
		tl_inline_bot_switch_p_m_gen.go#L149: 		return fmt.Errorf("unable to decode inlineBotSwitchPM#3c20629f: %w", err)
		tl_inline_bot_switch_p_m_gen.go#L157: 		return fmt.Errorf("can't decode inlineBotSwitchPM#3c20629f to nil")
		tl_inline_bot_switch_p_m_gen.go#L162: 			return fmt.Errorf("unable to decode inlineBotSwitchPM#3c20629f: field text: %w", err)
		tl_inline_bot_switch_p_m_gen.go#L169: 			return fmt.Errorf("unable to decode inlineBotSwitchPM#3c20629f: field start_param: %w", err)
		tl_inline_bot_web_view_gen.go#L130: 		return fmt.Errorf("can't encode inlineBotWebView#b57295d5 as nil")
		tl_inline_bot_web_view_gen.go#L139: 		return fmt.Errorf("can't encode inlineBotWebView#b57295d5 as nil")
		tl_inline_bot_web_view_gen.go#L149: 		return fmt.Errorf("can't decode inlineBotWebView#b57295d5 to nil")
		tl_inline_bot_web_view_gen.go#L152: 		return fmt.Errorf("unable to decode inlineBotWebView#b57295d5: %w", err)
		tl_inline_bot_web_view_gen.go#L160: 		return fmt.Errorf("can't decode inlineBotWebView#b57295d5 to nil")
		tl_inline_bot_web_view_gen.go#L165: 			return fmt.Errorf("unable to decode inlineBotWebView#b57295d5: field text: %w", err)
		tl_inline_bot_web_view_gen.go#L172: 			return fmt.Errorf("unable to decode inlineBotWebView#b57295d5: field url: %w", err)
		tl_inline_query_peer_type_gen.go#L103: 		return fmt.Errorf("can't encode inlineQueryPeerTypeSameBotPM#3081ed9d as nil")
		tl_inline_query_peer_type_gen.go#L112: 		return fmt.Errorf("can't encode inlineQueryPeerTypeSameBotPM#3081ed9d as nil")
		tl_inline_query_peer_type_gen.go#L120: 		return fmt.Errorf("can't decode inlineQueryPeerTypeSameBotPM#3081ed9d to nil")
		tl_inline_query_peer_type_gen.go#L123: 		return fmt.Errorf("unable to decode inlineQueryPeerTypeSameBotPM#3081ed9d: %w", err)
		tl_inline_query_peer_type_gen.go#L131: 		return fmt.Errorf("can't decode inlineQueryPeerTypeSameBotPM#3081ed9d to nil")
		tl_inline_query_peer_type_gen.go#L205: 		return fmt.Errorf("can't encode inlineQueryPeerTypePM#833c0fac as nil")
		tl_inline_query_peer_type_gen.go#L214: 		return fmt.Errorf("can't encode inlineQueryPeerTypePM#833c0fac as nil")
		tl_inline_query_peer_type_gen.go#L222: 		return fmt.Errorf("can't decode inlineQueryPeerTypePM#833c0fac to nil")
		tl_inline_query_peer_type_gen.go#L225: 		return fmt.Errorf("unable to decode inlineQueryPeerTypePM#833c0fac: %w", err)
		tl_inline_query_peer_type_gen.go#L233: 		return fmt.Errorf("can't decode inlineQueryPeerTypePM#833c0fac to nil")
		tl_inline_query_peer_type_gen.go#L310: 		return fmt.Errorf("can't encode inlineQueryPeerTypeChat#d766c50a as nil")
		tl_inline_query_peer_type_gen.go#L319: 		return fmt.Errorf("can't encode inlineQueryPeerTypeChat#d766c50a as nil")
		tl_inline_query_peer_type_gen.go#L327: 		return fmt.Errorf("can't decode inlineQueryPeerTypeChat#d766c50a to nil")
		tl_inline_query_peer_type_gen.go#L330: 		return fmt.Errorf("unable to decode inlineQueryPeerTypeChat#d766c50a: %w", err)
		tl_inline_query_peer_type_gen.go#L338: 		return fmt.Errorf("can't decode inlineQueryPeerTypeChat#d766c50a to nil")
		tl_inline_query_peer_type_gen.go#L415: 		return fmt.Errorf("can't encode inlineQueryPeerTypeMegagroup#5ec4be43 as nil")
		tl_inline_query_peer_type_gen.go#L424: 		return fmt.Errorf("can't encode inlineQueryPeerTypeMegagroup#5ec4be43 as nil")
		tl_inline_query_peer_type_gen.go#L432: 		return fmt.Errorf("can't decode inlineQueryPeerTypeMegagroup#5ec4be43 to nil")
		tl_inline_query_peer_type_gen.go#L435: 		return fmt.Errorf("unable to decode inlineQueryPeerTypeMegagroup#5ec4be43: %w", err)
		tl_inline_query_peer_type_gen.go#L443: 		return fmt.Errorf("can't decode inlineQueryPeerTypeMegagroup#5ec4be43 to nil")
		tl_inline_query_peer_type_gen.go#L520: 		return fmt.Errorf("can't encode inlineQueryPeerTypeBroadcast#6334ee9a as nil")
		tl_inline_query_peer_type_gen.go#L529: 		return fmt.Errorf("can't encode inlineQueryPeerTypeBroadcast#6334ee9a as nil")
		tl_inline_query_peer_type_gen.go#L537: 		return fmt.Errorf("can't decode inlineQueryPeerTypeBroadcast#6334ee9a to nil")
		tl_inline_query_peer_type_gen.go#L540: 		return fmt.Errorf("unable to decode inlineQueryPeerTypeBroadcast#6334ee9a: %w", err)
		tl_inline_query_peer_type_gen.go#L548: 		return fmt.Errorf("can't decode inlineQueryPeerTypeBroadcast#6334ee9a to nil")
		tl_inline_query_peer_type_gen.go#L622: 		return fmt.Errorf("can't encode inlineQueryPeerTypeBotPM#e3b2d0c as nil")
		tl_inline_query_peer_type_gen.go#L631: 		return fmt.Errorf("can't encode inlineQueryPeerTypeBotPM#e3b2d0c as nil")
		tl_inline_query_peer_type_gen.go#L639: 		return fmt.Errorf("can't decode inlineQueryPeerTypeBotPM#e3b2d0c to nil")
		tl_inline_query_peer_type_gen.go#L642: 		return fmt.Errorf("unable to decode inlineQueryPeerTypeBotPM#e3b2d0c: %w", err)
		tl_inline_query_peer_type_gen.go#L650: 		return fmt.Errorf("can't decode inlineQueryPeerTypeBotPM#e3b2d0c to nil")
		tl_inline_query_peer_type_gen.go#L707: 			return nil, fmt.Errorf("unable to decode InlineQueryPeerTypeClass: %w", err)
		tl_inline_query_peer_type_gen.go#L714: 			return nil, fmt.Errorf("unable to decode InlineQueryPeerTypeClass: %w", err)
		tl_inline_query_peer_type_gen.go#L721: 			return nil, fmt.Errorf("unable to decode InlineQueryPeerTypeClass: %w", err)
		tl_inline_query_peer_type_gen.go#L728: 			return nil, fmt.Errorf("unable to decode InlineQueryPeerTypeClass: %w", err)
		tl_inline_query_peer_type_gen.go#L735: 			return nil, fmt.Errorf("unable to decode InlineQueryPeerTypeClass: %w", err)
		tl_inline_query_peer_type_gen.go#L742: 			return nil, fmt.Errorf("unable to decode InlineQueryPeerTypeClass: %w", err)
		tl_inline_query_peer_type_gen.go#L746: 		return nil, fmt.Errorf("unable to decode InlineQueryPeerTypeClass: %w", bin.NewUnexpectedID(id))
		tl_inline_query_peer_type_gen.go#L758: 		return fmt.Errorf("unable to decode InlineQueryPeerTypeBox to nil")
		tl_inline_query_peer_type_gen.go#L762: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_inline_query_peer_type_gen.go#L771: 		return fmt.Errorf("unable to encode InlineQueryPeerTypeClass as nil")
		tl_input_app_event_gen.go#L149: 		return fmt.Errorf("can't encode inputAppEvent#1d1b1245 as nil")
		tl_input_app_event_gen.go#L158: 		return fmt.Errorf("can't encode inputAppEvent#1d1b1245 as nil")
		tl_input_app_event_gen.go#L164: 		return fmt.Errorf("unable to encode inputAppEvent#1d1b1245: field data is nil")
		tl_input_app_event_gen.go#L167: 		return fmt.Errorf("unable to encode inputAppEvent#1d1b1245: field data: %w", err)
		tl_input_app_event_gen.go#L175: 		return fmt.Errorf("can't decode inputAppEvent#1d1b1245 to nil")
		tl_input_app_event_gen.go#L178: 		return fmt.Errorf("unable to decode inputAppEvent#1d1b1245: %w", err)
		tl_input_app_event_gen.go#L186: 		return fmt.Errorf("can't decode inputAppEvent#1d1b1245 to nil")
		tl_input_app_event_gen.go#L191: 			return fmt.Errorf("unable to decode inputAppEvent#1d1b1245: field time: %w", err)
		tl_input_app_event_gen.go#L198: 			return fmt.Errorf("unable to decode inputAppEvent#1d1b1245: field type: %w", err)
		tl_input_app_event_gen.go#L205: 			return fmt.Errorf("unable to decode inputAppEvent#1d1b1245: field peer: %w", err)
		tl_input_app_event_gen.go#L212: 			return fmt.Errorf("unable to decode inputAppEvent#1d1b1245: field data: %w", err)
		tl_input_bot_app_gen.go#L140: 		return fmt.Errorf("can't encode inputBotAppID#a920bd7a as nil")
		tl_input_bot_app_gen.go#L149: 		return fmt.Errorf("can't encode inputBotAppID#a920bd7a as nil")
		tl_input_bot_app_gen.go#L159: 		return fmt.Errorf("can't decode inputBotAppID#a920bd7a to nil")
		tl_input_bot_app_gen.go#L162: 		return fmt.Errorf("unable to decode inputBotAppID#a920bd7a: %w", err)
		tl_input_bot_app_gen.go#L170: 		return fmt.Errorf("can't decode inputBotAppID#a920bd7a to nil")
		tl_input_bot_app_gen.go#L175: 			return fmt.Errorf("unable to decode inputBotAppID#a920bd7a: field id: %w", err)
		tl_input_bot_app_gen.go#L182: 			return fmt.Errorf("unable to decode inputBotAppID#a920bd7a: field access_hash: %w", err)
		tl_input_bot_app_gen.go#L308: 		return fmt.Errorf("can't encode inputBotAppShortName#908c0407 as nil")
		tl_input_bot_app_gen.go#L317: 		return fmt.Errorf("can't encode inputBotAppShortName#908c0407 as nil")
		tl_input_bot_app_gen.go#L320: 		return fmt.Errorf("unable to encode inputBotAppShortName#908c0407: field bot_id is nil")
		tl_input_bot_app_gen.go#L323: 		return fmt.Errorf("unable to encode inputBotAppShortName#908c0407: field bot_id: %w", err)
		tl_input_bot_app_gen.go#L332: 		return fmt.Errorf("can't decode inputBotAppShortName#908c0407 to nil")
		tl_input_bot_app_gen.go#L335: 		return fmt.Errorf("unable to decode inputBotAppShortName#908c0407: %w", err)
		tl_input_bot_app_gen.go#L343: 		return fmt.Errorf("can't decode inputBotAppShortName#908c0407 to nil")
		tl_input_bot_app_gen.go#L348: 			return fmt.Errorf("unable to decode inputBotAppShortName#908c0407: field bot_id: %w", err)
		tl_input_bot_app_gen.go#L355: 			return fmt.Errorf("unable to decode inputBotAppShortName#908c0407: field short_name: %w", err)
		tl_input_bot_app_gen.go#L426: 			return nil, fmt.Errorf("unable to decode InputBotAppClass: %w", err)
		tl_input_bot_app_gen.go#L433: 			return nil, fmt.Errorf("unable to decode InputBotAppClass: %w", err)
		tl_input_bot_app_gen.go#L437: 		return nil, fmt.Errorf("unable to decode InputBotAppClass: %w", bin.NewUnexpectedID(id))
		tl_input_bot_app_gen.go#L449: 		return fmt.Errorf("unable to decode InputBotAppBox to nil")
		tl_input_bot_app_gen.go#L453: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_input_bot_app_gen.go#L462: 		return fmt.Errorf("unable to encode InputBotAppClass as nil")
		tl_input_bot_inline_message_gen.go#L191: 		return fmt.Errorf("can't encode inputBotInlineMessageMediaAuto#3380c786 as nil")
		tl_input_bot_inline_message_gen.go#L200: 		return fmt.Errorf("can't encode inputBotInlineMessageMediaAuto#3380c786 as nil")
		tl_input_bot_inline_message_gen.go#L204: 		return fmt.Errorf("unable to encode inputBotInlineMessageMediaAuto#3380c786: field flags: %w", err)
		tl_input_bot_inline_message_gen.go#L211: 				return fmt.Errorf("unable to encode inputBotInlineMessageMediaAuto#3380c786: field entities element with index %d is nil", idx)
		tl_input_bot_inline_message_gen.go#L214: 				return fmt.Errorf("unable to encode inputBotInlineMessageMediaAuto#3380c786: field entities element with index %d: %w", idx, err)
		tl_input_bot_inline_message_gen.go#L220: 			return fmt.Errorf("unable to encode inputBotInlineMessageMediaAuto#3380c786: field reply_markup is nil")
		tl_input_bot_inline_message_gen.go#L223: 			return fmt.Errorf("unable to encode inputBotInlineMessageMediaAuto#3380c786: field reply_markup: %w", err)
		tl_input_bot_inline_message_gen.go#L232: 		return fmt.Errorf("can't decode inputBotInlineMessageMediaAuto#3380c786 to nil")
		tl_input_bot_inline_message_gen.go#L235: 		return fmt.Errorf("unable to decode inputBotInlineMessageMediaAuto#3380c786: %w", err)
		tl_input_bot_inline_message_gen.go#L243: 		return fmt.Errorf("can't decode inputBotInlineMessageMediaAuto#3380c786 to nil")
		tl_input_bot_inline_message_gen.go#L247: 			return fmt.Errorf("unable to decode inputBotInlineMessageMediaAuto#3380c786: field flags: %w", err)
		tl_input_bot_inline_message_gen.go#L254: 			return fmt.Errorf("unable to decode inputBotInlineMessageMediaAuto#3380c786: field message: %w", err)
		tl_input_bot_inline_message_gen.go#L261: 			return fmt.Errorf("unable to decode inputBotInlineMessageMediaAuto#3380c786: field entities: %w", err)
		tl_input_bot_inline_message_gen.go#L270: 				return fmt.Errorf("unable to decode inputBotInlineMessageMediaAuto#3380c786: field entities: %w", err)
		tl_input_bot_inline_message_gen.go#L278: 			return fmt.Errorf("unable to decode inputBotInlineMessageMediaAuto#3380c786: field reply_markup: %w", err)
		tl_input_bot_inline_message_gen.go#L528: 		return fmt.Errorf("can't encode inputBotInlineMessageText#3dcd7a87 as nil")
		tl_input_bot_inline_message_gen.go#L537: 		return fmt.Errorf("can't encode inputBotInlineMessageText#3dcd7a87 as nil")
		tl_input_bot_inline_message_gen.go#L541: 		return fmt.Errorf("unable to encode inputBotInlineMessageText#3dcd7a87: field flags: %w", err)
		tl_input_bot_inline_message_gen.go#L548: 				return fmt.Errorf("unable to encode inputBotInlineMessageText#3dcd7a87: field entities element with index %d is nil", idx)
		tl_input_bot_inline_message_gen.go#L551: 				return fmt.Errorf("unable to encode inputBotInlineMessageText#3dcd7a87: field entities element with index %d: %w", idx, err)
		tl_input_bot_inline_message_gen.go#L557: 			return fmt.Errorf("unable to encode inputBotInlineMessageText#3dcd7a87: field reply_markup is nil")
		tl_input_bot_inline_message_gen.go#L560: 			return fmt.Errorf("unable to encode inputBotInlineMessageText#3dcd7a87: field reply_markup: %w", err)
		tl_input_bot_inline_message_gen.go#L569: 		return fmt.Errorf("can't decode inputBotInlineMessageText#3dcd7a87 to nil")
		tl_input_bot_inline_message_gen.go#L572: 		return fmt.Errorf("unable to decode inputBotInlineMessageText#3dcd7a87: %w", err)
		tl_input_bot_inline_message_gen.go#L580: 		return fmt.Errorf("can't decode inputBotInlineMessageText#3dcd7a87 to nil")
		tl_input_bot_inline_message_gen.go#L584: 			return fmt.Errorf("unable to decode inputBotInlineMessageText#3dcd7a87: field flags: %w", err)
		tl_input_bot_inline_message_gen.go#L592: 			return fmt.Errorf("unable to decode inputBotInlineMessageText#3dcd7a87: field message: %w", err)
		tl_input_bot_inline_message_gen.go#L599: 			return fmt.Errorf("unable to decode inputBotInlineMessageText#3dcd7a87: field entities: %w", err)
		tl_input_bot_inline_message_gen.go#L608: 				return fmt.Errorf("unable to decode inputBotInlineMessageText#3dcd7a87: field entities: %w", err)
		tl_input_bot_inline_message_gen.go#L616: 			return fmt.Errorf("unable to decode inputBotInlineMessageText#3dcd7a87: field reply_markup: %w", err)
		tl_input_bot_inline_message_gen.go#L898: 		return fmt.Errorf("can't encode inputBotInlineMessageMediaGeo#96929a85 as nil")
		tl_input_bot_inline_message_gen.go#L907: 		return fmt.Errorf("can't encode inputBotInlineMessageMediaGeo#96929a85 as nil")
		tl_input_bot_inline_message_gen.go#L911: 		return fmt.Errorf("unable to encode inputBotInlineMessageMediaGeo#96929a85: field flags: %w", err)
		tl_input_bot_inline_message_gen.go#L914: 		return fmt.Errorf("unable to encode inputBotInlineMessageMediaGeo#96929a85: field geo_point is nil")
		tl_input_bot_inline_message_gen.go#L917: 		return fmt.Errorf("unable to encode inputBotInlineMessageMediaGeo#96929a85: field geo_point: %w", err)
		tl_input_bot_inline_message_gen.go#L930: 			return fmt.Errorf("unable to encode inputBotInlineMessageMediaGeo#96929a85: field reply_markup is nil")
		tl_input_bot_inline_message_gen.go#L933: 			return fmt.Errorf("unable to encode inputBotInlineMessageMediaGeo#96929a85: field reply_markup: %w", err)
		tl_input_bot_inline_message_gen.go#L942: 		return fmt.Errorf("can't decode inputBotInlineMessageMediaGeo#96929a85 to nil")
		tl_input_bot_inline_message_gen.go#L945: 		return fmt.Errorf("unable to decode inputBotInlineMessageMediaGeo#96929a85: %w", err)
		tl_input_bot_inline_message_gen.go#L953: 		return fmt.Errorf("can't decode inputBotInlineMessageMediaGeo#96929a85 to nil")
		tl_input_bot_inline_message_gen.go#L957: 			return fmt.Errorf("unable to decode inputBotInlineMessageMediaGeo#96929a85: field flags: %w", err)
		tl_input_bot_inline_message_gen.go#L963: 			return fmt.Errorf("unable to decode inputBotInlineMessageMediaGeo#96929a85: field geo_point: %w", err)
		tl_input_bot_inline_message_gen.go#L970: 			return fmt.Errorf("unable to decode inputBotInlineMessageMediaGeo#96929a85: field heading: %w", err)
		tl_input_bot_inline_message_gen.go#L977: 			return fmt.Errorf("unable to decode inputBotInlineMessageMediaGeo#96929a85: field period: %w", err)
		tl_input_bot_inline_message_gen.go#L984: 			return fmt.Errorf("unable to decode inputBotInlineMessageMediaGeo#96929a85: field proximity_notification_radius: %w", err)
		tl_input_bot_inline_message_gen.go#L991: 			return fmt.Errorf("unable to decode inputBotInlineMessageMediaGeo#96929a85: field reply_markup: %w", err)
		tl_input_bot_inline_message_gen.go#L1252: 		return fmt.Errorf("can't encode inputBotInlineMessageMediaVenue#417bbf11 as nil")
		tl_input_bot_inline_message_gen.go#L1261: 		return fmt.Errorf("can't encode inputBotInlineMessageMediaVenue#417bbf11 as nil")
		tl_input_bot_inline_message_gen.go#L1265: 		return fmt.Errorf("unable to encode inputBotInlineMessageMediaVenue#417bbf11: field flags: %w", err)
		tl_input_bot_inline_message_gen.go#L1268: 		return fmt.Errorf("unable to encode inputBotInlineMessageMediaVenue#417bbf11: field geo_point is nil")
		tl_input_bot_inline_message_gen.go#L1271: 		return fmt.Errorf("unable to encode inputBotInlineMessageMediaVenue#417bbf11: field geo_point: %w", err)
		tl_input_bot_inline_message_gen.go#L1280: 			return fmt.Errorf("unable to encode inputBotInlineMessageMediaVenue#417bbf11: field reply_markup is nil")
		tl_input_bot_inline_message_gen.go#L1283: 			return fmt.Errorf("unable to encode inputBotInlineMessageMediaVenue#417bbf11: field reply_markup: %w", err)
		tl_input_bot_inline_message_gen.go#L1292: 		return fmt.Errorf("can't decode inputBotInlineMessageMediaVenue#417bbf11 to nil")
		tl_input_bot_inline_message_gen.go#L1295: 		return fmt.Errorf("unable to decode inputBotInlineMessageMediaVenue#417bbf11: %w", err)
		tl_input_bot_inline_message_gen.go#L1303: 		return fmt.Errorf("can't decode inputBotInlineMessageMediaVenue#417bbf11 to nil")
		tl_input_bot_inline_message_gen.go#L1307: 			return fmt.Errorf("unable to decode inputBotInlineMessageMediaVenue#417bbf11: field flags: %w", err)
		tl_input_bot_inline_message_gen.go#L1313: 			return fmt.Errorf("unable to decode inputBotInlineMessageMediaVenue#417bbf11: field geo_point: %w", err)
		tl_input_bot_inline_message_gen.go#L1320: 			return fmt.Errorf("unable to decode inputBotInlineMessageMediaVenue#417bbf11: field title: %w", err)
		tl_input_bot_inline_message_gen.go#L1327: 			return fmt.Errorf("unable to decode inputBotInlineMessageMediaVenue#417bbf11: field address: %w", err)
		tl_input_bot_inline_message_gen.go#L1334: 			return fmt.Errorf("unable to decode inputBotInlineMessageMediaVenue#417bbf11: field provider: %w", err)
		tl_input_bot_inline_message_gen.go#L1341: 			return fmt.Errorf("unable to decode inputBotInlineMessageMediaVenue#417bbf11: field venue_id: %w", err)
		tl_input_bot_inline_message_gen.go#L1348: 			return fmt.Errorf("unable to decode inputBotInlineMessageMediaVenue#417bbf11: field venue_type: %w", err)
		tl_input_bot_inline_message_gen.go#L1355: 			return fmt.Errorf("unable to decode inputBotInlineMessageMediaVenue#417bbf11: field reply_markup: %w", err)
		tl_input_bot_inline_message_gen.go#L1579: 		return fmt.Errorf("can't encode inputBotInlineMessageMediaContact#a6edbffd as nil")
		tl_input_bot_inline_message_gen.go#L1588: 		return fmt.Errorf("can't encode inputBotInlineMessageMediaContact#a6edbffd as nil")
		tl_input_bot_inline_message_gen.go#L1592: 		return fmt.Errorf("unable to encode inputBotInlineMessageMediaContact#a6edbffd: field flags: %w", err)
		tl_input_bot_inline_message_gen.go#L1600: 			return fmt.Errorf("unable to encode inputBotInlineMessageMediaContact#a6edbffd: field reply_markup is nil")
		tl_input_bot_inline_message_gen.go#L1603: 			return fmt.Errorf("unable to encode inputBotInlineMessageMediaContact#a6edbffd: field reply_markup: %w", err)
		tl_input_bot_inline_message_gen.go#L1612: 		return fmt.Errorf("can't decode inputBotInlineMessageMediaContact#a6edbffd to nil")
		tl_input_bot_inline_message_gen.go#L1615: 		return fmt.Errorf("unable to decode inputBotInlineMessageMediaContact#a6edbffd: %w", err)
		tl_input_bot_inline_message_gen.go#L1623: 		return fmt.Errorf("can't decode inputBotInlineMessageMediaContact#a6edbffd to nil")
		tl_input_bot_inline_message_gen.go#L1627: 			return fmt.Errorf("unable to decode inputBotInlineMessageMediaContact#a6edbffd: field flags: %w", err)
		tl_input_bot_inline_message_gen.go#L1633: 			return fmt.Errorf("unable to decode inputBotInlineMessageMediaContact#a6edbffd: field phone_number: %w", err)
		tl_input_bot_inline_message_gen.go#L1640: 			return fmt.Errorf("unable to decode inputBotInlineMessageMediaContact#a6edbffd: field first_name: %w", err)
		tl_input_bot_inline_message_gen.go#L1647: 			return fmt.Errorf("unable to decode inputBotInlineMessageMediaContact#a6edbffd: field last_name: %w", err)
		tl_input_bot_inline_message_gen.go#L1654: 			return fmt.Errorf("unable to decode inputBotInlineMessageMediaContact#a6edbffd: field vcard: %w", err)
		tl_input_bot_inline_message_gen.go#L1661: 			return fmt.Errorf("unable to decode inputBotInlineMessageMediaContact#a6edbffd: field reply_markup: %w", err)
		tl_input_bot_inline_message_gen.go#L1825: 		return fmt.Errorf("can't encode inputBotInlineMessageGame#4b425864 as nil")
		tl_input_bot_inline_message_gen.go#L1834: 		return fmt.Errorf("can't encode inputBotInlineMessageGame#4b425864 as nil")
		tl_input_bot_inline_message_gen.go#L1838: 		return fmt.Errorf("unable to encode inputBotInlineMessageGame#4b425864: field flags: %w", err)
		tl_input_bot_inline_message_gen.go#L1842: 			return fmt.Errorf("unable to encode inputBotInlineMessageGame#4b425864: field reply_markup is nil")
		tl_input_bot_inline_message_gen.go#L1845: 			return fmt.Errorf("unable to encode inputBotInlineMessageGame#4b425864: field reply_markup: %w", err)
		tl_input_bot_inline_message_gen.go#L1854: 		return fmt.Errorf("can't decode inputBotInlineMessageGame#4b425864 to nil")
		tl_input_bot_inline_message_gen.go#L1857: 		return fmt.Errorf("unable to decode inputBotInlineMessageGame#4b425864: %w", err)
		tl_input_bot_inline_message_gen.go#L1865: 		return fmt.Errorf("can't decode inputBotInlineMessageGame#4b425864 to nil")
		tl_input_bot_inline_message_gen.go#L1869: 			return fmt.Errorf("unable to decode inputBotInlineMessageGame#4b425864: field flags: %w", err)
		tl_input_bot_inline_message_gen.go#L1875: 			return fmt.Errorf("unable to decode inputBotInlineMessageGame#4b425864: field reply_markup: %w", err)
		tl_input_bot_inline_message_gen.go#L2099: 		return fmt.Errorf("can't encode inputBotInlineMessageMediaInvoice#d7e78225 as nil")
		tl_input_bot_inline_message_gen.go#L2108: 		return fmt.Errorf("can't encode inputBotInlineMessageMediaInvoice#d7e78225 as nil")
		tl_input_bot_inline_message_gen.go#L2112: 		return fmt.Errorf("unable to encode inputBotInlineMessageMediaInvoice#d7e78225: field flags: %w", err)
		tl_input_bot_inline_message_gen.go#L2118: 			return fmt.Errorf("unable to encode inputBotInlineMessageMediaInvoice#d7e78225: field photo: %w", err)
		tl_input_bot_inline_message_gen.go#L2122: 		return fmt.Errorf("unable to encode inputBotInlineMessageMediaInvoice#d7e78225: field invoice: %w", err)
		tl_input_bot_inline_message_gen.go#L2127: 		return fmt.Errorf("unable to encode inputBotInlineMessageMediaInvoice#d7e78225: field provider_data: %w", err)
		tl_input_bot_inline_message_gen.go#L2131: 			return fmt.Errorf("unable to encode inputBotInlineMessageMediaInvoice#d7e78225: field reply_markup is nil")
		tl_input_bot_inline_message_gen.go#L2134: 			return fmt.Errorf("unable to encode inputBotInlineMessageMediaInvoice#d7e78225: field reply_markup: %w", err)
		tl_input_bot_inline_message_gen.go#L2143: 		return fmt.Errorf("can't decode inputBotInlineMessageMediaInvoice#d7e78225 to nil")
		tl_input_bot_inline_message_gen.go#L2146: 		return fmt.Errorf("unable to decode inputBotInlineMessageMediaInvoice#d7e78225: %w", err)
		tl_input_bot_inline_message_gen.go#L2154: 		return fmt.Errorf("can't decode inputBotInlineMessageMediaInvoice#d7e78225 to nil")
		tl_input_bot_inline_message_gen.go#L2158: 			return fmt.Errorf("unable to decode inputBotInlineMessageMediaInvoice#d7e78225: field flags: %w", err)
		tl_input_bot_inline_message_gen.go#L2164: 			return fmt.Errorf("unable to decode inputBotInlineMessageMediaInvoice#d7e78225: field title: %w", err)
		tl_input_bot_inline_message_gen.go#L2171: 			return fmt.Errorf("unable to decode inputBotInlineMessageMediaInvoice#d7e78225: field description: %w", err)
		tl_input_bot_inline_message_gen.go#L2177: 			return fmt.Errorf("unable to decode inputBotInlineMessageMediaInvoice#d7e78225: field photo: %w", err)
		tl_input_bot_inline_message_gen.go#L2182: 			return fmt.Errorf("unable to decode inputBotInlineMessageMediaInvoice#d7e78225: field invoice: %w", err)
		tl_input_bot_inline_message_gen.go#L2188: 			return fmt.Errorf("unable to decode inputBotInlineMessageMediaInvoice#d7e78225: field payload: %w", err)
		tl_input_bot_inline_message_gen.go#L2195: 			return fmt.Errorf("unable to decode inputBotInlineMessageMediaInvoice#d7e78225: field provider: %w", err)
		tl_input_bot_inline_message_gen.go#L2201: 			return fmt.Errorf("unable to decode inputBotInlineMessageMediaInvoice#d7e78225: field provider_data: %w", err)
		tl_input_bot_inline_message_gen.go#L2207: 			return fmt.Errorf("unable to decode inputBotInlineMessageMediaInvoice#d7e78225: field reply_markup: %w", err)
		tl_input_bot_inline_message_gen.go#L2515: 		return fmt.Errorf("can't encode inputBotInlineMessageMediaWebPage#bddcc510 as nil")
		tl_input_bot_inline_message_gen.go#L2524: 		return fmt.Errorf("can't encode inputBotInlineMessageMediaWebPage#bddcc510 as nil")
		tl_input_bot_inline_message_gen.go#L2528: 		return fmt.Errorf("unable to encode inputBotInlineMessageMediaWebPage#bddcc510: field flags: %w", err)
		tl_input_bot_inline_message_gen.go#L2535: 				return fmt.Errorf("unable to encode inputBotInlineMessageMediaWebPage#bddcc510: field entities element with index %d is nil", idx)
		tl_input_bot_inline_message_gen.go#L2538: 				return fmt.Errorf("unable to encode inputBotInlineMessageMediaWebPage#bddcc510: field entities element with index %d: %w", idx, err)
		tl_input_bot_inline_message_gen.go#L2545: 			return fmt.Errorf("unable to encode inputBotInlineMessageMediaWebPage#bddcc510: field reply_markup is nil")
		tl_input_bot_inline_message_gen.go#L2548: 			return fmt.Errorf("unable to encode inputBotInlineMessageMediaWebPage#bddcc510: field reply_markup: %w", err)
		tl_input_bot_inline_message_gen.go#L2557: 		return fmt.Errorf("can't decode inputBotInlineMessageMediaWebPage#bddcc510 to nil")
		tl_input_bot_inline_message_gen.go#L2560: 		return fmt.Errorf("unable to decode inputBotInlineMessageMediaWebPage#bddcc510: %w", err)
		tl_input_bot_inline_message_gen.go#L2568: 		return fmt.Errorf("can't decode inputBotInlineMessageMediaWebPage#bddcc510 to nil")
		tl_input_bot_inline_message_gen.go#L2572: 			return fmt.Errorf("unable to decode inputBotInlineMessageMediaWebPage#bddcc510: field flags: %w", err)
		tl_input_bot_inline_message_gen.go#L2582: 			return fmt.Errorf("unable to decode inputBotInlineMessageMediaWebPage#bddcc510: field message: %w", err)
		tl_input_bot_inline_message_gen.go#L2589: 			return fmt.Errorf("unable to decode inputBotInlineMessageMediaWebPage#bddcc510: field entities: %w", err)
		tl_input_bot_inline_message_gen.go#L2598: 				return fmt.Errorf("unable to decode inputBotInlineMessageMediaWebPage#bddcc510: field entities: %w", err)
		tl_input_bot_inline_message_gen.go#L2606: 			return fmt.Errorf("unable to decode inputBotInlineMessageMediaWebPage#bddcc510: field url: %w", err)
		tl_input_bot_inline_message_gen.go#L2613: 			return fmt.Errorf("unable to decode inputBotInlineMessageMediaWebPage#bddcc510: field reply_markup: %w", err)
		tl_input_bot_inline_message_gen.go#L2813: 			return nil, fmt.Errorf("unable to decode InputBotInlineMessageClass: %w", err)
		tl_input_bot_inline_message_gen.go#L2820: 			return nil, fmt.Errorf("unable to decode InputBotInlineMessageClass: %w", err)
		tl_input_bot_inline_message_gen.go#L2827: 			return nil, fmt.Errorf("unable to decode InputBotInlineMessageClass: %w", err)
		tl_input_bot_inline_message_gen.go#L2834: 			return nil, fmt.Errorf("unable to decode InputBotInlineMessageClass: %w", err)
		tl_input_bot_inline_message_gen.go#L2841: 			return nil, fmt.Errorf("unable to decode InputBotInlineMessageClass: %w", err)
		tl_input_bot_inline_message_gen.go#L2848: 			return nil, fmt.Errorf("unable to decode InputBotInlineMessageClass: %w", err)
		tl_input_bot_inline_message_gen.go#L2855: 			return nil, fmt.Errorf("unable to decode InputBotInlineMessageClass: %w", err)
		tl_input_bot_inline_message_gen.go#L2862: 			return nil, fmt.Errorf("unable to decode InputBotInlineMessageClass: %w", err)
		tl_input_bot_inline_message_gen.go#L2866: 		return nil, fmt.Errorf("unable to decode InputBotInlineMessageClass: %w", bin.NewUnexpectedID(id))
		tl_input_bot_inline_message_gen.go#L2878: 		return fmt.Errorf("unable to decode InputBotInlineMessageBox to nil")
		tl_input_bot_inline_message_gen.go#L2882: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_input_bot_inline_message_gen.go#L2891: 		return fmt.Errorf("unable to encode InputBotInlineMessageClass as nil")
		tl_input_bot_inline_message_id_gen.go#L143: 		return fmt.Errorf("can't encode inputBotInlineMessageID#890c3d89 as nil")
		tl_input_bot_inline_message_id_gen.go#L152: 		return fmt.Errorf("can't encode inputBotInlineMessageID#890c3d89 as nil")
		tl_input_bot_inline_message_id_gen.go#L163: 		return fmt.Errorf("can't decode inputBotInlineMessageID#890c3d89 to nil")
		tl_input_bot_inline_message_id_gen.go#L166: 		return fmt.Errorf("unable to decode inputBotInlineMessageID#890c3d89: %w", err)
		tl_input_bot_inline_message_id_gen.go#L174: 		return fmt.Errorf("can't decode inputBotInlineMessageID#890c3d89 to nil")
		tl_input_bot_inline_message_id_gen.go#L179: 			return fmt.Errorf("unable to decode inputBotInlineMessageID#890c3d89: field dc_id: %w", err)
		tl_input_bot_inline_message_id_gen.go#L186: 			return fmt.Errorf("unable to decode inputBotInlineMessageID#890c3d89: field id: %w", err)
		tl_input_bot_inline_message_id_gen.go#L193: 			return fmt.Errorf("unable to decode inputBotInlineMessageID#890c3d89: field access_hash: %w", err)
		tl_input_bot_inline_message_id_gen.go#L343: 		return fmt.Errorf("can't encode inputBotInlineMessageID64#b6d915d7 as nil")
		tl_input_bot_inline_message_id_gen.go#L352: 		return fmt.Errorf("can't encode inputBotInlineMessageID64#b6d915d7 as nil")
		tl_input_bot_inline_message_id_gen.go#L364: 		return fmt.Errorf("can't decode inputBotInlineMessageID64#b6d915d7 to nil")
		tl_input_bot_inline_message_id_gen.go#L367: 		return fmt.Errorf("unable to decode inputBotInlineMessageID64#b6d915d7: %w", err)
		tl_input_bot_inline_message_id_gen.go#L375: 		return fmt.Errorf("can't decode inputBotInlineMessageID64#b6d915d7 to nil")
		tl_input_bot_inline_message_id_gen.go#L380: 			return fmt.Errorf("unable to decode inputBotInlineMessageID64#b6d915d7: field dc_id: %w", err)
		tl_input_bot_inline_message_id_gen.go#L387: 			return fmt.Errorf("unable to decode inputBotInlineMessageID64#b6d915d7: field owner_id: %w", err)
		tl_input_bot_inline_message_id_gen.go#L394: 			return fmt.Errorf("unable to decode inputBotInlineMessageID64#b6d915d7: field id: %w", err)
		tl_input_bot_inline_message_id_gen.go#L401: 			return fmt.Errorf("unable to decode inputBotInlineMessageID64#b6d915d7: field access_hash: %w", err)
		tl_input_bot_inline_message_id_gen.go#L494: 			return nil, fmt.Errorf("unable to decode InputBotInlineMessageIDClass: %w", err)
		tl_input_bot_inline_message_id_gen.go#L501: 			return nil, fmt.Errorf("unable to decode InputBotInlineMessageIDClass: %w", err)
		tl_input_bot_inline_message_id_gen.go#L505: 		return nil, fmt.Errorf("unable to decode InputBotInlineMessageIDClass: %w", bin.NewUnexpectedID(id))
		tl_input_bot_inline_message_id_gen.go#L517: 		return fmt.Errorf("unable to decode InputBotInlineMessageIDBox to nil")
		tl_input_bot_inline_message_id_gen.go#L521: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_input_bot_inline_message_id_gen.go#L530: 		return fmt.Errorf("unable to encode InputBotInlineMessageIDClass as nil")
		tl_input_bot_inline_result_gen.go#L257: 		return fmt.Errorf("can't encode inputBotInlineResult#88bf9319 as nil")
		tl_input_bot_inline_result_gen.go#L266: 		return fmt.Errorf("can't encode inputBotInlineResult#88bf9319 as nil")
		tl_input_bot_inline_result_gen.go#L270: 		return fmt.Errorf("unable to encode inputBotInlineResult#88bf9319: field flags: %w", err)
		tl_input_bot_inline_result_gen.go#L285: 			return fmt.Errorf("unable to encode inputBotInlineResult#88bf9319: field thumb: %w", err)
		tl_input_bot_inline_result_gen.go#L290: 			return fmt.Errorf("unable to encode inputBotInlineResult#88bf9319: field content: %w", err)
		tl_input_bot_inline_result_gen.go#L294: 		return fmt.Errorf("unable to encode inputBotInlineResult#88bf9319: field send_message is nil")
		tl_input_bot_inline_result_gen.go#L297: 		return fmt.Errorf("unable to encode inputBotInlineResult#88bf9319: field send_message: %w", err)
		tl_input_bot_inline_result_gen.go#L305: 		return fmt.Errorf("can't decode inputBotInlineResult#88bf9319 to nil")
		tl_input_bot_inline_result_gen.go#L308: 		return fmt.Errorf("unable to decode inputBotInlineResult#88bf9319: %w", err)
		tl_input_bot_inline_result_gen.go#L316: 		return fmt.Errorf("can't decode inputBotInlineResult#88bf9319 to nil")
		tl_input_bot_inline_result_gen.go#L320: 			return fmt.Errorf("unable to decode inputBotInlineResult#88bf9319: field flags: %w", err)
		tl_input_bot_inline_result_gen.go#L326: 			return fmt.Errorf("unable to decode inputBotInlineResult#88bf9319: field id: %w", err)
		tl_input_bot_inline_result_gen.go#L333: 			return fmt.Errorf("unable to decode inputBotInlineResult#88bf9319: field type: %w", err)
		tl_input_bot_inline_result_gen.go#L340: 			return fmt.Errorf("unable to decode inputBotInlineResult#88bf9319: field title: %w", err)
		tl_input_bot_inline_result_gen.go#L347: 			return fmt.Errorf("unable to decode inputBotInlineResult#88bf9319: field description: %w", err)
		tl_input_bot_inline_result_gen.go#L354: 			return fmt.Errorf("unable to decode inputBotInlineResult#88bf9319: field url: %w", err)
		tl_input_bot_inline_result_gen.go#L360: 			return fmt.Errorf("unable to decode inputBotInlineResult#88bf9319: field thumb: %w", err)
		tl_input_bot_inline_result_gen.go#L365: 			return fmt.Errorf("unable to decode inputBotInlineResult#88bf9319: field content: %w", err)
		tl_input_bot_inline_result_gen.go#L371: 			return fmt.Errorf("unable to decode inputBotInlineResult#88bf9319: field send_message: %w", err)
		tl_input_bot_inline_result_gen.go#L614: 		return fmt.Errorf("can't encode inputBotInlineResultPhoto#a8d864a7 as nil")
		tl_input_bot_inline_result_gen.go#L623: 		return fmt.Errorf("can't encode inputBotInlineResultPhoto#a8d864a7 as nil")
		tl_input_bot_inline_result_gen.go#L628: 		return fmt.Errorf("unable to encode inputBotInlineResultPhoto#a8d864a7: field photo is nil")
		tl_input_bot_inline_result_gen.go#L631: 		return fmt.Errorf("unable to encode inputBotInlineResultPhoto#a8d864a7: field photo: %w", err)
		tl_input_bot_inline_result_gen.go#L634: 		return fmt.Errorf("unable to encode inputBotInlineResultPhoto#a8d864a7: field send_message is nil")
		tl_input_bot_inline_result_gen.go#L637: 		return fmt.Errorf("unable to encode inputBotInlineResultPhoto#a8d864a7: field send_message: %w", err)
		tl_input_bot_inline_result_gen.go#L645: 		return fmt.Errorf("can't decode inputBotInlineResultPhoto#a8d864a7 to nil")
		tl_input_bot_inline_result_gen.go#L648: 		return fmt.Errorf("unable to decode inputBotInlineResultPhoto#a8d864a7: %w", err)
		tl_input_bot_inline_result_gen.go#L656: 		return fmt.Errorf("can't decode inputBotInlineResultPhoto#a8d864a7 to nil")
		tl_input_bot_inline_result_gen.go#L661: 			return fmt.Errorf("unable to decode inputBotInlineResultPhoto#a8d864a7: field id: %w", err)
		tl_input_bot_inline_result_gen.go#L668: 			return fmt.Errorf("unable to decode inputBotInlineResultPhoto#a8d864a7: field type: %w", err)
		tl_input_bot_inline_result_gen.go#L675: 			return fmt.Errorf("unable to decode inputBotInlineResultPhoto#a8d864a7: field photo: %w", err)
		tl_input_bot_inline_result_gen.go#L682: 			return fmt.Errorf("unable to decode inputBotInlineResultPhoto#a8d864a7: field send_message: %w", err)
		tl_input_bot_inline_result_gen.go#L895: 		return fmt.Errorf("can't encode inputBotInlineResultDocument#fff8fdc4 as nil")
		tl_input_bot_inline_result_gen.go#L904: 		return fmt.Errorf("can't encode inputBotInlineResultDocument#fff8fdc4 as nil")
		tl_input_bot_inline_result_gen.go#L908: 		return fmt.Errorf("unable to encode inputBotInlineResultDocument#fff8fdc4: field flags: %w", err)
		tl_input_bot_inline_result_gen.go#L919: 		return fmt.Errorf("unable to encode inputBotInlineResultDocument#fff8fdc4: field document is nil")
		tl_input_bot_inline_result_gen.go#L922: 		return fmt.Errorf("unable to encode inputBotInlineResultDocument#fff8fdc4: field document: %w", err)
		tl_input_bot_inline_result_gen.go#L925: 		return fmt.Errorf("unable to encode inputBotInlineResultDocument#fff8fdc4: field send_message is nil")
		tl_input_bot_inline_result_gen.go#L928: 		return fmt.Errorf("unable to encode inputBotInlineResultDocument#fff8fdc4: field send_message: %w", err)
		tl_input_bot_inline_result_gen.go#L936: 		return fmt.Errorf("can't decode inputBotInlineResultDocument#fff8fdc4 to nil")
		tl_input_bot_inline_result_gen.go#L939: 		return fmt.Errorf("unable to decode inputBotInlineResultDocument#fff8fdc4: %w", err)
		tl_input_bot_inline_result_gen.go#L947: 		return fmt.Errorf("can't decode inputBotInlineResultDocument#fff8fdc4 to nil")
		tl_input_bot_inline_result_gen.go#L951: 			return fmt.Errorf("unable to decode inputBotInlineResultDocument#fff8fdc4: field flags: %w", err)
		tl_input_bot_inline_result_gen.go#L957: 			return fmt.Errorf("unable to decode inputBotInlineResultDocument#fff8fdc4: field id: %w", err)
		tl_input_bot_inline_result_gen.go#L964: 			return fmt.Errorf("unable to decode inputBotInlineResultDocument#fff8fdc4: field type: %w", err)
		tl_input_bot_inline_result_gen.go#L971: 			return fmt.Errorf("unable to decode inputBotInlineResultDocument#fff8fdc4: field title: %w", err)
		tl_input_bot_inline_result_gen.go#L978: 			return fmt.Errorf("unable to decode inputBotInlineResultDocument#fff8fdc4: field description: %w", err)
		tl_input_bot_inline_result_gen.go#L985: 			return fmt.Errorf("unable to decode inputBotInlineResultDocument#fff8fdc4: field document: %w", err)
		tl_input_bot_inline_result_gen.go#L992: 			return fmt.Errorf("unable to decode inputBotInlineResultDocument#fff8fdc4: field send_message: %w", err)
		tl_input_bot_inline_result_gen.go#L1175: 		return fmt.Errorf("can't encode inputBotInlineResultGame#4fa417f2 as nil")
		tl_input_bot_inline_result_gen.go#L1184: 		return fmt.Errorf("can't encode inputBotInlineResultGame#4fa417f2 as nil")
		tl_input_bot_inline_result_gen.go#L1189: 		return fmt.Errorf("unable to encode inputBotInlineResultGame#4fa417f2: field send_message is nil")
		tl_input_bot_inline_result_gen.go#L1192: 		return fmt.Errorf("unable to encode inputBotInlineResultGame#4fa417f2: field send_message: %w", err)
		tl_input_bot_inline_result_gen.go#L1200: 		return fmt.Errorf("can't decode inputBotInlineResultGame#4fa417f2 to nil")
		tl_input_bot_inline_result_gen.go#L1203: 		return fmt.Errorf("unable to decode inputBotInlineResultGame#4fa417f2: %w", err)
		tl_input_bot_inline_result_gen.go#L1211: 		return fmt.Errorf("can't decode inputBotInlineResultGame#4fa417f2 to nil")
		tl_input_bot_inline_result_gen.go#L1216: 			return fmt.Errorf("unable to decode inputBotInlineResultGame#4fa417f2: field id: %w", err)
		tl_input_bot_inline_result_gen.go#L1223: 			return fmt.Errorf("unable to decode inputBotInlineResultGame#4fa417f2: field short_name: %w", err)
		tl_input_bot_inline_result_gen.go#L1230: 			return fmt.Errorf("unable to decode inputBotInlineResultGame#4fa417f2: field send_message: %w", err)
		tl_input_bot_inline_result_gen.go#L1317: 			return nil, fmt.Errorf("unable to decode InputBotInlineResultClass: %w", err)
		tl_input_bot_inline_result_gen.go#L1324: 			return nil, fmt.Errorf("unable to decode InputBotInlineResultClass: %w", err)
		tl_input_bot_inline_result_gen.go#L1331: 			return nil, fmt.Errorf("unable to decode InputBotInlineResultClass: %w", err)
		tl_input_bot_inline_result_gen.go#L1338: 			return nil, fmt.Errorf("unable to decode InputBotInlineResultClass: %w", err)
		tl_input_bot_inline_result_gen.go#L1342: 		return nil, fmt.Errorf("unable to decode InputBotInlineResultClass: %w", bin.NewUnexpectedID(id))
		tl_input_bot_inline_result_gen.go#L1354: 		return fmt.Errorf("unable to decode InputBotInlineResultBox to nil")
		tl_input_bot_inline_result_gen.go#L1358: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_input_bot_inline_result_gen.go#L1367: 		return fmt.Errorf("unable to encode InputBotInlineResultClass as nil")
		tl_input_channel_gen.go#L103: 		return fmt.Errorf("can't encode inputChannelEmpty#ee8c1e86 as nil")
		tl_input_channel_gen.go#L112: 		return fmt.Errorf("can't encode inputChannelEmpty#ee8c1e86 as nil")
		tl_input_channel_gen.go#L120: 		return fmt.Errorf("can't decode inputChannelEmpty#ee8c1e86 to nil")
		tl_input_channel_gen.go#L123: 		return fmt.Errorf("unable to decode inputChannelEmpty#ee8c1e86: %w", err)
		tl_input_channel_gen.go#L131: 		return fmt.Errorf("can't decode inputChannelEmpty#ee8c1e86 to nil")
		tl_input_channel_gen.go#L236: 		return fmt.Errorf("can't encode inputChannel#f35aec28 as nil")
		tl_input_channel_gen.go#L245: 		return fmt.Errorf("can't encode inputChannel#f35aec28 as nil")
		tl_input_channel_gen.go#L255: 		return fmt.Errorf("can't decode inputChannel#f35aec28 to nil")
		tl_input_channel_gen.go#L258: 		return fmt.Errorf("unable to decode inputChannel#f35aec28: %w", err)
		tl_input_channel_gen.go#L266: 		return fmt.Errorf("can't decode inputChannel#f35aec28 to nil")
		tl_input_channel_gen.go#L271: 			return fmt.Errorf("unable to decode inputChannel#f35aec28: field channel_id: %w", err)
		tl_input_channel_gen.go#L278: 			return fmt.Errorf("unable to decode inputChannel#f35aec28: field access_hash: %w", err)
		tl_input_channel_gen.go#L412: 		return fmt.Errorf("can't encode inputChannelFromMessage#5b934f9d as nil")
		tl_input_channel_gen.go#L421: 		return fmt.Errorf("can't encode inputChannelFromMessage#5b934f9d as nil")
		tl_input_channel_gen.go#L424: 		return fmt.Errorf("unable to encode inputChannelFromMessage#5b934f9d: field peer is nil")
		tl_input_channel_gen.go#L427: 		return fmt.Errorf("unable to encode inputChannelFromMessage#5b934f9d: field peer: %w", err)
		tl_input_channel_gen.go#L437: 		return fmt.Errorf("can't decode inputChannelFromMessage#5b934f9d to nil")
		tl_input_channel_gen.go#L440: 		return fmt.Errorf("unable to decode inputChannelFromMessage#5b934f9d: %w", err)
		tl_input_channel_gen.go#L448: 		return fmt.Errorf("can't decode inputChannelFromMessage#5b934f9d to nil")
		tl_input_channel_gen.go#L453: 			return fmt.Errorf("unable to decode inputChannelFromMessage#5b934f9d: field peer: %w", err)
		tl_input_channel_gen.go#L460: 			return fmt.Errorf("unable to decode inputChannelFromMessage#5b934f9d: field msg_id: %w", err)
		tl_input_channel_gen.go#L467: 			return fmt.Errorf("unable to decode inputChannelFromMessage#5b934f9d: field channel_id: %w", err)
		tl_input_channel_gen.go#L591: 			return nil, fmt.Errorf("unable to decode InputChannelClass: %w", err)
		tl_input_channel_gen.go#L598: 			return nil, fmt.Errorf("unable to decode InputChannelClass: %w", err)
		tl_input_channel_gen.go#L605: 			return nil, fmt.Errorf("unable to decode InputChannelClass: %w", err)
		tl_input_channel_gen.go#L609: 		return nil, fmt.Errorf("unable to decode InputChannelClass: %w", bin.NewUnexpectedID(id))
		tl_input_channel_gen.go#L621: 		return fmt.Errorf("unable to decode InputChannelBox to nil")
		tl_input_channel_gen.go#L625: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_input_channel_gen.go#L634: 		return fmt.Errorf("unable to encode InputChannelClass as nil")
		tl_input_chat_photo_gen.go#L103: 		return fmt.Errorf("can't encode inputChatPhotoEmpty#1ca48f57 as nil")
		tl_input_chat_photo_gen.go#L112: 		return fmt.Errorf("can't encode inputChatPhotoEmpty#1ca48f57 as nil")
		tl_input_chat_photo_gen.go#L120: 		return fmt.Errorf("can't decode inputChatPhotoEmpty#1ca48f57 to nil")
		tl_input_chat_photo_gen.go#L123: 		return fmt.Errorf("unable to decode inputChatPhotoEmpty#1ca48f57: %w", err)
		tl_input_chat_photo_gen.go#L131: 		return fmt.Errorf("can't decode inputChatPhotoEmpty#1ca48f57 to nil")
		tl_input_chat_photo_gen.go#L314: 		return fmt.Errorf("can't encode inputChatUploadedPhoto#bdcdaec0 as nil")
		tl_input_chat_photo_gen.go#L323: 		return fmt.Errorf("can't encode inputChatUploadedPhoto#bdcdaec0 as nil")
		tl_input_chat_photo_gen.go#L327: 		return fmt.Errorf("unable to encode inputChatUploadedPhoto#bdcdaec0: field flags: %w", err)
		tl_input_chat_photo_gen.go#L331: 			return fmt.Errorf("unable to encode inputChatUploadedPhoto#bdcdaec0: field file is nil")
		tl_input_chat_photo_gen.go#L334: 			return fmt.Errorf("unable to encode inputChatUploadedPhoto#bdcdaec0: field file: %w", err)
		tl_input_chat_photo_gen.go#L339: 			return fmt.Errorf("unable to encode inputChatUploadedPhoto#bdcdaec0: field video is nil")
		tl_input_chat_photo_gen.go#L342: 			return fmt.Errorf("unable to encode inputChatUploadedPhoto#bdcdaec0: field video: %w", err)
		tl_input_chat_photo_gen.go#L350: 			return fmt.Errorf("unable to encode inputChatUploadedPhoto#bdcdaec0: field video_emoji_markup is nil")
		tl_input_chat_photo_gen.go#L353: 			return fmt.Errorf("unable to encode inputChatUploadedPhoto#bdcdaec0: field video_emoji_markup: %w", err)
		tl_input_chat_photo_gen.go#L362: 		return fmt.Errorf("can't decode inputChatUploadedPhoto#bdcdaec0 to nil")
		tl_input_chat_photo_gen.go#L365: 		return fmt.Errorf("unable to decode inputChatUploadedPhoto#bdcdaec0: %w", err)
		tl_input_chat_photo_gen.go#L373: 		return fmt.Errorf("can't decode inputChatUploadedPhoto#bdcdaec0 to nil")
		tl_input_chat_photo_gen.go#L377: 			return fmt.Errorf("unable to decode inputChatUploadedPhoto#bdcdaec0: field flags: %w", err)
		tl_input_chat_photo_gen.go#L383: 			return fmt.Errorf("unable to decode inputChatUploadedPhoto#bdcdaec0: field file: %w", err)
		tl_input_chat_photo_gen.go#L390: 			return fmt.Errorf("unable to decode inputChatUploadedPhoto#bdcdaec0: field video: %w", err)
		tl_input_chat_photo_gen.go#L397: 			return fmt.Errorf("unable to decode inputChatUploadedPhoto#bdcdaec0: field video_start_ts: %w", err)
		tl_input_chat_photo_gen.go#L404: 			return fmt.Errorf("unable to decode inputChatUploadedPhoto#bdcdaec0: field video_emoji_markup: %w", err)
		tl_input_chat_photo_gen.go#L569: 		return fmt.Errorf("can't encode inputChatPhoto#8953ad37 as nil")
		tl_input_chat_photo_gen.go#L578: 		return fmt.Errorf("can't encode inputChatPhoto#8953ad37 as nil")
		tl_input_chat_photo_gen.go#L581: 		return fmt.Errorf("unable to encode inputChatPhoto#8953ad37: field id is nil")
		tl_input_chat_photo_gen.go#L584: 		return fmt.Errorf("unable to encode inputChatPhoto#8953ad37: field id: %w", err)
		tl_input_chat_photo_gen.go#L592: 		return fmt.Errorf("can't decode inputChatPhoto#8953ad37 to nil")
		tl_input_chat_photo_gen.go#L595: 		return fmt.Errorf("unable to decode inputChatPhoto#8953ad37: %w", err)
		tl_input_chat_photo_gen.go#L603: 		return fmt.Errorf("can't decode inputChatPhoto#8953ad37 to nil")
		tl_input_chat_photo_gen.go#L608: 			return fmt.Errorf("unable to decode inputChatPhoto#8953ad37: field id: %w", err)
		tl_input_chat_photo_gen.go#L672: 			return nil, fmt.Errorf("unable to decode InputChatPhotoClass: %w", err)
		tl_input_chat_photo_gen.go#L679: 			return nil, fmt.Errorf("unable to decode InputChatPhotoClass: %w", err)
		tl_input_chat_photo_gen.go#L686: 			return nil, fmt.Errorf("unable to decode InputChatPhotoClass: %w", err)
		tl_input_chat_photo_gen.go#L690: 		return nil, fmt.Errorf("unable to decode InputChatPhotoClass: %w", bin.NewUnexpectedID(id))
		tl_input_chat_photo_gen.go#L702: 		return fmt.Errorf("unable to decode InputChatPhotoBox to nil")
		tl_input_chat_photo_gen.go#L706: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_input_chat_photo_gen.go#L715: 		return fmt.Errorf("unable to encode InputChatPhotoClass as nil")
		tl_input_chatlist_dialog_filter_gen.go#L118: 		return fmt.Errorf("can't encode inputChatlistDialogFilter#f3e0da33 as nil")
		tl_input_chatlist_dialog_filter_gen.go#L127: 		return fmt.Errorf("can't encode inputChatlistDialogFilter#f3e0da33 as nil")
		tl_input_chatlist_dialog_filter_gen.go#L136: 		return fmt.Errorf("can't decode inputChatlistDialogFilter#f3e0da33 to nil")
		tl_input_chatlist_dialog_filter_gen.go#L139: 		return fmt.Errorf("unable to decode inputChatlistDialogFilter#f3e0da33: %w", err)
		tl_input_chatlist_dialog_filter_gen.go#L147: 		return fmt.Errorf("can't decode inputChatlistDialogFilter#f3e0da33 to nil")
		tl_input_chatlist_dialog_filter_gen.go#L152: 			return fmt.Errorf("unable to decode inputChatlistDialogFilter#f3e0da33: field filter_id: %w", err)
		tl_input_check_password_srp_gen.go#L103: 		return fmt.Errorf("can't encode inputCheckPasswordEmpty#9880f658 as nil")
		tl_input_check_password_srp_gen.go#L112: 		return fmt.Errorf("can't encode inputCheckPasswordEmpty#9880f658 as nil")
		tl_input_check_password_srp_gen.go#L120: 		return fmt.Errorf("can't decode inputCheckPasswordEmpty#9880f658 to nil")
		tl_input_check_password_srp_gen.go#L123: 		return fmt.Errorf("unable to decode inputCheckPasswordEmpty#9880f658: %w", err)
		tl_input_check_password_srp_gen.go#L131: 		return fmt.Errorf("can't decode inputCheckPasswordEmpty#9880f658 to nil")
		tl_input_check_password_srp_gen.go#L256: 		return fmt.Errorf("can't encode inputCheckPasswordSRP#d27ff082 as nil")
		tl_input_check_password_srp_gen.go#L265: 		return fmt.Errorf("can't encode inputCheckPasswordSRP#d27ff082 as nil")
		tl_input_check_password_srp_gen.go#L276: 		return fmt.Errorf("can't decode inputCheckPasswordSRP#d27ff082 to nil")
		tl_input_check_password_srp_gen.go#L279: 		return fmt.Errorf("unable to decode inputCheckPasswordSRP#d27ff082: %w", err)
		tl_input_check_password_srp_gen.go#L287: 		return fmt.Errorf("can't decode inputCheckPasswordSRP#d27ff082 to nil")
		tl_input_check_password_srp_gen.go#L292: 			return fmt.Errorf("unable to decode inputCheckPasswordSRP#d27ff082: field srp_id: %w", err)
		tl_input_check_password_srp_gen.go#L299: 			return fmt.Errorf("unable to decode inputCheckPasswordSRP#d27ff082: field A: %w", err)
		tl_input_check_password_srp_gen.go#L306: 			return fmt.Errorf("unable to decode inputCheckPasswordSRP#d27ff082: field M1: %w", err)
		tl_input_check_password_srp_gen.go#L398: 			return nil, fmt.Errorf("unable to decode InputCheckPasswordSRPClass: %w", err)
		tl_input_check_password_srp_gen.go#L405: 			return nil, fmt.Errorf("unable to decode InputCheckPasswordSRPClass: %w", err)
		tl_input_check_password_srp_gen.go#L409: 		return nil, fmt.Errorf("unable to decode InputCheckPasswordSRPClass: %w", bin.NewUnexpectedID(id))
		tl_input_check_password_srp_gen.go#L421: 		return fmt.Errorf("unable to decode InputCheckPasswordSRPBox to nil")
		tl_input_check_password_srp_gen.go#L425: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_input_check_password_srp_gen.go#L434: 		return fmt.Errorf("unable to encode InputCheckPasswordSRPClass as nil")
		tl_input_client_proxy_gen.go#L129: 		return fmt.Errorf("can't encode inputClientProxy#75588b3f as nil")
		tl_input_client_proxy_gen.go#L138: 		return fmt.Errorf("can't encode inputClientProxy#75588b3f as nil")
		tl_input_client_proxy_gen.go#L148: 		return fmt.Errorf("can't decode inputClientProxy#75588b3f to nil")
		tl_input_client_proxy_gen.go#L151: 		return fmt.Errorf("unable to decode inputClientProxy#75588b3f: %w", err)
		tl_input_client_proxy_gen.go#L159: 		return fmt.Errorf("can't decode inputClientProxy#75588b3f to nil")
		tl_input_client_proxy_gen.go#L164: 			return fmt.Errorf("unable to decode inputClientProxy#75588b3f: field address: %w", err)
		tl_input_client_proxy_gen.go#L171: 			return fmt.Errorf("unable to decode inputClientProxy#75588b3f: field port: %w", err)
		tl_input_dialog_peer_gen.go#L120: 		return fmt.Errorf("can't encode inputDialogPeer#fcaafeb7 as nil")
		tl_input_dialog_peer_gen.go#L129: 		return fmt.Errorf("can't encode inputDialogPeer#fcaafeb7 as nil")
		tl_input_dialog_peer_gen.go#L132: 		return fmt.Errorf("unable to encode inputDialogPeer#fcaafeb7: field peer is nil")
		tl_input_dialog_peer_gen.go#L135: 		return fmt.Errorf("unable to encode inputDialogPeer#fcaafeb7: field peer: %w", err)
		tl_input_dialog_peer_gen.go#L143: 		return fmt.Errorf("can't decode inputDialogPeer#fcaafeb7 to nil")
		tl_input_dialog_peer_gen.go#L146: 		return fmt.Errorf("unable to decode inputDialogPeer#fcaafeb7: %w", err)
		tl_input_dialog_peer_gen.go#L154: 		return fmt.Errorf("can't decode inputDialogPeer#fcaafeb7 to nil")
		tl_input_dialog_peer_gen.go#L159: 			return fmt.Errorf("unable to decode inputDialogPeer#fcaafeb7: field peer: %w", err)
		tl_input_dialog_peer_gen.go#L266: 		return fmt.Errorf("can't encode inputDialogPeerFolder#64600527 as nil")
		tl_input_dialog_peer_gen.go#L275: 		return fmt.Errorf("can't encode inputDialogPeerFolder#64600527 as nil")
		tl_input_dialog_peer_gen.go#L284: 		return fmt.Errorf("can't decode inputDialogPeerFolder#64600527 to nil")
		tl_input_dialog_peer_gen.go#L287: 		return fmt.Errorf("unable to decode inputDialogPeerFolder#64600527: %w", err)
		tl_input_dialog_peer_gen.go#L295: 		return fmt.Errorf("can't decode inputDialogPeerFolder#64600527 to nil")
		tl_input_dialog_peer_gen.go#L300: 			return fmt.Errorf("unable to decode inputDialogPeerFolder#64600527: field folder_id: %w", err)
		tl_input_dialog_peer_gen.go#L363: 			return nil, fmt.Errorf("unable to decode InputDialogPeerClass: %w", err)
		tl_input_dialog_peer_gen.go#L370: 			return nil, fmt.Errorf("unable to decode InputDialogPeerClass: %w", err)
		tl_input_dialog_peer_gen.go#L374: 		return nil, fmt.Errorf("unable to decode InputDialogPeerClass: %w", bin.NewUnexpectedID(id))
		tl_input_dialog_peer_gen.go#L386: 		return fmt.Errorf("unable to decode InputDialogPeerBox to nil")
		tl_input_dialog_peer_gen.go#L390: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_input_dialog_peer_gen.go#L399: 		return fmt.Errorf("unable to encode InputDialogPeerClass as nil")
		tl_input_document_gen.go#L103: 		return fmt.Errorf("can't encode inputDocumentEmpty#72f0eaae as nil")
		tl_input_document_gen.go#L112: 		return fmt.Errorf("can't encode inputDocumentEmpty#72f0eaae as nil")
		tl_input_document_gen.go#L120: 		return fmt.Errorf("can't decode inputDocumentEmpty#72f0eaae to nil")
		tl_input_document_gen.go#L123: 		return fmt.Errorf("unable to decode inputDocumentEmpty#72f0eaae: %w", err)
		tl_input_document_gen.go#L131: 		return fmt.Errorf("can't decode inputDocumentEmpty#72f0eaae to nil")
		tl_input_document_gen.go#L250: 		return fmt.Errorf("can't encode inputDocument#1abfb575 as nil")
		tl_input_document_gen.go#L259: 		return fmt.Errorf("can't encode inputDocument#1abfb575 as nil")
		tl_input_document_gen.go#L270: 		return fmt.Errorf("can't decode inputDocument#1abfb575 to nil")
		tl_input_document_gen.go#L273: 		return fmt.Errorf("unable to decode inputDocument#1abfb575: %w", err)
		tl_input_document_gen.go#L281: 		return fmt.Errorf("can't decode inputDocument#1abfb575 to nil")
		tl_input_document_gen.go#L286: 			return fmt.Errorf("unable to decode inputDocument#1abfb575: field id: %w", err)
		tl_input_document_gen.go#L293: 			return fmt.Errorf("unable to decode inputDocument#1abfb575: field access_hash: %w", err)
		tl_input_document_gen.go#L300: 			return fmt.Errorf("unable to decode inputDocument#1abfb575: field file_reference: %w", err)
		tl_input_document_gen.go#L402: 			return nil, fmt.Errorf("unable to decode InputDocumentClass: %w", err)
		tl_input_document_gen.go#L409: 			return nil, fmt.Errorf("unable to decode InputDocumentClass: %w", err)
		tl_input_document_gen.go#L413: 		return nil, fmt.Errorf("unable to decode InputDocumentClass: %w", bin.NewUnexpectedID(id))
		tl_input_document_gen.go#L425: 		return fmt.Errorf("unable to decode InputDocumentBox to nil")
		tl_input_document_gen.go#L429: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_input_document_gen.go#L438: 		return fmt.Errorf("unable to encode InputDocumentClass as nil")
		tl_input_encrypted_chat_gen.go#L132: 		return fmt.Errorf("can't encode inputEncryptedChat#f141b5e1 as nil")
		tl_input_encrypted_chat_gen.go#L141: 		return fmt.Errorf("can't encode inputEncryptedChat#f141b5e1 as nil")
		tl_input_encrypted_chat_gen.go#L151: 		return fmt.Errorf("can't decode inputEncryptedChat#f141b5e1 to nil")
		tl_input_encrypted_chat_gen.go#L154: 		return fmt.Errorf("unable to decode inputEncryptedChat#f141b5e1: %w", err)
		tl_input_encrypted_chat_gen.go#L162: 		return fmt.Errorf("can't decode inputEncryptedChat#f141b5e1 to nil")
		tl_input_encrypted_chat_gen.go#L167: 			return fmt.Errorf("unable to decode inputEncryptedChat#f141b5e1: field chat_id: %w", err)
		tl_input_encrypted_chat_gen.go#L174: 			return fmt.Errorf("unable to decode inputEncryptedChat#f141b5e1: field access_hash: %w", err)
		tl_input_encrypted_file_gen.go#L103: 		return fmt.Errorf("can't encode inputEncryptedFileEmpty#1837c364 as nil")
		tl_input_encrypted_file_gen.go#L112: 		return fmt.Errorf("can't encode inputEncryptedFileEmpty#1837c364 as nil")
		tl_input_encrypted_file_gen.go#L120: 		return fmt.Errorf("can't decode inputEncryptedFileEmpty#1837c364 to nil")
		tl_input_encrypted_file_gen.go#L123: 		return fmt.Errorf("unable to decode inputEncryptedFileEmpty#1837c364: %w", err)
		tl_input_encrypted_file_gen.go#L131: 		return fmt.Errorf("can't decode inputEncryptedFileEmpty#1837c364 to nil")
		tl_input_encrypted_file_gen.go#L259: 		return fmt.Errorf("can't encode inputEncryptedFileUploaded#64bd0306 as nil")
		tl_input_encrypted_file_gen.go#L268: 		return fmt.Errorf("can't encode inputEncryptedFileUploaded#64bd0306 as nil")
		tl_input_encrypted_file_gen.go#L280: 		return fmt.Errorf("can't decode inputEncryptedFileUploaded#64bd0306 to nil")
		tl_input_encrypted_file_gen.go#L283: 		return fmt.Errorf("unable to decode inputEncryptedFileUploaded#64bd0306: %w", err)
		tl_input_encrypted_file_gen.go#L291: 		return fmt.Errorf("can't decode inputEncryptedFileUploaded#64bd0306 to nil")
		tl_input_encrypted_file_gen.go#L296: 			return fmt.Errorf("unable to decode inputEncryptedFileUploaded#64bd0306: field id: %w", err)
		tl_input_encrypted_file_gen.go#L303: 			return fmt.Errorf("unable to decode inputEncryptedFileUploaded#64bd0306: field parts: %w", err)
		tl_input_encrypted_file_gen.go#L310: 			return fmt.Errorf("unable to decode inputEncryptedFileUploaded#64bd0306: field md5_checksum: %w", err)
		tl_input_encrypted_file_gen.go#L317: 			return fmt.Errorf("unable to decode inputEncryptedFileUploaded#64bd0306: field key_fingerprint: %w", err)
		tl_input_encrypted_file_gen.go#L459: 		return fmt.Errorf("can't encode inputEncryptedFile#5a17b5e5 as nil")
		tl_input_encrypted_file_gen.go#L468: 		return fmt.Errorf("can't encode inputEncryptedFile#5a17b5e5 as nil")
		tl_input_encrypted_file_gen.go#L478: 		return fmt.Errorf("can't decode inputEncryptedFile#5a17b5e5 to nil")
		tl_input_encrypted_file_gen.go#L481: 		return fmt.Errorf("unable to decode inputEncryptedFile#5a17b5e5: %w", err)
		tl_input_encrypted_file_gen.go#L489: 		return fmt.Errorf("can't decode inputEncryptedFile#5a17b5e5 to nil")
		tl_input_encrypted_file_gen.go#L494: 			return fmt.Errorf("unable to decode inputEncryptedFile#5a17b5e5: field id: %w", err)
		tl_input_encrypted_file_gen.go#L501: 			return fmt.Errorf("unable to decode inputEncryptedFile#5a17b5e5: field access_hash: %w", err)
		tl_input_encrypted_file_gen.go#L636: 		return fmt.Errorf("can't encode inputEncryptedFileBigUploaded#2dc173c8 as nil")
		tl_input_encrypted_file_gen.go#L645: 		return fmt.Errorf("can't encode inputEncryptedFileBigUploaded#2dc173c8 as nil")
		tl_input_encrypted_file_gen.go#L656: 		return fmt.Errorf("can't decode inputEncryptedFileBigUploaded#2dc173c8 to nil")
		tl_input_encrypted_file_gen.go#L659: 		return fmt.Errorf("unable to decode inputEncryptedFileBigUploaded#2dc173c8: %w", err)
		tl_input_encrypted_file_gen.go#L667: 		return fmt.Errorf("can't decode inputEncryptedFileBigUploaded#2dc173c8 to nil")
		tl_input_encrypted_file_gen.go#L672: 			return fmt.Errorf("unable to decode inputEncryptedFileBigUploaded#2dc173c8: field id: %w", err)
		tl_input_encrypted_file_gen.go#L679: 			return fmt.Errorf("unable to decode inputEncryptedFileBigUploaded#2dc173c8: field parts: %w", err)
		tl_input_encrypted_file_gen.go#L686: 			return fmt.Errorf("unable to decode inputEncryptedFileBigUploaded#2dc173c8: field key_fingerprint: %w", err)
		tl_input_encrypted_file_gen.go#L826: 			return nil, fmt.Errorf("unable to decode InputEncryptedFileClass: %w", err)
		tl_input_encrypted_file_gen.go#L833: 			return nil, fmt.Errorf("unable to decode InputEncryptedFileClass: %w", err)
		tl_input_encrypted_file_gen.go#L840: 			return nil, fmt.Errorf("unable to decode InputEncryptedFileClass: %w", err)
		tl_input_encrypted_file_gen.go#L847: 			return nil, fmt.Errorf("unable to decode InputEncryptedFileClass: %w", err)
		tl_input_encrypted_file_gen.go#L851: 		return nil, fmt.Errorf("unable to decode InputEncryptedFileClass: %w", bin.NewUnexpectedID(id))
		tl_input_encrypted_file_gen.go#L863: 		return fmt.Errorf("unable to decode InputEncryptedFileBox to nil")
		tl_input_encrypted_file_gen.go#L867: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_input_encrypted_file_gen.go#L876: 		return fmt.Errorf("unable to encode InputEncryptedFileClass as nil")
		tl_input_file_gen.go#L160: 		return fmt.Errorf("can't encode inputFile#f52ff27f as nil")
		tl_input_file_gen.go#L169: 		return fmt.Errorf("can't encode inputFile#f52ff27f as nil")
		tl_input_file_gen.go#L181: 		return fmt.Errorf("can't decode inputFile#f52ff27f to nil")
		tl_input_file_gen.go#L184: 		return fmt.Errorf("unable to decode inputFile#f52ff27f: %w", err)
		tl_input_file_gen.go#L192: 		return fmt.Errorf("can't decode inputFile#f52ff27f to nil")
		tl_input_file_gen.go#L197: 			return fmt.Errorf("unable to decode inputFile#f52ff27f: field id: %w", err)
		tl_input_file_gen.go#L204: 			return fmt.Errorf("unable to decode inputFile#f52ff27f: field parts: %w", err)
		tl_input_file_gen.go#L211: 			return fmt.Errorf("unable to decode inputFile#f52ff27f: field name: %w", err)
		tl_input_file_gen.go#L218: 			return fmt.Errorf("unable to decode inputFile#f52ff27f: field md5_checksum: %w", err)
		tl_input_file_gen.go#L369: 		return fmt.Errorf("can't encode inputFileBig#fa4f0bb5 as nil")
		tl_input_file_gen.go#L378: 		return fmt.Errorf("can't encode inputFileBig#fa4f0bb5 as nil")
		tl_input_file_gen.go#L389: 		return fmt.Errorf("can't decode inputFileBig#fa4f0bb5 to nil")
		tl_input_file_gen.go#L392: 		return fmt.Errorf("unable to decode inputFileBig#fa4f0bb5: %w", err)
		tl_input_file_gen.go#L400: 		return fmt.Errorf("can't decode inputFileBig#fa4f0bb5 to nil")
		tl_input_file_gen.go#L405: 			return fmt.Errorf("unable to decode inputFileBig#fa4f0bb5: field id: %w", err)
		tl_input_file_gen.go#L412: 			return fmt.Errorf("unable to decode inputFileBig#fa4f0bb5: field parts: %w", err)
		tl_input_file_gen.go#L419: 			return fmt.Errorf("unable to decode inputFileBig#fa4f0bb5: field name: %w", err)
		tl_input_file_gen.go#L507: 			return nil, fmt.Errorf("unable to decode InputFileClass: %w", err)
		tl_input_file_gen.go#L514: 			return nil, fmt.Errorf("unable to decode InputFileClass: %w", err)
		tl_input_file_gen.go#L518: 		return nil, fmt.Errorf("unable to decode InputFileClass: %w", bin.NewUnexpectedID(id))
		tl_input_file_gen.go#L530: 		return fmt.Errorf("unable to decode InputFileBox to nil")
		tl_input_file_gen.go#L534: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_input_file_gen.go#L543: 		return fmt.Errorf("unable to encode InputFileClass as nil")
		tl_input_file_location_gen.go#L156: 		return fmt.Errorf("can't encode inputFileLocation#dfdaabe1 as nil")
		tl_input_file_location_gen.go#L165: 		return fmt.Errorf("can't encode inputFileLocation#dfdaabe1 as nil")
		tl_input_file_location_gen.go#L177: 		return fmt.Errorf("can't decode inputFileLocation#dfdaabe1 to nil")
		tl_input_file_location_gen.go#L180: 		return fmt.Errorf("unable to decode inputFileLocation#dfdaabe1: %w", err)
		tl_input_file_location_gen.go#L188: 		return fmt.Errorf("can't decode inputFileLocation#dfdaabe1 to nil")
		tl_input_file_location_gen.go#L193: 			return fmt.Errorf("unable to decode inputFileLocation#dfdaabe1: field volume_id: %w", err)
		tl_input_file_location_gen.go#L200: 			return fmt.Errorf("unable to decode inputFileLocation#dfdaabe1: field local_id: %w", err)
		tl_input_file_location_gen.go#L207: 			return fmt.Errorf("unable to decode inputFileLocation#dfdaabe1: field secret: %w", err)
		tl_input_file_location_gen.go#L214: 			return fmt.Errorf("unable to decode inputFileLocation#dfdaabe1: field file_reference: %w", err)
		tl_input_file_location_gen.go#L356: 		return fmt.Errorf("can't encode inputEncryptedFileLocation#f5235d55 as nil")
		tl_input_file_location_gen.go#L365: 		return fmt.Errorf("can't encode inputEncryptedFileLocation#f5235d55 as nil")
		tl_input_file_location_gen.go#L375: 		return fmt.Errorf("can't decode inputEncryptedFileLocation#f5235d55 to nil")
		tl_input_file_location_gen.go#L378: 		return fmt.Errorf("unable to decode inputEncryptedFileLocation#f5235d55: %w", err)
		tl_input_file_location_gen.go#L386: 		return fmt.Errorf("can't decode inputEncryptedFileLocation#f5235d55 to nil")
		tl_input_file_location_gen.go#L391: 			return fmt.Errorf("unable to decode inputEncryptedFileLocation#f5235d55: field id: %w", err)
		tl_input_file_location_gen.go#L398: 			return fmt.Errorf("unable to decode inputEncryptedFileLocation#f5235d55: field access_hash: %w", err)
		tl_input_file_location_gen.go#L546: 		return fmt.Errorf("can't encode inputDocumentFileLocation#bad07584 as nil")
		tl_input_file_location_gen.go#L555: 		return fmt.Errorf("can't encode inputDocumentFileLocation#bad07584 as nil")
		tl_input_file_location_gen.go#L567: 		return fmt.Errorf("can't decode inputDocumentFileLocation#bad07584 to nil")
		tl_input_file_location_gen.go#L570: 		return fmt.Errorf("unable to decode inputDocumentFileLocation#bad07584: %w", err)
		tl_input_file_location_gen.go#L578: 		return fmt.Errorf("can't decode inputDocumentFileLocation#bad07584 to nil")
		tl_input_file_location_gen.go#L583: 			return fmt.Errorf("unable to decode inputDocumentFileLocation#bad07584: field id: %w", err)
		tl_input_file_location_gen.go#L590: 			return fmt.Errorf("unable to decode inputDocumentFileLocation#bad07584: field access_hash: %w", err)
		tl_input_file_location_gen.go#L597: 			return fmt.Errorf("unable to decode inputDocumentFileLocation#bad07584: field file_reference: %w", err)
		tl_input_file_location_gen.go#L604: 			return fmt.Errorf("unable to decode inputDocumentFileLocation#bad07584: field thumb_size: %w", err)
		tl_input_file_location_gen.go#L749: 		return fmt.Errorf("can't encode inputSecureFileLocation#cbc7ee28 as nil")
		tl_input_file_location_gen.go#L758: 		return fmt.Errorf("can't encode inputSecureFileLocation#cbc7ee28 as nil")
		tl_input_file_location_gen.go#L768: 		return fmt.Errorf("can't decode inputSecureFileLocation#cbc7ee28 to nil")
		tl_input_file_location_gen.go#L771: 		return fmt.Errorf("unable to decode inputSecureFileLocation#cbc7ee28: %w", err)
		tl_input_file_location_gen.go#L779: 		return fmt.Errorf("can't decode inputSecureFileLocation#cbc7ee28 to nil")
		tl_input_file_location_gen.go#L784: 			return fmt.Errorf("unable to decode inputSecureFileLocation#cbc7ee28: field id: %w", err)
		tl_input_file_location_gen.go#L791: 			return fmt.Errorf("unable to decode inputSecureFileLocation#cbc7ee28: field access_hash: %w", err)
		tl_input_file_location_gen.go#L889: 		return fmt.Errorf("can't encode inputTakeoutFileLocation#29be5899 as nil")
		tl_input_file_location_gen.go#L898: 		return fmt.Errorf("can't encode inputTakeoutFileLocation#29be5899 as nil")
		tl_input_file_location_gen.go#L906: 		return fmt.Errorf("can't decode inputTakeoutFileLocation#29be5899 to nil")
		tl_input_file_location_gen.go#L909: 		return fmt.Errorf("unable to decode inputTakeoutFileLocation#29be5899: %w", err)
		tl_input_file_location_gen.go#L917: 		return fmt.Errorf("can't decode inputTakeoutFileLocation#29be5899 to nil")
		tl_input_file_location_gen.go#L1058: 		return fmt.Errorf("can't encode inputPhotoFileLocation#40181ffe as nil")
		tl_input_file_location_gen.go#L1067: 		return fmt.Errorf("can't encode inputPhotoFileLocation#40181ffe as nil")
		tl_input_file_location_gen.go#L1079: 		return fmt.Errorf("can't decode inputPhotoFileLocation#40181ffe to nil")
		tl_input_file_location_gen.go#L1082: 		return fmt.Errorf("unable to decode inputPhotoFileLocation#40181ffe: %w", err)
		tl_input_file_location_gen.go#L1090: 		return fmt.Errorf("can't decode inputPhotoFileLocation#40181ffe to nil")
		tl_input_file_location_gen.go#L1095: 			return fmt.Errorf("unable to decode inputPhotoFileLocation#40181ffe: field id: %w", err)
		tl_input_file_location_gen.go#L1102: 			return fmt.Errorf("unable to decode inputPhotoFileLocation#40181ffe: field access_hash: %w", err)
		tl_input_file_location_gen.go#L1109: 			return fmt.Errorf("unable to decode inputPhotoFileLocation#40181ffe: field file_reference: %w", err)
		tl_input_file_location_gen.go#L1116: 			return fmt.Errorf("unable to decode inputPhotoFileLocation#40181ffe: field thumb_size: %w", err)
		tl_input_file_location_gen.go#L1296: 		return fmt.Errorf("can't encode inputPhotoLegacyFileLocation#d83466f3 as nil")
		tl_input_file_location_gen.go#L1305: 		return fmt.Errorf("can't encode inputPhotoLegacyFileLocation#d83466f3 as nil")
		tl_input_file_location_gen.go#L1319: 		return fmt.Errorf("can't decode inputPhotoLegacyFileLocation#d83466f3 to nil")
		tl_input_file_location_gen.go#L1322: 		return fmt.Errorf("unable to decode inputPhotoLegacyFileLocation#d83466f3: %w", err)
		tl_input_file_location_gen.go#L1330: 		return fmt.Errorf("can't decode inputPhotoLegacyFileLocation#d83466f3 to nil")
		tl_input_file_location_gen.go#L1335: 			return fmt.Errorf("unable to decode inputPhotoLegacyFileLocation#d83466f3: field id: %w", err)
		tl_input_file_location_gen.go#L1342: 			return fmt.Errorf("unable to decode inputPhotoLegacyFileLocation#d83466f3: field access_hash: %w", err)
		tl_input_file_location_gen.go#L1349: 			return fmt.Errorf("unable to decode inputPhotoLegacyFileLocation#d83466f3: field file_reference: %w", err)
		tl_input_file_location_gen.go#L1356: 			return fmt.Errorf("unable to decode inputPhotoLegacyFileLocation#d83466f3: field volume_id: %w", err)
		tl_input_file_location_gen.go#L1363: 			return fmt.Errorf("unable to decode inputPhotoLegacyFileLocation#d83466f3: field local_id: %w", err)
		tl_input_file_location_gen.go#L1370: 			return fmt.Errorf("unable to decode inputPhotoLegacyFileLocation#d83466f3: field secret: %w", err)
		tl_input_file_location_gen.go#L1549: 		return fmt.Errorf("can't encode inputPeerPhotoFileLocation#37257e99 as nil")
		tl_input_file_location_gen.go#L1558: 		return fmt.Errorf("can't encode inputPeerPhotoFileLocation#37257e99 as nil")
		tl_input_file_location_gen.go#L1562: 		return fmt.Errorf("unable to encode inputPeerPhotoFileLocation#37257e99: field flags: %w", err)
		tl_input_file_location_gen.go#L1565: 		return fmt.Errorf("unable to encode inputPeerPhotoFileLocation#37257e99: field peer is nil")
		tl_input_file_location_gen.go#L1568: 		return fmt.Errorf("unable to encode inputPeerPhotoFileLocation#37257e99: field peer: %w", err)
		tl_input_file_location_gen.go#L1577: 		return fmt.Errorf("can't decode inputPeerPhotoFileLocation#37257e99 to nil")
		tl_input_file_location_gen.go#L1580: 		return fmt.Errorf("unable to decode inputPeerPhotoFileLocation#37257e99: %w", err)
		tl_input_file_location_gen.go#L1588: 		return fmt.Errorf("can't decode inputPeerPhotoFileLocation#37257e99 to nil")
		tl_input_file_location_gen.go#L1592: 			return fmt.Errorf("unable to decode inputPeerPhotoFileLocation#37257e99: field flags: %w", err)
		tl_input_file_location_gen.go#L1599: 			return fmt.Errorf("unable to decode inputPeerPhotoFileLocation#37257e99: field peer: %w", err)
		tl_input_file_location_gen.go#L1606: 			return fmt.Errorf("unable to decode inputPeerPhotoFileLocation#37257e99: field photo_id: %w", err)
		tl_input_file_location_gen.go#L1748: 		return fmt.Errorf("can't encode inputStickerSetThumb#9d84f3db as nil")
		tl_input_file_location_gen.go#L1757: 		return fmt.Errorf("can't encode inputStickerSetThumb#9d84f3db as nil")
		tl_input_file_location_gen.go#L1760: 		return fmt.Errorf("unable to encode inputStickerSetThumb#9d84f3db: field stickerset is nil")
		tl_input_file_location_gen.go#L1763: 		return fmt.Errorf("unable to encode inputStickerSetThumb#9d84f3db: field stickerset: %w", err)
		tl_input_file_location_gen.go#L1772: 		return fmt.Errorf("can't decode inputStickerSetThumb#9d84f3db to nil")
		tl_input_file_location_gen.go#L1775: 		return fmt.Errorf("unable to decode inputStickerSetThumb#9d84f3db: %w", err)
		tl_input_file_location_gen.go#L1783: 		return fmt.Errorf("can't decode inputStickerSetThumb#9d84f3db to nil")
		tl_input_file_location_gen.go#L1788: 			return fmt.Errorf("unable to decode inputStickerSetThumb#9d84f3db: field stickerset: %w", err)
		tl_input_file_location_gen.go#L1795: 			return fmt.Errorf("unable to decode inputStickerSetThumb#9d84f3db: field thumb_version: %w", err)
		tl_input_file_location_gen.go#L1979: 		return fmt.Errorf("can't encode inputGroupCallStream#598a92a as nil")
		tl_input_file_location_gen.go#L1988: 		return fmt.Errorf("can't encode inputGroupCallStream#598a92a as nil")
		tl_input_file_location_gen.go#L1992: 		return fmt.Errorf("unable to encode inputGroupCallStream#598a92a: field flags: %w", err)
		tl_input_file_location_gen.go#L1995: 		return fmt.Errorf("unable to encode inputGroupCallStream#598a92a: field call: %w", err)
		tl_input_file_location_gen.go#L2011: 		return fmt.Errorf("can't decode inputGroupCallStream#598a92a to nil")
		tl_input_file_location_gen.go#L2014: 		return fmt.Errorf("unable to decode inputGroupCallStream#598a92a: %w", err)
		tl_input_file_location_gen.go#L2022: 		return fmt.Errorf("can't decode inputGroupCallStream#598a92a to nil")
		tl_input_file_location_gen.go#L2026: 			return fmt.Errorf("unable to decode inputGroupCallStream#598a92a: field flags: %w", err)
		tl_input_file_location_gen.go#L2031: 			return fmt.Errorf("unable to decode inputGroupCallStream#598a92a: field call: %w", err)
		tl_input_file_location_gen.go#L2037: 			return fmt.Errorf("unable to decode inputGroupCallStream#598a92a: field time_ms: %w", err)
		tl_input_file_location_gen.go#L2044: 			return fmt.Errorf("unable to decode inputGroupCallStream#598a92a: field scale: %w", err)
		tl_input_file_location_gen.go#L2051: 			return fmt.Errorf("unable to decode inputGroupCallStream#598a92a: field video_channel: %w", err)
		tl_input_file_location_gen.go#L2058: 			return fmt.Errorf("unable to decode inputGroupCallStream#598a92a: field video_quality: %w", err)
		tl_input_file_location_gen.go#L2256: 		return fmt.Errorf("can't encode inputPeerPhotoFileLocationLegacy#27d69997 as nil")
		tl_input_file_location_gen.go#L2265: 		return fmt.Errorf("can't encode inputPeerPhotoFileLocationLegacy#27d69997 as nil")
		tl_input_file_location_gen.go#L2269: 		return fmt.Errorf("unable to encode inputPeerPhotoFileLocationLegacy#27d69997: field flags: %w", err)
		tl_input_file_location_gen.go#L2272: 		return fmt.Errorf("unable to encode inputPeerPhotoFileLocationLegacy#27d69997: field peer is nil")
		tl_input_file_location_gen.go#L2275: 		return fmt.Errorf("unable to encode inputPeerPhotoFileLocationLegacy#27d69997: field peer: %w", err)
		tl_input_file_location_gen.go#L2285: 		return fmt.Errorf("can't decode inputPeerPhotoFileLocationLegacy#27d69997 to nil")
		tl_input_file_location_gen.go#L2288: 		return fmt.Errorf("unable to decode inputPeerPhotoFileLocationLegacy#27d69997: %w", err)
		tl_input_file_location_gen.go#L2296: 		return fmt.Errorf("can't decode inputPeerPhotoFileLocationLegacy#27d69997 to nil")
		tl_input_file_location_gen.go#L2300: 			return fmt.Errorf("unable to decode inputPeerPhotoFileLocationLegacy#27d69997: field flags: %w", err)
		tl_input_file_location_gen.go#L2307: 			return fmt.Errorf("unable to decode inputPeerPhotoFileLocationLegacy#27d69997: field peer: %w", err)
		tl_input_file_location_gen.go#L2314: 			return fmt.Errorf("unable to decode inputPeerPhotoFileLocationLegacy#27d69997: field volume_id: %w", err)
		tl_input_file_location_gen.go#L2321: 			return fmt.Errorf("unable to decode inputPeerPhotoFileLocationLegacy#27d69997: field local_id: %w", err)
		tl_input_file_location_gen.go#L2478: 		return fmt.Errorf("can't encode inputStickerSetThumbLegacy#dbaeae9 as nil")
		tl_input_file_location_gen.go#L2487: 		return fmt.Errorf("can't encode inputStickerSetThumbLegacy#dbaeae9 as nil")
		tl_input_file_location_gen.go#L2490: 		return fmt.Errorf("unable to encode inputStickerSetThumbLegacy#dbaeae9: field stickerset is nil")
		tl_input_file_location_gen.go#L2493: 		return fmt.Errorf("unable to encode inputStickerSetThumbLegacy#dbaeae9: field stickerset: %w", err)
		tl_input_file_location_gen.go#L2503: 		return fmt.Errorf("can't decode inputStickerSetThumbLegacy#dbaeae9 to nil")
		tl_input_file_location_gen.go#L2506: 		return fmt.Errorf("unable to decode inputStickerSetThumbLegacy#dbaeae9: %w", err)
		tl_input_file_location_gen.go#L2514: 		return fmt.Errorf("can't decode inputStickerSetThumbLegacy#dbaeae9 to nil")
		tl_input_file_location_gen.go#L2519: 			return fmt.Errorf("unable to decode inputStickerSetThumbLegacy#dbaeae9: field stickerset: %w", err)
		tl_input_file_location_gen.go#L2526: 			return fmt.Errorf("unable to decode inputStickerSetThumbLegacy#dbaeae9: field volume_id: %w", err)
		tl_input_file_location_gen.go#L2533: 			return fmt.Errorf("unable to decode inputStickerSetThumbLegacy#dbaeae9: field local_id: %w", err)
		tl_input_file_location_gen.go#L2622: 			return nil, fmt.Errorf("unable to decode InputFileLocationClass: %w", err)
		tl_input_file_location_gen.go#L2629: 			return nil, fmt.Errorf("unable to decode InputFileLocationClass: %w", err)
		tl_input_file_location_gen.go#L2636: 			return nil, fmt.Errorf("unable to decode InputFileLocationClass: %w", err)
		tl_input_file_location_gen.go#L2643: 			return nil, fmt.Errorf("unable to decode InputFileLocationClass: %w", err)
		tl_input_file_location_gen.go#L2650: 			return nil, fmt.Errorf("unable to decode InputFileLocationClass: %w", err)
		tl_input_file_location_gen.go#L2657: 			return nil, fmt.Errorf("unable to decode InputFileLocationClass: %w", err)
		tl_input_file_location_gen.go#L2664: 			return nil, fmt.Errorf("unable to decode InputFileLocationClass: %w", err)
		tl_input_file_location_gen.go#L2671: 			return nil, fmt.Errorf("unable to decode InputFileLocationClass: %w", err)
		tl_input_file_location_gen.go#L2678: 			return nil, fmt.Errorf("unable to decode InputFileLocationClass: %w", err)
		tl_input_file_location_gen.go#L2685: 			return nil, fmt.Errorf("unable to decode InputFileLocationClass: %w", err)
		tl_input_file_location_gen.go#L2692: 			return nil, fmt.Errorf("unable to decode InputFileLocationClass: %w", err)
		tl_input_file_location_gen.go#L2699: 			return nil, fmt.Errorf("unable to decode InputFileLocationClass: %w", err)
		tl_input_file_location_gen.go#L2703: 		return nil, fmt.Errorf("unable to decode InputFileLocationClass: %w", bin.NewUnexpectedID(id))
		tl_input_file_location_gen.go#L2715: 		return fmt.Errorf("unable to decode InputFileLocationBox to nil")
		tl_input_file_location_gen.go#L2719: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_input_file_location_gen.go#L2728: 		return fmt.Errorf("unable to encode InputFileLocationClass as nil")
		tl_input_folder_peer_gen.go#L129: 		return fmt.Errorf("can't encode inputFolderPeer#fbd2c296 as nil")
		tl_input_folder_peer_gen.go#L138: 		return fmt.Errorf("can't encode inputFolderPeer#fbd2c296 as nil")
		tl_input_folder_peer_gen.go#L141: 		return fmt.Errorf("unable to encode inputFolderPeer#fbd2c296: field peer is nil")
		tl_input_folder_peer_gen.go#L144: 		return fmt.Errorf("unable to encode inputFolderPeer#fbd2c296: field peer: %w", err)
		tl_input_folder_peer_gen.go#L153: 		return fmt.Errorf("can't decode inputFolderPeer#fbd2c296 to nil")
		tl_input_folder_peer_gen.go#L156: 		return fmt.Errorf("unable to decode inputFolderPeer#fbd2c296: %w", err)
		tl_input_folder_peer_gen.go#L164: 		return fmt.Errorf("can't decode inputFolderPeer#fbd2c296 to nil")
		tl_input_folder_peer_gen.go#L169: 			return fmt.Errorf("unable to decode inputFolderPeer#fbd2c296: field peer: %w", err)
		tl_input_folder_peer_gen.go#L176: 			return fmt.Errorf("unable to decode inputFolderPeer#fbd2c296: field folder_id: %w", err)
		tl_input_game_gen.go#L137: 		return fmt.Errorf("can't encode inputGameID#32c3e77 as nil")
		tl_input_game_gen.go#L146: 		return fmt.Errorf("can't encode inputGameID#32c3e77 as nil")
		tl_input_game_gen.go#L156: 		return fmt.Errorf("can't decode inputGameID#32c3e77 to nil")
		tl_input_game_gen.go#L159: 		return fmt.Errorf("unable to decode inputGameID#32c3e77: %w", err)
		tl_input_game_gen.go#L167: 		return fmt.Errorf("can't decode inputGameID#32c3e77 to nil")
		tl_input_game_gen.go#L172: 			return fmt.Errorf("unable to decode inputGameID#32c3e77: field id: %w", err)
		tl_input_game_gen.go#L179: 			return fmt.Errorf("unable to decode inputGameID#32c3e77: field access_hash: %w", err)
		tl_input_game_gen.go#L302: 		return fmt.Errorf("can't encode inputGameShortName#c331e80a as nil")
		tl_input_game_gen.go#L311: 		return fmt.Errorf("can't encode inputGameShortName#c331e80a as nil")
		tl_input_game_gen.go#L314: 		return fmt.Errorf("unable to encode inputGameShortName#c331e80a: field bot_id is nil")
		tl_input_game_gen.go#L317: 		return fmt.Errorf("unable to encode inputGameShortName#c331e80a: field bot_id: %w", err)
		tl_input_game_gen.go#L326: 		return fmt.Errorf("can't decode inputGameShortName#c331e80a to nil")
		tl_input_game_gen.go#L329: 		return fmt.Errorf("unable to decode inputGameShortName#c331e80a: %w", err)
		tl_input_game_gen.go#L337: 		return fmt.Errorf("can't decode inputGameShortName#c331e80a to nil")
		tl_input_game_gen.go#L342: 			return fmt.Errorf("unable to decode inputGameShortName#c331e80a: field bot_id: %w", err)
		tl_input_game_gen.go#L349: 			return fmt.Errorf("unable to decode inputGameShortName#c331e80a: field short_name: %w", err)
		tl_input_game_gen.go#L420: 			return nil, fmt.Errorf("unable to decode InputGameClass: %w", err)
		tl_input_game_gen.go#L427: 			return nil, fmt.Errorf("unable to decode InputGameClass: %w", err)
		tl_input_game_gen.go#L431: 		return nil, fmt.Errorf("unable to decode InputGameClass: %w", bin.NewUnexpectedID(id))
		tl_input_game_gen.go#L443: 		return fmt.Errorf("unable to decode InputGameBox to nil")
		tl_input_game_gen.go#L447: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_input_game_gen.go#L456: 		return fmt.Errorf("unable to encode InputGameClass as nil")
		tl_input_geo_point_gen.go#L103: 		return fmt.Errorf("can't encode inputGeoPointEmpty#e4c123d6 as nil")
		tl_input_geo_point_gen.go#L112: 		return fmt.Errorf("can't encode inputGeoPointEmpty#e4c123d6 as nil")
		tl_input_geo_point_gen.go#L120: 		return fmt.Errorf("can't decode inputGeoPointEmpty#e4c123d6 to nil")
		tl_input_geo_point_gen.go#L123: 		return fmt.Errorf("unable to decode inputGeoPointEmpty#e4c123d6: %w", err)
		tl_input_geo_point_gen.go#L131: 		return fmt.Errorf("can't decode inputGeoPointEmpty#e4c123d6 to nil")
		tl_input_geo_point_gen.go#L265: 		return fmt.Errorf("can't encode inputGeoPoint#48222faf as nil")
		tl_input_geo_point_gen.go#L274: 		return fmt.Errorf("can't encode inputGeoPoint#48222faf as nil")
		tl_input_geo_point_gen.go#L278: 		return fmt.Errorf("unable to encode inputGeoPoint#48222faf: field flags: %w", err)
		tl_input_geo_point_gen.go#L291: 		return fmt.Errorf("can't decode inputGeoPoint#48222faf to nil")
		tl_input_geo_point_gen.go#L294: 		return fmt.Errorf("unable to decode inputGeoPoint#48222faf: %w", err)
		tl_input_geo_point_gen.go#L302: 		return fmt.Errorf("can't decode inputGeoPoint#48222faf to nil")
		tl_input_geo_point_gen.go#L306: 			return fmt.Errorf("unable to decode inputGeoPoint#48222faf: field flags: %w", err)
		tl_input_geo_point_gen.go#L312: 			return fmt.Errorf("unable to decode inputGeoPoint#48222faf: field lat: %w", err)
		tl_input_geo_point_gen.go#L319: 			return fmt.Errorf("unable to decode inputGeoPoint#48222faf: field long: %w", err)
		tl_input_geo_point_gen.go#L326: 			return fmt.Errorf("unable to decode inputGeoPoint#48222faf: field accuracy_radius: %w", err)
		tl_input_geo_point_gen.go#L428: 			return nil, fmt.Errorf("unable to decode InputGeoPointClass: %w", err)
		tl_input_geo_point_gen.go#L435: 			return nil, fmt.Errorf("unable to decode InputGeoPointClass: %w", err)
		tl_input_geo_point_gen.go#L439: 		return nil, fmt.Errorf("unable to decode InputGeoPointClass: %w", bin.NewUnexpectedID(id))
		tl_input_geo_point_gen.go#L451: 		return fmt.Errorf("unable to decode InputGeoPointBox to nil")
		tl_input_geo_point_gen.go#L455: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_input_geo_point_gen.go#L464: 		return fmt.Errorf("unable to encode InputGeoPointClass as nil")
		tl_input_group_call_gen.go#L126: 		return fmt.Errorf("can't encode inputGroupCall#d8aa840f as nil")
		tl_input_group_call_gen.go#L135: 		return fmt.Errorf("can't encode inputGroupCall#d8aa840f as nil")
		tl_input_group_call_gen.go#L145: 		return fmt.Errorf("can't decode inputGroupCall#d8aa840f to nil")
		tl_input_group_call_gen.go#L148: 		return fmt.Errorf("unable to decode inputGroupCall#d8aa840f: %w", err)
		tl_input_group_call_gen.go#L156: 		return fmt.Errorf("can't decode inputGroupCall#d8aa840f to nil")
		tl_input_group_call_gen.go#L161: 			return fmt.Errorf("unable to decode inputGroupCall#d8aa840f: field id: %w", err)
		tl_input_group_call_gen.go#L168: 			return fmt.Errorf("unable to decode inputGroupCall#d8aa840f: field access_hash: %w", err)
		tl_input_invoice_gen.go#L134: 		return fmt.Errorf("can't encode inputInvoiceMessage#c5b56859 as nil")
		tl_input_invoice_gen.go#L143: 		return fmt.Errorf("can't encode inputInvoiceMessage#c5b56859 as nil")
		tl_input_invoice_gen.go#L146: 		return fmt.Errorf("unable to encode inputInvoiceMessage#c5b56859: field peer is nil")
		tl_input_invoice_gen.go#L149: 		return fmt.Errorf("unable to encode inputInvoiceMessage#c5b56859: field peer: %w", err)
		tl_input_invoice_gen.go#L158: 		return fmt.Errorf("can't decode inputInvoiceMessage#c5b56859 to nil")
		tl_input_invoice_gen.go#L161: 		return fmt.Errorf("unable to decode inputInvoiceMessage#c5b56859: %w", err)
		tl_input_invoice_gen.go#L169: 		return fmt.Errorf("can't decode inputInvoiceMessage#c5b56859 to nil")
		tl_input_invoice_gen.go#L174: 			return fmt.Errorf("unable to decode inputInvoiceMessage#c5b56859: field peer: %w", err)
		tl_input_invoice_gen.go#L181: 			return fmt.Errorf("unable to decode inputInvoiceMessage#c5b56859: field msg_id: %w", err)
		tl_input_invoice_gen.go#L295: 		return fmt.Errorf("can't encode inputInvoiceSlug#c326caef as nil")
		tl_input_invoice_gen.go#L304: 		return fmt.Errorf("can't encode inputInvoiceSlug#c326caef as nil")
		tl_input_invoice_gen.go#L313: 		return fmt.Errorf("can't decode inputInvoiceSlug#c326caef to nil")
		tl_input_invoice_gen.go#L316: 		return fmt.Errorf("unable to decode inputInvoiceSlug#c326caef: %w", err)
		tl_input_invoice_gen.go#L324: 		return fmt.Errorf("can't decode inputInvoiceSlug#c326caef to nil")
		tl_input_invoice_gen.go#L329: 			return fmt.Errorf("unable to decode inputInvoiceSlug#c326caef: field slug: %w", err)
		tl_input_invoice_gen.go#L459: 		return fmt.Errorf("can't encode inputInvoicePremiumGiftCode#98986c0d as nil")
		tl_input_invoice_gen.go#L468: 		return fmt.Errorf("can't encode inputInvoicePremiumGiftCode#98986c0d as nil")
		tl_input_invoice_gen.go#L471: 		return fmt.Errorf("unable to encode inputInvoicePremiumGiftCode#98986c0d: field purpose is nil")
		tl_input_invoice_gen.go#L474: 		return fmt.Errorf("unable to encode inputInvoicePremiumGiftCode#98986c0d: field purpose: %w", err)
		tl_input_invoice_gen.go#L477: 		return fmt.Errorf("unable to encode inputInvoicePremiumGiftCode#98986c0d: field option: %w", err)
		tl_input_invoice_gen.go#L485: 		return fmt.Errorf("can't decode inputInvoicePremiumGiftCode#98986c0d to nil")
		tl_input_invoice_gen.go#L488: 		return fmt.Errorf("unable to decode inputInvoicePremiumGiftCode#98986c0d: %w", err)
		tl_input_invoice_gen.go#L496: 		return fmt.Errorf("can't decode inputInvoicePremiumGiftCode#98986c0d to nil")
		tl_input_invoice_gen.go#L501: 			return fmt.Errorf("unable to decode inputInvoicePremiumGiftCode#98986c0d: field purpose: %w", err)
		tl_input_invoice_gen.go#L507: 			return fmt.Errorf("unable to decode inputInvoicePremiumGiftCode#98986c0d: field option: %w", err)
		tl_input_invoice_gen.go#L578: 			return nil, fmt.Errorf("unable to decode InputInvoiceClass: %w", err)
		tl_input_invoice_gen.go#L585: 			return nil, fmt.Errorf("unable to decode InputInvoiceClass: %w", err)
		tl_input_invoice_gen.go#L592: 			return nil, fmt.Errorf("unable to decode InputInvoiceClass: %w", err)
		tl_input_invoice_gen.go#L596: 		return nil, fmt.Errorf("unable to decode InputInvoiceClass: %w", bin.NewUnexpectedID(id))
		tl_input_invoice_gen.go#L608: 		return fmt.Errorf("unable to decode InputInvoiceBox to nil")
		tl_input_invoice_gen.go#L612: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_input_invoice_gen.go#L621: 		return fmt.Errorf("unable to encode InputInvoiceClass as nil")
		tl_input_media_gen.go#L103: 		return fmt.Errorf("can't encode inputMediaEmpty#9664f57f as nil")
		tl_input_media_gen.go#L112: 		return fmt.Errorf("can't encode inputMediaEmpty#9664f57f as nil")
		tl_input_media_gen.go#L120: 		return fmt.Errorf("can't decode inputMediaEmpty#9664f57f to nil")
		tl_input_media_gen.go#L123: 		return fmt.Errorf("unable to decode inputMediaEmpty#9664f57f: %w", err)
		tl_input_media_gen.go#L131: 		return fmt.Errorf("can't decode inputMediaEmpty#9664f57f to nil")
		tl_input_media_gen.go#L292: 		return fmt.Errorf("can't encode inputMediaUploadedPhoto#1e287d04 as nil")
		tl_input_media_gen.go#L301: 		return fmt.Errorf("can't encode inputMediaUploadedPhoto#1e287d04 as nil")
		tl_input_media_gen.go#L305: 		return fmt.Errorf("unable to encode inputMediaUploadedPhoto#1e287d04: field flags: %w", err)
		tl_input_media_gen.go#L308: 		return fmt.Errorf("unable to encode inputMediaUploadedPhoto#1e287d04: field file is nil")
		tl_input_media_gen.go#L311: 		return fmt.Errorf("unable to encode inputMediaUploadedPhoto#1e287d04: field file: %w", err)
		tl_input_media_gen.go#L317: 				return fmt.Errorf("unable to encode inputMediaUploadedPhoto#1e287d04: field stickers element with index %d is nil", idx)
		tl_input_media_gen.go#L320: 				return fmt.Errorf("unable to encode inputMediaUploadedPhoto#1e287d04: field stickers element with index %d: %w", idx, err)
		tl_input_media_gen.go#L333: 		return fmt.Errorf("can't decode inputMediaUploadedPhoto#1e287d04 to nil")
		tl_input_media_gen.go#L336: 		return fmt.Errorf("unable to decode inputMediaUploadedPhoto#1e287d04: %w", err)
		tl_input_media_gen.go#L344: 		return fmt.Errorf("can't decode inputMediaUploadedPhoto#1e287d04 to nil")
		tl_input_media_gen.go#L348: 			return fmt.Errorf("unable to decode inputMediaUploadedPhoto#1e287d04: field flags: %w", err)
		tl_input_media_gen.go#L355: 			return fmt.Errorf("unable to decode inputMediaUploadedPhoto#1e287d04: field file: %w", err)
		tl_input_media_gen.go#L362: 			return fmt.Errorf("unable to decode inputMediaUploadedPhoto#1e287d04: field stickers: %w", err)
		tl_input_media_gen.go#L371: 				return fmt.Errorf("unable to decode inputMediaUploadedPhoto#1e287d04: field stickers: %w", err)
		tl_input_media_gen.go#L379: 			return fmt.Errorf("unable to decode inputMediaUploadedPhoto#1e287d04: field ttl_seconds: %w", err)
		tl_input_media_gen.go#L590: 		return fmt.Errorf("can't encode inputMediaPhoto#b3ba0635 as nil")
		tl_input_media_gen.go#L599: 		return fmt.Errorf("can't encode inputMediaPhoto#b3ba0635 as nil")
		tl_input_media_gen.go#L603: 		return fmt.Errorf("unable to encode inputMediaPhoto#b3ba0635: field flags: %w", err)
		tl_input_media_gen.go#L606: 		return fmt.Errorf("unable to encode inputMediaPhoto#b3ba0635: field id is nil")
		tl_input_media_gen.go#L609: 		return fmt.Errorf("unable to encode inputMediaPhoto#b3ba0635: field id: %w", err)
		tl_input_media_gen.go#L620: 		return fmt.Errorf("can't decode inputMediaPhoto#b3ba0635 to nil")
		tl_input_media_gen.go#L623: 		return fmt.Errorf("unable to decode inputMediaPhoto#b3ba0635: %w", err)
		tl_input_media_gen.go#L631: 		return fmt.Errorf("can't decode inputMediaPhoto#b3ba0635 to nil")
		tl_input_media_gen.go#L635: 			return fmt.Errorf("unable to decode inputMediaPhoto#b3ba0635: field flags: %w", err)
		tl_input_media_gen.go#L642: 			return fmt.Errorf("unable to decode inputMediaPhoto#b3ba0635: field id: %w", err)
		tl_input_media_gen.go#L649: 			return fmt.Errorf("unable to decode inputMediaPhoto#b3ba0635: field ttl_seconds: %w", err)
		tl_input_media_gen.go#L787: 		return fmt.Errorf("can't encode inputMediaGeoPoint#f9c44144 as nil")
		tl_input_media_gen.go#L796: 		return fmt.Errorf("can't encode inputMediaGeoPoint#f9c44144 as nil")
		tl_input_media_gen.go#L799: 		return fmt.Errorf("unable to encode inputMediaGeoPoint#f9c44144: field geo_point is nil")
		tl_input_media_gen.go#L802: 		return fmt.Errorf("unable to encode inputMediaGeoPoint#f9c44144: field geo_point: %w", err)
		tl_input_media_gen.go#L810: 		return fmt.Errorf("can't decode inputMediaGeoPoint#f9c44144 to nil")
		tl_input_media_gen.go#L813: 		return fmt.Errorf("unable to decode inputMediaGeoPoint#f9c44144: %w", err)
		tl_input_media_gen.go#L821: 		return fmt.Errorf("can't decode inputMediaGeoPoint#f9c44144 to nil")
		tl_input_media_gen.go#L826: 			return fmt.Errorf("unable to decode inputMediaGeoPoint#f9c44144: field geo_point: %w", err)
		tl_input_media_gen.go#L960: 		return fmt.Errorf("can't encode inputMediaContact#f8ab7dfb as nil")
		tl_input_media_gen.go#L969: 		return fmt.Errorf("can't encode inputMediaContact#f8ab7dfb as nil")
		tl_input_media_gen.go#L981: 		return fmt.Errorf("can't decode inputMediaContact#f8ab7dfb to nil")
		tl_input_media_gen.go#L984: 		return fmt.Errorf("unable to decode inputMediaContact#f8ab7dfb: %w", err)
		tl_input_media_gen.go#L992: 		return fmt.Errorf("can't decode inputMediaContact#f8ab7dfb to nil")
		tl_input_media_gen.go#L997: 			return fmt.Errorf("unable to decode inputMediaContact#f8ab7dfb: field phone_number: %w", err)
		tl_input_media_gen.go#L1004: 			return fmt.Errorf("unable to decode inputMediaContact#f8ab7dfb: field first_name: %w", err)
		tl_input_media_gen.go#L1011: 			return fmt.Errorf("unable to decode inputMediaContact#f8ab7dfb: field last_name: %w", err)
		tl_input_media_gen.go#L1018: 			return fmt.Errorf("unable to decode inputMediaContact#f8ab7dfb: field vcard: %w", err)
		tl_input_media_gen.go#L1286: 		return fmt.Errorf("can't encode inputMediaUploadedDocument#5b38c6c1 as nil")
		tl_input_media_gen.go#L1295: 		return fmt.Errorf("can't encode inputMediaUploadedDocument#5b38c6c1 as nil")
		tl_input_media_gen.go#L1299: 		return fmt.Errorf("unable to encode inputMediaUploadedDocument#5b38c6c1: field flags: %w", err)
		tl_input_media_gen.go#L1302: 		return fmt.Errorf("unable to encode inputMediaUploadedDocument#5b38c6c1: field file is nil")
		tl_input_media_gen.go#L1305: 		return fmt.Errorf("unable to encode inputMediaUploadedDocument#5b38c6c1: field file: %w", err)
		tl_input_media_gen.go#L1309: 			return fmt.Errorf("unable to encode inputMediaUploadedDocument#5b38c6c1: field thumb is nil")
		tl_input_media_gen.go#L1312: 			return fmt.Errorf("unable to encode inputMediaUploadedDocument#5b38c6c1: field thumb: %w", err)
		tl_input_media_gen.go#L1319: 			return fmt.Errorf("unable to encode inputMediaUploadedDocument#5b38c6c1: field attributes element with index %d is nil", idx)
		tl_input_media_gen.go#L1322: 			return fmt.Errorf("unable to encode inputMediaUploadedDocument#5b38c6c1: field attributes element with index %d: %w", idx, err)
		tl_input_media_gen.go#L1329: 				return fmt.Errorf("unable to encode inputMediaUploadedDocument#5b38c6c1: field stickers element with index %d is nil", idx)
		tl_input_media_gen.go#L1332: 				return fmt.Errorf("unable to encode inputMediaUploadedDocument#5b38c6c1: field stickers element with index %d: %w", idx, err)
		tl_input_media_gen.go#L1345: 		return fmt.Errorf("can't decode inputMediaUploadedDocument#5b38c6c1 to nil")
		tl_input_media_gen.go#L1348: 		return fmt.Errorf("unable to decode inputMediaUploadedDocument#5b38c6c1: %w", err)
		tl_input_media_gen.go#L1356: 		return fmt.Errorf("can't decode inputMediaUploadedDocument#5b38c6c1 to nil")
		tl_input_media_gen.go#L1360: 			return fmt.Errorf("unable to decode inputMediaUploadedDocument#5b38c6c1: field flags: %w", err)
		tl_input_media_gen.go#L1369: 			return fmt.Errorf("unable to decode inputMediaUploadedDocument#5b38c6c1: field file: %w", err)
		tl_input_media_gen.go#L1376: 			return fmt.Errorf("unable to decode inputMediaUploadedDocument#5b38c6c1: field thumb: %w", err)
		tl_input_media_gen.go#L1383: 			return fmt.Errorf("unable to decode inputMediaUploadedDocument#5b38c6c1: field mime_type: %w", err)
		tl_input_media_gen.go#L1390: 			return fmt.Errorf("unable to decode inputMediaUploadedDocument#5b38c6c1: field attributes: %w", err)
		tl_input_media_gen.go#L1399: 				return fmt.Errorf("unable to decode inputMediaUploadedDocument#5b38c6c1: field attributes: %w", err)
		tl_input_media_gen.go#L1407: 			return fmt.Errorf("unable to decode inputMediaUploadedDocument#5b38c6c1: field stickers: %w", err)
		tl_input_media_gen.go#L1416: 				return fmt.Errorf("unable to decode inputMediaUploadedDocument#5b38c6c1: field stickers: %w", err)
		tl_input_media_gen.go#L1424: 			return fmt.Errorf("unable to decode inputMediaUploadedDocument#5b38c6c1: field ttl_seconds: %w", err)
		tl_input_media_gen.go#L1733: 		return fmt.Errorf("can't encode inputMediaDocument#33473058 as nil")
		tl_input_media_gen.go#L1742: 		return fmt.Errorf("can't encode inputMediaDocument#33473058 as nil")
		tl_input_media_gen.go#L1746: 		return fmt.Errorf("unable to encode inputMediaDocument#33473058: field flags: %w", err)
		tl_input_media_gen.go#L1749: 		return fmt.Errorf("unable to encode inputMediaDocument#33473058: field id is nil")
		tl_input_media_gen.go#L1752: 		return fmt.Errorf("unable to encode inputMediaDocument#33473058: field id: %w", err)
		tl_input_media_gen.go#L1766: 		return fmt.Errorf("can't decode inputMediaDocument#33473058 to nil")
		tl_input_media_gen.go#L1769: 		return fmt.Errorf("unable to decode inputMediaDocument#33473058: %w", err)
		tl_input_media_gen.go#L1777: 		return fmt.Errorf("can't decode inputMediaDocument#33473058 to nil")
		tl_input_media_gen.go#L1781: 			return fmt.Errorf("unable to decode inputMediaDocument#33473058: field flags: %w", err)
		tl_input_media_gen.go#L1788: 			return fmt.Errorf("unable to decode inputMediaDocument#33473058: field id: %w", err)
		tl_input_media_gen.go#L1795: 			return fmt.Errorf("unable to decode inputMediaDocument#33473058: field ttl_seconds: %w", err)
		tl_input_media_gen.go#L1802: 			return fmt.Errorf("unable to decode inputMediaDocument#33473058: field query: %w", err)
		tl_input_media_gen.go#L2014: 		return fmt.Errorf("can't encode inputMediaVenue#c13d1c11 as nil")
		tl_input_media_gen.go#L2023: 		return fmt.Errorf("can't encode inputMediaVenue#c13d1c11 as nil")
		tl_input_media_gen.go#L2026: 		return fmt.Errorf("unable to encode inputMediaVenue#c13d1c11: field geo_point is nil")
		tl_input_media_gen.go#L2029: 		return fmt.Errorf("unable to encode inputMediaVenue#c13d1c11: field geo_point: %w", err)
		tl_input_media_gen.go#L2042: 		return fmt.Errorf("can't decode inputMediaVenue#c13d1c11 to nil")
		tl_input_media_gen.go#L2045: 		return fmt.Errorf("unable to decode inputMediaVenue#c13d1c11: %w", err)
		tl_input_media_gen.go#L2053: 		return fmt.Errorf("can't decode inputMediaVenue#c13d1c11 to nil")
		tl_input_media_gen.go#L2058: 			return fmt.Errorf("unable to decode inputMediaVenue#c13d1c11: field geo_point: %w", err)
		tl_input_media_gen.go#L2065: 			return fmt.Errorf("unable to decode inputMediaVenue#c13d1c11: field title: %w", err)
		tl_input_media_gen.go#L2072: 			return fmt.Errorf("unable to decode inputMediaVenue#c13d1c11: field address: %w", err)
		tl_input_media_gen.go#L2079: 			return fmt.Errorf("unable to decode inputMediaVenue#c13d1c11: field provider: %w", err)
		tl_input_media_gen.go#L2086: 			return fmt.Errorf("unable to decode inputMediaVenue#c13d1c11: field venue_id: %w", err)
		tl_input_media_gen.go#L2093: 			return fmt.Errorf("unable to decode inputMediaVenue#c13d1c11: field venue_type: %w", err)
		tl_input_media_gen.go#L2281: 		return fmt.Errorf("can't encode inputMediaPhotoExternal#e5bbfe1a as nil")
		tl_input_media_gen.go#L2290: 		return fmt.Errorf("can't encode inputMediaPhotoExternal#e5bbfe1a as nil")
		tl_input_media_gen.go#L2294: 		return fmt.Errorf("unable to encode inputMediaPhotoExternal#e5bbfe1a: field flags: %w", err)
		tl_input_media_gen.go#L2306: 		return fmt.Errorf("can't decode inputMediaPhotoExternal#e5bbfe1a to nil")
		tl_input_media_gen.go#L2309: 		return fmt.Errorf("unable to decode inputMediaPhotoExternal#e5bbfe1a: %w", err)
		tl_input_media_gen.go#L2317: 		return fmt.Errorf("can't decode inputMediaPhotoExternal#e5bbfe1a to nil")
		tl_input_media_gen.go#L2321: 			return fmt.Errorf("unable to decode inputMediaPhotoExternal#e5bbfe1a: field flags: %w", err)
		tl_input_media_gen.go#L2328: 			return fmt.Errorf("unable to decode inputMediaPhotoExternal#e5bbfe1a: field url: %w", err)
		tl_input_media_gen.go#L2335: 			return fmt.Errorf("unable to decode inputMediaPhotoExternal#e5bbfe1a: field ttl_seconds: %w", err)
		tl_input_media_gen.go#L2520: 		return fmt.Errorf("can't encode inputMediaDocumentExternal#fb52dc99 as nil")
		tl_input_media_gen.go#L2529: 		return fmt.Errorf("can't encode inputMediaDocumentExternal#fb52dc99 as nil")
		tl_input_media_gen.go#L2533: 		return fmt.Errorf("unable to encode inputMediaDocumentExternal#fb52dc99: field flags: %w", err)
		tl_input_media_gen.go#L2545: 		return fmt.Errorf("can't decode inputMediaDocumentExternal#fb52dc99 to nil")
		tl_input_media_gen.go#L2548: 		return fmt.Errorf("unable to decode inputMediaDocumentExternal#fb52dc99: %w", err)
		tl_input_media_gen.go#L2556: 		return fmt.Errorf("can't decode inputMediaDocumentExternal#fb52dc99 to nil")
		tl_input_media_gen.go#L2560: 			return fmt.Errorf("unable to decode inputMediaDocumentExternal#fb52dc99: field flags: %w", err)
		tl_input_media_gen.go#L2567: 			return fmt.Errorf("unable to decode inputMediaDocumentExternal#fb52dc99: field url: %w", err)
		tl_input_media_gen.go#L2574: 			return fmt.Errorf("unable to decode inputMediaDocumentExternal#fb52dc99: field ttl_seconds: %w", err)
		tl_input_media_gen.go#L2712: 		return fmt.Errorf("can't encode inputMediaGame#d33f43f3 as nil")
		tl_input_media_gen.go#L2721: 		return fmt.Errorf("can't encode inputMediaGame#d33f43f3 as nil")
		tl_input_media_gen.go#L2724: 		return fmt.Errorf("unable to encode inputMediaGame#d33f43f3: field id is nil")
		tl_input_media_gen.go#L2727: 		return fmt.Errorf("unable to encode inputMediaGame#d33f43f3: field id: %w", err)
		tl_input_media_gen.go#L2735: 		return fmt.Errorf("can't decode inputMediaGame#d33f43f3 to nil")
		tl_input_media_gen.go#L2738: 		return fmt.Errorf("unable to decode inputMediaGame#d33f43f3: %w", err)
		tl_input_media_gen.go#L2746: 		return fmt.Errorf("can't decode inputMediaGame#d33f43f3 to nil")
		tl_input_media_gen.go#L2751: 			return fmt.Errorf("unable to decode inputMediaGame#d33f43f3: field id: %w", err)
		tl_input_media_gen.go#L2996: 		return fmt.Errorf("can't encode inputMediaInvoice#8eb5a6d5 as nil")
		tl_input_media_gen.go#L3005: 		return fmt.Errorf("can't encode inputMediaInvoice#8eb5a6d5 as nil")
		tl_input_media_gen.go#L3009: 		return fmt.Errorf("unable to encode inputMediaInvoice#8eb5a6d5: field flags: %w", err)
		tl_input_media_gen.go#L3015: 			return fmt.Errorf("unable to encode inputMediaInvoice#8eb5a6d5: field photo: %w", err)
		tl_input_media_gen.go#L3019: 		return fmt.Errorf("unable to encode inputMediaInvoice#8eb5a6d5: field invoice: %w", err)
		tl_input_media_gen.go#L3024: 		return fmt.Errorf("unable to encode inputMediaInvoice#8eb5a6d5: field provider_data: %w", err)
		tl_input_media_gen.go#L3031: 			return fmt.Errorf("unable to encode inputMediaInvoice#8eb5a6d5: field extended_media is nil")
		tl_input_media_gen.go#L3034: 			return fmt.Errorf("unable to encode inputMediaInvoice#8eb5a6d5: field extended_media: %w", err)
		tl_input_media_gen.go#L3043: 		return fmt.Errorf("can't decode inputMediaInvoice#8eb5a6d5 to nil")
		tl_input_media_gen.go#L3046: 		return fmt.Errorf("unable to decode inputMediaInvoice#8eb5a6d5: %w", err)
		tl_input_media_gen.go#L3054: 		return fmt.Errorf("can't decode inputMediaInvoice#8eb5a6d5 to nil")
		tl_input_media_gen.go#L3058: 			return fmt.Errorf("unable to decode inputMediaInvoice#8eb5a6d5: field flags: %w", err)
		tl_input_media_gen.go#L3064: 			return fmt.Errorf("unable to decode inputMediaInvoice#8eb5a6d5: field title: %w", err)
		tl_input_media_gen.go#L3071: 			return fmt.Errorf("unable to decode inputMediaInvoice#8eb5a6d5: field description: %w", err)
		tl_input_media_gen.go#L3077: 			return fmt.Errorf("unable to decode inputMediaInvoice#8eb5a6d5: field photo: %w", err)
		tl_input_media_gen.go#L3082: 			return fmt.Errorf("unable to decode inputMediaInvoice#8eb5a6d5: field invoice: %w", err)
		tl_input_media_gen.go#L3088: 			return fmt.Errorf("unable to decode inputMediaInvoice#8eb5a6d5: field payload: %w", err)
		tl_input_media_gen.go#L3095: 			return fmt.Errorf("unable to decode inputMediaInvoice#8eb5a6d5: field provider: %w", err)
		tl_input_media_gen.go#L3101: 			return fmt.Errorf("unable to decode inputMediaInvoice#8eb5a6d5: field provider_data: %w", err)
		tl_input_media_gen.go#L3107: 			return fmt.Errorf("unable to decode inputMediaInvoice#8eb5a6d5: field start_param: %w", err)
		tl_input_media_gen.go#L3114: 			return fmt.Errorf("unable to decode inputMediaInvoice#8eb5a6d5: field extended_media: %w", err)
		tl_input_media_gen.go#L3406: 		return fmt.Errorf("can't encode inputMediaGeoLive#971fa843 as nil")
		tl_input_media_gen.go#L3415: 		return fmt.Errorf("can't encode inputMediaGeoLive#971fa843 as nil")
		tl_input_media_gen.go#L3419: 		return fmt.Errorf("unable to encode inputMediaGeoLive#971fa843: field flags: %w", err)
		tl_input_media_gen.go#L3422: 		return fmt.Errorf("unable to encode inputMediaGeoLive#971fa843: field geo_point is nil")
		tl_input_media_gen.go#L3425: 		return fmt.Errorf("unable to encode inputMediaGeoLive#971fa843: field geo_point: %w", err)
		tl_input_media_gen.go#L3442: 		return fmt.Errorf("can't decode inputMediaGeoLive#971fa843 to nil")
		tl_input_media_gen.go#L3445: 		return fmt.Errorf("unable to decode inputMediaGeoLive#971fa843: %w", err)
		tl_input_media_gen.go#L3453: 		return fmt.Errorf("can't decode inputMediaGeoLive#971fa843 to nil")
		tl_input_media_gen.go#L3457: 			return fmt.Errorf("unable to decode inputMediaGeoLive#971fa843: field flags: %w", err)
		tl_input_media_gen.go#L3464: 			return fmt.Errorf("unable to decode inputMediaGeoLive#971fa843: field geo_point: %w", err)
		tl_input_media_gen.go#L3471: 			return fmt.Errorf("unable to decode inputMediaGeoLive#971fa843: field heading: %w", err)
		tl_input_media_gen.go#L3478: 			return fmt.Errorf("unable to decode inputMediaGeoLive#971fa843: field period: %w", err)
		tl_input_media_gen.go#L3485: 			return fmt.Errorf("unable to decode inputMediaGeoLive#971fa843: field proximity_notification_radius: %w", err)
		tl_input_media_gen.go#L3734: 		return fmt.Errorf("can't encode inputMediaPoll#f94e5f1 as nil")
		tl_input_media_gen.go#L3743: 		return fmt.Errorf("can't encode inputMediaPoll#f94e5f1 as nil")
		tl_input_media_gen.go#L3747: 		return fmt.Errorf("unable to encode inputMediaPoll#f94e5f1: field flags: %w", err)
		tl_input_media_gen.go#L3750: 		return fmt.Errorf("unable to encode inputMediaPoll#f94e5f1: field poll: %w", err)
		tl_input_media_gen.go#L3765: 				return fmt.Errorf("unable to encode inputMediaPoll#f94e5f1: field solution_entities element with index %d is nil", idx)
		tl_input_media_gen.go#L3768: 				return fmt.Errorf("unable to encode inputMediaPoll#f94e5f1: field solution_entities element with index %d: %w", idx, err)
		tl_input_media_gen.go#L3778: 		return fmt.Errorf("can't decode inputMediaPoll#f94e5f1 to nil")
		tl_input_media_gen.go#L3781: 		return fmt.Errorf("unable to decode inputMediaPoll#f94e5f1: %w", err)
		tl_input_media_gen.go#L3789: 		return fmt.Errorf("can't decode inputMediaPoll#f94e5f1 to nil")
		tl_input_media_gen.go#L3793: 			return fmt.Errorf("unable to decode inputMediaPoll#f94e5f1: field flags: %w", err)
		tl_input_media_gen.go#L3798: 			return fmt.Errorf("unable to decode inputMediaPoll#f94e5f1: field poll: %w", err)
		tl_input_media_gen.go#L3804: 			return fmt.Errorf("unable to decode inputMediaPoll#f94e5f1: field correct_answers: %w", err)
		tl_input_media_gen.go#L3813: 				return fmt.Errorf("unable to decode inputMediaPoll#f94e5f1: field correct_answers: %w", err)
		tl_input_media_gen.go#L3821: 			return fmt.Errorf("unable to decode inputMediaPoll#f94e5f1: field solution: %w", err)
		tl_input_media_gen.go#L3828: 			return fmt.Errorf("unable to decode inputMediaPoll#f94e5f1: field solution_entities: %w", err)
		tl_input_media_gen.go#L3837: 				return fmt.Errorf("unable to decode inputMediaPoll#f94e5f1: field solution_entities: %w", err)
		tl_input_media_gen.go#L4004: 		return fmt.Errorf("can't encode inputMediaDice#e66fbf7b as nil")
		tl_input_media_gen.go#L4013: 		return fmt.Errorf("can't encode inputMediaDice#e66fbf7b as nil")
		tl_input_media_gen.go#L4022: 		return fmt.Errorf("can't decode inputMediaDice#e66fbf7b to nil")
		tl_input_media_gen.go#L4025: 		return fmt.Errorf("unable to decode inputMediaDice#e66fbf7b: %w", err)
		tl_input_media_gen.go#L4033: 		return fmt.Errorf("can't decode inputMediaDice#e66fbf7b to nil")
		tl_input_media_gen.go#L4038: 			return fmt.Errorf("unable to decode inputMediaDice#e66fbf7b: field emoticon: %w", err)
		tl_input_media_gen.go#L4150: 		return fmt.Errorf("can't encode inputMediaStory#89fdd778 as nil")
		tl_input_media_gen.go#L4159: 		return fmt.Errorf("can't encode inputMediaStory#89fdd778 as nil")
		tl_input_media_gen.go#L4162: 		return fmt.Errorf("unable to encode inputMediaStory#89fdd778: field peer is nil")
		tl_input_media_gen.go#L4165: 		return fmt.Errorf("unable to encode inputMediaStory#89fdd778: field peer: %w", err)
		tl_input_media_gen.go#L4174: 		return fmt.Errorf("can't decode inputMediaStory#89fdd778 to nil")
		tl_input_media_gen.go#L4177: 		return fmt.Errorf("unable to decode inputMediaStory#89fdd778: %w", err)
		tl_input_media_gen.go#L4185: 		return fmt.Errorf("can't decode inputMediaStory#89fdd778 to nil")
		tl_input_media_gen.go#L4190: 			return fmt.Errorf("unable to decode inputMediaStory#89fdd778: field peer: %w", err)
		tl_input_media_gen.go#L4197: 			return fmt.Errorf("unable to decode inputMediaStory#89fdd778: field id: %w", err)
		tl_input_media_gen.go#L4367: 		return fmt.Errorf("can't encode inputMediaWebPage#c21b8849 as nil")
		tl_input_media_gen.go#L4376: 		return fmt.Errorf("can't encode inputMediaWebPage#c21b8849 as nil")
		tl_input_media_gen.go#L4380: 		return fmt.Errorf("unable to encode inputMediaWebPage#c21b8849: field flags: %w", err)
		tl_input_media_gen.go#L4389: 		return fmt.Errorf("can't decode inputMediaWebPage#c21b8849 to nil")
		tl_input_media_gen.go#L4392: 		return fmt.Errorf("unable to decode inputMediaWebPage#c21b8849: %w", err)
		tl_input_media_gen.go#L4400: 		return fmt.Errorf("can't decode inputMediaWebPage#c21b8849 to nil")
		tl_input_media_gen.go#L4404: 			return fmt.Errorf("unable to decode inputMediaWebPage#c21b8849: field flags: %w", err)
		tl_input_media_gen.go#L4413: 			return fmt.Errorf("unable to decode inputMediaWebPage#c21b8849: field url: %w", err)
		tl_input_media_gen.go#L4548: 			return nil, fmt.Errorf("unable to decode InputMediaClass: %w", err)
		tl_input_media_gen.go#L4555: 			return nil, fmt.Errorf("unable to decode InputMediaClass: %w", err)
		tl_input_media_gen.go#L4562: 			return nil, fmt.Errorf("unable to decode InputMediaClass: %w", err)
		tl_input_media_gen.go#L4569: 			return nil, fmt.Errorf("unable to decode InputMediaClass: %w", err)
		tl_input_media_gen.go#L4576: 			return nil, fmt.Errorf("unable to decode InputMediaClass: %w", err)
		tl_input_media_gen.go#L4583: 			return nil, fmt.Errorf("unable to decode InputMediaClass: %w", err)
		tl_input_media_gen.go#L4590: 			return nil, fmt.Errorf("unable to decode InputMediaClass: %w", err)
		tl_input_media_gen.go#L4597: 			return nil, fmt.Errorf("unable to decode InputMediaClass: %w", err)
		tl_input_media_gen.go#L4604: 			return nil, fmt.Errorf("unable to decode InputMediaClass: %w", err)
		tl_input_media_gen.go#L4611: 			return nil, fmt.Errorf("unable to decode InputMediaClass: %w", err)
		tl_input_media_gen.go#L4618: 			return nil, fmt.Errorf("unable to decode InputMediaClass: %w", err)
		tl_input_media_gen.go#L4625: 			return nil, fmt.Errorf("unable to decode InputMediaClass: %w", err)
		tl_input_media_gen.go#L4632: 			return nil, fmt.Errorf("unable to decode InputMediaClass: %w", err)
		tl_input_media_gen.go#L4639: 			return nil, fmt.Errorf("unable to decode InputMediaClass: %w", err)
		tl_input_media_gen.go#L4646: 			return nil, fmt.Errorf("unable to decode InputMediaClass: %w", err)
		tl_input_media_gen.go#L4653: 			return nil, fmt.Errorf("unable to decode InputMediaClass: %w", err)
		tl_input_media_gen.go#L4660: 			return nil, fmt.Errorf("unable to decode InputMediaClass: %w", err)
		tl_input_media_gen.go#L4664: 		return nil, fmt.Errorf("unable to decode InputMediaClass: %w", bin.NewUnexpectedID(id))
		tl_input_media_gen.go#L4676: 		return fmt.Errorf("unable to decode InputMediaBox to nil")
		tl_input_media_gen.go#L4680: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_input_media_gen.go#L4689: 		return fmt.Errorf("unable to encode InputMediaClass as nil")
		tl_input_message_gen.go#L120: 		return fmt.Errorf("can't encode inputMessageID#a676a322 as nil")
		tl_input_message_gen.go#L129: 		return fmt.Errorf("can't encode inputMessageID#a676a322 as nil")
		tl_input_message_gen.go#L138: 		return fmt.Errorf("can't decode inputMessageID#a676a322 to nil")
		tl_input_message_gen.go#L141: 		return fmt.Errorf("unable to decode inputMessageID#a676a322: %w", err)
		tl_input_message_gen.go#L149: 		return fmt.Errorf("can't decode inputMessageID#a676a322 to nil")
		tl_input_message_gen.go#L154: 			return fmt.Errorf("unable to decode inputMessageID#a676a322: field id: %w", err)
		tl_input_message_gen.go#L255: 		return fmt.Errorf("can't encode inputMessageReplyTo#bad88395 as nil")
		tl_input_message_gen.go#L264: 		return fmt.Errorf("can't encode inputMessageReplyTo#bad88395 as nil")
		tl_input_message_gen.go#L273: 		return fmt.Errorf("can't decode inputMessageReplyTo#bad88395 to nil")
		tl_input_message_gen.go#L276: 		return fmt.Errorf("unable to decode inputMessageReplyTo#bad88395: %w", err)
		tl_input_message_gen.go#L284: 		return fmt.Errorf("can't decode inputMessageReplyTo#bad88395 to nil")
		tl_input_message_gen.go#L289: 			return fmt.Errorf("unable to decode inputMessageReplyTo#bad88395: field id: %w", err)
		tl_input_message_gen.go#L373: 		return fmt.Errorf("can't encode inputMessagePinned#86872538 as nil")
		tl_input_message_gen.go#L382: 		return fmt.Errorf("can't encode inputMessagePinned#86872538 as nil")
		tl_input_message_gen.go#L390: 		return fmt.Errorf("can't decode inputMessagePinned#86872538 to nil")
		tl_input_message_gen.go#L393: 		return fmt.Errorf("unable to decode inputMessagePinned#86872538: %w", err)
		tl_input_message_gen.go#L401: 		return fmt.Errorf("can't decode inputMessagePinned#86872538 to nil")
		tl_input_message_gen.go#L504: 		return fmt.Errorf("can't encode inputMessageCallbackQuery#acfa1a7e as nil")
		tl_input_message_gen.go#L513: 		return fmt.Errorf("can't encode inputMessageCallbackQuery#acfa1a7e as nil")
		tl_input_message_gen.go#L523: 		return fmt.Errorf("can't decode inputMessageCallbackQuery#acfa1a7e to nil")
		tl_input_message_gen.go#L526: 		return fmt.Errorf("unable to decode inputMessageCallbackQuery#acfa1a7e: %w", err)
		tl_input_message_gen.go#L534: 		return fmt.Errorf("can't decode inputMessageCallbackQuery#acfa1a7e to nil")
		tl_input_message_gen.go#L539: 			return fmt.Errorf("unable to decode inputMessageCallbackQuery#acfa1a7e: field id: %w", err)
		tl_input_message_gen.go#L546: 			return fmt.Errorf("unable to decode inputMessageCallbackQuery#acfa1a7e: field query_id: %w", err)
		tl_input_message_gen.go#L619: 			return nil, fmt.Errorf("unable to decode InputMessageClass: %w", err)
		tl_input_message_gen.go#L626: 			return nil, fmt.Errorf("unable to decode InputMessageClass: %w", err)
		tl_input_message_gen.go#L633: 			return nil, fmt.Errorf("unable to decode InputMessageClass: %w", err)
		tl_input_message_gen.go#L640: 			return nil, fmt.Errorf("unable to decode InputMessageClass: %w", err)
		tl_input_message_gen.go#L644: 		return nil, fmt.Errorf("unable to decode InputMessageClass: %w", bin.NewUnexpectedID(id))
		tl_input_message_gen.go#L656: 		return fmt.Errorf("unable to decode InputMessageBox to nil")
		tl_input_message_gen.go#L660: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_input_message_gen.go#L669: 		return fmt.Errorf("unable to encode InputMessageClass as nil")
		tl_input_notify_peer_gen.go#L120: 		return fmt.Errorf("can't encode inputNotifyPeer#b8bc5b0c as nil")
		tl_input_notify_peer_gen.go#L129: 		return fmt.Errorf("can't encode inputNotifyPeer#b8bc5b0c as nil")
		tl_input_notify_peer_gen.go#L132: 		return fmt.Errorf("unable to encode inputNotifyPeer#b8bc5b0c: field peer is nil")
		tl_input_notify_peer_gen.go#L135: 		return fmt.Errorf("unable to encode inputNotifyPeer#b8bc5b0c: field peer: %w", err)
		tl_input_notify_peer_gen.go#L143: 		return fmt.Errorf("can't decode inputNotifyPeer#b8bc5b0c to nil")
		tl_input_notify_peer_gen.go#L146: 		return fmt.Errorf("unable to decode inputNotifyPeer#b8bc5b0c: %w", err)
		tl_input_notify_peer_gen.go#L154: 		return fmt.Errorf("can't decode inputNotifyPeer#b8bc5b0c to nil")
		tl_input_notify_peer_gen.go#L159: 			return fmt.Errorf("unable to decode inputNotifyPeer#b8bc5b0c: field peer: %w", err)
		tl_input_notify_peer_gen.go#L243: 		return fmt.Errorf("can't encode inputNotifyUsers#193b4417 as nil")
		tl_input_notify_peer_gen.go#L252: 		return fmt.Errorf("can't encode inputNotifyUsers#193b4417 as nil")
		tl_input_notify_peer_gen.go#L260: 		return fmt.Errorf("can't decode inputNotifyUsers#193b4417 to nil")
		tl_input_notify_peer_gen.go#L263: 		return fmt.Errorf("unable to decode inputNotifyUsers#193b4417: %w", err)
		tl_input_notify_peer_gen.go#L271: 		return fmt.Errorf("can't decode inputNotifyUsers#193b4417 to nil")
		tl_input_notify_peer_gen.go#L345: 		return fmt.Errorf("can't encode inputNotifyChats#4a95e84e as nil")
		tl_input_notify_peer_gen.go#L354: 		return fmt.Errorf("can't encode inputNotifyChats#4a95e84e as nil")
		tl_input_notify_peer_gen.go#L362: 		return fmt.Errorf("can't decode inputNotifyChats#4a95e84e to nil")
		tl_input_notify_peer_gen.go#L365: 		return fmt.Errorf("unable to decode inputNotifyChats#4a95e84e: %w", err)
		tl_input_notify_peer_gen.go#L373: 		return fmt.Errorf("can't decode inputNotifyChats#4a95e84e to nil")
		tl_input_notify_peer_gen.go#L450: 		return fmt.Errorf("can't encode inputNotifyBroadcasts#b1db7c7e as nil")
		tl_input_notify_peer_gen.go#L459: 		return fmt.Errorf("can't encode inputNotifyBroadcasts#b1db7c7e as nil")
		tl_input_notify_peer_gen.go#L467: 		return fmt.Errorf("can't decode inputNotifyBroadcasts#b1db7c7e to nil")
		tl_input_notify_peer_gen.go#L470: 		return fmt.Errorf("unable to decode inputNotifyBroadcasts#b1db7c7e: %w", err)
		tl_input_notify_peer_gen.go#L478: 		return fmt.Errorf("can't decode inputNotifyBroadcasts#b1db7c7e to nil")
		tl_input_notify_peer_gen.go#L587: 		return fmt.Errorf("can't encode inputNotifyForumTopic#5c467992 as nil")
		tl_input_notify_peer_gen.go#L596: 		return fmt.Errorf("can't encode inputNotifyForumTopic#5c467992 as nil")
		tl_input_notify_peer_gen.go#L599: 		return fmt.Errorf("unable to encode inputNotifyForumTopic#5c467992: field peer is nil")
		tl_input_notify_peer_gen.go#L602: 		return fmt.Errorf("unable to encode inputNotifyForumTopic#5c467992: field peer: %w", err)
		tl_input_notify_peer_gen.go#L611: 		return fmt.Errorf("can't decode inputNotifyForumTopic#5c467992 to nil")
		tl_input_notify_peer_gen.go#L614: 		return fmt.Errorf("unable to decode inputNotifyForumTopic#5c467992: %w", err)
		tl_input_notify_peer_gen.go#L622: 		return fmt.Errorf("can't decode inputNotifyForumTopic#5c467992 to nil")
		tl_input_notify_peer_gen.go#L627: 			return fmt.Errorf("unable to decode inputNotifyForumTopic#5c467992: field peer: %w", err)
		tl_input_notify_peer_gen.go#L634: 			return fmt.Errorf("unable to decode inputNotifyForumTopic#5c467992: field top_msg_id: %w", err)
		tl_input_notify_peer_gen.go#L708: 			return nil, fmt.Errorf("unable to decode InputNotifyPeerClass: %w", err)
		tl_input_notify_peer_gen.go#L715: 			return nil, fmt.Errorf("unable to decode InputNotifyPeerClass: %w", err)
		tl_input_notify_peer_gen.go#L722: 			return nil, fmt.Errorf("unable to decode InputNotifyPeerClass: %w", err)
		tl_input_notify_peer_gen.go#L729: 			return nil, fmt.Errorf("unable to decode InputNotifyPeerClass: %w", err)
		tl_input_notify_peer_gen.go#L736: 			return nil, fmt.Errorf("unable to decode InputNotifyPeerClass: %w", err)
		tl_input_notify_peer_gen.go#L740: 		return nil, fmt.Errorf("unable to decode InputNotifyPeerClass: %w", bin.NewUnexpectedID(id))
		tl_input_notify_peer_gen.go#L752: 		return fmt.Errorf("unable to decode InputNotifyPeerBox to nil")
		tl_input_notify_peer_gen.go#L756: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_input_notify_peer_gen.go#L765: 		return fmt.Errorf("unable to encode InputNotifyPeerClass as nil")
		tl_input_payment_credentials_gen.go#L131: 		return fmt.Errorf("can't encode inputPaymentCredentialsSaved#c10eb2cf as nil")
		tl_input_payment_credentials_gen.go#L140: 		return fmt.Errorf("can't encode inputPaymentCredentialsSaved#c10eb2cf as nil")
		tl_input_payment_credentials_gen.go#L150: 		return fmt.Errorf("can't decode inputPaymentCredentialsSaved#c10eb2cf to nil")
		tl_input_payment_credentials_gen.go#L153: 		return fmt.Errorf("unable to decode inputPaymentCredentialsSaved#c10eb2cf: %w", err)
		tl_input_payment_credentials_gen.go#L161: 		return fmt.Errorf("can't decode inputPaymentCredentialsSaved#c10eb2cf to nil")
		tl_input_payment_credentials_gen.go#L166: 			return fmt.Errorf("unable to decode inputPaymentCredentialsSaved#c10eb2cf: field id: %w", err)
		tl_input_payment_credentials_gen.go#L173: 			return fmt.Errorf("unable to decode inputPaymentCredentialsSaved#c10eb2cf: field tmp_password: %w", err)
		tl_input_payment_credentials_gen.go#L309: 		return fmt.Errorf("can't encode inputPaymentCredentials#3417d728 as nil")
		tl_input_payment_credentials_gen.go#L318: 		return fmt.Errorf("can't encode inputPaymentCredentials#3417d728 as nil")
		tl_input_payment_credentials_gen.go#L322: 		return fmt.Errorf("unable to encode inputPaymentCredentials#3417d728: field flags: %w", err)
		tl_input_payment_credentials_gen.go#L325: 		return fmt.Errorf("unable to encode inputPaymentCredentials#3417d728: field data: %w", err)
		tl_input_payment_credentials_gen.go#L333: 		return fmt.Errorf("can't decode inputPaymentCredentials#3417d728 to nil")
		tl_input_payment_credentials_gen.go#L336: 		return fmt.Errorf("unable to decode inputPaymentCredentials#3417d728: %w", err)
		tl_input_payment_credentials_gen.go#L344: 		return fmt.Errorf("can't decode inputPaymentCredentials#3417d728 to nil")
		tl_input_payment_credentials_gen.go#L348: 			return fmt.Errorf("unable to decode inputPaymentCredentials#3417d728: field flags: %w", err)
		tl_input_payment_credentials_gen.go#L354: 			return fmt.Errorf("unable to decode inputPaymentCredentials#3417d728: field data: %w", err)
		tl_input_payment_credentials_gen.go#L473: 		return fmt.Errorf("can't encode inputPaymentCredentialsApplePay#aa1c39f as nil")
		tl_input_payment_credentials_gen.go#L482: 		return fmt.Errorf("can't encode inputPaymentCredentialsApplePay#aa1c39f as nil")
		tl_input_payment_credentials_gen.go#L485: 		return fmt.Errorf("unable to encode inputPaymentCredentialsApplePay#aa1c39f: field payment_data: %w", err)
		tl_input_payment_credentials_gen.go#L493: 		return fmt.Errorf("can't decode inputPaymentCredentialsApplePay#aa1c39f to nil")
		tl_input_payment_credentials_gen.go#L496: 		return fmt.Errorf("unable to decode inputPaymentCredentialsApplePay#aa1c39f: %w", err)
		tl_input_payment_credentials_gen.go#L504: 		return fmt.Errorf("can't decode inputPaymentCredentialsApplePay#aa1c39f to nil")
		tl_input_payment_credentials_gen.go#L508: 			return fmt.Errorf("unable to decode inputPaymentCredentialsApplePay#aa1c39f: field payment_data: %w", err)
		tl_input_payment_credentials_gen.go#L608: 		return fmt.Errorf("can't encode inputPaymentCredentialsGooglePay#8ac32801 as nil")
		tl_input_payment_credentials_gen.go#L617: 		return fmt.Errorf("can't encode inputPaymentCredentialsGooglePay#8ac32801 as nil")
		tl_input_payment_credentials_gen.go#L620: 		return fmt.Errorf("unable to encode inputPaymentCredentialsGooglePay#8ac32801: field payment_token: %w", err)
		tl_input_payment_credentials_gen.go#L628: 		return fmt.Errorf("can't decode inputPaymentCredentialsGooglePay#8ac32801 to nil")
		tl_input_payment_credentials_gen.go#L631: 		return fmt.Errorf("unable to decode inputPaymentCredentialsGooglePay#8ac32801: %w", err)
		tl_input_payment_credentials_gen.go#L639: 		return fmt.Errorf("can't decode inputPaymentCredentialsGooglePay#8ac32801 to nil")
		tl_input_payment_credentials_gen.go#L643: 			return fmt.Errorf("unable to decode inputPaymentCredentialsGooglePay#8ac32801: field payment_token: %w", err)
		tl_input_payment_credentials_gen.go#L707: 			return nil, fmt.Errorf("unable to decode InputPaymentCredentialsClass: %w", err)
		tl_input_payment_credentials_gen.go#L714: 			return nil, fmt.Errorf("unable to decode InputPaymentCredentialsClass: %w", err)
		tl_input_payment_credentials_gen.go#L721: 			return nil, fmt.Errorf("unable to decode InputPaymentCredentialsClass: %w", err)
		tl_input_payment_credentials_gen.go#L728: 			return nil, fmt.Errorf("unable to decode InputPaymentCredentialsClass: %w", err)
		tl_input_payment_credentials_gen.go#L732: 		return nil, fmt.Errorf("unable to decode InputPaymentCredentialsClass: %w", bin.NewUnexpectedID(id))
		tl_input_payment_credentials_gen.go#L744: 		return fmt.Errorf("unable to decode InputPaymentCredentialsBox to nil")
		tl_input_payment_credentials_gen.go#L748: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_input_payment_credentials_gen.go#L757: 		return fmt.Errorf("unable to encode InputPaymentCredentialsClass as nil")
		tl_input_peer_gen.go#L103: 		return fmt.Errorf("can't encode inputPeerEmpty#7f3b18ea as nil")
		tl_input_peer_gen.go#L112: 		return fmt.Errorf("can't encode inputPeerEmpty#7f3b18ea as nil")
		tl_input_peer_gen.go#L120: 		return fmt.Errorf("can't decode inputPeerEmpty#7f3b18ea to nil")
		tl_input_peer_gen.go#L123: 		return fmt.Errorf("unable to decode inputPeerEmpty#7f3b18ea: %w", err)
		tl_input_peer_gen.go#L131: 		return fmt.Errorf("can't decode inputPeerEmpty#7f3b18ea to nil")
		tl_input_peer_gen.go#L205: 		return fmt.Errorf("can't encode inputPeerSelf#7da07ec9 as nil")
		tl_input_peer_gen.go#L214: 		return fmt.Errorf("can't encode inputPeerSelf#7da07ec9 as nil")
		tl_input_peer_gen.go#L222: 		return fmt.Errorf("can't decode inputPeerSelf#7da07ec9 to nil")
		tl_input_peer_gen.go#L225: 		return fmt.Errorf("unable to decode inputPeerSelf#7da07ec9: %w", err)
		tl_input_peer_gen.go#L233: 		return fmt.Errorf("can't decode inputPeerSelf#7da07ec9 to nil")
		tl_input_peer_gen.go#L324: 		return fmt.Errorf("can't encode inputPeerChat#35a95cb9 as nil")
		tl_input_peer_gen.go#L333: 		return fmt.Errorf("can't encode inputPeerChat#35a95cb9 as nil")
		tl_input_peer_gen.go#L342: 		return fmt.Errorf("can't decode inputPeerChat#35a95cb9 to nil")
		tl_input_peer_gen.go#L345: 		return fmt.Errorf("unable to decode inputPeerChat#35a95cb9: %w", err)
		tl_input_peer_gen.go#L353: 		return fmt.Errorf("can't decode inputPeerChat#35a95cb9 to nil")
		tl_input_peer_gen.go#L358: 			return fmt.Errorf("unable to decode inputPeerChat#35a95cb9: field chat_id: %w", err)
		tl_input_peer_gen.go#L473: 		return fmt.Errorf("can't encode inputPeerUser#dde8a54c as nil")
		tl_input_peer_gen.go#L482: 		return fmt.Errorf("can't encode inputPeerUser#dde8a54c as nil")
		tl_input_peer_gen.go#L492: 		return fmt.Errorf("can't decode inputPeerUser#dde8a54c to nil")
		tl_input_peer_gen.go#L495: 		return fmt.Errorf("unable to decode inputPeerUser#dde8a54c: %w", err)
		tl_input_peer_gen.go#L503: 		return fmt.Errorf("can't decode inputPeerUser#dde8a54c to nil")
		tl_input_peer_gen.go#L508: 			return fmt.Errorf("unable to decode inputPeerUser#dde8a54c: field user_id: %w", err)
		tl_input_peer_gen.go#L515: 			return fmt.Errorf("unable to decode inputPeerUser#dde8a54c: field access_hash: %w", err)
		tl_input_peer_gen.go#L638: 		return fmt.Errorf("can't encode inputPeerChannel#27bcbbfc as nil")
		tl_input_peer_gen.go#L647: 		return fmt.Errorf("can't encode inputPeerChannel#27bcbbfc as nil")
		tl_input_peer_gen.go#L657: 		return fmt.Errorf("can't decode inputPeerChannel#27bcbbfc to nil")
		tl_input_peer_gen.go#L660: 		return fmt.Errorf("unable to decode inputPeerChannel#27bcbbfc: %w", err)
		tl_input_peer_gen.go#L668: 		return fmt.Errorf("can't decode inputPeerChannel#27bcbbfc to nil")
		tl_input_peer_gen.go#L673: 			return fmt.Errorf("unable to decode inputPeerChannel#27bcbbfc: field channel_id: %w", err)
		tl_input_peer_gen.go#L680: 			return fmt.Errorf("unable to decode inputPeerChannel#27bcbbfc: field access_hash: %w", err)
		tl_input_peer_gen.go#L814: 		return fmt.Errorf("can't encode inputPeerUserFromMessage#a87b0a1c as nil")
		tl_input_peer_gen.go#L823: 		return fmt.Errorf("can't encode inputPeerUserFromMessage#a87b0a1c as nil")
		tl_input_peer_gen.go#L826: 		return fmt.Errorf("unable to encode inputPeerUserFromMessage#a87b0a1c: field peer is nil")
		tl_input_peer_gen.go#L829: 		return fmt.Errorf("unable to encode inputPeerUserFromMessage#a87b0a1c: field peer: %w", err)
		tl_input_peer_gen.go#L839: 		return fmt.Errorf("can't decode inputPeerUserFromMessage#a87b0a1c to nil")
		tl_input_peer_gen.go#L842: 		return fmt.Errorf("unable to decode inputPeerUserFromMessage#a87b0a1c: %w", err)
		tl_input_peer_gen.go#L850: 		return fmt.Errorf("can't decode inputPeerUserFromMessage#a87b0a1c to nil")
		tl_input_peer_gen.go#L855: 			return fmt.Errorf("unable to decode inputPeerUserFromMessage#a87b0a1c: field peer: %w", err)
		tl_input_peer_gen.go#L862: 			return fmt.Errorf("unable to decode inputPeerUserFromMessage#a87b0a1c: field msg_id: %w", err)
		tl_input_peer_gen.go#L869: 			return fmt.Errorf("unable to decode inputPeerUserFromMessage#a87b0a1c: field user_id: %w", err)
		tl_input_peer_gen.go#L1011: 		return fmt.Errorf("can't encode inputPeerChannelFromMessage#bd2a0840 as nil")
		tl_input_peer_gen.go#L1020: 		return fmt.Errorf("can't encode inputPeerChannelFromMessage#bd2a0840 as nil")
		tl_input_peer_gen.go#L1023: 		return fmt.Errorf("unable to encode inputPeerChannelFromMessage#bd2a0840: field peer is nil")
		tl_input_peer_gen.go#L1026: 		return fmt.Errorf("unable to encode inputPeerChannelFromMessage#bd2a0840: field peer: %w", err)
		tl_input_peer_gen.go#L1036: 		return fmt.Errorf("can't decode inputPeerChannelFromMessage#bd2a0840 to nil")
		tl_input_peer_gen.go#L1039: 		return fmt.Errorf("unable to decode inputPeerChannelFromMessage#bd2a0840: %w", err)
		tl_input_peer_gen.go#L1047: 		return fmt.Errorf("can't decode inputPeerChannelFromMessage#bd2a0840 to nil")
		tl_input_peer_gen.go#L1052: 			return fmt.Errorf("unable to decode inputPeerChannelFromMessage#bd2a0840: field peer: %w", err)
		tl_input_peer_gen.go#L1059: 			return fmt.Errorf("unable to decode inputPeerChannelFromMessage#bd2a0840: field msg_id: %w", err)
		tl_input_peer_gen.go#L1066: 			return fmt.Errorf("unable to decode inputPeerChannelFromMessage#bd2a0840: field channel_id: %w", err)
		tl_input_peer_gen.go#L1150: 			return nil, fmt.Errorf("unable to decode InputPeerClass: %w", err)
		tl_input_peer_gen.go#L1157: 			return nil, fmt.Errorf("unable to decode InputPeerClass: %w", err)
		tl_input_peer_gen.go#L1164: 			return nil, fmt.Errorf("unable to decode InputPeerClass: %w", err)
		tl_input_peer_gen.go#L1171: 			return nil, fmt.Errorf("unable to decode InputPeerClass: %w", err)
		tl_input_peer_gen.go#L1178: 			return nil, fmt.Errorf("unable to decode InputPeerClass: %w", err)
		tl_input_peer_gen.go#L1185: 			return nil, fmt.Errorf("unable to decode InputPeerClass: %w", err)
		tl_input_peer_gen.go#L1192: 			return nil, fmt.Errorf("unable to decode InputPeerClass: %w", err)
		tl_input_peer_gen.go#L1196: 		return nil, fmt.Errorf("unable to decode InputPeerClass: %w", bin.NewUnexpectedID(id))
		tl_input_peer_gen.go#L1208: 		return fmt.Errorf("unable to decode InputPeerBox to nil")
		tl_input_peer_gen.go#L1212: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_input_peer_gen.go#L1221: 		return fmt.Errorf("unable to encode InputPeerClass as nil")
		tl_input_peer_notify_settings_gen.go#L256: 		return fmt.Errorf("can't encode inputPeerNotifySettings#cacb6ae2 as nil")
		tl_input_peer_notify_settings_gen.go#L265: 		return fmt.Errorf("can't encode inputPeerNotifySettings#cacb6ae2 as nil")
		tl_input_peer_notify_settings_gen.go#L269: 		return fmt.Errorf("unable to encode inputPeerNotifySettings#cacb6ae2: field flags: %w", err)
		tl_input_peer_notify_settings_gen.go#L282: 			return fmt.Errorf("unable to encode inputPeerNotifySettings#cacb6ae2: field sound is nil")
		tl_input_peer_notify_settings_gen.go#L285: 			return fmt.Errorf("unable to encode inputPeerNotifySettings#cacb6ae2: field sound: %w", err)
		tl_input_peer_notify_settings_gen.go#L296: 			return fmt.Errorf("unable to encode inputPeerNotifySettings#cacb6ae2: field stories_sound is nil")
		tl_input_peer_notify_settings_gen.go#L299: 			return fmt.Errorf("unable to encode inputPeerNotifySettings#cacb6ae2: field stories_sound: %w", err)
		tl_input_peer_notify_settings_gen.go#L308: 		return fmt.Errorf("can't decode inputPeerNotifySettings#cacb6ae2 to nil")
		tl_input_peer_notify_settings_gen.go#L311: 		return fmt.Errorf("unable to decode inputPeerNotifySettings#cacb6ae2: %w", err)
		tl_input_peer_notify_settings_gen.go#L319: 		return fmt.Errorf("can't decode inputPeerNotifySettings#cacb6ae2 to nil")
		tl_input_peer_notify_settings_gen.go#L323: 			return fmt.Errorf("unable to decode inputPeerNotifySettings#cacb6ae2: field flags: %w", err)
		tl_input_peer_notify_settings_gen.go#L329: 			return fmt.Errorf("unable to decode inputPeerNotifySettings#cacb6ae2: field show_previews: %w", err)
		tl_input_peer_notify_settings_gen.go#L336: 			return fmt.Errorf("unable to decode inputPeerNotifySettings#cacb6ae2: field silent: %w", err)
		tl_input_peer_notify_settings_gen.go#L343: 			return fmt.Errorf("unable to decode inputPeerNotifySettings#cacb6ae2: field mute_until: %w", err)
		tl_input_peer_notify_settings_gen.go#L350: 			return fmt.Errorf("unable to decode inputPeerNotifySettings#cacb6ae2: field sound: %w", err)
		tl_input_peer_notify_settings_gen.go#L357: 			return fmt.Errorf("unable to decode inputPeerNotifySettings#cacb6ae2: field stories_muted: %w", err)
		tl_input_peer_notify_settings_gen.go#L364: 			return fmt.Errorf("unable to decode inputPeerNotifySettings#cacb6ae2: field stories_hide_sender: %w", err)
		tl_input_peer_notify_settings_gen.go#L371: 			return fmt.Errorf("unable to decode inputPeerNotifySettings#cacb6ae2: field stories_sound: %w", err)
		tl_input_phone_call_gen.go#L126: 		return fmt.Errorf("can't encode inputPhoneCall#1e36fded as nil")
		tl_input_phone_call_gen.go#L135: 		return fmt.Errorf("can't encode inputPhoneCall#1e36fded as nil")
		tl_input_phone_call_gen.go#L145: 		return fmt.Errorf("can't decode inputPhoneCall#1e36fded to nil")
		tl_input_phone_call_gen.go#L148: 		return fmt.Errorf("unable to decode inputPhoneCall#1e36fded: %w", err)
		tl_input_phone_call_gen.go#L156: 		return fmt.Errorf("can't decode inputPhoneCall#1e36fded to nil")
		tl_input_phone_call_gen.go#L161: 			return fmt.Errorf("unable to decode inputPhoneCall#1e36fded: field id: %w", err)
		tl_input_phone_call_gen.go#L168: 			return fmt.Errorf("unable to decode inputPhoneCall#1e36fded: field access_hash: %w", err)
		tl_input_phone_contact_gen.go#L155: 		return fmt.Errorf("can't encode inputPhoneContact#f392b7f4 as nil")
		tl_input_phone_contact_gen.go#L164: 		return fmt.Errorf("can't encode inputPhoneContact#f392b7f4 as nil")
		tl_input_phone_contact_gen.go#L176: 		return fmt.Errorf("can't decode inputPhoneContact#f392b7f4 to nil")
		tl_input_phone_contact_gen.go#L179: 		return fmt.Errorf("unable to decode inputPhoneContact#f392b7f4: %w", err)
		tl_input_phone_contact_gen.go#L187: 		return fmt.Errorf("can't decode inputPhoneContact#f392b7f4 to nil")
		tl_input_phone_contact_gen.go#L192: 			return fmt.Errorf("unable to decode inputPhoneContact#f392b7f4: field client_id: %w", err)
		tl_input_phone_contact_gen.go#L199: 			return fmt.Errorf("unable to decode inputPhoneContact#f392b7f4: field phone: %w", err)
		tl_input_phone_contact_gen.go#L206: 			return fmt.Errorf("unable to decode inputPhoneContact#f392b7f4: field first_name: %w", err)
		tl_input_phone_contact_gen.go#L213: 			return fmt.Errorf("unable to decode inputPhoneContact#f392b7f4: field last_name: %w", err)
		tl_input_photo_gen.go#L103: 		return fmt.Errorf("can't encode inputPhotoEmpty#1cd7bf0d as nil")
		tl_input_photo_gen.go#L112: 		return fmt.Errorf("can't encode inputPhotoEmpty#1cd7bf0d as nil")
		tl_input_photo_gen.go#L120: 		return fmt.Errorf("can't decode inputPhotoEmpty#1cd7bf0d to nil")
		tl_input_photo_gen.go#L123: 		return fmt.Errorf("unable to decode inputPhotoEmpty#1cd7bf0d: %w", err)
		tl_input_photo_gen.go#L131: 		return fmt.Errorf("can't decode inputPhotoEmpty#1cd7bf0d to nil")
		tl_input_photo_gen.go#L250: 		return fmt.Errorf("can't encode inputPhoto#3bb3b94a as nil")
		tl_input_photo_gen.go#L259: 		return fmt.Errorf("can't encode inputPhoto#3bb3b94a as nil")
		tl_input_photo_gen.go#L270: 		return fmt.Errorf("can't decode inputPhoto#3bb3b94a to nil")
		tl_input_photo_gen.go#L273: 		return fmt.Errorf("unable to decode inputPhoto#3bb3b94a: %w", err)
		tl_input_photo_gen.go#L281: 		return fmt.Errorf("can't decode inputPhoto#3bb3b94a to nil")
		tl_input_photo_gen.go#L286: 			return fmt.Errorf("unable to decode inputPhoto#3bb3b94a: field id: %w", err)
		tl_input_photo_gen.go#L293: 			return fmt.Errorf("unable to decode inputPhoto#3bb3b94a: field access_hash: %w", err)
		tl_input_photo_gen.go#L300: 			return fmt.Errorf("unable to decode inputPhoto#3bb3b94a: field file_reference: %w", err)
		tl_input_photo_gen.go#L392: 			return nil, fmt.Errorf("unable to decode InputPhotoClass: %w", err)
		tl_input_photo_gen.go#L399: 			return nil, fmt.Errorf("unable to decode InputPhotoClass: %w", err)
		tl_input_photo_gen.go#L403: 		return nil, fmt.Errorf("unable to decode InputPhotoClass: %w", bin.NewUnexpectedID(id))
		tl_input_photo_gen.go#L415: 		return fmt.Errorf("unable to decode InputPhotoBox to nil")
		tl_input_photo_gen.go#L419: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_input_photo_gen.go#L428: 		return fmt.Errorf("unable to encode InputPhotoClass as nil")
		tl_input_privacy_key_gen.go#L103: 		return fmt.Errorf("can't encode inputPrivacyKeyStatusTimestamp#4f96cb18 as nil")
		tl_input_privacy_key_gen.go#L112: 		return fmt.Errorf("can't encode inputPrivacyKeyStatusTimestamp#4f96cb18 as nil")
		tl_input_privacy_key_gen.go#L120: 		return fmt.Errorf("can't decode inputPrivacyKeyStatusTimestamp#4f96cb18 to nil")
		tl_input_privacy_key_gen.go#L123: 		return fmt.Errorf("unable to decode inputPrivacyKeyStatusTimestamp#4f96cb18: %w", err)
		tl_input_privacy_key_gen.go#L131: 		return fmt.Errorf("can't decode inputPrivacyKeyStatusTimestamp#4f96cb18 to nil")
		tl_input_privacy_key_gen.go#L205: 		return fmt.Errorf("can't encode inputPrivacyKeyChatInvite#bdfb0426 as nil")
		tl_input_privacy_key_gen.go#L214: 		return fmt.Errorf("can't encode inputPrivacyKeyChatInvite#bdfb0426 as nil")
		tl_input_privacy_key_gen.go#L222: 		return fmt.Errorf("can't decode inputPrivacyKeyChatInvite#bdfb0426 to nil")
		tl_input_privacy_key_gen.go#L225: 		return fmt.Errorf("unable to decode inputPrivacyKeyChatInvite#bdfb0426: %w", err)
		tl_input_privacy_key_gen.go#L233: 		return fmt.Errorf("can't decode inputPrivacyKeyChatInvite#bdfb0426 to nil")
		tl_input_privacy_key_gen.go#L307: 		return fmt.Errorf("can't encode inputPrivacyKeyPhoneCall#fabadc5f as nil")
		tl_input_privacy_key_gen.go#L316: 		return fmt.Errorf("can't encode inputPrivacyKeyPhoneCall#fabadc5f as nil")
		tl_input_privacy_key_gen.go#L324: 		return fmt.Errorf("can't decode inputPrivacyKeyPhoneCall#fabadc5f to nil")
		tl_input_privacy_key_gen.go#L327: 		return fmt.Errorf("unable to decode inputPrivacyKeyPhoneCall#fabadc5f: %w", err)
		tl_input_privacy_key_gen.go#L335: 		return fmt.Errorf("can't decode inputPrivacyKeyPhoneCall#fabadc5f to nil")
		tl_input_privacy_key_gen.go#L409: 		return fmt.Errorf("can't encode inputPrivacyKeyPhoneP2P#db9e70d2 as nil")
		tl_input_privacy_key_gen.go#L418: 		return fmt.Errorf("can't encode inputPrivacyKeyPhoneP2P#db9e70d2 as nil")
		tl_input_privacy_key_gen.go#L426: 		return fmt.Errorf("can't decode inputPrivacyKeyPhoneP2P#db9e70d2 to nil")
		tl_input_privacy_key_gen.go#L429: 		return fmt.Errorf("unable to decode inputPrivacyKeyPhoneP2P#db9e70d2: %w", err)
		tl_input_privacy_key_gen.go#L437: 		return fmt.Errorf("can't decode inputPrivacyKeyPhoneP2P#db9e70d2 to nil")
		tl_input_privacy_key_gen.go#L514: 		return fmt.Errorf("can't encode inputPrivacyKeyForwards#a4dd4c08 as nil")
		tl_input_privacy_key_gen.go#L523: 		return fmt.Errorf("can't encode inputPrivacyKeyForwards#a4dd4c08 as nil")
		tl_input_privacy_key_gen.go#L531: 		return fmt.Errorf("can't decode inputPrivacyKeyForwards#a4dd4c08 to nil")
		tl_input_privacy_key_gen.go#L534: 		return fmt.Errorf("unable to decode inputPrivacyKeyForwards#a4dd4c08: %w", err)
		tl_input_privacy_key_gen.go#L542: 		return fmt.Errorf("can't decode inputPrivacyKeyForwards#a4dd4c08 to nil")
		tl_input_privacy_key_gen.go#L616: 		return fmt.Errorf("can't encode inputPrivacyKeyProfilePhoto#5719bacc as nil")
		tl_input_privacy_key_gen.go#L625: 		return fmt.Errorf("can't encode inputPrivacyKeyProfilePhoto#5719bacc as nil")
		tl_input_privacy_key_gen.go#L633: 		return fmt.Errorf("can't decode inputPrivacyKeyProfilePhoto#5719bacc to nil")
		tl_input_privacy_key_gen.go#L636: 		return fmt.Errorf("unable to decode inputPrivacyKeyProfilePhoto#5719bacc: %w", err)
		tl_input_privacy_key_gen.go#L644: 		return fmt.Errorf("can't decode inputPrivacyKeyProfilePhoto#5719bacc to nil")
		tl_input_privacy_key_gen.go#L718: 		return fmt.Errorf("can't encode inputPrivacyKeyPhoneNumber#352dafa as nil")
		tl_input_privacy_key_gen.go#L727: 		return fmt.Errorf("can't encode inputPrivacyKeyPhoneNumber#352dafa as nil")
		tl_input_privacy_key_gen.go#L735: 		return fmt.Errorf("can't decode inputPrivacyKeyPhoneNumber#352dafa to nil")
		tl_input_privacy_key_gen.go#L738: 		return fmt.Errorf("unable to decode inputPrivacyKeyPhoneNumber#352dafa: %w", err)
		tl_input_privacy_key_gen.go#L746: 		return fmt.Errorf("can't decode inputPrivacyKeyPhoneNumber#352dafa to nil")
		tl_input_privacy_key_gen.go#L820: 		return fmt.Errorf("can't encode inputPrivacyKeyAddedByPhone#d1219bdd as nil")
		tl_input_privacy_key_gen.go#L829: 		return fmt.Errorf("can't encode inputPrivacyKeyAddedByPhone#d1219bdd as nil")
		tl_input_privacy_key_gen.go#L837: 		return fmt.Errorf("can't decode inputPrivacyKeyAddedByPhone#d1219bdd to nil")
		tl_input_privacy_key_gen.go#L840: 		return fmt.Errorf("unable to decode inputPrivacyKeyAddedByPhone#d1219bdd: %w", err)
		tl_input_privacy_key_gen.go#L848: 		return fmt.Errorf("can't decode inputPrivacyKeyAddedByPhone#d1219bdd to nil")
		tl_input_privacy_key_gen.go#L922: 		return fmt.Errorf("can't encode inputPrivacyKeyVoiceMessages#aee69d68 as nil")
		tl_input_privacy_key_gen.go#L931: 		return fmt.Errorf("can't encode inputPrivacyKeyVoiceMessages#aee69d68 as nil")
		tl_input_privacy_key_gen.go#L939: 		return fmt.Errorf("can't decode inputPrivacyKeyVoiceMessages#aee69d68 to nil")
		tl_input_privacy_key_gen.go#L942: 		return fmt.Errorf("unable to decode inputPrivacyKeyVoiceMessages#aee69d68: %w", err)
		tl_input_privacy_key_gen.go#L950: 		return fmt.Errorf("can't decode inputPrivacyKeyVoiceMessages#aee69d68 to nil")
		tl_input_privacy_key_gen.go#L1024: 		return fmt.Errorf("can't encode inputPrivacyKeyAbout#3823cc40 as nil")
		tl_input_privacy_key_gen.go#L1033: 		return fmt.Errorf("can't encode inputPrivacyKeyAbout#3823cc40 as nil")
		tl_input_privacy_key_gen.go#L1041: 		return fmt.Errorf("can't decode inputPrivacyKeyAbout#3823cc40 to nil")
		tl_input_privacy_key_gen.go#L1044: 		return fmt.Errorf("unable to decode inputPrivacyKeyAbout#3823cc40: %w", err)
		tl_input_privacy_key_gen.go#L1052: 		return fmt.Errorf("can't decode inputPrivacyKeyAbout#3823cc40 to nil")
		tl_input_privacy_key_gen.go#L1113: 			return nil, fmt.Errorf("unable to decode InputPrivacyKeyClass: %w", err)
		tl_input_privacy_key_gen.go#L1120: 			return nil, fmt.Errorf("unable to decode InputPrivacyKeyClass: %w", err)
		tl_input_privacy_key_gen.go#L1127: 			return nil, fmt.Errorf("unable to decode InputPrivacyKeyClass: %w", err)
		tl_input_privacy_key_gen.go#L1134: 			return nil, fmt.Errorf("unable to decode InputPrivacyKeyClass: %w", err)
		tl_input_privacy_key_gen.go#L1141: 			return nil, fmt.Errorf("unable to decode InputPrivacyKeyClass: %w", err)
		tl_input_privacy_key_gen.go#L1148: 			return nil, fmt.Errorf("unable to decode InputPrivacyKeyClass: %w", err)
		tl_input_privacy_key_gen.go#L1155: 			return nil, fmt.Errorf("unable to decode InputPrivacyKeyClass: %w", err)
		tl_input_privacy_key_gen.go#L1162: 			return nil, fmt.Errorf("unable to decode InputPrivacyKeyClass: %w", err)
		tl_input_privacy_key_gen.go#L1169: 			return nil, fmt.Errorf("unable to decode InputPrivacyKeyClass: %w", err)
		tl_input_privacy_key_gen.go#L1176: 			return nil, fmt.Errorf("unable to decode InputPrivacyKeyClass: %w", err)
		tl_input_privacy_key_gen.go#L1180: 		return nil, fmt.Errorf("unable to decode InputPrivacyKeyClass: %w", bin.NewUnexpectedID(id))
		tl_input_privacy_key_gen.go#L1192: 		return fmt.Errorf("unable to decode InputPrivacyKeyBox to nil")
		tl_input_privacy_key_gen.go#L1196: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_input_privacy_key_gen.go#L1205: 		return fmt.Errorf("unable to encode InputPrivacyKeyClass as nil")
		tl_input_privacy_rule_gen.go#L103: 		return fmt.Errorf("can't encode inputPrivacyValueAllowContacts#d09e07b as nil")
		tl_input_privacy_rule_gen.go#L112: 		return fmt.Errorf("can't encode inputPrivacyValueAllowContacts#d09e07b as nil")
		tl_input_privacy_rule_gen.go#L120: 		return fmt.Errorf("can't decode inputPrivacyValueAllowContacts#d09e07b to nil")
		tl_input_privacy_rule_gen.go#L123: 		return fmt.Errorf("unable to decode inputPrivacyValueAllowContacts#d09e07b: %w", err)
		tl_input_privacy_rule_gen.go#L131: 		return fmt.Errorf("can't decode inputPrivacyValueAllowContacts#d09e07b to nil")
		tl_input_privacy_rule_gen.go#L205: 		return fmt.Errorf("can't encode inputPrivacyValueAllowAll#184b35ce as nil")
		tl_input_privacy_rule_gen.go#L214: 		return fmt.Errorf("can't encode inputPrivacyValueAllowAll#184b35ce as nil")
		tl_input_privacy_rule_gen.go#L222: 		return fmt.Errorf("can't decode inputPrivacyValueAllowAll#184b35ce to nil")
		tl_input_privacy_rule_gen.go#L225: 		return fmt.Errorf("unable to decode inputPrivacyValueAllowAll#184b35ce: %w", err)
		tl_input_privacy_rule_gen.go#L233: 		return fmt.Errorf("can't decode inputPrivacyValueAllowAll#184b35ce to nil")
		tl_input_privacy_rule_gen.go#L324: 		return fmt.Errorf("can't encode inputPrivacyValueAllowUsers#131cc67f as nil")
		tl_input_privacy_rule_gen.go#L333: 		return fmt.Errorf("can't encode inputPrivacyValueAllowUsers#131cc67f as nil")
		tl_input_privacy_rule_gen.go#L338: 			return fmt.Errorf("unable to encode inputPrivacyValueAllowUsers#131cc67f: field users element with index %d is nil", idx)
		tl_input_privacy_rule_gen.go#L341: 			return fmt.Errorf("unable to encode inputPrivacyValueAllowUsers#131cc67f: field users element with index %d: %w", idx, err)
		tl_input_privacy_rule_gen.go#L350: 		return fmt.Errorf("can't decode inputPrivacyValueAllowUsers#131cc67f to nil")
		tl_input_privacy_rule_gen.go#L353: 		return fmt.Errorf("unable to decode inputPrivacyValueAllowUsers#131cc67f: %w", err)
		tl_input_privacy_rule_gen.go#L361: 		return fmt.Errorf("can't decode inputPrivacyValueAllowUsers#131cc67f to nil")
		tl_input_privacy_rule_gen.go#L366: 			return fmt.Errorf("unable to decode inputPrivacyValueAllowUsers#131cc67f: field users: %w", err)
		tl_input_privacy_rule_gen.go#L375: 				return fmt.Errorf("unable to decode inputPrivacyValueAllowUsers#131cc67f: field users: %w", err)
		tl_input_privacy_rule_gen.go#L465: 		return fmt.Errorf("can't encode inputPrivacyValueDisallowContacts#ba52007 as nil")
		tl_input_privacy_rule_gen.go#L474: 		return fmt.Errorf("can't encode inputPrivacyValueDisallowContacts#ba52007 as nil")
		tl_input_privacy_rule_gen.go#L482: 		return fmt.Errorf("can't decode inputPrivacyValueDisallowContacts#ba52007 to nil")
		tl_input_privacy_rule_gen.go#L485: 		return fmt.Errorf("unable to decode inputPrivacyValueDisallowContacts#ba52007: %w", err)
		tl_input_privacy_rule_gen.go#L493: 		return fmt.Errorf("can't decode inputPrivacyValueDisallowContacts#ba52007 to nil")
		tl_input_privacy_rule_gen.go#L567: 		return fmt.Errorf("can't encode inputPrivacyValueDisallowAll#d66b66c9 as nil")
		tl_input_privacy_rule_gen.go#L576: 		return fmt.Errorf("can't encode inputPrivacyValueDisallowAll#d66b66c9 as nil")
		tl_input_privacy_rule_gen.go#L584: 		return fmt.Errorf("can't decode inputPrivacyValueDisallowAll#d66b66c9 to nil")
		tl_input_privacy_rule_gen.go#L587: 		return fmt.Errorf("unable to decode inputPrivacyValueDisallowAll#d66b66c9: %w", err)
		tl_input_privacy_rule_gen.go#L595: 		return fmt.Errorf("can't decode inputPrivacyValueDisallowAll#d66b66c9 to nil")
		tl_input_privacy_rule_gen.go#L686: 		return fmt.Errorf("can't encode inputPrivacyValueDisallowUsers#90110467 as nil")
		tl_input_privacy_rule_gen.go#L695: 		return fmt.Errorf("can't encode inputPrivacyValueDisallowUsers#90110467 as nil")
		tl_input_privacy_rule_gen.go#L700: 			return fmt.Errorf("unable to encode inputPrivacyValueDisallowUsers#90110467: field users element with index %d is nil", idx)
		tl_input_privacy_rule_gen.go#L703: 			return fmt.Errorf("unable to encode inputPrivacyValueDisallowUsers#90110467: field users element with index %d: %w", idx, err)
		tl_input_privacy_rule_gen.go#L712: 		return fmt.Errorf("can't decode inputPrivacyValueDisallowUsers#90110467 to nil")
		tl_input_privacy_rule_gen.go#L715: 		return fmt.Errorf("unable to decode inputPrivacyValueDisallowUsers#90110467: %w", err)
		tl_input_privacy_rule_gen.go#L723: 		return fmt.Errorf("can't decode inputPrivacyValueDisallowUsers#90110467 to nil")
		tl_input_privacy_rule_gen.go#L728: 			return fmt.Errorf("unable to decode inputPrivacyValueDisallowUsers#90110467: field users: %w", err)
		tl_input_privacy_rule_gen.go#L737: 				return fmt.Errorf("unable to decode inputPrivacyValueDisallowUsers#90110467: field users: %w", err)
		tl_input_privacy_rule_gen.go#L844: 		return fmt.Errorf("can't encode inputPrivacyValueAllowChatParticipants#840649cf as nil")
		tl_input_privacy_rule_gen.go#L853: 		return fmt.Errorf("can't encode inputPrivacyValueAllowChatParticipants#840649cf as nil")
		tl_input_privacy_rule_gen.go#L865: 		return fmt.Errorf("can't decode inputPrivacyValueAllowChatParticipants#840649cf to nil")
		tl_input_privacy_rule_gen.go#L868: 		return fmt.Errorf("unable to decode inputPrivacyValueAllowChatParticipants#840649cf: %w", err)
		tl_input_privacy_rule_gen.go#L876: 		return fmt.Errorf("can't decode inputPrivacyValueAllowChatParticipants#840649cf to nil")
		tl_input_privacy_rule_gen.go#L881: 			return fmt.Errorf("unable to decode inputPrivacyValueAllowChatParticipants#840649cf: field chats: %w", err)
		tl_input_privacy_rule_gen.go#L890: 				return fmt.Errorf("unable to decode inputPrivacyValueAllowChatParticipants#840649cf: field chats: %w", err)
		tl_input_privacy_rule_gen.go#L992: 		return fmt.Errorf("can't encode inputPrivacyValueDisallowChatParticipants#e94f0f86 as nil")
		tl_input_privacy_rule_gen.go#L1001: 		return fmt.Errorf("can't encode inputPrivacyValueDisallowChatParticipants#e94f0f86 as nil")
		tl_input_privacy_rule_gen.go#L1013: 		return fmt.Errorf("can't decode inputPrivacyValueDisallowChatParticipants#e94f0f86 to nil")
		tl_input_privacy_rule_gen.go#L1016: 		return fmt.Errorf("unable to decode inputPrivacyValueDisallowChatParticipants#e94f0f86: %w", err)
		tl_input_privacy_rule_gen.go#L1024: 		return fmt.Errorf("can't decode inputPrivacyValueDisallowChatParticipants#e94f0f86 to nil")
		tl_input_privacy_rule_gen.go#L1029: 			return fmt.Errorf("unable to decode inputPrivacyValueDisallowChatParticipants#e94f0f86: field chats: %w", err)
		tl_input_privacy_rule_gen.go#L1038: 				return fmt.Errorf("unable to decode inputPrivacyValueDisallowChatParticipants#e94f0f86: field chats: %w", err)
		tl_input_privacy_rule_gen.go#L1126: 		return fmt.Errorf("can't encode inputPrivacyValueAllowCloseFriends#2f453e49 as nil")
		tl_input_privacy_rule_gen.go#L1135: 		return fmt.Errorf("can't encode inputPrivacyValueAllowCloseFriends#2f453e49 as nil")
		tl_input_privacy_rule_gen.go#L1143: 		return fmt.Errorf("can't decode inputPrivacyValueAllowCloseFriends#2f453e49 to nil")
		tl_input_privacy_rule_gen.go#L1146: 		return fmt.Errorf("unable to decode inputPrivacyValueAllowCloseFriends#2f453e49: %w", err)
		tl_input_privacy_rule_gen.go#L1154: 		return fmt.Errorf("can't decode inputPrivacyValueAllowCloseFriends#2f453e49 to nil")
		tl_input_privacy_rule_gen.go#L1214: 			return nil, fmt.Errorf("unable to decode InputPrivacyRuleClass: %w", err)
		tl_input_privacy_rule_gen.go#L1221: 			return nil, fmt.Errorf("unable to decode InputPrivacyRuleClass: %w", err)
		tl_input_privacy_rule_gen.go#L1228: 			return nil, fmt.Errorf("unable to decode InputPrivacyRuleClass: %w", err)
		tl_input_privacy_rule_gen.go#L1235: 			return nil, fmt.Errorf("unable to decode InputPrivacyRuleClass: %w", err)
		tl_input_privacy_rule_gen.go#L1242: 			return nil, fmt.Errorf("unable to decode InputPrivacyRuleClass: %w", err)
		tl_input_privacy_rule_gen.go#L1249: 			return nil, fmt.Errorf("unable to decode InputPrivacyRuleClass: %w", err)
		tl_input_privacy_rule_gen.go#L1256: 			return nil, fmt.Errorf("unable to decode InputPrivacyRuleClass: %w", err)
		tl_input_privacy_rule_gen.go#L1263: 			return nil, fmt.Errorf("unable to decode InputPrivacyRuleClass: %w", err)
		tl_input_privacy_rule_gen.go#L1270: 			return nil, fmt.Errorf("unable to decode InputPrivacyRuleClass: %w", err)
		tl_input_privacy_rule_gen.go#L1274: 		return nil, fmt.Errorf("unable to decode InputPrivacyRuleClass: %w", bin.NewUnexpectedID(id))
		tl_input_privacy_rule_gen.go#L1286: 		return fmt.Errorf("unable to decode InputPrivacyRuleBox to nil")
		tl_input_privacy_rule_gen.go#L1290: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_input_privacy_rule_gen.go#L1299: 		return fmt.Errorf("unable to encode InputPrivacyRuleClass as nil")
		tl_input_reply_to_gen.go#L243: 		return fmt.Errorf("can't encode inputReplyToMessage#22c0f6d5 as nil")
		tl_input_reply_to_gen.go#L252: 		return fmt.Errorf("can't encode inputReplyToMessage#22c0f6d5 as nil")
		tl_input_reply_to_gen.go#L256: 		return fmt.Errorf("unable to encode inputReplyToMessage#22c0f6d5: field flags: %w", err)
		tl_input_reply_to_gen.go#L264: 			return fmt.Errorf("unable to encode inputReplyToMessage#22c0f6d5: field reply_to_peer_id is nil")
		tl_input_reply_to_gen.go#L267: 			return fmt.Errorf("unable to encode inputReplyToMessage#22c0f6d5: field reply_to_peer_id: %w", err)
		tl_input_reply_to_gen.go#L277: 				return fmt.Errorf("unable to encode inputReplyToMessage#22c0f6d5: field quote_entities element with index %d is nil", idx)
		tl_input_reply_to_gen.go#L280: 				return fmt.Errorf("unable to encode inputReplyToMessage#22c0f6d5: field quote_entities element with index %d: %w", idx, err)
		tl_input_reply_to_gen.go#L293: 		return fmt.Errorf("can't decode inputReplyToMessage#22c0f6d5 to nil")
		tl_input_reply_to_gen.go#L296: 		return fmt.Errorf("unable to decode inputReplyToMessage#22c0f6d5: %w", err)
		tl_input_reply_to_gen.go#L304: 		return fmt.Errorf("can't decode inputReplyToMessage#22c0f6d5 to nil")
		tl_input_reply_to_gen.go#L308: 			return fmt.Errorf("unable to decode inputReplyToMessage#22c0f6d5: field flags: %w", err)
		tl_input_reply_to_gen.go#L314: 			return fmt.Errorf("unable to decode inputReplyToMessage#22c0f6d5: field reply_to_msg_id: %w", err)
		tl_input_reply_to_gen.go#L321: 			return fmt.Errorf("unable to decode inputReplyToMessage#22c0f6d5: field top_msg_id: %w", err)
		tl_input_reply_to_gen.go#L328: 			return fmt.Errorf("unable to decode inputReplyToMessage#22c0f6d5: field reply_to_peer_id: %w", err)
		tl_input_reply_to_gen.go#L335: 			return fmt.Errorf("unable to decode inputReplyToMessage#22c0f6d5: field quote_text: %w", err)
		tl_input_reply_to_gen.go#L342: 			return fmt.Errorf("unable to decode inputReplyToMessage#22c0f6d5: field quote_entities: %w", err)
		tl_input_reply_to_gen.go#L351: 				return fmt.Errorf("unable to decode inputReplyToMessage#22c0f6d5: field quote_entities: %w", err)
		tl_input_reply_to_gen.go#L359: 			return fmt.Errorf("unable to decode inputReplyToMessage#22c0f6d5: field quote_offset: %w", err)
		tl_input_reply_to_gen.go#L569: 		return fmt.Errorf("can't encode inputReplyToStory#15b0f283 as nil")
		tl_input_reply_to_gen.go#L578: 		return fmt.Errorf("can't encode inputReplyToStory#15b0f283 as nil")
		tl_input_reply_to_gen.go#L581: 		return fmt.Errorf("unable to encode inputReplyToStory#15b0f283: field user_id is nil")
		tl_input_reply_to_gen.go#L584: 		return fmt.Errorf("unable to encode inputReplyToStory#15b0f283: field user_id: %w", err)
		tl_input_reply_to_gen.go#L593: 		return fmt.Errorf("can't decode inputReplyToStory#15b0f283 to nil")
		tl_input_reply_to_gen.go#L596: 		return fmt.Errorf("unable to decode inputReplyToStory#15b0f283: %w", err)
		tl_input_reply_to_gen.go#L604: 		return fmt.Errorf("can't decode inputReplyToStory#15b0f283 to nil")
		tl_input_reply_to_gen.go#L609: 			return fmt.Errorf("unable to decode inputReplyToStory#15b0f283: field user_id: %w", err)
		tl_input_reply_to_gen.go#L616: 			return fmt.Errorf("unable to decode inputReplyToStory#15b0f283: field story_id: %w", err)
		tl_input_reply_to_gen.go#L687: 			return nil, fmt.Errorf("unable to decode InputReplyToClass: %w", err)
		tl_input_reply_to_gen.go#L694: 			return nil, fmt.Errorf("unable to decode InputReplyToClass: %w", err)
		tl_input_reply_to_gen.go#L698: 		return nil, fmt.Errorf("unable to decode InputReplyToClass: %w", bin.NewUnexpectedID(id))
		tl_input_reply_to_gen.go#L710: 		return fmt.Errorf("unable to decode InputReplyToBox to nil")
		tl_input_reply_to_gen.go#L714: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_input_reply_to_gen.go#L723: 		return fmt.Errorf("unable to encode InputReplyToClass as nil")
		tl_input_secure_file_gen.go#L167: 		return fmt.Errorf("can't encode inputSecureFileUploaded#3334b0f0 as nil")
		tl_input_secure_file_gen.go#L176: 		return fmt.Errorf("can't encode inputSecureFileUploaded#3334b0f0 as nil")
		tl_input_secure_file_gen.go#L189: 		return fmt.Errorf("can't decode inputSecureFileUploaded#3334b0f0 to nil")
		tl_input_secure_file_gen.go#L192: 		return fmt.Errorf("unable to decode inputSecureFileUploaded#3334b0f0: %w", err)
		tl_input_secure_file_gen.go#L200: 		return fmt.Errorf("can't decode inputSecureFileUploaded#3334b0f0 to nil")
		tl_input_secure_file_gen.go#L205: 			return fmt.Errorf("unable to decode inputSecureFileUploaded#3334b0f0: field id: %w", err)
		tl_input_secure_file_gen.go#L212: 			return fmt.Errorf("unable to decode inputSecureFileUploaded#3334b0f0: field parts: %w", err)
		tl_input_secure_file_gen.go#L219: 			return fmt.Errorf("unable to decode inputSecureFileUploaded#3334b0f0: field md5_checksum: %w", err)
		tl_input_secure_file_gen.go#L226: 			return fmt.Errorf("unable to decode inputSecureFileUploaded#3334b0f0: field file_hash: %w", err)
		tl_input_secure_file_gen.go#L233: 			return fmt.Errorf("unable to decode inputSecureFileUploaded#3334b0f0: field secret: %w", err)
		tl_input_secure_file_gen.go#L381: 		return fmt.Errorf("can't encode inputSecureFile#5367e5be as nil")
		tl_input_secure_file_gen.go#L390: 		return fmt.Errorf("can't encode inputSecureFile#5367e5be as nil")
		tl_input_secure_file_gen.go#L400: 		return fmt.Errorf("can't decode inputSecureFile#5367e5be to nil")
		tl_input_secure_file_gen.go#L403: 		return fmt.Errorf("unable to decode inputSecureFile#5367e5be: %w", err)
		tl_input_secure_file_gen.go#L411: 		return fmt.Errorf("can't decode inputSecureFile#5367e5be to nil")
		tl_input_secure_file_gen.go#L416: 			return fmt.Errorf("unable to decode inputSecureFile#5367e5be: field id: %w", err)
		tl_input_secure_file_gen.go#L423: 			return fmt.Errorf("unable to decode inputSecureFile#5367e5be: field access_hash: %w", err)
		tl_input_secure_file_gen.go#L506: 			return nil, fmt.Errorf("unable to decode InputSecureFileClass: %w", err)
		tl_input_secure_file_gen.go#L513: 			return nil, fmt.Errorf("unable to decode InputSecureFileClass: %w", err)
		tl_input_secure_file_gen.go#L517: 		return nil, fmt.Errorf("unable to decode InputSecureFileClass: %w", bin.NewUnexpectedID(id))
		tl_input_secure_file_gen.go#L529: 		return fmt.Errorf("unable to decode InputSecureFileBox to nil")
		tl_input_secure_file_gen.go#L533: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_input_secure_file_gen.go#L542: 		return fmt.Errorf("unable to encode InputSecureFileClass as nil")
		tl_input_secure_value_gen.go#L294: 		return fmt.Errorf("can't encode inputSecureValue#db21d0a7 as nil")
		tl_input_secure_value_gen.go#L303: 		return fmt.Errorf("can't encode inputSecureValue#db21d0a7 as nil")
		tl_input_secure_value_gen.go#L307: 		return fmt.Errorf("unable to encode inputSecureValue#db21d0a7: field flags: %w", err)
		tl_input_secure_value_gen.go#L310: 		return fmt.Errorf("unable to encode inputSecureValue#db21d0a7: field type is nil")
		tl_input_secure_value_gen.go#L313: 		return fmt.Errorf("unable to encode inputSecureValue#db21d0a7: field type: %w", err)
		tl_input_secure_value_gen.go#L317: 			return fmt.Errorf("unable to encode inputSecureValue#db21d0a7: field data: %w", err)
		tl_input_secure_value_gen.go#L322: 			return fmt.Errorf("unable to encode inputSecureValue#db21d0a7: field front_side is nil")
		tl_input_secure_value_gen.go#L325: 			return fmt.Errorf("unable to encode inputSecureValue#db21d0a7: field front_side: %w", err)
		tl_input_secure_value_gen.go#L330: 			return fmt.Errorf("unable to encode inputSecureValue#db21d0a7: field reverse_side is nil")
		tl_input_secure_value_gen.go#L333: 			return fmt.Errorf("unable to encode inputSecureValue#db21d0a7: field reverse_side: %w", err)
		tl_input_secure_value_gen.go#L338: 			return fmt.Errorf("unable to encode inputSecureValue#db21d0a7: field selfie is nil")
		tl_input_secure_value_gen.go#L341: 			return fmt.Errorf("unable to encode inputSecureValue#db21d0a7: field selfie: %w", err)
		tl_input_secure_value_gen.go#L348: 				return fmt.Errorf("unable to encode inputSecureValue#db21d0a7: field translation element with index %d is nil", idx)
		tl_input_secure_value_gen.go#L351: 				return fmt.Errorf("unable to encode inputSecureValue#db21d0a7: field translation element with index %d: %w", idx, err)
		tl_input_secure_value_gen.go#L359: 				return fmt.Errorf("unable to encode inputSecureValue#db21d0a7: field files element with index %d is nil", idx)
		tl_input_secure_value_gen.go#L362: 				return fmt.Errorf("unable to encode inputSecureValue#db21d0a7: field files element with index %d: %w", idx, err)
		tl_input_secure_value_gen.go#L368: 			return fmt.Errorf("unable to encode inputSecureValue#db21d0a7: field plain_data is nil")
		tl_input_secure_value_gen.go#L371: 			return fmt.Errorf("unable to encode inputSecureValue#db21d0a7: field plain_data: %w", err)
		tl_input_secure_value_gen.go#L380: 		return fmt.Errorf("can't decode inputSecureValue#db21d0a7 to nil")
		tl_input_secure_value_gen.go#L383: 		return fmt.Errorf("unable to decode inputSecureValue#db21d0a7: %w", err)
		tl_input_secure_value_gen.go#L391: 		return fmt.Errorf("can't decode inputSecureValue#db21d0a7 to nil")
		tl_input_secure_value_gen.go#L395: 			return fmt.Errorf("unable to decode inputSecureValue#db21d0a7: field flags: %w", err)
		tl_input_secure_value_gen.go#L401: 			return fmt.Errorf("unable to decode inputSecureValue#db21d0a7: field type: %w", err)
		tl_input_secure_value_gen.go#L407: 			return fmt.Errorf("unable to decode inputSecureValue#db21d0a7: field data: %w", err)
		tl_input_secure_value_gen.go#L413: 			return fmt.Errorf("unable to decode inputSecureValue#db21d0a7: field front_side: %w", err)
		tl_input_secure_value_gen.go#L420: 			return fmt.Errorf("unable to decode inputSecureValue#db21d0a7: field reverse_side: %w", err)
		tl_input_secure_value_gen.go#L427: 			return fmt.Errorf("unable to decode inputSecureValue#db21d0a7: field selfie: %w", err)
		tl_input_secure_value_gen.go#L434: 			return fmt.Errorf("unable to decode inputSecureValue#db21d0a7: field translation: %w", err)
		tl_input_secure_value_gen.go#L443: 				return fmt.Errorf("unable to decode inputSecureValue#db21d0a7: field translation: %w", err)
		tl_input_secure_value_gen.go#L451: 			return fmt.Errorf("unable to decode inputSecureValue#db21d0a7: field files: %w", err)
		tl_input_secure_value_gen.go#L460: 				return fmt.Errorf("unable to decode inputSecureValue#db21d0a7: field files: %w", err)
		tl_input_secure_value_gen.go#L468: 			return fmt.Errorf("unable to decode inputSecureValue#db21d0a7: field plain_data: %w", err)
		tl_input_single_media_gen.go#L176: 		return fmt.Errorf("can't encode inputSingleMedia#1cc6e91f as nil")
		tl_input_single_media_gen.go#L185: 		return fmt.Errorf("can't encode inputSingleMedia#1cc6e91f as nil")
		tl_input_single_media_gen.go#L189: 		return fmt.Errorf("unable to encode inputSingleMedia#1cc6e91f: field flags: %w", err)
		tl_input_single_media_gen.go#L192: 		return fmt.Errorf("unable to encode inputSingleMedia#1cc6e91f: field media is nil")
		tl_input_single_media_gen.go#L195: 		return fmt.Errorf("unable to encode inputSingleMedia#1cc6e91f: field media: %w", err)
		tl_input_single_media_gen.go#L203: 				return fmt.Errorf("unable to encode inputSingleMedia#1cc6e91f: field entities element with index %d is nil", idx)
		tl_input_single_media_gen.go#L206: 				return fmt.Errorf("unable to encode inputSingleMedia#1cc6e91f: field entities element with index %d: %w", idx, err)
		tl_input_single_media_gen.go#L216: 		return fmt.Errorf("can't decode inputSingleMedia#1cc6e91f to nil")
		tl_input_single_media_gen.go#L219: 		return fmt.Errorf("unable to decode inputSingleMedia#1cc6e91f: %w", err)
		tl_input_single_media_gen.go#L227: 		return fmt.Errorf("can't decode inputSingleMedia#1cc6e91f to nil")
		tl_input_single_media_gen.go#L231: 			return fmt.Errorf("unable to decode inputSingleMedia#1cc6e91f: field flags: %w", err)
		tl_input_single_media_gen.go#L237: 			return fmt.Errorf("unable to decode inputSingleMedia#1cc6e91f: field media: %w", err)
		tl_input_single_media_gen.go#L244: 			return fmt.Errorf("unable to decode inputSingleMedia#1cc6e91f: field random_id: %w", err)
		tl_input_single_media_gen.go#L251: 			return fmt.Errorf("unable to decode inputSingleMedia#1cc6e91f: field message: %w", err)
		tl_input_single_media_gen.go#L258: 			return fmt.Errorf("unable to decode inputSingleMedia#1cc6e91f: field entities: %w", err)
		tl_input_single_media_gen.go#L267: 				return fmt.Errorf("unable to decode inputSingleMedia#1cc6e91f: field entities: %w", err)
		tl_input_sticker_set_gen.go#L103: 		return fmt.Errorf("can't encode inputStickerSetEmpty#ffb62b95 as nil")
		tl_input_sticker_set_gen.go#L112: 		return fmt.Errorf("can't encode inputStickerSetEmpty#ffb62b95 as nil")
		tl_input_sticker_set_gen.go#L120: 		return fmt.Errorf("can't decode inputStickerSetEmpty#ffb62b95 to nil")
		tl_input_sticker_set_gen.go#L123: 		return fmt.Errorf("unable to decode inputStickerSetEmpty#ffb62b95: %w", err)
		tl_input_sticker_set_gen.go#L131: 		return fmt.Errorf("can't decode inputStickerSetEmpty#ffb62b95 to nil")
		tl_input_sticker_set_gen.go#L233: 		return fmt.Errorf("can't encode inputStickerSetID#9de7a269 as nil")
		tl_input_sticker_set_gen.go#L242: 		return fmt.Errorf("can't encode inputStickerSetID#9de7a269 as nil")
		tl_input_sticker_set_gen.go#L252: 		return fmt.Errorf("can't decode inputStickerSetID#9de7a269 to nil")
		tl_input_sticker_set_gen.go#L255: 		return fmt.Errorf("unable to decode inputStickerSetID#9de7a269: %w", err)
		tl_input_sticker_set_gen.go#L263: 		return fmt.Errorf("can't decode inputStickerSetID#9de7a269 to nil")
		tl_input_sticker_set_gen.go#L268: 			return fmt.Errorf("unable to decode inputStickerSetID#9de7a269: field id: %w", err)
		tl_input_sticker_set_gen.go#L275: 			return fmt.Errorf("unable to decode inputStickerSetID#9de7a269: field access_hash: %w", err)
		tl_input_sticker_set_gen.go#L390: 		return fmt.Errorf("can't encode inputStickerSetShortName#861cc8a0 as nil")
		tl_input_sticker_set_gen.go#L399: 		return fmt.Errorf("can't encode inputStickerSetShortName#861cc8a0 as nil")
		tl_input_sticker_set_gen.go#L408: 		return fmt.Errorf("can't decode inputStickerSetShortName#861cc8a0 to nil")
		tl_input_sticker_set_gen.go#L411: 		return fmt.Errorf("unable to decode inputStickerSetShortName#861cc8a0: %w", err)
		tl_input_sticker_set_gen.go#L419: 		return fmt.Errorf("can't decode inputStickerSetShortName#861cc8a0 to nil")
		tl_input_sticker_set_gen.go#L424: 			return fmt.Errorf("unable to decode inputStickerSetShortName#861cc8a0: field short_name: %w", err)
		tl_input_sticker_set_gen.go#L508: 		return fmt.Errorf("can't encode inputStickerSetAnimatedEmoji#28703c8 as nil")
		tl_input_sticker_set_gen.go#L517: 		return fmt.Errorf("can't encode inputStickerSetAnimatedEmoji#28703c8 as nil")
		tl_input_sticker_set_gen.go#L525: 		return fmt.Errorf("can't decode inputStickerSetAnimatedEmoji#28703c8 to nil")
		tl_input_sticker_set_gen.go#L528: 		return fmt.Errorf("unable to decode inputStickerSetAnimatedEmoji#28703c8: %w", err)
		tl_input_sticker_set_gen.go#L536: 		return fmt.Errorf("can't decode inputStickerSetAnimatedEmoji#28703c8 to nil")
		tl_input_sticker_set_gen.go#L630: 		return fmt.Errorf("can't encode inputStickerSetDice#e67f520e as nil")
		tl_input_sticker_set_gen.go#L639: 		return fmt.Errorf("can't encode inputStickerSetDice#e67f520e as nil")
		tl_input_sticker_set_gen.go#L648: 		return fmt.Errorf("can't decode inputStickerSetDice#e67f520e to nil")
		tl_input_sticker_set_gen.go#L651: 		return fmt.Errorf("unable to decode inputStickerSetDice#e67f520e: %w", err)
		tl_input_sticker_set_gen.go#L659: 		return fmt.Errorf("can't decode inputStickerSetDice#e67f520e to nil")
		tl_input_sticker_set_gen.go#L664: 			return fmt.Errorf("unable to decode inputStickerSetDice#e67f520e: field emoticon: %w", err)
		tl_input_sticker_set_gen.go#L749: 		return fmt.Errorf("can't encode inputStickerSetAnimatedEmojiAnimations#cde3739 as nil")
		tl_input_sticker_set_gen.go#L758: 		return fmt.Errorf("can't encode inputStickerSetAnimatedEmojiAnimations#cde3739 as nil")
		tl_input_sticker_set_gen.go#L766: 		return fmt.Errorf("can't decode inputStickerSetAnimatedEmojiAnimations#cde3739 to nil")
		tl_input_sticker_set_gen.go#L769: 		return fmt.Errorf("unable to decode inputStickerSetAnimatedEmojiAnimations#cde3739: %w", err)
		tl_input_sticker_set_gen.go#L777: 		return fmt.Errorf("can't decode inputStickerSetAnimatedEmojiAnimations#cde3739 to nil")
		tl_input_sticker_set_gen.go#L851: 		return fmt.Errorf("can't encode inputStickerSetPremiumGifts#c88b3b02 as nil")
		tl_input_sticker_set_gen.go#L860: 		return fmt.Errorf("can't encode inputStickerSetPremiumGifts#c88b3b02 as nil")
		tl_input_sticker_set_gen.go#L868: 		return fmt.Errorf("can't decode inputStickerSetPremiumGifts#c88b3b02 to nil")
		tl_input_sticker_set_gen.go#L871: 		return fmt.Errorf("unable to decode inputStickerSetPremiumGifts#c88b3b02: %w", err)
		tl_input_sticker_set_gen.go#L879: 		return fmt.Errorf("can't decode inputStickerSetPremiumGifts#c88b3b02 to nil")
		tl_input_sticker_set_gen.go#L957: 		return fmt.Errorf("can't encode inputStickerSetEmojiGenericAnimations#4c4d4ce as nil")
		tl_input_sticker_set_gen.go#L966: 		return fmt.Errorf("can't encode inputStickerSetEmojiGenericAnimations#4c4d4ce as nil")
		tl_input_sticker_set_gen.go#L974: 		return fmt.Errorf("can't decode inputStickerSetEmojiGenericAnimations#4c4d4ce to nil")
		tl_input_sticker_set_gen.go#L977: 		return fmt.Errorf("unable to decode inputStickerSetEmojiGenericAnimations#4c4d4ce: %w", err)
		tl_input_sticker_set_gen.go#L985: 		return fmt.Errorf("can't decode inputStickerSetEmojiGenericAnimations#4c4d4ce to nil")
		tl_input_sticker_set_gen.go#L1062: 		return fmt.Errorf("can't encode inputStickerSetEmojiDefaultStatuses#29d0f5ee as nil")
		tl_input_sticker_set_gen.go#L1071: 		return fmt.Errorf("can't encode inputStickerSetEmojiDefaultStatuses#29d0f5ee as nil")
		tl_input_sticker_set_gen.go#L1079: 		return fmt.Errorf("can't decode inputStickerSetEmojiDefaultStatuses#29d0f5ee to nil")
		tl_input_sticker_set_gen.go#L1082: 		return fmt.Errorf("unable to decode inputStickerSetEmojiDefaultStatuses#29d0f5ee: %w", err)
		tl_input_sticker_set_gen.go#L1090: 		return fmt.Errorf("can't decode inputStickerSetEmojiDefaultStatuses#29d0f5ee to nil")
		tl_input_sticker_set_gen.go#L1168: 		return fmt.Errorf("can't encode inputStickerSetEmojiDefaultTopicIcons#44c1f8e9 as nil")
		tl_input_sticker_set_gen.go#L1177: 		return fmt.Errorf("can't encode inputStickerSetEmojiDefaultTopicIcons#44c1f8e9 as nil")
		tl_input_sticker_set_gen.go#L1185: 		return fmt.Errorf("can't decode inputStickerSetEmojiDefaultTopicIcons#44c1f8e9 to nil")
		tl_input_sticker_set_gen.go#L1188: 		return fmt.Errorf("unable to decode inputStickerSetEmojiDefaultTopicIcons#44c1f8e9: %w", err)
		tl_input_sticker_set_gen.go#L1196: 		return fmt.Errorf("can't decode inputStickerSetEmojiDefaultTopicIcons#44c1f8e9 to nil")
		tl_input_sticker_set_gen.go#L1269: 		return fmt.Errorf("can't encode inputStickerSetEmojiChannelDefaultStatuses#49748553 as nil")
		tl_input_sticker_set_gen.go#L1278: 		return fmt.Errorf("can't encode inputStickerSetEmojiChannelDefaultStatuses#49748553 as nil")
		tl_input_sticker_set_gen.go#L1286: 		return fmt.Errorf("can't decode inputStickerSetEmojiChannelDefaultStatuses#49748553 to nil")
		tl_input_sticker_set_gen.go#L1289: 		return fmt.Errorf("unable to decode inputStickerSetEmojiChannelDefaultStatuses#49748553: %w", err)
		tl_input_sticker_set_gen.go#L1297: 		return fmt.Errorf("can't decode inputStickerSetEmojiChannelDefaultStatuses#49748553 to nil")
		tl_input_sticker_set_gen.go#L1359: 			return nil, fmt.Errorf("unable to decode InputStickerSetClass: %w", err)
		tl_input_sticker_set_gen.go#L1366: 			return nil, fmt.Errorf("unable to decode InputStickerSetClass: %w", err)
		tl_input_sticker_set_gen.go#L1373: 			return nil, fmt.Errorf("unable to decode InputStickerSetClass: %w", err)
		tl_input_sticker_set_gen.go#L1380: 			return nil, fmt.Errorf("unable to decode InputStickerSetClass: %w", err)
		tl_input_sticker_set_gen.go#L1387: 			return nil, fmt.Errorf("unable to decode InputStickerSetClass: %w", err)
		tl_input_sticker_set_gen.go#L1394: 			return nil, fmt.Errorf("unable to decode InputStickerSetClass: %w", err)
		tl_input_sticker_set_gen.go#L1401: 			return nil, fmt.Errorf("unable to decode InputStickerSetClass: %w", err)
		tl_input_sticker_set_gen.go#L1408: 			return nil, fmt.Errorf("unable to decode InputStickerSetClass: %w", err)
		tl_input_sticker_set_gen.go#L1415: 			return nil, fmt.Errorf("unable to decode InputStickerSetClass: %w", err)
		tl_input_sticker_set_gen.go#L1422: 			return nil, fmt.Errorf("unable to decode InputStickerSetClass: %w", err)
		tl_input_sticker_set_gen.go#L1429: 			return nil, fmt.Errorf("unable to decode InputStickerSetClass: %w", err)
		tl_input_sticker_set_gen.go#L1433: 		return nil, fmt.Errorf("unable to decode InputStickerSetClass: %w", bin.NewUnexpectedID(id))
		tl_input_sticker_set_gen.go#L1445: 		return fmt.Errorf("unable to decode InputStickerSetBox to nil")
		tl_input_sticker_set_gen.go#L1449: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_input_sticker_set_gen.go#L1458: 		return fmt.Errorf("unable to encode InputStickerSetClass as nil")
		tl_input_sticker_set_item_gen.go#L178: 		return fmt.Errorf("can't encode inputStickerSetItem#32da9e9c as nil")
		tl_input_sticker_set_item_gen.go#L187: 		return fmt.Errorf("can't encode inputStickerSetItem#32da9e9c as nil")
		tl_input_sticker_set_item_gen.go#L191: 		return fmt.Errorf("unable to encode inputStickerSetItem#32da9e9c: field flags: %w", err)
		tl_input_sticker_set_item_gen.go#L194: 		return fmt.Errorf("unable to encode inputStickerSetItem#32da9e9c: field document is nil")
		tl_input_sticker_set_item_gen.go#L197: 		return fmt.Errorf("unable to encode inputStickerSetItem#32da9e9c: field document: %w", err)
		tl_input_sticker_set_item_gen.go#L202: 			return fmt.Errorf("unable to encode inputStickerSetItem#32da9e9c: field mask_coords: %w", err)
		tl_input_sticker_set_item_gen.go#L214: 		return fmt.Errorf("can't decode inputStickerSetItem#32da9e9c to nil")
		tl_input_sticker_set_item_gen.go#L217: 		return fmt.Errorf("unable to decode inputStickerSetItem#32da9e9c: %w", err)
		tl_input_sticker_set_item_gen.go#L225: 		return fmt.Errorf("can't decode inputStickerSetItem#32da9e9c to nil")
		tl_input_sticker_set_item_gen.go#L229: 			return fmt.Errorf("unable to decode inputStickerSetItem#32da9e9c: field flags: %w", err)
		tl_input_sticker_set_item_gen.go#L235: 			return fmt.Errorf("unable to decode inputStickerSetItem#32da9e9c: field document: %w", err)
		tl_input_sticker_set_item_gen.go#L242: 			return fmt.Errorf("unable to decode inputStickerSetItem#32da9e9c: field emoji: %w", err)
		tl_input_sticker_set_item_gen.go#L248: 			return fmt.Errorf("unable to decode inputStickerSetItem#32da9e9c: field mask_coords: %w", err)
		tl_input_sticker_set_item_gen.go#L254: 			return fmt.Errorf("unable to decode inputStickerSetItem#32da9e9c: field keywords: %w", err)
		tl_input_stickered_media_gen.go#L120: 		return fmt.Errorf("can't encode inputStickeredMediaPhoto#4a992157 as nil")
		tl_input_stickered_media_gen.go#L129: 		return fmt.Errorf("can't encode inputStickeredMediaPhoto#4a992157 as nil")
		tl_input_stickered_media_gen.go#L132: 		return fmt.Errorf("unable to encode inputStickeredMediaPhoto#4a992157: field id is nil")
		tl_input_stickered_media_gen.go#L135: 		return fmt.Errorf("unable to encode inputStickeredMediaPhoto#4a992157: field id: %w", err)
		tl_input_stickered_media_gen.go#L143: 		return fmt.Errorf("can't decode inputStickeredMediaPhoto#4a992157 to nil")
		tl_input_stickered_media_gen.go#L146: 		return fmt.Errorf("unable to decode inputStickeredMediaPhoto#4a992157: %w", err)
		tl_input_stickered_media_gen.go#L154: 		return fmt.Errorf("can't decode inputStickeredMediaPhoto#4a992157 to nil")
		tl_input_stickered_media_gen.go#L159: 			return fmt.Errorf("unable to decode inputStickeredMediaPhoto#4a992157: field id: %w", err)
		tl_input_stickered_media_gen.go#L260: 		return fmt.Errorf("can't encode inputStickeredMediaDocument#438865b as nil")
		tl_input_stickered_media_gen.go#L269: 		return fmt.Errorf("can't encode inputStickeredMediaDocument#438865b as nil")
		tl_input_stickered_media_gen.go#L272: 		return fmt.Errorf("unable to encode inputStickeredMediaDocument#438865b: field id is nil")
		tl_input_stickered_media_gen.go#L275: 		return fmt.Errorf("unable to encode inputStickeredMediaDocument#438865b: field id: %w", err)
		tl_input_stickered_media_gen.go#L283: 		return fmt.Errorf("can't decode inputStickeredMediaDocument#438865b to nil")
		tl_input_stickered_media_gen.go#L286: 		return fmt.Errorf("unable to decode inputStickeredMediaDocument#438865b: %w", err)
		tl_input_stickered_media_gen.go#L294: 		return fmt.Errorf("can't decode inputStickeredMediaDocument#438865b to nil")
		tl_input_stickered_media_gen.go#L299: 			return fmt.Errorf("unable to decode inputStickeredMediaDocument#438865b: field id: %w", err)
		tl_input_stickered_media_gen.go#L362: 			return nil, fmt.Errorf("unable to decode InputStickeredMediaClass: %w", err)
		tl_input_stickered_media_gen.go#L369: 			return nil, fmt.Errorf("unable to decode InputStickeredMediaClass: %w", err)
		tl_input_stickered_media_gen.go#L373: 		return nil, fmt.Errorf("unable to decode InputStickeredMediaClass: %w", bin.NewUnexpectedID(id))
		tl_input_stickered_media_gen.go#L385: 		return fmt.Errorf("unable to decode InputStickeredMediaBox to nil")
		tl_input_stickered_media_gen.go#L389: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_input_stickered_media_gen.go#L398: 		return fmt.Errorf("unable to encode InputStickeredMediaClass as nil")
		tl_input_store_payment_purpose_gen.go#L152: 		return fmt.Errorf("can't encode inputStorePaymentPremiumSubscription#a6751e66 as nil")
		tl_input_store_payment_purpose_gen.go#L161: 		return fmt.Errorf("can't encode inputStorePaymentPremiumSubscription#a6751e66 as nil")
		tl_input_store_payment_purpose_gen.go#L165: 		return fmt.Errorf("unable to encode inputStorePaymentPremiumSubscription#a6751e66: field flags: %w", err)
		tl_input_store_payment_purpose_gen.go#L173: 		return fmt.Errorf("can't decode inputStorePaymentPremiumSubscription#a6751e66 to nil")
		tl_input_store_payment_purpose_gen.go#L176: 		return fmt.Errorf("unable to decode inputStorePaymentPremiumSubscription#a6751e66: %w", err)
		tl_input_store_payment_purpose_gen.go#L184: 		return fmt.Errorf("can't decode inputStorePaymentPremiumSubscription#a6751e66 to nil")
		tl_input_store_payment_purpose_gen.go#L188: 			return fmt.Errorf("unable to decode inputStorePaymentPremiumSubscription#a6751e66: field flags: %w", err)
		tl_input_store_payment_purpose_gen.go#L351: 		return fmt.Errorf("can't encode inputStorePaymentGiftPremium#616f7fe8 as nil")
		tl_input_store_payment_purpose_gen.go#L360: 		return fmt.Errorf("can't encode inputStorePaymentGiftPremium#616f7fe8 as nil")
		tl_input_store_payment_purpose_gen.go#L363: 		return fmt.Errorf("unable to encode inputStorePaymentGiftPremium#616f7fe8: field user_id is nil")
		tl_input_store_payment_purpose_gen.go#L366: 		return fmt.Errorf("unable to encode inputStorePaymentGiftPremium#616f7fe8: field user_id: %w", err)
		tl_input_store_payment_purpose_gen.go#L376: 		return fmt.Errorf("can't decode inputStorePaymentGiftPremium#616f7fe8 to nil")
		tl_input_store_payment_purpose_gen.go#L379: 		return fmt.Errorf("unable to decode inputStorePaymentGiftPremium#616f7fe8: %w", err)
		tl_input_store_payment_purpose_gen.go#L387: 		return fmt.Errorf("can't decode inputStorePaymentGiftPremium#616f7fe8 to nil")
		tl_input_store_payment_purpose_gen.go#L392: 			return fmt.Errorf("unable to decode inputStorePaymentGiftPremium#616f7fe8: field user_id: %w", err)
		tl_input_store_payment_purpose_gen.go#L399: 			return fmt.Errorf("unable to decode inputStorePaymentGiftPremium#616f7fe8: field currency: %w", err)
		tl_input_store_payment_purpose_gen.go#L406: 			return fmt.Errorf("unable to decode inputStorePaymentGiftPremium#616f7fe8: field amount: %w", err)
		tl_input_store_payment_purpose_gen.go#L602: 		return fmt.Errorf("can't encode inputStorePaymentPremiumGiftCode#a3805f3f as nil")
		tl_input_store_payment_purpose_gen.go#L611: 		return fmt.Errorf("can't encode inputStorePaymentPremiumGiftCode#a3805f3f as nil")
		tl_input_store_payment_purpose_gen.go#L615: 		return fmt.Errorf("unable to encode inputStorePaymentPremiumGiftCode#a3805f3f: field flags: %w", err)
		tl_input_store_payment_purpose_gen.go#L620: 			return fmt.Errorf("unable to encode inputStorePaymentPremiumGiftCode#a3805f3f: field users element with index %d is nil", idx)
		tl_input_store_payment_purpose_gen.go#L623: 			return fmt.Errorf("unable to encode inputStorePaymentPremiumGiftCode#a3805f3f: field users element with index %d: %w", idx, err)
		tl_input_store_payment_purpose_gen.go#L628: 			return fmt.Errorf("unable to encode inputStorePaymentPremiumGiftCode#a3805f3f: field boost_peer is nil")
		tl_input_store_payment_purpose_gen.go#L631: 			return fmt.Errorf("unable to encode inputStorePaymentPremiumGiftCode#a3805f3f: field boost_peer: %w", err)
		tl_input_store_payment_purpose_gen.go#L642: 		return fmt.Errorf("can't decode inputStorePaymentPremiumGiftCode#a3805f3f to nil")
		tl_input_store_payment_purpose_gen.go#L645: 		return fmt.Errorf("unable to decode inputStorePaymentPremiumGiftCode#a3805f3f: %w", err)
		tl_input_store_payment_purpose_gen.go#L653: 		return fmt.Errorf("can't decode inputStorePaymentPremiumGiftCode#a3805f3f to nil")
		tl_input_store_payment_purpose_gen.go#L657: 			return fmt.Errorf("unable to decode inputStorePaymentPremiumGiftCode#a3805f3f: field flags: %w", err)
		tl_input_store_payment_purpose_gen.go#L663: 			return fmt.Errorf("unable to decode inputStorePaymentPremiumGiftCode#a3805f3f: field users: %w", err)
		tl_input_store_payment_purpose_gen.go#L672: 				return fmt.Errorf("unable to decode inputStorePaymentPremiumGiftCode#a3805f3f: field users: %w", err)
		tl_input_store_payment_purpose_gen.go#L680: 			return fmt.Errorf("unable to decode inputStorePaymentPremiumGiftCode#a3805f3f: field boost_peer: %w", err)
		tl_input_store_payment_purpose_gen.go#L687: 			return fmt.Errorf("unable to decode inputStorePaymentPremiumGiftCode#a3805f3f: field currency: %w", err)
		tl_input_store_payment_purpose_gen.go#L694: 			return fmt.Errorf("unable to decode inputStorePaymentPremiumGiftCode#a3805f3f: field amount: %w", err)
		tl_input_store_payment_purpose_gen.go#L1009: 		return fmt.Errorf("can't encode inputStorePaymentPremiumGiveaway#160544ca as nil")
		tl_input_store_payment_purpose_gen.go#L1018: 		return fmt.Errorf("can't encode inputStorePaymentPremiumGiveaway#160544ca as nil")
		tl_input_store_payment_purpose_gen.go#L1022: 		return fmt.Errorf("unable to encode inputStorePaymentPremiumGiveaway#160544ca: field flags: %w", err)
		tl_input_store_payment_purpose_gen.go#L1025: 		return fmt.Errorf("unable to encode inputStorePaymentPremiumGiveaway#160544ca: field boost_peer is nil")
		tl_input_store_payment_purpose_gen.go#L1028: 		return fmt.Errorf("unable to encode inputStorePaymentPremiumGiveaway#160544ca: field boost_peer: %w", err)
		tl_input_store_payment_purpose_gen.go#L1034: 				return fmt.Errorf("unable to encode inputStorePaymentPremiumGiveaway#160544ca: field additional_peers element with index %d is nil", idx)
		tl_input_store_payment_purpose_gen.go#L1037: 				return fmt.Errorf("unable to encode inputStorePaymentPremiumGiveaway#160544ca: field additional_peers element with index %d: %w", idx, err)
		tl_input_store_payment_purpose_gen.go#L1060: 		return fmt.Errorf("can't decode inputStorePaymentPremiumGiveaway#160544ca to nil")
		tl_input_store_payment_purpose_gen.go#L1063: 		return fmt.Errorf("unable to decode inputStorePaymentPremiumGiveaway#160544ca: %w", err)
		tl_input_store_payment_purpose_gen.go#L1071: 		return fmt.Errorf("can't decode inputStorePaymentPremiumGiveaway#160544ca to nil")
		tl_input_store_payment_purpose_gen.go#L1075: 			return fmt.Errorf("unable to decode inputStorePaymentPremiumGiveaway#160544ca: field flags: %w", err)
		tl_input_store_payment_purpose_gen.go#L1083: 			return fmt.Errorf("unable to decode inputStorePaymentPremiumGiveaway#160544ca: field boost_peer: %w", err)
		tl_input_store_payment_purpose_gen.go#L1090: 			return fmt.Errorf("unable to decode inputStorePaymentPremiumGiveaway#160544ca: field additional_peers: %w", err)
		tl_input_store_payment_purpose_gen.go#L1099: 				return fmt.Errorf("unable to decode inputStorePaymentPremiumGiveaway#160544ca: field additional_peers: %w", err)
		tl_input_store_payment_purpose_gen.go#L1107: 			return fmt.Errorf("unable to decode inputStorePaymentPremiumGiveaway#160544ca: field countries_iso2: %w", err)
		tl_input_store_payment_purpose_gen.go#L1116: 				return fmt.Errorf("unable to decode inputStorePaymentPremiumGiveaway#160544ca: field countries_iso2: %w", err)
		tl_input_store_payment_purpose_gen.go#L1124: 			return fmt.Errorf("unable to decode inputStorePaymentPremiumGiveaway#160544ca: field prize_description: %w", err)
		tl_input_store_payment_purpose_gen.go#L1131: 			return fmt.Errorf("unable to decode inputStorePaymentPremiumGiveaway#160544ca: field random_id: %w", err)
		tl_input_store_payment_purpose_gen.go#L1138: 			return fmt.Errorf("unable to decode inputStorePaymentPremiumGiveaway#160544ca: field until_date: %w", err)
		tl_input_store_payment_purpose_gen.go#L1145: 			return fmt.Errorf("unable to decode inputStorePaymentPremiumGiveaway#160544ca: field currency: %w", err)
		tl_input_store_payment_purpose_gen.go#L1152: 			return fmt.Errorf("unable to decode inputStorePaymentPremiumGiveaway#160544ca: field amount: %w", err)
		tl_input_store_payment_purpose_gen.go#L1349: 			return nil, fmt.Errorf("unable to decode InputStorePaymentPurposeClass: %w", err)
		tl_input_store_payment_purpose_gen.go#L1356: 			return nil, fmt.Errorf("unable to decode InputStorePaymentPurposeClass: %w", err)
		tl_input_store_payment_purpose_gen.go#L1363: 			return nil, fmt.Errorf("unable to decode InputStorePaymentPurposeClass: %w", err)
		tl_input_store_payment_purpose_gen.go#L1370: 			return nil, fmt.Errorf("unable to decode InputStorePaymentPurposeClass: %w", err)
		tl_input_store_payment_purpose_gen.go#L1374: 		return nil, fmt.Errorf("unable to decode InputStorePaymentPurposeClass: %w", bin.NewUnexpectedID(id))
		tl_input_store_payment_purpose_gen.go#L1386: 		return fmt.Errorf("unable to decode InputStorePaymentPurposeBox to nil")
		tl_input_store_payment_purpose_gen.go#L1390: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_input_store_payment_purpose_gen.go#L1399: 		return fmt.Errorf("unable to encode InputStorePaymentPurposeClass as nil")
		tl_input_theme_gen.go#L131: 		return fmt.Errorf("can't encode inputTheme#3c5693e9 as nil")
		tl_input_theme_gen.go#L140: 		return fmt.Errorf("can't encode inputTheme#3c5693e9 as nil")
		tl_input_theme_gen.go#L150: 		return fmt.Errorf("can't decode inputTheme#3c5693e9 to nil")
		tl_input_theme_gen.go#L153: 		return fmt.Errorf("unable to decode inputTheme#3c5693e9: %w", err)
		tl_input_theme_gen.go#L161: 		return fmt.Errorf("can't decode inputTheme#3c5693e9 to nil")
		tl_input_theme_gen.go#L166: 			return fmt.Errorf("unable to decode inputTheme#3c5693e9: field id: %w", err)
		tl_input_theme_gen.go#L173: 			return fmt.Errorf("unable to decode inputTheme#3c5693e9: field access_hash: %w", err)
		tl_input_theme_gen.go#L285: 		return fmt.Errorf("can't encode inputThemeSlug#f5890df1 as nil")
		tl_input_theme_gen.go#L294: 		return fmt.Errorf("can't encode inputThemeSlug#f5890df1 as nil")
		tl_input_theme_gen.go#L303: 		return fmt.Errorf("can't decode inputThemeSlug#f5890df1 to nil")
		tl_input_theme_gen.go#L306: 		return fmt.Errorf("unable to decode inputThemeSlug#f5890df1: %w", err)
		tl_input_theme_gen.go#L314: 		return fmt.Errorf("can't decode inputThemeSlug#f5890df1 to nil")
		tl_input_theme_gen.go#L319: 			return fmt.Errorf("unable to decode inputThemeSlug#f5890df1: field slug: %w", err)
		tl_input_theme_gen.go#L382: 			return nil, fmt.Errorf("unable to decode InputThemeClass: %w", err)
		tl_input_theme_gen.go#L389: 			return nil, fmt.Errorf("unable to decode InputThemeClass: %w", err)
		tl_input_theme_gen.go#L393: 		return nil, fmt.Errorf("unable to decode InputThemeClass: %w", bin.NewUnexpectedID(id))
		tl_input_theme_gen.go#L405: 		return fmt.Errorf("unable to decode InputThemeBox to nil")
		tl_input_theme_gen.go#L409: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_input_theme_gen.go#L418: 		return fmt.Errorf("unable to encode InputThemeClass as nil")
		tl_input_theme_settings_gen.go#L248: 		return fmt.Errorf("can't encode inputThemeSettings#8fde504f as nil")
		tl_input_theme_settings_gen.go#L257: 		return fmt.Errorf("can't encode inputThemeSettings#8fde504f as nil")
		tl_input_theme_settings_gen.go#L261: 		return fmt.Errorf("unable to encode inputThemeSettings#8fde504f: field flags: %w", err)
		tl_input_theme_settings_gen.go#L264: 		return fmt.Errorf("unable to encode inputThemeSettings#8fde504f: field base_theme is nil")
		tl_input_theme_settings_gen.go#L267: 		return fmt.Errorf("unable to encode inputThemeSettings#8fde504f: field base_theme: %w", err)
		tl_input_theme_settings_gen.go#L281: 			return fmt.Errorf("unable to encode inputThemeSettings#8fde504f: field wallpaper is nil")
		tl_input_theme_settings_gen.go#L284: 			return fmt.Errorf("unable to encode inputThemeSettings#8fde504f: field wallpaper: %w", err)
		tl_input_theme_settings_gen.go#L289: 			return fmt.Errorf("unable to encode inputThemeSettings#8fde504f: field wallpaper_settings: %w", err)
		tl_input_theme_settings_gen.go#L298: 		return fmt.Errorf("can't decode inputThemeSettings#8fde504f to nil")
		tl_input_theme_settings_gen.go#L301: 		return fmt.Errorf("unable to decode inputThemeSettings#8fde504f: %w", err)
		tl_input_theme_settings_gen.go#L309: 		return fmt.Errorf("can't decode inputThemeSettings#8fde504f to nil")
		tl_input_theme_settings_gen.go#L313: 			return fmt.Errorf("unable to decode inputThemeSettings#8fde504f: field flags: %w", err)
		tl_input_theme_settings_gen.go#L320: 			return fmt.Errorf("unable to decode inputThemeSettings#8fde504f: field base_theme: %w", err)
		tl_input_theme_settings_gen.go#L327: 			return fmt.Errorf("unable to decode inputThemeSettings#8fde504f: field accent_color: %w", err)
		tl_input_theme_settings_gen.go#L334: 			return fmt.Errorf("unable to decode inputThemeSettings#8fde504f: field outbox_accent_color: %w", err)
		tl_input_theme_settings_gen.go#L341: 			return fmt.Errorf("unable to decode inputThemeSettings#8fde504f: field message_colors: %w", err)
		tl_input_theme_settings_gen.go#L350: 				return fmt.Errorf("unable to decode inputThemeSettings#8fde504f: field message_colors: %w", err)
		tl_input_theme_settings_gen.go#L358: 			return fmt.Errorf("unable to decode inputThemeSettings#8fde504f: field wallpaper: %w", err)
		tl_input_theme_settings_gen.go#L364: 			return fmt.Errorf("unable to decode inputThemeSettings#8fde504f: field wallpaper_settings: %w", err)
		tl_input_user_gen.go#L103: 		return fmt.Errorf("can't encode inputUserEmpty#b98886cf as nil")
		tl_input_user_gen.go#L112: 		return fmt.Errorf("can't encode inputUserEmpty#b98886cf as nil")
		tl_input_user_gen.go#L120: 		return fmt.Errorf("can't decode inputUserEmpty#b98886cf to nil")
		tl_input_user_gen.go#L123: 		return fmt.Errorf("unable to decode inputUserEmpty#b98886cf: %w", err)
		tl_input_user_gen.go#L131: 		return fmt.Errorf("can't decode inputUserEmpty#b98886cf to nil")
		tl_input_user_gen.go#L205: 		return fmt.Errorf("can't encode inputUserSelf#f7c1b13f as nil")
		tl_input_user_gen.go#L214: 		return fmt.Errorf("can't encode inputUserSelf#f7c1b13f as nil")
		tl_input_user_gen.go#L222: 		return fmt.Errorf("can't decode inputUserSelf#f7c1b13f to nil")
		tl_input_user_gen.go#L225: 		return fmt.Errorf("unable to decode inputUserSelf#f7c1b13f: %w", err)
		tl_input_user_gen.go#L233: 		return fmt.Errorf("can't decode inputUserSelf#f7c1b13f to nil")
		tl_input_user_gen.go#L338: 		return fmt.Errorf("can't encode inputUser#f21158c6 as nil")
		tl_input_user_gen.go#L347: 		return fmt.Errorf("can't encode inputUser#f21158c6 as nil")
		tl_input_user_gen.go#L357: 		return fmt.Errorf("can't decode inputUser#f21158c6 to nil")
		tl_input_user_gen.go#L360: 		return fmt.Errorf("unable to decode inputUser#f21158c6: %w", err)
		tl_input_user_gen.go#L368: 		return fmt.Errorf("can't decode inputUser#f21158c6 to nil")
		tl_input_user_gen.go#L373: 			return fmt.Errorf("unable to decode inputUser#f21158c6: field user_id: %w", err)
		tl_input_user_gen.go#L380: 			return fmt.Errorf("unable to decode inputUser#f21158c6: field access_hash: %w", err)
		tl_input_user_gen.go#L514: 		return fmt.Errorf("can't encode inputUserFromMessage#1da448e2 as nil")
		tl_input_user_gen.go#L523: 		return fmt.Errorf("can't encode inputUserFromMessage#1da448e2 as nil")
		tl_input_user_gen.go#L526: 		return fmt.Errorf("unable to encode inputUserFromMessage#1da448e2: field peer is nil")
		tl_input_user_gen.go#L529: 		return fmt.Errorf("unable to encode inputUserFromMessage#1da448e2: field peer: %w", err)
		tl_input_user_gen.go#L539: 		return fmt.Errorf("can't decode inputUserFromMessage#1da448e2 to nil")
		tl_input_user_gen.go#L542: 		return fmt.Errorf("unable to decode inputUserFromMessage#1da448e2: %w", err)
		tl_input_user_gen.go#L550: 		return fmt.Errorf("can't decode inputUserFromMessage#1da448e2 to nil")
		tl_input_user_gen.go#L555: 			return fmt.Errorf("unable to decode inputUserFromMessage#1da448e2: field peer: %w", err)
		tl_input_user_gen.go#L562: 			return fmt.Errorf("unable to decode inputUserFromMessage#1da448e2: field msg_id: %w", err)
		tl_input_user_gen.go#L569: 			return fmt.Errorf("unable to decode inputUserFromMessage#1da448e2: field user_id: %w", err)
		tl_input_user_gen.go#L650: 			return nil, fmt.Errorf("unable to decode InputUserClass: %w", err)
		tl_input_user_gen.go#L657: 			return nil, fmt.Errorf("unable to decode InputUserClass: %w", err)
		tl_input_user_gen.go#L664: 			return nil, fmt.Errorf("unable to decode InputUserClass: %w", err)
		tl_input_user_gen.go#L671: 			return nil, fmt.Errorf("unable to decode InputUserClass: %w", err)
		tl_input_user_gen.go#L675: 		return nil, fmt.Errorf("unable to decode InputUserClass: %w", bin.NewUnexpectedID(id))
		tl_input_user_gen.go#L687: 		return fmt.Errorf("unable to decode InputUserBox to nil")
		tl_input_user_gen.go#L691: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_input_user_gen.go#L700: 		return fmt.Errorf("unable to encode InputUserClass as nil")
		tl_input_wall_paper_gen.go#L137: 		return fmt.Errorf("can't encode inputWallPaper#e630b979 as nil")
		tl_input_wall_paper_gen.go#L146: 		return fmt.Errorf("can't encode inputWallPaper#e630b979 as nil")
		tl_input_wall_paper_gen.go#L156: 		return fmt.Errorf("can't decode inputWallPaper#e630b979 to nil")
		tl_input_wall_paper_gen.go#L159: 		return fmt.Errorf("unable to decode inputWallPaper#e630b979: %w", err)
		tl_input_wall_paper_gen.go#L167: 		return fmt.Errorf("can't decode inputWallPaper#e630b979 to nil")
		tl_input_wall_paper_gen.go#L172: 			return fmt.Errorf("unable to decode inputWallPaper#e630b979: field id: %w", err)
		tl_input_wall_paper_gen.go#L179: 			return fmt.Errorf("unable to decode inputWallPaper#e630b979: field access_hash: %w", err)
		tl_input_wall_paper_gen.go#L292: 		return fmt.Errorf("can't encode inputWallPaperSlug#72091c80 as nil")
		tl_input_wall_paper_gen.go#L301: 		return fmt.Errorf("can't encode inputWallPaperSlug#72091c80 as nil")
		tl_input_wall_paper_gen.go#L310: 		return fmt.Errorf("can't decode inputWallPaperSlug#72091c80 to nil")
		tl_input_wall_paper_gen.go#L313: 		return fmt.Errorf("unable to decode inputWallPaperSlug#72091c80: %w", err)
		tl_input_wall_paper_gen.go#L321: 		return fmt.Errorf("can't decode inputWallPaperSlug#72091c80 to nil")
		tl_input_wall_paper_gen.go#L326: 			return fmt.Errorf("unable to decode inputWallPaperSlug#72091c80: field slug: %w", err)
		tl_input_wall_paper_gen.go#L432: 		return fmt.Errorf("can't encode inputWallPaperNoFile#967a462e as nil")
		tl_input_wall_paper_gen.go#L441: 		return fmt.Errorf("can't encode inputWallPaperNoFile#967a462e as nil")
		tl_input_wall_paper_gen.go#L450: 		return fmt.Errorf("can't decode inputWallPaperNoFile#967a462e to nil")
		tl_input_wall_paper_gen.go#L453: 		return fmt.Errorf("unable to decode inputWallPaperNoFile#967a462e: %w", err)
		tl_input_wall_paper_gen.go#L461: 		return fmt.Errorf("can't decode inputWallPaperNoFile#967a462e to nil")
		tl_input_wall_paper_gen.go#L466: 			return fmt.Errorf("unable to decode inputWallPaperNoFile#967a462e: field id: %w", err)
		tl_input_wall_paper_gen.go#L530: 			return nil, fmt.Errorf("unable to decode InputWallPaperClass: %w", err)
		tl_input_wall_paper_gen.go#L537: 			return nil, fmt.Errorf("unable to decode InputWallPaperClass: %w", err)
		tl_input_wall_paper_gen.go#L544: 			return nil, fmt.Errorf("unable to decode InputWallPaperClass: %w", err)
		tl_input_wall_paper_gen.go#L548: 		return nil, fmt.Errorf("unable to decode InputWallPaperClass: %w", bin.NewUnexpectedID(id))
		tl_input_wall_paper_gen.go#L560: 		return fmt.Errorf("unable to decode InputWallPaperBox to nil")
		tl_input_wall_paper_gen.go#L564: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_input_wall_paper_gen.go#L573: 		return fmt.Errorf("unable to encode InputWallPaperClass as nil")
		tl_input_web_document_gen.go#L151: 		return fmt.Errorf("can't encode inputWebDocument#9bed434d as nil")
		tl_input_web_document_gen.go#L160: 		return fmt.Errorf("can't encode inputWebDocument#9bed434d as nil")
		tl_input_web_document_gen.go#L168: 			return fmt.Errorf("unable to encode inputWebDocument#9bed434d: field attributes element with index %d is nil", idx)
		tl_input_web_document_gen.go#L171: 			return fmt.Errorf("unable to encode inputWebDocument#9bed434d: field attributes element with index %d: %w", idx, err)
		tl_input_web_document_gen.go#L180: 		return fmt.Errorf("can't decode inputWebDocument#9bed434d to nil")
		tl_input_web_document_gen.go#L183: 		return fmt.Errorf("unable to decode inputWebDocument#9bed434d: %w", err)
		tl_input_web_document_gen.go#L191: 		return fmt.Errorf("can't decode inputWebDocument#9bed434d to nil")
		tl_input_web_document_gen.go#L196: 			return fmt.Errorf("unable to decode inputWebDocument#9bed434d: field url: %w", err)
		tl_input_web_document_gen.go#L203: 			return fmt.Errorf("unable to decode inputWebDocument#9bed434d: field size: %w", err)
		tl_input_web_document_gen.go#L210: 			return fmt.Errorf("unable to decode inputWebDocument#9bed434d: field mime_type: %w", err)
		tl_input_web_document_gen.go#L217: 			return fmt.Errorf("unable to decode inputWebDocument#9bed434d: field attributes: %w", err)
		tl_input_web_document_gen.go#L226: 				return fmt.Errorf("unable to decode inputWebDocument#9bed434d: field attributes: %w", err)
		tl_input_web_file_location_gen.go#L131: 		return fmt.Errorf("can't encode inputWebFileLocation#c239d686 as nil")
		tl_input_web_file_location_gen.go#L140: 		return fmt.Errorf("can't encode inputWebFileLocation#c239d686 as nil")
		tl_input_web_file_location_gen.go#L150: 		return fmt.Errorf("can't decode inputWebFileLocation#c239d686 to nil")
		tl_input_web_file_location_gen.go#L153: 		return fmt.Errorf("unable to decode inputWebFileLocation#c239d686: %w", err)
		tl_input_web_file_location_gen.go#L161: 		return fmt.Errorf("can't decode inputWebFileLocation#c239d686 to nil")
		tl_input_web_file_location_gen.go#L166: 			return fmt.Errorf("unable to decode inputWebFileLocation#c239d686: field url: %w", err)
		tl_input_web_file_location_gen.go#L173: 			return fmt.Errorf("unable to decode inputWebFileLocation#c239d686: field access_hash: %w", err)
		tl_input_web_file_location_gen.go#L348: 		return fmt.Errorf("can't encode inputWebFileGeoPointLocation#9f2221c9 as nil")
		tl_input_web_file_location_gen.go#L357: 		return fmt.Errorf("can't encode inputWebFileGeoPointLocation#9f2221c9 as nil")
		tl_input_web_file_location_gen.go#L360: 		return fmt.Errorf("unable to encode inputWebFileGeoPointLocation#9f2221c9: field geo_point is nil")
		tl_input_web_file_location_gen.go#L363: 		return fmt.Errorf("unable to encode inputWebFileGeoPointLocation#9f2221c9: field geo_point: %w", err)
		tl_input_web_file_location_gen.go#L376: 		return fmt.Errorf("can't decode inputWebFileGeoPointLocation#9f2221c9 to nil")
		tl_input_web_file_location_gen.go#L379: 		return fmt.Errorf("unable to decode inputWebFileGeoPointLocation#9f2221c9: %w", err)
		tl_input_web_file_location_gen.go#L387: 		return fmt.Errorf("can't decode inputWebFileGeoPointLocation#9f2221c9 to nil")
		tl_input_web_file_location_gen.go#L392: 			return fmt.Errorf("unable to decode inputWebFileGeoPointLocation#9f2221c9: field geo_point: %w", err)
		tl_input_web_file_location_gen.go#L399: 			return fmt.Errorf("unable to decode inputWebFileGeoPointLocation#9f2221c9: field access_hash: %w", err)
		tl_input_web_file_location_gen.go#L406: 			return fmt.Errorf("unable to decode inputWebFileGeoPointLocation#9f2221c9: field w: %w", err)
		tl_input_web_file_location_gen.go#L413: 			return fmt.Errorf("unable to decode inputWebFileGeoPointLocation#9f2221c9: field h: %w", err)
		tl_input_web_file_location_gen.go#L420: 			return fmt.Errorf("unable to decode inputWebFileGeoPointLocation#9f2221c9: field zoom: %w", err)
		tl_input_web_file_location_gen.go#L427: 			return fmt.Errorf("unable to decode inputWebFileGeoPointLocation#9f2221c9: field scale: %w", err)
		tl_input_web_file_location_gen.go#L652: 		return fmt.Errorf("can't encode inputWebFileAudioAlbumThumbLocation#f46fe924 as nil")
		tl_input_web_file_location_gen.go#L661: 		return fmt.Errorf("can't encode inputWebFileAudioAlbumThumbLocation#f46fe924 as nil")
		tl_input_web_file_location_gen.go#L665: 		return fmt.Errorf("unable to encode inputWebFileAudioAlbumThumbLocation#f46fe924: field flags: %w", err)
		tl_input_web_file_location_gen.go#L669: 			return fmt.Errorf("unable to encode inputWebFileAudioAlbumThumbLocation#f46fe924: field document is nil")
		tl_input_web_file_location_gen.go#L672: 			return fmt.Errorf("unable to encode inputWebFileAudioAlbumThumbLocation#f46fe924: field document: %w", err)
		tl_input_web_file_location_gen.go#L687: 		return fmt.Errorf("can't decode inputWebFileAudioAlbumThumbLocation#f46fe924 to nil")
		tl_input_web_file_location_gen.go#L690: 		return fmt.Errorf("unable to decode inputWebFileAudioAlbumThumbLocation#f46fe924: %w", err)
		tl_input_web_file_location_gen.go#L698: 		return fmt.Errorf("can't decode inputWebFileAudioAlbumThumbLocation#f46fe924 to nil")
		tl_input_web_file_location_gen.go#L702: 			return fmt.Errorf("unable to decode inputWebFileAudioAlbumThumbLocation#f46fe924: field flags: %w", err)
		tl_input_web_file_location_gen.go#L709: 			return fmt.Errorf("unable to decode inputWebFileAudioAlbumThumbLocation#f46fe924: field document: %w", err)
		tl_input_web_file_location_gen.go#L716: 			return fmt.Errorf("unable to decode inputWebFileAudioAlbumThumbLocation#f46fe924: field title: %w", err)
		tl_input_web_file_location_gen.go#L723: 			return fmt.Errorf("unable to decode inputWebFileAudioAlbumThumbLocation#f46fe924: field performer: %w", err)
		tl_input_web_file_location_gen.go#L852: 			return nil, fmt.Errorf("unable to decode InputWebFileLocationClass: %w", err)
		tl_input_web_file_location_gen.go#L859: 			return nil, fmt.Errorf("unable to decode InputWebFileLocationClass: %w", err)
		tl_input_web_file_location_gen.go#L866: 			return nil, fmt.Errorf("unable to decode InputWebFileLocationClass: %w", err)
		tl_input_web_file_location_gen.go#L870: 		return nil, fmt.Errorf("unable to decode InputWebFileLocationClass: %w", bin.NewUnexpectedID(id))
		tl_input_web_file_location_gen.go#L882: 		return fmt.Errorf("unable to decode InputWebFileLocationBox to nil")
		tl_input_web_file_location_gen.go#L886: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_input_web_file_location_gen.go#L895: 		return fmt.Errorf("unable to encode InputWebFileLocationClass as nil")
		tl_int_gen.go#L97: 		return fmt.Errorf("can't encode int#a8509bda as nil")
		tl_int_gen.go#L106: 		return fmt.Errorf("can't encode int#a8509bda as nil")
		tl_int_gen.go#L114: 		return fmt.Errorf("can't decode int#a8509bda to nil")
		tl_int_gen.go#L117: 		return fmt.Errorf("unable to decode int#a8509bda: %w", err)
		tl_int_gen.go#L125: 		return fmt.Errorf("can't decode int#a8509bda to nil")
		tl_int_vector_gen.go#L112: 		return fmt.Errorf("can't encode Vector<int> as nil")
		tl_int_vector_gen.go#L121: 		return fmt.Errorf("can't encode Vector<int> as nil")
		tl_int_vector_gen.go#L133: 		return fmt.Errorf("can't decode Vector<int> to nil")
		tl_int_vector_gen.go#L142: 		return fmt.Errorf("can't decode Vector<int> to nil")
		tl_int_vector_gen.go#L147: 			return fmt.Errorf("unable to decode Vector<int>: field Elems: %w", err)
		tl_int_vector_gen.go#L156: 				return fmt.Errorf("unable to decode Vector<int>: field Elems: %w", err)
		tl_invoice_gen.go#L346: 		return fmt.Errorf("can't encode invoice#5db95a15 as nil")
		tl_invoice_gen.go#L355: 		return fmt.Errorf("can't encode invoice#5db95a15 as nil")
		tl_invoice_gen.go#L359: 		return fmt.Errorf("unable to encode invoice#5db95a15: field flags: %w", err)
		tl_invoice_gen.go#L365: 			return fmt.Errorf("unable to encode invoice#5db95a15: field prices element with index %d: %w", idx, err)
		tl_invoice_gen.go#L386: 		return fmt.Errorf("can't decode invoice#5db95a15 to nil")
		tl_invoice_gen.go#L389: 		return fmt.Errorf("unable to decode invoice#5db95a15: %w", err)
		tl_invoice_gen.go#L397: 		return fmt.Errorf("can't decode invoice#5db95a15 to nil")
		tl_invoice_gen.go#L401: 			return fmt.Errorf("unable to decode invoice#5db95a15: field flags: %w", err)
		tl_invoice_gen.go#L416: 			return fmt.Errorf("unable to decode invoice#5db95a15: field currency: %w", err)
		tl_invoice_gen.go#L423: 			return fmt.Errorf("unable to decode invoice#5db95a15: field prices: %w", err)
		tl_invoice_gen.go#L432: 				return fmt.Errorf("unable to decode invoice#5db95a15: field prices: %w", err)
		tl_invoice_gen.go#L440: 			return fmt.Errorf("unable to decode invoice#5db95a15: field max_tip_amount: %w", err)
		tl_invoice_gen.go#L447: 			return fmt.Errorf("unable to decode invoice#5db95a15: field suggested_tip_amounts: %w", err)
		tl_invoice_gen.go#L456: 				return fmt.Errorf("unable to decode invoice#5db95a15: field suggested_tip_amounts: %w", err)
		tl_invoice_gen.go#L464: 			return fmt.Errorf("unable to decode invoice#5db95a15: field terms_url: %w", err)
		tl_invoke_after_msg_gen.go#L126: 		return fmt.Errorf("can't encode invokeAfterMsg#cb9f372d as nil")
		tl_invoke_after_msg_gen.go#L135: 		return fmt.Errorf("can't encode invokeAfterMsg#cb9f372d as nil")
		tl_invoke_after_msg_gen.go#L139: 		return fmt.Errorf("unable to encode invokeAfterMsg#cb9f372d: field query: %w", err)
		tl_invoke_after_msg_gen.go#L147: 		return fmt.Errorf("can't decode invokeAfterMsg#cb9f372d to nil")
		tl_invoke_after_msg_gen.go#L150: 		return fmt.Errorf("unable to decode invokeAfterMsg#cb9f372d: %w", err)
		tl_invoke_after_msg_gen.go#L158: 		return fmt.Errorf("can't decode invokeAfterMsg#cb9f372d to nil")
		tl_invoke_after_msg_gen.go#L163: 			return fmt.Errorf("unable to decode invokeAfterMsg#cb9f372d: field msg_id: %w", err)
		tl_invoke_after_msg_gen.go#L169: 			return fmt.Errorf("unable to decode invokeAfterMsg#cb9f372d: field query: %w", err)
		tl_invoke_after_msgs_gen.go#L126: 		return fmt.Errorf("can't encode invokeAfterMsgs#3dc4b4f0 as nil")
		tl_invoke_after_msgs_gen.go#L135: 		return fmt.Errorf("can't encode invokeAfterMsgs#3dc4b4f0 as nil")
		tl_invoke_after_msgs_gen.go#L142: 		return fmt.Errorf("unable to encode invokeAfterMsgs#3dc4b4f0: field query: %w", err)
		tl_invoke_after_msgs_gen.go#L150: 		return fmt.Errorf("can't decode invokeAfterMsgs#3dc4b4f0 to nil")
		tl_invoke_after_msgs_gen.go#L153: 		return fmt.Errorf("unable to decode invokeAfterMsgs#3dc4b4f0: %w", err)
		tl_invoke_after_msgs_gen.go#L161: 		return fmt.Errorf("can't decode invokeAfterMsgs#3dc4b4f0 to nil")
		tl_invoke_after_msgs_gen.go#L166: 			return fmt.Errorf("unable to decode invokeAfterMsgs#3dc4b4f0: field msg_ids: %w", err)
		tl_invoke_after_msgs_gen.go#L175: 				return fmt.Errorf("unable to decode invokeAfterMsgs#3dc4b4f0: field msg_ids: %w", err)
		tl_invoke_after_msgs_gen.go#L182: 			return fmt.Errorf("unable to decode invokeAfterMsgs#3dc4b4f0: field query: %w", err)
		tl_invoke_with_layer_gen.go#L129: 		return fmt.Errorf("can't encode invokeWithLayer#da9b0d0d as nil")
		tl_invoke_with_layer_gen.go#L138: 		return fmt.Errorf("can't encode invokeWithLayer#da9b0d0d as nil")
		tl_invoke_with_layer_gen.go#L142: 		return fmt.Errorf("unable to encode invokeWithLayer#da9b0d0d: field query: %w", err)
		tl_invoke_with_layer_gen.go#L150: 		return fmt.Errorf("can't decode invokeWithLayer#da9b0d0d to nil")
		tl_invoke_with_layer_gen.go#L153: 		return fmt.Errorf("unable to decode invokeWithLayer#da9b0d0d: %w", err)
		tl_invoke_with_layer_gen.go#L161: 		return fmt.Errorf("can't decode invokeWithLayer#da9b0d0d to nil")
		tl_invoke_with_layer_gen.go#L166: 			return fmt.Errorf("unable to decode invokeWithLayer#da9b0d0d: field layer: %w", err)
		tl_invoke_with_layer_gen.go#L172: 			return fmt.Errorf("unable to decode invokeWithLayer#da9b0d0d: field query: %w", err)
		tl_invoke_with_messages_range_gen.go#L126: 		return fmt.Errorf("can't encode invokeWithMessagesRange#365275f2 as nil")
		tl_invoke_with_messages_range_gen.go#L135: 		return fmt.Errorf("can't encode invokeWithMessagesRange#365275f2 as nil")
		tl_invoke_with_messages_range_gen.go#L138: 		return fmt.Errorf("unable to encode invokeWithMessagesRange#365275f2: field range: %w", err)
		tl_invoke_with_messages_range_gen.go#L141: 		return fmt.Errorf("unable to encode invokeWithMessagesRange#365275f2: field query: %w", err)
		tl_invoke_with_messages_range_gen.go#L149: 		return fmt.Errorf("can't decode invokeWithMessagesRange#365275f2 to nil")
		tl_invoke_with_messages_range_gen.go#L152: 		return fmt.Errorf("unable to decode invokeWithMessagesRange#365275f2: %w", err)
		tl_invoke_with_messages_range_gen.go#L160: 		return fmt.Errorf("can't decode invokeWithMessagesRange#365275f2 to nil")
		tl_invoke_with_messages_range_gen.go#L164: 			return fmt.Errorf("unable to decode invokeWithMessagesRange#365275f2: field range: %w", err)
		tl_invoke_with_messages_range_gen.go#L169: 			return fmt.Errorf("unable to decode invokeWithMessagesRange#365275f2: field query: %w", err)
		tl_invoke_with_takeout_gen.go#L132: 		return fmt.Errorf("can't encode invokeWithTakeout#aca9fd2e as nil")
		tl_invoke_with_takeout_gen.go#L141: 		return fmt.Errorf("can't encode invokeWithTakeout#aca9fd2e as nil")
		tl_invoke_with_takeout_gen.go#L145: 		return fmt.Errorf("unable to encode invokeWithTakeout#aca9fd2e: field query: %w", err)
		tl_invoke_with_takeout_gen.go#L153: 		return fmt.Errorf("can't decode invokeWithTakeout#aca9fd2e to nil")
		tl_invoke_with_takeout_gen.go#L156: 		return fmt.Errorf("unable to decode invokeWithTakeout#aca9fd2e: %w", err)
		tl_invoke_with_takeout_gen.go#L164: 		return fmt.Errorf("can't decode invokeWithTakeout#aca9fd2e to nil")
		tl_invoke_with_takeout_gen.go#L169: 			return fmt.Errorf("unable to decode invokeWithTakeout#aca9fd2e: field takeout_id: %w", err)
		tl_invoke_with_takeout_gen.go#L175: 			return fmt.Errorf("unable to decode invokeWithTakeout#aca9fd2e: field query: %w", err)
		tl_invoke_without_updates_gen.go#L120: 		return fmt.Errorf("can't encode invokeWithoutUpdates#bf9459b7 as nil")
		tl_invoke_without_updates_gen.go#L129: 		return fmt.Errorf("can't encode invokeWithoutUpdates#bf9459b7 as nil")
		tl_invoke_without_updates_gen.go#L132: 		return fmt.Errorf("unable to encode invokeWithoutUpdates#bf9459b7: field query: %w", err)
		tl_invoke_without_updates_gen.go#L140: 		return fmt.Errorf("can't decode invokeWithoutUpdates#bf9459b7 to nil")
		tl_invoke_without_updates_gen.go#L143: 		return fmt.Errorf("unable to decode invokeWithoutUpdates#bf9459b7: %w", err)
		tl_invoke_without_updates_gen.go#L151: 		return fmt.Errorf("can't decode invokeWithoutUpdates#bf9459b7 to nil")
		tl_invoke_without_updates_gen.go#L155: 			return fmt.Errorf("unable to decode invokeWithoutUpdates#bf9459b7: field query: %w", err)
		tl_ip_port_gen.go#L130: 		return fmt.Errorf("can't encode ipPort#d433ad73 as nil")
		tl_ip_port_gen.go#L139: 		return fmt.Errorf("can't encode ipPort#d433ad73 as nil")
		tl_ip_port_gen.go#L149: 		return fmt.Errorf("can't decode ipPort#d433ad73 to nil")
		tl_ip_port_gen.go#L152: 		return fmt.Errorf("unable to decode ipPort#d433ad73: %w", err)
		tl_ip_port_gen.go#L160: 		return fmt.Errorf("can't decode ipPort#d433ad73 to nil")
		tl_ip_port_gen.go#L165: 			return fmt.Errorf("unable to decode ipPort#d433ad73: field ipv4: %w", err)
		tl_ip_port_gen.go#L172: 			return fmt.Errorf("unable to decode ipPort#d433ad73: field port: %w", err)
		tl_ip_port_gen.go#L302: 		return fmt.Errorf("can't encode ipPortSecret#37982646 as nil")
		tl_ip_port_gen.go#L311: 		return fmt.Errorf("can't encode ipPortSecret#37982646 as nil")
		tl_ip_port_gen.go#L322: 		return fmt.Errorf("can't decode ipPortSecret#37982646 to nil")
		tl_ip_port_gen.go#L325: 		return fmt.Errorf("unable to decode ipPortSecret#37982646: %w", err)
		tl_ip_port_gen.go#L333: 		return fmt.Errorf("can't decode ipPortSecret#37982646 to nil")
		tl_ip_port_gen.go#L338: 			return fmt.Errorf("unable to decode ipPortSecret#37982646: field ipv4: %w", err)
		tl_ip_port_gen.go#L345: 			return fmt.Errorf("unable to decode ipPortSecret#37982646: field port: %w", err)
		tl_ip_port_gen.go#L352: 			return fmt.Errorf("unable to decode ipPortSecret#37982646: field secret: %w", err)
		tl_ip_port_gen.go#L437: 			return nil, fmt.Errorf("unable to decode IPPortClass: %w", err)
		tl_ip_port_gen.go#L444: 			return nil, fmt.Errorf("unable to decode IPPortClass: %w", err)
		tl_ip_port_gen.go#L448: 		return nil, fmt.Errorf("unable to decode IPPortClass: %w", bin.NewUnexpectedID(id))
		tl_ip_port_gen.go#L460: 		return fmt.Errorf("unable to decode IPPortBox to nil")
		tl_ip_port_gen.go#L464: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_ip_port_gen.go#L473: 		return fmt.Errorf("unable to encode IPPortClass as nil")
		tl_json_object_value_gen.go#L126: 		return fmt.Errorf("can't encode jsonObjectValue#c0de1bd9 as nil")
		tl_json_object_value_gen.go#L135: 		return fmt.Errorf("can't encode jsonObjectValue#c0de1bd9 as nil")
		tl_json_object_value_gen.go#L139: 		return fmt.Errorf("unable to encode jsonObjectValue#c0de1bd9: field value is nil")
		tl_json_object_value_gen.go#L142: 		return fmt.Errorf("unable to encode jsonObjectValue#c0de1bd9: field value: %w", err)
		tl_json_object_value_gen.go#L150: 		return fmt.Errorf("can't decode jsonObjectValue#c0de1bd9 to nil")
		tl_json_object_value_gen.go#L153: 		return fmt.Errorf("unable to decode jsonObjectValue#c0de1bd9: %w", err)
		tl_json_object_value_gen.go#L161: 		return fmt.Errorf("can't decode jsonObjectValue#c0de1bd9 to nil")
		tl_json_object_value_gen.go#L166: 			return fmt.Errorf("unable to decode jsonObjectValue#c0de1bd9: field key: %w", err)
		tl_json_object_value_gen.go#L173: 			return fmt.Errorf("unable to decode jsonObjectValue#c0de1bd9: field value: %w", err)
		tl_json_value_gen.go#L103: 		return fmt.Errorf("can't encode jsonNull#3f6d7b68 as nil")
		tl_json_value_gen.go#L112: 		return fmt.Errorf("can't encode jsonNull#3f6d7b68 as nil")
		tl_json_value_gen.go#L120: 		return fmt.Errorf("can't decode jsonNull#3f6d7b68 to nil")
		tl_json_value_gen.go#L123: 		return fmt.Errorf("unable to decode jsonNull#3f6d7b68: %w", err)
		tl_json_value_gen.go#L131: 		return fmt.Errorf("can't decode jsonNull#3f6d7b68 to nil")
		tl_json_value_gen.go#L222: 		return fmt.Errorf("can't encode jsonBool#c7345e6a as nil")
		tl_json_value_gen.go#L231: 		return fmt.Errorf("can't encode jsonBool#c7345e6a as nil")
		tl_json_value_gen.go#L240: 		return fmt.Errorf("can't decode jsonBool#c7345e6a to nil")
		tl_json_value_gen.go#L243: 		return fmt.Errorf("unable to decode jsonBool#c7345e6a: %w", err)
		tl_json_value_gen.go#L251: 		return fmt.Errorf("can't decode jsonBool#c7345e6a to nil")
		tl_json_value_gen.go#L256: 			return fmt.Errorf("unable to decode jsonBool#c7345e6a: field value: %w", err)
		tl_json_value_gen.go#L357: 		return fmt.Errorf("can't encode jsonNumber#2be0dfa4 as nil")
		tl_json_value_gen.go#L366: 		return fmt.Errorf("can't encode jsonNumber#2be0dfa4 as nil")
		tl_json_value_gen.go#L375: 		return fmt.Errorf("can't decode jsonNumber#2be0dfa4 to nil")
		tl_json_value_gen.go#L378: 		return fmt.Errorf("unable to decode jsonNumber#2be0dfa4: %w", err)
		tl_json_value_gen.go#L386: 		return fmt.Errorf("can't decode jsonNumber#2be0dfa4 to nil")
		tl_json_value_gen.go#L391: 			return fmt.Errorf("unable to decode jsonNumber#2be0dfa4: field value: %w", err)
		tl_json_value_gen.go#L492: 		return fmt.Errorf("can't encode jsonString#b71e767a as nil")
		tl_json_value_gen.go#L501: 		return fmt.Errorf("can't encode jsonString#b71e767a as nil")
		tl_json_value_gen.go#L510: 		return fmt.Errorf("can't decode jsonString#b71e767a to nil")
		tl_json_value_gen.go#L513: 		return fmt.Errorf("unable to decode jsonString#b71e767a: %w", err)
		tl_json_value_gen.go#L521: 		return fmt.Errorf("can't decode jsonString#b71e767a to nil")
		tl_json_value_gen.go#L526: 			return fmt.Errorf("unable to decode jsonString#b71e767a: field value: %w", err)
		tl_json_value_gen.go#L627: 		return fmt.Errorf("can't encode jsonArray#f7444763 as nil")
		tl_json_value_gen.go#L636: 		return fmt.Errorf("can't encode jsonArray#f7444763 as nil")
		tl_json_value_gen.go#L641: 			return fmt.Errorf("unable to encode jsonArray#f7444763: field value element with index %d is nil", idx)
		tl_json_value_gen.go#L644: 			return fmt.Errorf("unable to encode jsonArray#f7444763: field value element with index %d: %w", idx, err)
		tl_json_value_gen.go#L653: 		return fmt.Errorf("can't decode jsonArray#f7444763 to nil")
		tl_json_value_gen.go#L656: 		return fmt.Errorf("unable to decode jsonArray#f7444763: %w", err)
		tl_json_value_gen.go#L664: 		return fmt.Errorf("can't decode jsonArray#f7444763 to nil")
		tl_json_value_gen.go#L669: 			return fmt.Errorf("unable to decode jsonArray#f7444763: field value: %w", err)
		tl_json_value_gen.go#L678: 				return fmt.Errorf("unable to decode jsonArray#f7444763: field value: %w", err)
		tl_json_value_gen.go#L785: 		return fmt.Errorf("can't encode jsonObject#99c1d49d as nil")
		tl_json_value_gen.go#L794: 		return fmt.Errorf("can't encode jsonObject#99c1d49d as nil")
		tl_json_value_gen.go#L799: 			return fmt.Errorf("unable to encode jsonObject#99c1d49d: field value element with index %d: %w", idx, err)
		tl_json_value_gen.go#L808: 		return fmt.Errorf("can't decode jsonObject#99c1d49d to nil")
		tl_json_value_gen.go#L811: 		return fmt.Errorf("unable to decode jsonObject#99c1d49d: %w", err)
		tl_json_value_gen.go#L819: 		return fmt.Errorf("can't decode jsonObject#99c1d49d to nil")
		tl_json_value_gen.go#L824: 			return fmt.Errorf("unable to decode jsonObject#99c1d49d: field value: %w", err)
		tl_json_value_gen.go#L833: 				return fmt.Errorf("unable to decode jsonObject#99c1d49d: field value: %w", err)
		tl_json_value_gen.go#L901: 			return nil, fmt.Errorf("unable to decode JSONValueClass: %w", err)
		tl_json_value_gen.go#L908: 			return nil, fmt.Errorf("unable to decode JSONValueClass: %w", err)
		tl_json_value_gen.go#L915: 			return nil, fmt.Errorf("unable to decode JSONValueClass: %w", err)
		tl_json_value_gen.go#L922: 			return nil, fmt.Errorf("unable to decode JSONValueClass: %w", err)
		tl_json_value_gen.go#L929: 			return nil, fmt.Errorf("unable to decode JSONValueClass: %w", err)
		tl_json_value_gen.go#L936: 			return nil, fmt.Errorf("unable to decode JSONValueClass: %w", err)
		tl_json_value_gen.go#L940: 		return nil, fmt.Errorf("unable to decode JSONValueClass: %w", bin.NewUnexpectedID(id))
		tl_json_value_gen.go#L952: 		return fmt.Errorf("unable to decode JSONValueBox to nil")
		tl_json_value_gen.go#L956: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_json_value_gen.go#L965: 		return fmt.Errorf("unable to encode JSONValueClass as nil")
		tl_keyboard_button_gen.go#L120: 		return fmt.Errorf("can't encode keyboardButton#a2fa4880 as nil")
		tl_keyboard_button_gen.go#L129: 		return fmt.Errorf("can't encode keyboardButton#a2fa4880 as nil")
		tl_keyboard_button_gen.go#L138: 		return fmt.Errorf("can't decode keyboardButton#a2fa4880 to nil")
		tl_keyboard_button_gen.go#L141: 		return fmt.Errorf("unable to decode keyboardButton#a2fa4880: %w", err)
		tl_keyboard_button_gen.go#L149: 		return fmt.Errorf("can't decode keyboardButton#a2fa4880 to nil")
		tl_keyboard_button_gen.go#L154: 			return fmt.Errorf("unable to decode keyboardButton#a2fa4880: field text: %w", err)
		tl_keyboard_button_gen.go#L266: 		return fmt.Errorf("can't encode keyboardButtonUrl#258aff05 as nil")
		tl_keyboard_button_gen.go#L275: 		return fmt.Errorf("can't encode keyboardButtonUrl#258aff05 as nil")
		tl_keyboard_button_gen.go#L285: 		return fmt.Errorf("can't decode keyboardButtonUrl#258aff05 to nil")
		tl_keyboard_button_gen.go#L288: 		return fmt.Errorf("unable to decode keyboardButtonUrl#258aff05: %w", err)
		tl_keyboard_button_gen.go#L296: 		return fmt.Errorf("can't decode keyboardButtonUrl#258aff05 to nil")
		tl_keyboard_button_gen.go#L301: 			return fmt.Errorf("unable to decode keyboardButtonUrl#258aff05: field text: %w", err)
		tl_keyboard_button_gen.go#L308: 			return fmt.Errorf("unable to decode keyboardButtonUrl#258aff05: field url: %w", err)
		tl_keyboard_button_gen.go#L465: 		return fmt.Errorf("can't encode keyboardButtonCallback#35bbdb6b as nil")
		tl_keyboard_button_gen.go#L474: 		return fmt.Errorf("can't encode keyboardButtonCallback#35bbdb6b as nil")
		tl_keyboard_button_gen.go#L478: 		return fmt.Errorf("unable to encode keyboardButtonCallback#35bbdb6b: field flags: %w", err)
		tl_keyboard_button_gen.go#L488: 		return fmt.Errorf("can't decode keyboardButtonCallback#35bbdb6b to nil")
		tl_keyboard_button_gen.go#L491: 		return fmt.Errorf("unable to decode keyboardButtonCallback#35bbdb6b: %w", err)
		tl_keyboard_button_gen.go#L499: 		return fmt.Errorf("can't decode keyboardButtonCallback#35bbdb6b to nil")
		tl_keyboard_button_gen.go#L503: 			return fmt.Errorf("unable to decode keyboardButtonCallback#35bbdb6b: field flags: %w", err)
		tl_keyboard_button_gen.go#L510: 			return fmt.Errorf("unable to decode keyboardButtonCallback#35bbdb6b: field text: %w", err)
		tl_keyboard_button_gen.go#L517: 			return fmt.Errorf("unable to decode keyboardButtonCallback#35bbdb6b: field data: %w", err)
		tl_keyboard_button_gen.go#L645: 		return fmt.Errorf("can't encode keyboardButtonRequestPhone#b16a6c29 as nil")
		tl_keyboard_button_gen.go#L654: 		return fmt.Errorf("can't encode keyboardButtonRequestPhone#b16a6c29 as nil")
		tl_keyboard_button_gen.go#L663: 		return fmt.Errorf("can't decode keyboardButtonRequestPhone#b16a6c29 to nil")
		tl_keyboard_button_gen.go#L666: 		return fmt.Errorf("unable to decode keyboardButtonRequestPhone#b16a6c29: %w", err)
		tl_keyboard_button_gen.go#L674: 		return fmt.Errorf("can't decode keyboardButtonRequestPhone#b16a6c29 to nil")
		tl_keyboard_button_gen.go#L679: 			return fmt.Errorf("unable to decode keyboardButtonRequestPhone#b16a6c29: field text: %w", err)
		tl_keyboard_button_gen.go#L780: 		return fmt.Errorf("can't encode keyboardButtonRequestGeoLocation#fc796b3f as nil")
		tl_keyboard_button_gen.go#L789: 		return fmt.Errorf("can't encode keyboardButtonRequestGeoLocation#fc796b3f as nil")
		tl_keyboard_button_gen.go#L798: 		return fmt.Errorf("can't decode keyboardButtonRequestGeoLocation#fc796b3f to nil")
		tl_keyboard_button_gen.go#L801: 		return fmt.Errorf("unable to decode keyboardButtonRequestGeoLocation#fc796b3f: %w", err)
		tl_keyboard_button_gen.go#L809: 		return fmt.Errorf("can't decode keyboardButtonRequestGeoLocation#fc796b3f to nil")
		tl_keyboard_button_gen.go#L814: 			return fmt.Errorf("unable to decode keyboardButtonRequestGeoLocation#fc796b3f: field text: %w", err)
		tl_keyboard_button_gen.go#L976: 		return fmt.Errorf("can't encode keyboardButtonSwitchInline#93b9fbb5 as nil")
		tl_keyboard_button_gen.go#L985: 		return fmt.Errorf("can't encode keyboardButtonSwitchInline#93b9fbb5 as nil")
		tl_keyboard_button_gen.go#L989: 		return fmt.Errorf("unable to encode keyboardButtonSwitchInline#93b9fbb5: field flags: %w", err)
		tl_keyboard_button_gen.go#L997: 				return fmt.Errorf("unable to encode keyboardButtonSwitchInline#93b9fbb5: field peer_types element with index %d is nil", idx)
		tl_keyboard_button_gen.go#L1000: 				return fmt.Errorf("unable to encode keyboardButtonSwitchInline#93b9fbb5: field peer_types element with index %d: %w", idx, err)
		tl_keyboard_button_gen.go#L1010: 		return fmt.Errorf("can't decode keyboardButtonSwitchInline#93b9fbb5 to nil")
		tl_keyboard_button_gen.go#L1013: 		return fmt.Errorf("unable to decode keyboardButtonSwitchInline#93b9fbb5: %w", err)
		tl_keyboard_button_gen.go#L1021: 		return fmt.Errorf("can't decode keyboardButtonSwitchInline#93b9fbb5 to nil")
		tl_keyboard_button_gen.go#L1025: 			return fmt.Errorf("unable to decode keyboardButtonSwitchInline#93b9fbb5: field flags: %w", err)
		tl_keyboard_button_gen.go#L1032: 			return fmt.Errorf("unable to decode keyboardButtonSwitchInline#93b9fbb5: field text: %w", err)
		tl_keyboard_button_gen.go#L1039: 			return fmt.Errorf("unable to decode keyboardButtonSwitchInline#93b9fbb5: field query: %w", err)
		tl_keyboard_button_gen.go#L1046: 			return fmt.Errorf("unable to decode keyboardButtonSwitchInline#93b9fbb5: field peer_types: %w", err)
		tl_keyboard_button_gen.go#L1055: 				return fmt.Errorf("unable to decode keyboardButtonSwitchInline#93b9fbb5: field peer_types: %w", err)
		tl_keyboard_button_gen.go#L1210: 		return fmt.Errorf("can't encode keyboardButtonGame#50f41ccf as nil")
		tl_keyboard_button_gen.go#L1219: 		return fmt.Errorf("can't encode keyboardButtonGame#50f41ccf as nil")
		tl_keyboard_button_gen.go#L1228: 		return fmt.Errorf("can't decode keyboardButtonGame#50f41ccf to nil")
		tl_keyboard_button_gen.go#L1231: 		return fmt.Errorf("unable to decode keyboardButtonGame#50f41ccf: %w", err)
		tl_keyboard_button_gen.go#L1239: 		return fmt.Errorf("can't decode keyboardButtonGame#50f41ccf to nil")
		tl_keyboard_button_gen.go#L1244: 			return fmt.Errorf("unable to decode keyboardButtonGame#50f41ccf: field text: %w", err)
		tl_keyboard_button_gen.go#L1345: 		return fmt.Errorf("can't encode keyboardButtonBuy#afd93fbb as nil")
		tl_keyboard_button_gen.go#L1354: 		return fmt.Errorf("can't encode keyboardButtonBuy#afd93fbb as nil")
		tl_keyboard_button_gen.go#L1363: 		return fmt.Errorf("can't decode keyboardButtonBuy#afd93fbb to nil")
		tl_keyboard_button_gen.go#L1366: 		return fmt.Errorf("unable to decode keyboardButtonBuy#afd93fbb: %w", err)
		tl_keyboard_button_gen.go#L1374: 		return fmt.Errorf("can't decode keyboardButtonBuy#afd93fbb to nil")
		tl_keyboard_button_gen.go#L1379: 			return fmt.Errorf("unable to decode keyboardButtonBuy#afd93fbb: field text: %w", err)
		tl_keyboard_button_gen.go#L1564: 		return fmt.Errorf("can't encode keyboardButtonUrlAuth#10b78d29 as nil")
		tl_keyboard_button_gen.go#L1573: 		return fmt.Errorf("can't encode keyboardButtonUrlAuth#10b78d29 as nil")
		tl_keyboard_button_gen.go#L1577: 		return fmt.Errorf("unable to encode keyboardButtonUrlAuth#10b78d29: field flags: %w", err)
		tl_keyboard_button_gen.go#L1591: 		return fmt.Errorf("can't decode keyboardButtonUrlAuth#10b78d29 to nil")
		tl_keyboard_button_gen.go#L1594: 		return fmt.Errorf("unable to decode keyboardButtonUrlAuth#10b78d29: %w", err)
		tl_keyboard_button_gen.go#L1602: 		return fmt.Errorf("can't decode keyboardButtonUrlAuth#10b78d29 to nil")
		tl_keyboard_button_gen.go#L1606: 			return fmt.Errorf("unable to decode keyboardButtonUrlAuth#10b78d29: field flags: %w", err)
		tl_keyboard_button_gen.go#L1612: 			return fmt.Errorf("unable to decode keyboardButtonUrlAuth#10b78d29: field text: %w", err)
		tl_keyboard_button_gen.go#L1619: 			return fmt.Errorf("unable to decode keyboardButtonUrlAuth#10b78d29: field fwd_text: %w", err)
		tl_keyboard_button_gen.go#L1626: 			return fmt.Errorf("unable to decode keyboardButtonUrlAuth#10b78d29: field url: %w", err)
		tl_keyboard_button_gen.go#L1633: 			return fmt.Errorf("unable to decode keyboardButtonUrlAuth#10b78d29: field button_id: %w", err)
		tl_keyboard_button_gen.go#L1857: 		return fmt.Errorf("can't encode inputKeyboardButtonUrlAuth#d02e7fd4 as nil")
		tl_keyboard_button_gen.go#L1866: 		return fmt.Errorf("can't encode inputKeyboardButtonUrlAuth#d02e7fd4 as nil")
		tl_keyboard_button_gen.go#L1870: 		return fmt.Errorf("unable to encode inputKeyboardButtonUrlAuth#d02e7fd4: field flags: %w", err)
		tl_keyboard_button_gen.go#L1878: 		return fmt.Errorf("unable to encode inputKeyboardButtonUrlAuth#d02e7fd4: field bot is nil")
		tl_keyboard_button_gen.go#L1881: 		return fmt.Errorf("unable to encode inputKeyboardButtonUrlAuth#d02e7fd4: field bot: %w", err)
		tl_keyboard_button_gen.go#L1889: 		return fmt.Errorf("can't decode inputKeyboardButtonUrlAuth#d02e7fd4 to nil")
		tl_keyboard_button_gen.go#L1892: 		return fmt.Errorf("unable to decode inputKeyboardButtonUrlAuth#d02e7fd4: %w", err)
		tl_keyboard_button_gen.go#L1900: 		return fmt.Errorf("can't decode inputKeyboardButtonUrlAuth#d02e7fd4 to nil")
		tl_keyboard_button_gen.go#L1904: 			return fmt.Errorf("unable to decode inputKeyboardButtonUrlAuth#d02e7fd4: field flags: %w", err)
		tl_keyboard_button_gen.go#L1911: 			return fmt.Errorf("unable to decode inputKeyboardButtonUrlAuth#d02e7fd4: field text: %w", err)
		tl_keyboard_button_gen.go#L1918: 			return fmt.Errorf("unable to decode inputKeyboardButtonUrlAuth#d02e7fd4: field fwd_text: %w", err)
		tl_keyboard_button_gen.go#L1925: 			return fmt.Errorf("unable to decode inputKeyboardButtonUrlAuth#d02e7fd4: field url: %w", err)
		tl_keyboard_button_gen.go#L1932: 			return fmt.Errorf("unable to decode inputKeyboardButtonUrlAuth#d02e7fd4: field bot: %w", err)
		tl_keyboard_button_gen.go#L2119: 		return fmt.Errorf("can't encode keyboardButtonRequestPoll#bbc7515d as nil")
		tl_keyboard_button_gen.go#L2128: 		return fmt.Errorf("can't encode keyboardButtonRequestPoll#bbc7515d as nil")
		tl_keyboard_button_gen.go#L2132: 		return fmt.Errorf("unable to encode keyboardButtonRequestPoll#bbc7515d: field flags: %w", err)
		tl_keyboard_button_gen.go#L2144: 		return fmt.Errorf("can't decode keyboardButtonRequestPoll#bbc7515d to nil")
		tl_keyboard_button_gen.go#L2147: 		return fmt.Errorf("unable to decode keyboardButtonRequestPoll#bbc7515d: %w", err)
		tl_keyboard_button_gen.go#L2155: 		return fmt.Errorf("can't decode keyboardButtonRequestPoll#bbc7515d to nil")
		tl_keyboard_button_gen.go#L2159: 			return fmt.Errorf("unable to decode keyboardButtonRequestPoll#bbc7515d: field flags: %w", err)
		tl_keyboard_button_gen.go#L2165: 			return fmt.Errorf("unable to decode keyboardButtonRequestPoll#bbc7515d: field quiz: %w", err)
		tl_keyboard_button_gen.go#L2172: 			return fmt.Errorf("unable to decode keyboardButtonRequestPoll#bbc7515d: field text: %w", err)
		tl_keyboard_button_gen.go#L2302: 		return fmt.Errorf("can't encode inputKeyboardButtonUserProfile#e988037b as nil")
		tl_keyboard_button_gen.go#L2311: 		return fmt.Errorf("can't encode inputKeyboardButtonUserProfile#e988037b as nil")
		tl_keyboard_button_gen.go#L2315: 		return fmt.Errorf("unable to encode inputKeyboardButtonUserProfile#e988037b: field user_id is nil")
		tl_keyboard_button_gen.go#L2318: 		return fmt.Errorf("unable to encode inputKeyboardButtonUserProfile#e988037b: field user_id: %w", err)
		tl_keyboard_button_gen.go#L2326: 		return fmt.Errorf("can't decode inputKeyboardButtonUserProfile#e988037b to nil")
		tl_keyboard_button_gen.go#L2329: 		return fmt.Errorf("unable to decode inputKeyboardButtonUserProfile#e988037b: %w", err)
		tl_keyboard_button_gen.go#L2337: 		return fmt.Errorf("can't decode inputKeyboardButtonUserProfile#e988037b to nil")
		tl_keyboard_button_gen.go#L2342: 			return fmt.Errorf("unable to decode inputKeyboardButtonUserProfile#e988037b: field text: %w", err)
		tl_keyboard_button_gen.go#L2349: 			return fmt.Errorf("unable to decode inputKeyboardButtonUserProfile#e988037b: field user_id: %w", err)
		tl_keyboard_button_gen.go#L2469: 		return fmt.Errorf("can't encode keyboardButtonUserProfile#308660c1 as nil")
		tl_keyboard_button_gen.go#L2478: 		return fmt.Errorf("can't encode keyboardButtonUserProfile#308660c1 as nil")
		tl_keyboard_button_gen.go#L2488: 		return fmt.Errorf("can't decode keyboardButtonUserProfile#308660c1 to nil")
		tl_keyboard_button_gen.go#L2491: 		return fmt.Errorf("unable to decode keyboardButtonUserProfile#308660c1: %w", err)
		tl_keyboard_button_gen.go#L2499: 		return fmt.Errorf("can't decode keyboardButtonUserProfile#308660c1 to nil")
		tl_keyboard_button_gen.go#L2504: 			return fmt.Errorf("unable to decode keyboardButtonUserProfile#308660c1: field text: %w", err)
		tl_keyboard_button_gen.go#L2511: 			return fmt.Errorf("unable to decode keyboardButtonUserProfile#308660c1: field user_id: %w", err)
		tl_keyboard_button_gen.go#L2642: 		return fmt.Errorf("can't encode keyboardButtonWebView#13767230 as nil")
		tl_keyboard_button_gen.go#L2651: 		return fmt.Errorf("can't encode keyboardButtonWebView#13767230 as nil")
		tl_keyboard_button_gen.go#L2661: 		return fmt.Errorf("can't decode keyboardButtonWebView#13767230 to nil")
		tl_keyboard_button_gen.go#L2664: 		return fmt.Errorf("unable to decode keyboardButtonWebView#13767230: %w", err)
		tl_keyboard_button_gen.go#L2672: 		return fmt.Errorf("can't decode keyboardButtonWebView#13767230 to nil")
		tl_keyboard_button_gen.go#L2677: 			return fmt.Errorf("unable to decode keyboardButtonWebView#13767230: field text: %w", err)
		tl_keyboard_button_gen.go#L2684: 			return fmt.Errorf("unable to decode keyboardButtonWebView#13767230: field url: %w", err)
		tl_keyboard_button_gen.go#L2815: 		return fmt.Errorf("can't encode keyboardButtonSimpleWebView#a0c0505c as nil")
		tl_keyboard_button_gen.go#L2824: 		return fmt.Errorf("can't encode keyboardButtonSimpleWebView#a0c0505c as nil")
		tl_keyboard_button_gen.go#L2834: 		return fmt.Errorf("can't decode keyboardButtonSimpleWebView#a0c0505c to nil")
		tl_keyboard_button_gen.go#L2837: 		return fmt.Errorf("unable to decode keyboardButtonSimpleWebView#a0c0505c: %w", err)
		tl_keyboard_button_gen.go#L2845: 		return fmt.Errorf("can't decode keyboardButtonSimpleWebView#a0c0505c to nil")
		tl_keyboard_button_gen.go#L2850: 			return fmt.Errorf("unable to decode keyboardButtonSimpleWebView#a0c0505c: field text: %w", err)
		tl_keyboard_button_gen.go#L2857: 			return fmt.Errorf("unable to decode keyboardButtonSimpleWebView#a0c0505c: field url: %w", err)
		tl_keyboard_button_gen.go#L3009: 		return fmt.Errorf("can't encode keyboardButtonRequestPeer#53d7bfd8 as nil")
		tl_keyboard_button_gen.go#L3018: 		return fmt.Errorf("can't encode keyboardButtonRequestPeer#53d7bfd8 as nil")
		tl_keyboard_button_gen.go#L3023: 		return fmt.Errorf("unable to encode keyboardButtonRequestPeer#53d7bfd8: field peer_type is nil")
		tl_keyboard_button_gen.go#L3026: 		return fmt.Errorf("unable to encode keyboardButtonRequestPeer#53d7bfd8: field peer_type: %w", err)
		tl_keyboard_button_gen.go#L3035: 		return fmt.Errorf("can't decode keyboardButtonRequestPeer#53d7bfd8 to nil")
		tl_keyboard_button_gen.go#L3038: 		return fmt.Errorf("unable to decode keyboardButtonRequestPeer#53d7bfd8: %w", err)
		tl_keyboard_button_gen.go#L3046: 		return fmt.Errorf("can't decode keyboardButtonRequestPeer#53d7bfd8 to nil")
		tl_keyboard_button_gen.go#L3051: 			return fmt.Errorf("unable to decode keyboardButtonRequestPeer#53d7bfd8: field text: %w", err)
		tl_keyboard_button_gen.go#L3058: 			return fmt.Errorf("unable to decode keyboardButtonRequestPeer#53d7bfd8: field button_id: %w", err)
		tl_keyboard_button_gen.go#L3065: 			return fmt.Errorf("unable to decode keyboardButtonRequestPeer#53d7bfd8: field peer_type: %w", err)
		tl_keyboard_button_gen.go#L3072: 			return fmt.Errorf("unable to decode keyboardButtonRequestPeer#53d7bfd8: field max_quantity: %w", err)
		tl_keyboard_button_gen.go#L3176: 			return nil, fmt.Errorf("unable to decode KeyboardButtonClass: %w", err)
		tl_keyboard_button_gen.go#L3183: 			return nil, fmt.Errorf("unable to decode KeyboardButtonClass: %w", err)
		tl_keyboard_button_gen.go#L3190: 			return nil, fmt.Errorf("unable to decode KeyboardButtonClass: %w", err)
		tl_keyboard_button_gen.go#L3197: 			return nil, fmt.Errorf("unable to decode KeyboardButtonClass: %w", err)
		tl_keyboard_button_gen.go#L3204: 			return nil, fmt.Errorf("unable to decode KeyboardButtonClass: %w", err)
		tl_keyboard_button_gen.go#L3211: 			return nil, fmt.Errorf("unable to decode KeyboardButtonClass: %w", err)
		tl_keyboard_button_gen.go#L3218: 			return nil, fmt.Errorf("unable to decode KeyboardButtonClass: %w", err)
		tl_keyboard_button_gen.go#L3225: 			return nil, fmt.Errorf("unable to decode KeyboardButtonClass: %w", err)
		tl_keyboard_button_gen.go#L3232: 			return nil, fmt.Errorf("unable to decode KeyboardButtonClass: %w", err)
		tl_keyboard_button_gen.go#L3239: 			return nil, fmt.Errorf("unable to decode KeyboardButtonClass: %w", err)
		tl_keyboard_button_gen.go#L3246: 			return nil, fmt.Errorf("unable to decode KeyboardButtonClass: %w", err)
		tl_keyboard_button_gen.go#L3253: 			return nil, fmt.Errorf("unable to decode KeyboardButtonClass: %w", err)
		tl_keyboard_button_gen.go#L3260: 			return nil, fmt.Errorf("unable to decode KeyboardButtonClass: %w", err)
		tl_keyboard_button_gen.go#L3267: 			return nil, fmt.Errorf("unable to decode KeyboardButtonClass: %w", err)
		tl_keyboard_button_gen.go#L3274: 			return nil, fmt.Errorf("unable to decode KeyboardButtonClass: %w", err)
		tl_keyboard_button_gen.go#L3281: 			return nil, fmt.Errorf("unable to decode KeyboardButtonClass: %w", err)
		tl_keyboard_button_gen.go#L3285: 		return nil, fmt.Errorf("unable to decode KeyboardButtonClass: %w", bin.NewUnexpectedID(id))
		tl_keyboard_button_gen.go#L3297: 		return fmt.Errorf("unable to decode KeyboardButtonBox to nil")
		tl_keyboard_button_gen.go#L3301: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_keyboard_button_gen.go#L3310: 		return fmt.Errorf("unable to encode KeyboardButtonClass as nil")
		tl_keyboard_button_row_gen.go#L115: 		return fmt.Errorf("can't encode keyboardButtonRow#77608b83 as nil")
		tl_keyboard_button_row_gen.go#L124: 		return fmt.Errorf("can't encode keyboardButtonRow#77608b83 as nil")
		tl_keyboard_button_row_gen.go#L129: 			return fmt.Errorf("unable to encode keyboardButtonRow#77608b83: field buttons element with index %d is nil", idx)
		tl_keyboard_button_row_gen.go#L132: 			return fmt.Errorf("unable to encode keyboardButtonRow#77608b83: field buttons element with index %d: %w", idx, err)
		tl_keyboard_button_row_gen.go#L141: 		return fmt.Errorf("can't decode keyboardButtonRow#77608b83 to nil")
		tl_keyboard_button_row_gen.go#L144: 		return fmt.Errorf("unable to decode keyboardButtonRow#77608b83: %w", err)
		tl_keyboard_button_row_gen.go#L152: 		return fmt.Errorf("can't decode keyboardButtonRow#77608b83 to nil")
		tl_keyboard_button_row_gen.go#L157: 			return fmt.Errorf("unable to decode keyboardButtonRow#77608b83: field buttons: %w", err)
		tl_keyboard_button_row_gen.go#L166: 				return fmt.Errorf("unable to decode keyboardButtonRow#77608b83: field buttons: %w", err)
		tl_labeled_price_gen.go#L132: 		return fmt.Errorf("can't encode labeledPrice#cb296bf8 as nil")
		tl_labeled_price_gen.go#L141: 		return fmt.Errorf("can't encode labeledPrice#cb296bf8 as nil")
		tl_labeled_price_gen.go#L151: 		return fmt.Errorf("can't decode labeledPrice#cb296bf8 to nil")
		tl_labeled_price_gen.go#L154: 		return fmt.Errorf("unable to decode labeledPrice#cb296bf8: %w", err)
		tl_labeled_price_gen.go#L162: 		return fmt.Errorf("can't decode labeledPrice#cb296bf8 to nil")
		tl_labeled_price_gen.go#L167: 			return fmt.Errorf("unable to decode labeledPrice#cb296bf8: field label: %w", err)
		tl_labeled_price_gen.go#L174: 			return fmt.Errorf("unable to decode labeledPrice#cb296bf8: field amount: %w", err)
		tl_lang_pack_difference_gen.go#L148: 		return fmt.Errorf("can't encode langPackDifference#f385c1f6 as nil")
		tl_lang_pack_difference_gen.go#L157: 		return fmt.Errorf("can't encode langPackDifference#f385c1f6 as nil")
		tl_lang_pack_difference_gen.go#L165: 			return fmt.Errorf("unable to encode langPackDifference#f385c1f6: field strings element with index %d is nil", idx)
		tl_lang_pack_difference_gen.go#L168: 			return fmt.Errorf("unable to encode langPackDifference#f385c1f6: field strings element with index %d: %w", idx, err)
		tl_lang_pack_difference_gen.go#L177: 		return fmt.Errorf("can't decode langPackDifference#f385c1f6 to nil")
		tl_lang_pack_difference_gen.go#L180: 		return fmt.Errorf("unable to decode langPackDifference#f385c1f6: %w", err)
		tl_lang_pack_difference_gen.go#L188: 		return fmt.Errorf("can't decode langPackDifference#f385c1f6 to nil")
		tl_lang_pack_difference_gen.go#L193: 			return fmt.Errorf("unable to decode langPackDifference#f385c1f6: field lang_code: %w", err)
		tl_lang_pack_difference_gen.go#L200: 			return fmt.Errorf("unable to decode langPackDifference#f385c1f6: field from_version: %w", err)
		tl_lang_pack_difference_gen.go#L207: 			return fmt.Errorf("unable to decode langPackDifference#f385c1f6: field version: %w", err)
		tl_lang_pack_difference_gen.go#L214: 			return fmt.Errorf("unable to decode langPackDifference#f385c1f6: field strings: %w", err)
		tl_lang_pack_difference_gen.go#L223: 				return fmt.Errorf("unable to decode langPackDifference#f385c1f6: field strings: %w", err)
		tl_lang_pack_language_gen.go#L264: 		return fmt.Errorf("can't encode langPackLanguage#eeca5ce3 as nil")
		tl_lang_pack_language_gen.go#L273: 		return fmt.Errorf("can't encode langPackLanguage#eeca5ce3 as nil")
		tl_lang_pack_language_gen.go#L277: 		return fmt.Errorf("unable to encode langPackLanguage#eeca5ce3: field flags: %w", err)
		tl_lang_pack_language_gen.go#L295: 		return fmt.Errorf("can't decode langPackLanguage#eeca5ce3 to nil")
		tl_lang_pack_language_gen.go#L298: 		return fmt.Errorf("unable to decode langPackLanguage#eeca5ce3: %w", err)
		tl_lang_pack_language_gen.go#L306: 		return fmt.Errorf("can't decode langPackLanguage#eeca5ce3 to nil")
		tl_lang_pack_language_gen.go#L310: 			return fmt.Errorf("unable to decode langPackLanguage#eeca5ce3: field flags: %w", err)
		tl_lang_pack_language_gen.go#L319: 			return fmt.Errorf("unable to decode langPackLanguage#eeca5ce3: field name: %w", err)
		tl_lang_pack_language_gen.go#L326: 			return fmt.Errorf("unable to decode langPackLanguage#eeca5ce3: field native_name: %w", err)
		tl_lang_pack_language_gen.go#L333: 			return fmt.Errorf("unable to decode langPackLanguage#eeca5ce3: field lang_code: %w", err)
		tl_lang_pack_language_gen.go#L340: 			return fmt.Errorf("unable to decode langPackLanguage#eeca5ce3: field base_lang_code: %w", err)
		tl_lang_pack_language_gen.go#L347: 			return fmt.Errorf("unable to decode langPackLanguage#eeca5ce3: field plural_code: %w", err)
		tl_lang_pack_language_gen.go#L354: 			return fmt.Errorf("unable to decode langPackLanguage#eeca5ce3: field strings_count: %w", err)
		tl_lang_pack_language_gen.go#L361: 			return fmt.Errorf("unable to decode langPackLanguage#eeca5ce3: field translated_count: %w", err)
		tl_lang_pack_language_gen.go#L368: 			return fmt.Errorf("unable to decode langPackLanguage#eeca5ce3: field translations_url: %w", err)
		tl_lang_pack_language_vector_gen.go#L112: 		return fmt.Errorf("can't encode Vector<LangPackLanguage> as nil")
		tl_lang_pack_language_vector_gen.go#L121: 		return fmt.Errorf("can't encode Vector<LangPackLanguage> as nil")
		tl_lang_pack_language_vector_gen.go#L126: 			return fmt.Errorf("unable to encode Vector<LangPackLanguage>: field Elems element with index %d: %w", idx, err)
		tl_lang_pack_language_vector_gen.go#L135: 		return fmt.Errorf("can't decode Vector<LangPackLanguage> to nil")
		tl_lang_pack_language_vector_gen.go#L144: 		return fmt.Errorf("can't decode Vector<LangPackLanguage> to nil")
		tl_lang_pack_language_vector_gen.go#L149: 			return fmt.Errorf("unable to decode Vector<LangPackLanguage>: field Elems: %w", err)
		tl_lang_pack_language_vector_gen.go#L158: 				return fmt.Errorf("unable to decode Vector<LangPackLanguage>: field Elems: %w", err)
		tl_lang_pack_string_class_vector_gen.go#L112: 		return fmt.Errorf("can't encode Vector<LangPackString> as nil")
		tl_lang_pack_string_class_vector_gen.go#L121: 		return fmt.Errorf("can't encode Vector<LangPackString> as nil")
		tl_lang_pack_string_class_vector_gen.go#L126: 			return fmt.Errorf("unable to encode Vector<LangPackString>: field Elems element with index %d is nil", idx)
		tl_lang_pack_string_class_vector_gen.go#L129: 			return fmt.Errorf("unable to encode Vector<LangPackString>: field Elems element with index %d: %w", idx, err)
		tl_lang_pack_string_class_vector_gen.go#L138: 		return fmt.Errorf("can't decode Vector<LangPackString> to nil")
		tl_lang_pack_string_class_vector_gen.go#L147: 		return fmt.Errorf("can't decode Vector<LangPackString> to nil")
		tl_lang_pack_string_class_vector_gen.go#L152: 			return fmt.Errorf("unable to decode Vector<LangPackString>: field Elems: %w", err)
		tl_lang_pack_string_class_vector_gen.go#L161: 				return fmt.Errorf("unable to decode Vector<LangPackString>: field Elems: %w", err)
		tl_lang_pack_string_gen.go#L131: 		return fmt.Errorf("can't encode langPackString#cad181f6 as nil")
		tl_lang_pack_string_gen.go#L140: 		return fmt.Errorf("can't encode langPackString#cad181f6 as nil")
		tl_lang_pack_string_gen.go#L150: 		return fmt.Errorf("can't decode langPackString#cad181f6 to nil")
		tl_lang_pack_string_gen.go#L153: 		return fmt.Errorf("unable to decode langPackString#cad181f6: %w", err)
		tl_lang_pack_string_gen.go#L161: 		return fmt.Errorf("can't decode langPackString#cad181f6 to nil")
		tl_lang_pack_string_gen.go#L166: 			return fmt.Errorf("unable to decode langPackString#cad181f6: field key: %w", err)
		tl_lang_pack_string_gen.go#L173: 			return fmt.Errorf("unable to decode langPackString#cad181f6: field value: %w", err)
		tl_lang_pack_string_gen.go#L410: 		return fmt.Errorf("can't encode langPackStringPluralized#6c47ac9f as nil")
		tl_lang_pack_string_gen.go#L419: 		return fmt.Errorf("can't encode langPackStringPluralized#6c47ac9f as nil")
		tl_lang_pack_string_gen.go#L423: 		return fmt.Errorf("unable to encode langPackStringPluralized#6c47ac9f: field flags: %w", err)
		tl_lang_pack_string_gen.go#L448: 		return fmt.Errorf("can't decode langPackStringPluralized#6c47ac9f to nil")
		tl_lang_pack_string_gen.go#L451: 		return fmt.Errorf("unable to decode langPackStringPluralized#6c47ac9f: %w", err)
		tl_lang_pack_string_gen.go#L459: 		return fmt.Errorf("can't decode langPackStringPluralized#6c47ac9f to nil")
		tl_lang_pack_string_gen.go#L463: 			return fmt.Errorf("unable to decode langPackStringPluralized#6c47ac9f: field flags: %w", err)
		tl_lang_pack_string_gen.go#L469: 			return fmt.Errorf("unable to decode langPackStringPluralized#6c47ac9f: field key: %w", err)
		tl_lang_pack_string_gen.go#L476: 			return fmt.Errorf("unable to decode langPackStringPluralized#6c47ac9f: field zero_value: %w", err)
		tl_lang_pack_string_gen.go#L483: 			return fmt.Errorf("unable to decode langPackStringPluralized#6c47ac9f: field one_value: %w", err)
		tl_lang_pack_string_gen.go#L490: 			return fmt.Errorf("unable to decode langPackStringPluralized#6c47ac9f: field two_value: %w", err)
		tl_lang_pack_string_gen.go#L497: 			return fmt.Errorf("unable to decode langPackStringPluralized#6c47ac9f: field few_value: %w", err)
		tl_lang_pack_string_gen.go#L504: 			return fmt.Errorf("unable to decode langPackStringPluralized#6c47ac9f: field many_value: %w", err)
		tl_lang_pack_string_gen.go#L511: 			return fmt.Errorf("unable to decode langPackStringPluralized#6c47ac9f: field other_value: %w", err)
		tl_lang_pack_string_gen.go#L710: 		return fmt.Errorf("can't encode langPackStringDeleted#2979eeb2 as nil")
		tl_lang_pack_string_gen.go#L719: 		return fmt.Errorf("can't encode langPackStringDeleted#2979eeb2 as nil")
		tl_lang_pack_string_gen.go#L728: 		return fmt.Errorf("can't decode langPackStringDeleted#2979eeb2 to nil")
		tl_lang_pack_string_gen.go#L731: 		return fmt.Errorf("unable to decode langPackStringDeleted#2979eeb2: %w", err)
		tl_lang_pack_string_gen.go#L739: 		return fmt.Errorf("can't decode langPackStringDeleted#2979eeb2 to nil")
		tl_lang_pack_string_gen.go#L744: 			return fmt.Errorf("unable to decode langPackStringDeleted#2979eeb2: field key: %w", err)
		tl_lang_pack_string_gen.go#L811: 			return nil, fmt.Errorf("unable to decode LangPackStringClass: %w", err)
		tl_lang_pack_string_gen.go#L818: 			return nil, fmt.Errorf("unable to decode LangPackStringClass: %w", err)
		tl_lang_pack_string_gen.go#L825: 			return nil, fmt.Errorf("unable to decode LangPackStringClass: %w", err)
		tl_lang_pack_string_gen.go#L829: 		return nil, fmt.Errorf("unable to decode LangPackStringClass: %w", bin.NewUnexpectedID(id))
		tl_lang_pack_string_gen.go#L841: 		return fmt.Errorf("unable to decode LangPackStringBox to nil")
		tl_lang_pack_string_gen.go#L845: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_lang_pack_string_gen.go#L854: 		return fmt.Errorf("unable to encode LangPackStringClass as nil")
		tl_langpack_get_difference_gen.go#L137: 		return fmt.Errorf("can't encode langpack.getDifference#cd984aa5 as nil")
		tl_langpack_get_difference_gen.go#L146: 		return fmt.Errorf("can't encode langpack.getDifference#cd984aa5 as nil")
		tl_langpack_get_difference_gen.go#L157: 		return fmt.Errorf("can't decode langpack.getDifference#cd984aa5 to nil")
		tl_langpack_get_difference_gen.go#L160: 		return fmt.Errorf("unable to decode langpack.getDifference#cd984aa5: %w", err)
		tl_langpack_get_difference_gen.go#L168: 		return fmt.Errorf("can't decode langpack.getDifference#cd984aa5 to nil")
		tl_langpack_get_difference_gen.go#L173: 			return fmt.Errorf("unable to decode langpack.getDifference#cd984aa5: field lang_pack: %w", err)
		tl_langpack_get_difference_gen.go#L180: 			return fmt.Errorf("unable to decode langpack.getDifference#cd984aa5: field lang_code: %w", err)
		tl_langpack_get_difference_gen.go#L187: 			return fmt.Errorf("unable to decode langpack.getDifference#cd984aa5: field from_version: %w", err)
		tl_langpack_get_lang_pack_gen.go#L129: 		return fmt.Errorf("can't encode langpack.getLangPack#f2f2330a as nil")
		tl_langpack_get_lang_pack_gen.go#L138: 		return fmt.Errorf("can't encode langpack.getLangPack#f2f2330a as nil")
		tl_langpack_get_lang_pack_gen.go#L148: 		return fmt.Errorf("can't decode langpack.getLangPack#f2f2330a to nil")
		tl_langpack_get_lang_pack_gen.go#L151: 		return fmt.Errorf("unable to decode langpack.getLangPack#f2f2330a: %w", err)
		tl_langpack_get_lang_pack_gen.go#L159: 		return fmt.Errorf("can't decode langpack.getLangPack#f2f2330a to nil")
		tl_langpack_get_lang_pack_gen.go#L164: 			return fmt.Errorf("unable to decode langpack.getLangPack#f2f2330a: field lang_pack: %w", err)
		tl_langpack_get_lang_pack_gen.go#L171: 			return fmt.Errorf("unable to decode langpack.getLangPack#f2f2330a: field lang_code: %w", err)
		tl_langpack_get_language_gen.go#L129: 		return fmt.Errorf("can't encode langpack.getLanguage#6a596502 as nil")
		tl_langpack_get_language_gen.go#L138: 		return fmt.Errorf("can't encode langpack.getLanguage#6a596502 as nil")
		tl_langpack_get_language_gen.go#L148: 		return fmt.Errorf("can't decode langpack.getLanguage#6a596502 to nil")
		tl_langpack_get_language_gen.go#L151: 		return fmt.Errorf("unable to decode langpack.getLanguage#6a596502: %w", err)
		tl_langpack_get_language_gen.go#L159: 		return fmt.Errorf("can't decode langpack.getLanguage#6a596502 to nil")
		tl_langpack_get_language_gen.go#L164: 			return fmt.Errorf("unable to decode langpack.getLanguage#6a596502: field lang_pack: %w", err)
		tl_langpack_get_language_gen.go#L171: 			return fmt.Errorf("unable to decode langpack.getLanguage#6a596502: field lang_code: %w", err)
		tl_langpack_get_languages_gen.go#L115: 		return fmt.Errorf("can't encode langpack.getLanguages#42c6978f as nil")
		tl_langpack_get_languages_gen.go#L124: 		return fmt.Errorf("can't encode langpack.getLanguages#42c6978f as nil")
		tl_langpack_get_languages_gen.go#L133: 		return fmt.Errorf("can't decode langpack.getLanguages#42c6978f to nil")
		tl_langpack_get_languages_gen.go#L136: 		return fmt.Errorf("unable to decode langpack.getLanguages#42c6978f: %w", err)
		tl_langpack_get_languages_gen.go#L144: 		return fmt.Errorf("can't decode langpack.getLanguages#42c6978f to nil")
		tl_langpack_get_languages_gen.go#L149: 			return fmt.Errorf("unable to decode langpack.getLanguages#42c6978f: field lang_pack: %w", err)
		tl_langpack_get_strings_gen.go#L140: 		return fmt.Errorf("can't encode langpack.getStrings#efea3803 as nil")
		tl_langpack_get_strings_gen.go#L149: 		return fmt.Errorf("can't encode langpack.getStrings#efea3803 as nil")
		tl_langpack_get_strings_gen.go#L163: 		return fmt.Errorf("can't decode langpack.getStrings#efea3803 to nil")
		tl_langpack_get_strings_gen.go#L166: 		return fmt.Errorf("unable to decode langpack.getStrings#efea3803: %w", err)
		tl_langpack_get_strings_gen.go#L174: 		return fmt.Errorf("can't decode langpack.getStrings#efea3803 to nil")
		tl_langpack_get_strings_gen.go#L179: 			return fmt.Errorf("unable to decode langpack.getStrings#efea3803: field lang_pack: %w", err)
		tl_langpack_get_strings_gen.go#L186: 			return fmt.Errorf("unable to decode langpack.getStrings#efea3803: field lang_code: %w", err)
		tl_langpack_get_strings_gen.go#L193: 			return fmt.Errorf("unable to decode langpack.getStrings#efea3803: field keys: %w", err)
		tl_langpack_get_strings_gen.go#L202: 				return fmt.Errorf("unable to decode langpack.getStrings#efea3803: field keys: %w", err)
		tl_long_gen.go#L97: 		return fmt.Errorf("can't encode long#22076cba as nil")
		tl_long_gen.go#L106: 		return fmt.Errorf("can't encode long#22076cba as nil")
		tl_long_gen.go#L114: 		return fmt.Errorf("can't decode long#22076cba to nil")
		tl_long_gen.go#L117: 		return fmt.Errorf("unable to decode long#22076cba: %w", err)
		tl_long_gen.go#L125: 		return fmt.Errorf("can't decode long#22076cba to nil")
		tl_long_vector_gen.go#L112: 		return fmt.Errorf("can't encode Vector<long> as nil")
		tl_long_vector_gen.go#L121: 		return fmt.Errorf("can't encode Vector<long> as nil")
		tl_long_vector_gen.go#L133: 		return fmt.Errorf("can't decode Vector<long> to nil")
		tl_long_vector_gen.go#L142: 		return fmt.Errorf("can't decode Vector<long> to nil")
		tl_long_vector_gen.go#L147: 			return fmt.Errorf("unable to decode Vector<long>: field Elems: %w", err)
		tl_long_vector_gen.go#L156: 				return fmt.Errorf("unable to decode Vector<long>: field Elems: %w", err)
		tl_mask_coords_gen.go#L156: 		return fmt.Errorf("can't encode maskCoords#aed6dbb2 as nil")
		tl_mask_coords_gen.go#L165: 		return fmt.Errorf("can't encode maskCoords#aed6dbb2 as nil")
		tl_mask_coords_gen.go#L177: 		return fmt.Errorf("can't decode maskCoords#aed6dbb2 to nil")
		tl_mask_coords_gen.go#L180: 		return fmt.Errorf("unable to decode maskCoords#aed6dbb2: %w", err)
		tl_mask_coords_gen.go#L188: 		return fmt.Errorf("can't decode maskCoords#aed6dbb2 to nil")
		tl_mask_coords_gen.go#L193: 			return fmt.Errorf("unable to decode maskCoords#aed6dbb2: field n: %w", err)
		tl_mask_coords_gen.go#L200: 			return fmt.Errorf("unable to decode maskCoords#aed6dbb2: field x: %w", err)
		tl_mask_coords_gen.go#L207: 			return fmt.Errorf("unable to decode maskCoords#aed6dbb2: field y: %w", err)
		tl_mask_coords_gen.go#L214: 			return fmt.Errorf("unable to decode maskCoords#aed6dbb2: field zoom: %w", err)
		tl_media_area_coordinates_gen.go#L159: 		return fmt.Errorf("can't encode mediaAreaCoordinates#3d1ea4e as nil")
		tl_media_area_coordinates_gen.go#L168: 		return fmt.Errorf("can't encode mediaAreaCoordinates#3d1ea4e as nil")
		tl_media_area_coordinates_gen.go#L181: 		return fmt.Errorf("can't decode mediaAreaCoordinates#3d1ea4e to nil")
		tl_media_area_coordinates_gen.go#L184: 		return fmt.Errorf("unable to decode mediaAreaCoordinates#3d1ea4e: %w", err)
		tl_media_area_coordinates_gen.go#L192: 		return fmt.Errorf("can't decode mediaAreaCoordinates#3d1ea4e to nil")
		tl_media_area_coordinates_gen.go#L197: 			return fmt.Errorf("unable to decode mediaAreaCoordinates#3d1ea4e: field x: %w", err)
		tl_media_area_coordinates_gen.go#L204: 			return fmt.Errorf("unable to decode mediaAreaCoordinates#3d1ea4e: field y: %w", err)
		tl_media_area_coordinates_gen.go#L211: 			return fmt.Errorf("unable to decode mediaAreaCoordinates#3d1ea4e: field w: %w", err)
		tl_media_area_coordinates_gen.go#L218: 			return fmt.Errorf("unable to decode mediaAreaCoordinates#3d1ea4e: field h: %w", err)
		tl_media_area_coordinates_gen.go#L225: 			return fmt.Errorf("unable to decode mediaAreaCoordinates#3d1ea4e: field rotation: %w", err)
		tl_media_area_gen.go#L190: 		return fmt.Errorf("can't encode mediaAreaVenue#be82db9c as nil")
		tl_media_area_gen.go#L199: 		return fmt.Errorf("can't encode mediaAreaVenue#be82db9c as nil")
		tl_media_area_gen.go#L202: 		return fmt.Errorf("unable to encode mediaAreaVenue#be82db9c: field coordinates: %w", err)
		tl_media_area_gen.go#L205: 		return fmt.Errorf("unable to encode mediaAreaVenue#be82db9c: field geo is nil")
		tl_media_area_gen.go#L208: 		return fmt.Errorf("unable to encode mediaAreaVenue#be82db9c: field geo: %w", err)
		tl_media_area_gen.go#L221: 		return fmt.Errorf("can't decode mediaAreaVenue#be82db9c to nil")
		tl_media_area_gen.go#L224: 		return fmt.Errorf("unable to decode mediaAreaVenue#be82db9c: %w", err)
		tl_media_area_gen.go#L232: 		return fmt.Errorf("can't decode mediaAreaVenue#be82db9c to nil")
		tl_media_area_gen.go#L236: 			return fmt.Errorf("unable to decode mediaAreaVenue#be82db9c: field coordinates: %w", err)
		tl_media_area_gen.go#L242: 			return fmt.Errorf("unable to decode mediaAreaVenue#be82db9c: field geo: %w", err)
		tl_media_area_gen.go#L249: 			return fmt.Errorf("unable to decode mediaAreaVenue#be82db9c: field title: %w", err)
		tl_media_area_gen.go#L256: 			return fmt.Errorf("unable to decode mediaAreaVenue#be82db9c: field address: %w", err)
		tl_media_area_gen.go#L263: 			return fmt.Errorf("unable to decode mediaAreaVenue#be82db9c: field provider: %w", err)
		tl_media_area_gen.go#L270: 			return fmt.Errorf("unable to decode mediaAreaVenue#be82db9c: field venue_id: %w", err)
		tl_media_area_gen.go#L277: 			return fmt.Errorf("unable to decode mediaAreaVenue#be82db9c: field venue_type: %w", err)
		tl_media_area_gen.go#L460: 		return fmt.Errorf("can't encode inputMediaAreaVenue#b282217f as nil")
		tl_media_area_gen.go#L469: 		return fmt.Errorf("can't encode inputMediaAreaVenue#b282217f as nil")
		tl_media_area_gen.go#L472: 		return fmt.Errorf("unable to encode inputMediaAreaVenue#b282217f: field coordinates: %w", err)
		tl_media_area_gen.go#L482: 		return fmt.Errorf("can't decode inputMediaAreaVenue#b282217f to nil")
		tl_media_area_gen.go#L485: 		return fmt.Errorf("unable to decode inputMediaAreaVenue#b282217f: %w", err)
		tl_media_area_gen.go#L493: 		return fmt.Errorf("can't decode inputMediaAreaVenue#b282217f to nil")
		tl_media_area_gen.go#L497: 			return fmt.Errorf("unable to decode inputMediaAreaVenue#b282217f: field coordinates: %w", err)
		tl_media_area_gen.go#L503: 			return fmt.Errorf("unable to decode inputMediaAreaVenue#b282217f: field query_id: %w", err)
		tl_media_area_gen.go#L510: 			return fmt.Errorf("unable to decode inputMediaAreaVenue#b282217f: field result_id: %w", err)
		tl_media_area_gen.go#L642: 		return fmt.Errorf("can't encode mediaAreaGeoPoint#df8b3b22 as nil")
		tl_media_area_gen.go#L651: 		return fmt.Errorf("can't encode mediaAreaGeoPoint#df8b3b22 as nil")
		tl_media_area_gen.go#L654: 		return fmt.Errorf("unable to encode mediaAreaGeoPoint#df8b3b22: field coordinates: %w", err)
		tl_media_area_gen.go#L657: 		return fmt.Errorf("unable to encode mediaAreaGeoPoint#df8b3b22: field geo is nil")
		tl_media_area_gen.go#L660: 		return fmt.Errorf("unable to encode mediaAreaGeoPoint#df8b3b22: field geo: %w", err)
		tl_media_area_gen.go#L668: 		return fmt.Errorf("can't decode mediaAreaGeoPoint#df8b3b22 to nil")
		tl_media_area_gen.go#L671: 		return fmt.Errorf("unable to decode mediaAreaGeoPoint#df8b3b22: %w", err)
		tl_media_area_gen.go#L679: 		return fmt.Errorf("can't decode mediaAreaGeoPoint#df8b3b22 to nil")
		tl_media_area_gen.go#L683: 			return fmt.Errorf("unable to decode mediaAreaGeoPoint#df8b3b22: field coordinates: %w", err)
		tl_media_area_gen.go#L689: 			return fmt.Errorf("unable to decode mediaAreaGeoPoint#df8b3b22: field geo: %w", err)
		tl_media_area_gen.go#L854: 		return fmt.Errorf("can't encode mediaAreaSuggestedReaction#14455871 as nil")
		tl_media_area_gen.go#L863: 		return fmt.Errorf("can't encode mediaAreaSuggestedReaction#14455871 as nil")
		tl_media_area_gen.go#L867: 		return fmt.Errorf("unable to encode mediaAreaSuggestedReaction#14455871: field flags: %w", err)
		tl_media_area_gen.go#L870: 		return fmt.Errorf("unable to encode mediaAreaSuggestedReaction#14455871: field coordinates: %w", err)
		tl_media_area_gen.go#L873: 		return fmt.Errorf("unable to encode mediaAreaSuggestedReaction#14455871: field reaction is nil")
		tl_media_area_gen.go#L876: 		return fmt.Errorf("unable to encode mediaAreaSuggestedReaction#14455871: field reaction: %w", err)
		tl_media_area_gen.go#L884: 		return fmt.Errorf("can't decode mediaAreaSuggestedReaction#14455871 to nil")
		tl_media_area_gen.go#L887: 		return fmt.Errorf("unable to decode mediaAreaSuggestedReaction#14455871: %w", err)
		tl_media_area_gen.go#L895: 		return fmt.Errorf("can't decode mediaAreaSuggestedReaction#14455871 to nil")
		tl_media_area_gen.go#L899: 			return fmt.Errorf("unable to decode mediaAreaSuggestedReaction#14455871: field flags: %w", err)
		tl_media_area_gen.go#L906: 			return fmt.Errorf("unable to decode mediaAreaSuggestedReaction#14455871: field coordinates: %w", err)
		tl_media_area_gen.go#L912: 			return fmt.Errorf("unable to decode mediaAreaSuggestedReaction#14455871: field reaction: %w", err)
		tl_media_area_gen.go#L1080: 		return fmt.Errorf("can't encode mediaAreaChannelPost#770416af as nil")
		tl_media_area_gen.go#L1089: 		return fmt.Errorf("can't encode mediaAreaChannelPost#770416af as nil")
		tl_media_area_gen.go#L1092: 		return fmt.Errorf("unable to encode mediaAreaChannelPost#770416af: field coordinates: %w", err)
		tl_media_area_gen.go#L1102: 		return fmt.Errorf("can't decode mediaAreaChannelPost#770416af to nil")
		tl_media_area_gen.go#L1105: 		return fmt.Errorf("unable to decode mediaAreaChannelPost#770416af: %w", err)
		tl_media_area_gen.go#L1113: 		return fmt.Errorf("can't decode mediaAreaChannelPost#770416af to nil")
		tl_media_area_gen.go#L1117: 			return fmt.Errorf("unable to decode mediaAreaChannelPost#770416af: field coordinates: %w", err)
		tl_media_area_gen.go#L1123: 			return fmt.Errorf("unable to decode mediaAreaChannelPost#770416af: field channel_id: %w", err)
		tl_media_area_gen.go#L1130: 			return fmt.Errorf("unable to decode mediaAreaChannelPost#770416af: field msg_id: %w", err)
		tl_media_area_gen.go#L1268: 		return fmt.Errorf("can't encode inputMediaAreaChannelPost#2271f2bf as nil")
		tl_media_area_gen.go#L1277: 		return fmt.Errorf("can't encode inputMediaAreaChannelPost#2271f2bf as nil")
		tl_media_area_gen.go#L1280: 		return fmt.Errorf("unable to encode inputMediaAreaChannelPost#2271f2bf: field coordinates: %w", err)
		tl_media_area_gen.go#L1283: 		return fmt.Errorf("unable to encode inputMediaAreaChannelPost#2271f2bf: field channel is nil")
		tl_media_area_gen.go#L1286: 		return fmt.Errorf("unable to encode inputMediaAreaChannelPost#2271f2bf: field channel: %w", err)
		tl_media_area_gen.go#L1295: 		return fmt.Errorf("can't decode inputMediaAreaChannelPost#2271f2bf to nil")
		tl_media_area_gen.go#L1298: 		return fmt.Errorf("unable to decode inputMediaAreaChannelPost#2271f2bf: %w", err)
		tl_media_area_gen.go#L1306: 		return fmt.Errorf("can't decode inputMediaAreaChannelPost#2271f2bf to nil")
		tl_media_area_gen.go#L1310: 			return fmt.Errorf("unable to decode inputMediaAreaChannelPost#2271f2bf: field coordinates: %w", err)
		tl_media_area_gen.go#L1316: 			return fmt.Errorf("unable to decode inputMediaAreaChannelPost#2271f2bf: field channel: %w", err)
		tl_media_area_gen.go#L1323: 			return fmt.Errorf("unable to decode inputMediaAreaChannelPost#2271f2bf: field msg_id: %w", err)
		tl_media_area_gen.go#L1410: 			return nil, fmt.Errorf("unable to decode MediaAreaClass: %w", err)
		tl_media_area_gen.go#L1417: 			return nil, fmt.Errorf("unable to decode MediaAreaClass: %w", err)
		tl_media_area_gen.go#L1424: 			return nil, fmt.Errorf("unable to decode MediaAreaClass: %w", err)
		tl_media_area_gen.go#L1431: 			return nil, fmt.Errorf("unable to decode MediaAreaClass: %w", err)
		tl_media_area_gen.go#L1438: 			return nil, fmt.Errorf("unable to decode MediaAreaClass: %w", err)
		tl_media_area_gen.go#L1445: 			return nil, fmt.Errorf("unable to decode MediaAreaClass: %w", err)
		tl_media_area_gen.go#L1449: 		return nil, fmt.Errorf("unable to decode MediaAreaClass: %w", bin.NewUnexpectedID(id))
		tl_media_area_gen.go#L1461: 		return fmt.Errorf("unable to decode MediaAreaBox to nil")
		tl_media_area_gen.go#L1465: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_media_area_gen.go#L1474: 		return fmt.Errorf("unable to encode MediaAreaClass as nil")
		tl_message_action_gen.go#L103: 		return fmt.Errorf("can't encode messageActionEmpty#b6aef7b0 as nil")
		tl_message_action_gen.go#L112: 		return fmt.Errorf("can't encode messageActionEmpty#b6aef7b0 as nil")
		tl_message_action_gen.go#L120: 		return fmt.Errorf("can't decode messageActionEmpty#b6aef7b0 to nil")
		tl_message_action_gen.go#L123: 		return fmt.Errorf("unable to decode messageActionEmpty#b6aef7b0: %w", err)
		tl_message_action_gen.go#L131: 		return fmt.Errorf("can't decode messageActionEmpty#b6aef7b0 to nil")
		tl_message_action_gen.go#L233: 		return fmt.Errorf("can't encode messageActionChatCreate#bd47cbad as nil")
		tl_message_action_gen.go#L242: 		return fmt.Errorf("can't encode messageActionChatCreate#bd47cbad as nil")
		tl_message_action_gen.go#L255: 		return fmt.Errorf("can't decode messageActionChatCreate#bd47cbad to nil")
		tl_message_action_gen.go#L258: 		return fmt.Errorf("unable to decode messageActionChatCreate#bd47cbad: %w", err)
		tl_message_action_gen.go#L266: 		return fmt.Errorf("can't decode messageActionChatCreate#bd47cbad to nil")
		tl_message_action_gen.go#L271: 			return fmt.Errorf("unable to decode messageActionChatCreate#bd47cbad: field title: %w", err)
		tl_message_action_gen.go#L278: 			return fmt.Errorf("unable to decode messageActionChatCreate#bd47cbad: field users: %w", err)
		tl_message_action_gen.go#L287: 				return fmt.Errorf("unable to decode messageActionChatCreate#bd47cbad: field users: %w", err)
		tl_message_action_gen.go#L397: 		return fmt.Errorf("can't encode messageActionChatEditTitle#b5a1ce5a as nil")
		tl_message_action_gen.go#L406: 		return fmt.Errorf("can't encode messageActionChatEditTitle#b5a1ce5a as nil")
		tl_message_action_gen.go#L415: 		return fmt.Errorf("can't decode messageActionChatEditTitle#b5a1ce5a to nil")
		tl_message_action_gen.go#L418: 		return fmt.Errorf("unable to decode messageActionChatEditTitle#b5a1ce5a: %w", err)
		tl_message_action_gen.go#L426: 		return fmt.Errorf("can't decode messageActionChatEditTitle#b5a1ce5a to nil")
		tl_message_action_gen.go#L431: 			return fmt.Errorf("unable to decode messageActionChatEditTitle#b5a1ce5a: field title: %w", err)
		tl_message_action_gen.go#L532: 		return fmt.Errorf("can't encode messageActionChatEditPhoto#7fcb13a8 as nil")
		tl_message_action_gen.go#L541: 		return fmt.Errorf("can't encode messageActionChatEditPhoto#7fcb13a8 as nil")
		tl_message_action_gen.go#L544: 		return fmt.Errorf("unable to encode messageActionChatEditPhoto#7fcb13a8: field photo is nil")
		tl_message_action_gen.go#L547: 		return fmt.Errorf("unable to encode messageActionChatEditPhoto#7fcb13a8: field photo: %w", err)
		tl_message_action_gen.go#L555: 		return fmt.Errorf("can't decode messageActionChatEditPhoto#7fcb13a8 to nil")
		tl_message_action_gen.go#L558: 		return fmt.Errorf("unable to decode messageActionChatEditPhoto#7fcb13a8: %w", err)
		tl_message_action_gen.go#L566: 		return fmt.Errorf("can't decode messageActionChatEditPhoto#7fcb13a8 to nil")
		tl_message_action_gen.go#L571: 			return fmt.Errorf("unable to decode messageActionChatEditPhoto#7fcb13a8: field photo: %w", err)
		tl_message_action_gen.go#L655: 		return fmt.Errorf("can't encode messageActionChatDeletePhoto#95e3fbef as nil")
		tl_message_action_gen.go#L664: 		return fmt.Errorf("can't encode messageActionChatDeletePhoto#95e3fbef as nil")
		tl_message_action_gen.go#L672: 		return fmt.Errorf("can't decode messageActionChatDeletePhoto#95e3fbef to nil")
		tl_message_action_gen.go#L675: 		return fmt.Errorf("unable to decode messageActionChatDeletePhoto#95e3fbef: %w", err)
		tl_message_action_gen.go#L683: 		return fmt.Errorf("can't decode messageActionChatDeletePhoto#95e3fbef to nil")
		tl_message_action_gen.go#L774: 		return fmt.Errorf("can't encode messageActionChatAddUser#15cefd00 as nil")
		tl_message_action_gen.go#L783: 		return fmt.Errorf("can't encode messageActionChatAddUser#15cefd00 as nil")
		tl_message_action_gen.go#L795: 		return fmt.Errorf("can't decode messageActionChatAddUser#15cefd00 to nil")
		tl_message_action_gen.go#L798: 		return fmt.Errorf("unable to decode messageActionChatAddUser#15cefd00: %w", err)
		tl_message_action_gen.go#L806: 		return fmt.Errorf("can't decode messageActionChatAddUser#15cefd00 to nil")
		tl_message_action_gen.go#L811: 			return fmt.Errorf("unable to decode messageActionChatAddUser#15cefd00: field users: %w", err)
		tl_message_action_gen.go#L820: 				return fmt.Errorf("unable to decode messageActionChatAddUser#15cefd00: field users: %w", err)
		tl_message_action_gen.go#L922: 		return fmt.Errorf("can't encode messageActionChatDeleteUser#a43f30cc as nil")
		tl_message_action_gen.go#L931: 		return fmt.Errorf("can't encode messageActionChatDeleteUser#a43f30cc as nil")
		tl_message_action_gen.go#L940: 		return fmt.Errorf("can't decode messageActionChatDeleteUser#a43f30cc to nil")
		tl_message_action_gen.go#L943: 		return fmt.Errorf("unable to decode messageActionChatDeleteUser#a43f30cc: %w", err)
		tl_message_action_gen.go#L951: 		return fmt.Errorf("can't decode messageActionChatDeleteUser#a43f30cc to nil")
		tl_message_action_gen.go#L956: 			return fmt.Errorf("unable to decode messageActionChatDeleteUser#a43f30cc: field user_id: %w", err)
		tl_message_action_gen.go#L1057: 		return fmt.Errorf("can't encode messageActionChatJoinedByLink#31224c3 as nil")
		tl_message_action_gen.go#L1066: 		return fmt.Errorf("can't encode messageActionChatJoinedByLink#31224c3 as nil")
		tl_message_action_gen.go#L1075: 		return fmt.Errorf("can't decode messageActionChatJoinedByLink#31224c3 to nil")
		tl_message_action_gen.go#L1078: 		return fmt.Errorf("unable to decode messageActionChatJoinedByLink#31224c3: %w", err)
		tl_message_action_gen.go#L1086: 		return fmt.Errorf("can't decode messageActionChatJoinedByLink#31224c3 to nil")
		tl_message_action_gen.go#L1091: 			return fmt.Errorf("unable to decode messageActionChatJoinedByLink#31224c3: field inviter_id: %w", err)
		tl_message_action_gen.go#L1192: 		return fmt.Errorf("can't encode messageActionChannelCreate#95d2ac92 as nil")
		tl_message_action_gen.go#L1201: 		return fmt.Errorf("can't encode messageActionChannelCreate#95d2ac92 as nil")
		tl_message_action_gen.go#L1210: 		return fmt.Errorf("can't decode messageActionChannelCreate#95d2ac92 to nil")
		tl_message_action_gen.go#L1213: 		return fmt.Errorf("unable to decode messageActionChannelCreate#95d2ac92: %w", err)
		tl_message_action_gen.go#L1221: 		return fmt.Errorf("can't decode messageActionChannelCreate#95d2ac92 to nil")
		tl_message_action_gen.go#L1226: 			return fmt.Errorf("unable to decode messageActionChannelCreate#95d2ac92: field title: %w", err)
		tl_message_action_gen.go#L1330: 		return fmt.Errorf("can't encode messageActionChatMigrateTo#e1037f92 as nil")
		tl_message_action_gen.go#L1339: 		return fmt.Errorf("can't encode messageActionChatMigrateTo#e1037f92 as nil")
		tl_message_action_gen.go#L1348: 		return fmt.Errorf("can't decode messageActionChatMigrateTo#e1037f92 to nil")
		tl_message_action_gen.go#L1351: 		return fmt.Errorf("unable to decode messageActionChatMigrateTo#e1037f92: %w", err)
		tl_message_action_gen.go#L1359: 		return fmt.Errorf("can't decode messageActionChatMigrateTo#e1037f92 to nil")
		tl_message_action_gen.go#L1364: 			return fmt.Errorf("unable to decode messageActionChatMigrateTo#e1037f92: field channel_id: %w", err)
		tl_message_action_gen.go#L1479: 		return fmt.Errorf("can't encode messageActionChannelMigrateFrom#ea3948e9 as nil")
		tl_message_action_gen.go#L1488: 		return fmt.Errorf("can't encode messageActionChannelMigrateFrom#ea3948e9 as nil")
		tl_message_action_gen.go#L1498: 		return fmt.Errorf("can't decode messageActionChannelMigrateFrom#ea3948e9 to nil")
		tl_message_action_gen.go#L1501: 		return fmt.Errorf("unable to decode messageActionChannelMigrateFrom#ea3948e9: %w", err)
		tl_message_action_gen.go#L1509: 		return fmt.Errorf("can't decode messageActionChannelMigrateFrom#ea3948e9 to nil")
		tl_message_action_gen.go#L1514: 			return fmt.Errorf("unable to decode messageActionChannelMigrateFrom#ea3948e9: field title: %w", err)
		tl_message_action_gen.go#L1521: 			return fmt.Errorf("unable to decode messageActionChannelMigrateFrom#ea3948e9: field chat_id: %w", err)
		tl_message_action_gen.go#L1613: 		return fmt.Errorf("can't encode messageActionPinMessage#94bd38ed as nil")
		tl_message_action_gen.go#L1622: 		return fmt.Errorf("can't encode messageActionPinMessage#94bd38ed as nil")
		tl_message_action_gen.go#L1630: 		return fmt.Errorf("can't decode messageActionPinMessage#94bd38ed to nil")
		tl_message_action_gen.go#L1633: 		return fmt.Errorf("unable to decode messageActionPinMessage#94bd38ed: %w", err)
		tl_message_action_gen.go#L1641: 		return fmt.Errorf("can't decode messageActionPinMessage#94bd38ed to nil")
		tl_message_action_gen.go#L1715: 		return fmt.Errorf("can't encode messageActionHistoryClear#9fbab604 as nil")
		tl_message_action_gen.go#L1724: 		return fmt.Errorf("can't encode messageActionHistoryClear#9fbab604 as nil")
		tl_message_action_gen.go#L1732: 		return fmt.Errorf("can't decode messageActionHistoryClear#9fbab604 to nil")
		tl_message_action_gen.go#L1735: 		return fmt.Errorf("unable to decode messageActionHistoryClear#9fbab604: %w", err)
		tl_message_action_gen.go#L1743: 		return fmt.Errorf("can't decode messageActionHistoryClear#9fbab604 to nil")
		tl_message_action_gen.go#L1845: 		return fmt.Errorf("can't encode messageActionGameScore#92a72876 as nil")
		tl_message_action_gen.go#L1854: 		return fmt.Errorf("can't encode messageActionGameScore#92a72876 as nil")
		tl_message_action_gen.go#L1864: 		return fmt.Errorf("can't decode messageActionGameScore#92a72876 to nil")
		tl_message_action_gen.go#L1867: 		return fmt.Errorf("unable to decode messageActionGameScore#92a72876: %w", err)
		tl_message_action_gen.go#L1875: 		return fmt.Errorf("can't decode messageActionGameScore#92a72876 to nil")
		tl_message_action_gen.go#L1880: 			return fmt.Errorf("unable to decode messageActionGameScore#92a72876: field game_id: %w", err)
		tl_message_action_gen.go#L1887: 			return fmt.Errorf("unable to decode messageActionGameScore#92a72876: field score: %w", err)
		tl_message_action_gen.go#L2120: 		return fmt.Errorf("can't encode messageActionPaymentSentMe#8f31b327 as nil")
		tl_message_action_gen.go#L2129: 		return fmt.Errorf("can't encode messageActionPaymentSentMe#8f31b327 as nil")
		tl_message_action_gen.go#L2133: 		return fmt.Errorf("unable to encode messageActionPaymentSentMe#8f31b327: field flags: %w", err)
		tl_message_action_gen.go#L2140: 			return fmt.Errorf("unable to encode messageActionPaymentSentMe#8f31b327: field info: %w", err)
		tl_message_action_gen.go#L2147: 		return fmt.Errorf("unable to encode messageActionPaymentSentMe#8f31b327: field charge: %w", err)
		tl_message_action_gen.go#L2155: 		return fmt.Errorf("can't decode messageActionPaymentSentMe#8f31b327 to nil")
		tl_message_action_gen.go#L2158: 		return fmt.Errorf("unable to decode messageActionPaymentSentMe#8f31b327: %w", err)
		tl_message_action_gen.go#L2166: 		return fmt.Errorf("can't decode messageActionPaymentSentMe#8f31b327 to nil")
		tl_message_action_gen.go#L2170: 			return fmt.Errorf("unable to decode messageActionPaymentSentMe#8f31b327: field flags: %w", err)
		tl_message_action_gen.go#L2178: 			return fmt.Errorf("unable to decode messageActionPaymentSentMe#8f31b327: field currency: %w", err)
		tl_message_action_gen.go#L2185: 			return fmt.Errorf("unable to decode messageActionPaymentSentMe#8f31b327: field total_amount: %w", err)
		tl_message_action_gen.go#L2192: 			return fmt.Errorf("unable to decode messageActionPaymentSentMe#8f31b327: field payload: %w", err)
		tl_message_action_gen.go#L2198: 			return fmt.Errorf("unable to decode messageActionPaymentSentMe#8f31b327: field info: %w", err)
		tl_message_action_gen.go#L2204: 			return fmt.Errorf("unable to decode messageActionPaymentSentMe#8f31b327: field shipping_option_id: %w", err)
		tl_message_action_gen.go#L2210: 			return fmt.Errorf("unable to decode messageActionPaymentSentMe#8f31b327: field charge: %w", err)
		tl_message_action_gen.go#L2495: 		return fmt.Errorf("can't encode messageActionPaymentSent#96163f56 as nil")
		tl_message_action_gen.go#L2504: 		return fmt.Errorf("can't encode messageActionPaymentSent#96163f56 as nil")
		tl_message_action_gen.go#L2508: 		return fmt.Errorf("unable to encode messageActionPaymentSent#96163f56: field flags: %w", err)
		tl_message_action_gen.go#L2521: 		return fmt.Errorf("can't decode messageActionPaymentSent#96163f56 to nil")
		tl_message_action_gen.go#L2524: 		return fmt.Errorf("unable to decode messageActionPaymentSent#96163f56: %w", err)
		tl_message_action_gen.go#L2532: 		return fmt.Errorf("can't decode messageActionPaymentSent#96163f56 to nil")
		tl_message_action_gen.go#L2536: 			return fmt.Errorf("unable to decode messageActionPaymentSent#96163f56: field flags: %w", err)
		tl_message_action_gen.go#L2544: 			return fmt.Errorf("unable to decode messageActionPaymentSent#96163f56: field currency: %w", err)
		tl_message_action_gen.go#L2551: 			return fmt.Errorf("unable to decode messageActionPaymentSent#96163f56: field total_amount: %w", err)
		tl_message_action_gen.go#L2558: 			return fmt.Errorf("unable to decode messageActionPaymentSent#96163f56: field invoice_slug: %w", err)
		tl_message_action_gen.go#L2790: 		return fmt.Errorf("can't encode messageActionPhoneCall#80e11a7f as nil")
		tl_message_action_gen.go#L2799: 		return fmt.Errorf("can't encode messageActionPhoneCall#80e11a7f as nil")
		tl_message_action_gen.go#L2803: 		return fmt.Errorf("unable to encode messageActionPhoneCall#80e11a7f: field flags: %w", err)
		tl_message_action_gen.go#L2808: 			return fmt.Errorf("unable to encode messageActionPhoneCall#80e11a7f: field reason is nil")
		tl_message_action_gen.go#L2811: 			return fmt.Errorf("unable to encode messageActionPhoneCall#80e11a7f: field reason: %w", err)
		tl_message_action_gen.go#L2823: 		return fmt.Errorf("can't decode messageActionPhoneCall#80e11a7f to nil")
		tl_message_action_gen.go#L2826: 		return fmt.Errorf("unable to decode messageActionPhoneCall#80e11a7f: %w", err)
		tl_message_action_gen.go#L2834: 		return fmt.Errorf("can't decode messageActionPhoneCall#80e11a7f to nil")
		tl_message_action_gen.go#L2838: 			return fmt.Errorf("unable to decode messageActionPhoneCall#80e11a7f: field flags: %w", err)
		tl_message_action_gen.go#L2845: 			return fmt.Errorf("unable to decode messageActionPhoneCall#80e11a7f: field call_id: %w", err)
		tl_message_action_gen.go#L2852: 			return fmt.Errorf("unable to decode messageActionPhoneCall#80e11a7f: field reason: %w", err)
		tl_message_action_gen.go#L2859: 			return fmt.Errorf("unable to decode messageActionPhoneCall#80e11a7f: field duration: %w", err)
		tl_message_action_gen.go#L2998: 		return fmt.Errorf("can't encode messageActionScreenshotTaken#4792929b as nil")
		tl_message_action_gen.go#L3007: 		return fmt.Errorf("can't encode messageActionScreenshotTaken#4792929b as nil")
		tl_message_action_gen.go#L3015: 		return fmt.Errorf("can't decode messageActionScreenshotTaken#4792929b to nil")
		tl_message_action_gen.go#L3018: 		return fmt.Errorf("unable to decode messageActionScreenshotTaken#4792929b: %w", err)
		tl_message_action_gen.go#L3026: 		return fmt.Errorf("can't decode messageActionScreenshotTaken#4792929b to nil")
		tl_message_action_gen.go#L3118: 		return fmt.Errorf("can't encode messageActionCustomAction#fae69f56 as nil")
		tl_message_action_gen.go#L3127: 		return fmt.Errorf("can't encode messageActionCustomAction#fae69f56 as nil")
		tl_message_action_gen.go#L3136: 		return fmt.Errorf("can't decode messageActionCustomAction#fae69f56 to nil")
		tl_message_action_gen.go#L3139: 		return fmt.Errorf("unable to decode messageActionCustomAction#fae69f56: %w", err)
		tl_message_action_gen.go#L3147: 		return fmt.Errorf("can't decode messageActionCustomAction#fae69f56 to nil")
		tl_message_action_gen.go#L3152: 			return fmt.Errorf("unable to decode messageActionCustomAction#fae69f56: field message: %w", err)
		tl_message_action_gen.go#L3340: 		return fmt.Errorf("can't encode messageActionBotAllowed#c516d679 as nil")
		tl_message_action_gen.go#L3349: 		return fmt.Errorf("can't encode messageActionBotAllowed#c516d679 as nil")
		tl_message_action_gen.go#L3353: 		return fmt.Errorf("unable to encode messageActionBotAllowed#c516d679: field flags: %w", err)
		tl_message_action_gen.go#L3360: 			return fmt.Errorf("unable to encode messageActionBotAllowed#c516d679: field app is nil")
		tl_message_action_gen.go#L3363: 			return fmt.Errorf("unable to encode messageActionBotAllowed#c516d679: field app: %w", err)
		tl_message_action_gen.go#L3372: 		return fmt.Errorf("can't decode messageActionBotAllowed#c516d679 to nil")
		tl_message_action_gen.go#L3375: 		return fmt.Errorf("unable to decode messageActionBotAllowed#c516d679: %w", err)
		tl_message_action_gen.go#L3383: 		return fmt.Errorf("can't decode messageActionBotAllowed#c516d679 to nil")
		tl_message_action_gen.go#L3387: 			return fmt.Errorf("unable to decode messageActionBotAllowed#c516d679: field flags: %w", err)
		tl_message_action_gen.go#L3395: 			return fmt.Errorf("unable to decode messageActionBotAllowed#c516d679: field domain: %w", err)
		tl_message_action_gen.go#L3402: 			return fmt.Errorf("unable to decode messageActionBotAllowed#c516d679: field app: %w", err)
		tl_message_action_gen.go#L3584: 		return fmt.Errorf("can't encode messageActionSecureValuesSentMe#1b287353 as nil")
		tl_message_action_gen.go#L3593: 		return fmt.Errorf("can't encode messageActionSecureValuesSentMe#1b287353 as nil")
		tl_message_action_gen.go#L3598: 			return fmt.Errorf("unable to encode messageActionSecureValuesSentMe#1b287353: field values element with index %d: %w", idx, err)
		tl_message_action_gen.go#L3602: 		return fmt.Errorf("unable to encode messageActionSecureValuesSentMe#1b287353: field credentials: %w", err)
		tl_message_action_gen.go#L3610: 		return fmt.Errorf("can't decode messageActionSecureValuesSentMe#1b287353 to nil")
		tl_message_action_gen.go#L3613: 		return fmt.Errorf("unable to decode messageActionSecureValuesSentMe#1b287353: %w", err)
		tl_message_action_gen.go#L3621: 		return fmt.Errorf("can't decode messageActionSecureValuesSentMe#1b287353 to nil")
		tl_message_action_gen.go#L3626: 			return fmt.Errorf("unable to decode messageActionSecureValuesSentMe#1b287353: field values: %w", err)
		tl_message_action_gen.go#L3635: 				return fmt.Errorf("unable to decode messageActionSecureValuesSentMe#1b287353: field values: %w", err)
		tl_message_action_gen.go#L3642: 			return fmt.Errorf("unable to decode messageActionSecureValuesSentMe#1b287353: field credentials: %w", err)
		tl_message_action_gen.go#L3753: 		return fmt.Errorf("can't encode messageActionSecureValuesSent#d95c6154 as nil")
		tl_message_action_gen.go#L3762: 		return fmt.Errorf("can't encode messageActionSecureValuesSent#d95c6154 as nil")
		tl_message_action_gen.go#L3767: 			return fmt.Errorf("unable to encode messageActionSecureValuesSent#d95c6154: field types element with index %d is nil", idx)
		tl_message_action_gen.go#L3770: 			return fmt.Errorf("unable to encode messageActionSecureValuesSent#d95c6154: field types element with index %d: %w", idx, err)
		tl_message_action_gen.go#L3779: 		return fmt.Errorf("can't decode messageActionSecureValuesSent#d95c6154 to nil")
		tl_message_action_gen.go#L3782: 		return fmt.Errorf("unable to decode messageActionSecureValuesSent#d95c6154: %w", err)
		tl_message_action_gen.go#L3790: 		return fmt.Errorf("can't decode messageActionSecureValuesSent#d95c6154 to nil")
		tl_message_action_gen.go#L3795: 			return fmt.Errorf("unable to decode messageActionSecureValuesSent#d95c6154: field types: %w", err)
		tl_message_action_gen.go#L3804: 				return fmt.Errorf("unable to decode messageActionSecureValuesSent#d95c6154: field types: %w", err)
		tl_message_action_gen.go#L3894: 		return fmt.Errorf("can't encode messageActionContactSignUp#f3f25f76 as nil")
		tl_message_action_gen.go#L3903: 		return fmt.Errorf("can't encode messageActionContactSignUp#f3f25f76 as nil")
		tl_message_action_gen.go#L3911: 		return fmt.Errorf("can't decode messageActionContactSignUp#f3f25f76 to nil")
		tl_message_action_gen.go#L3914: 		return fmt.Errorf("unable to decode messageActionContactSignUp#f3f25f76: %w", err)
		tl_message_action_gen.go#L3922: 		return fmt.Errorf("can't decode messageActionContactSignUp#f3f25f76 to nil")
		tl_message_action_gen.go#L4038: 		return fmt.Errorf("can't encode messageActionGeoProximityReached#98e0d697 as nil")
		tl_message_action_gen.go#L4047: 		return fmt.Errorf("can't encode messageActionGeoProximityReached#98e0d697 as nil")
		tl_message_action_gen.go#L4050: 		return fmt.Errorf("unable to encode messageActionGeoProximityReached#98e0d697: field from_id is nil")
		tl_message_action_gen.go#L4053: 		return fmt.Errorf("unable to encode messageActionGeoProximityReached#98e0d697: field from_id: %w", err)
		tl_message_action_gen.go#L4056: 		return fmt.Errorf("unable to encode messageActionGeoProximityReached#98e0d697: field to_id is nil")
		tl_message_action_gen.go#L4059: 		return fmt.Errorf("unable to encode messageActionGeoProximityReached#98e0d697: field to_id: %w", err)
		tl_message_action_gen.go#L4068: 		return fmt.Errorf("can't decode messageActionGeoProximityReached#98e0d697 to nil")
		tl_message_action_gen.go#L4071: 		return fmt.Errorf("unable to decode messageActionGeoProximityReached#98e0d697: %w", err)
		tl_message_action_gen.go#L4079: 		return fmt.Errorf("can't decode messageActionGeoProximityReached#98e0d697 to nil")
		tl_message_action_gen.go#L4084: 			return fmt.Errorf("unable to decode messageActionGeoProximityReached#98e0d697: field from_id: %w", err)
		tl_message_action_gen.go#L4091: 			return fmt.Errorf("unable to decode messageActionGeoProximityReached#98e0d697: field to_id: %w", err)
		tl_message_action_gen.go#L4098: 			return fmt.Errorf("unable to decode messageActionGeoProximityReached#98e0d697: field distance: %w", err)
		tl_message_action_gen.go#L4247: 		return fmt.Errorf("can't encode messageActionGroupCall#7a0d7f42 as nil")
		tl_message_action_gen.go#L4256: 		return fmt.Errorf("can't encode messageActionGroupCall#7a0d7f42 as nil")
		tl_message_action_gen.go#L4260: 		return fmt.Errorf("unable to encode messageActionGroupCall#7a0d7f42: field flags: %w", err)
		tl_message_action_gen.go#L4263: 		return fmt.Errorf("unable to encode messageActionGroupCall#7a0d7f42: field call: %w", err)
		tl_message_action_gen.go#L4274: 		return fmt.Errorf("can't decode messageActionGroupCall#7a0d7f42 to nil")
		tl_message_action_gen.go#L4277: 		return fmt.Errorf("unable to decode messageActionGroupCall#7a0d7f42: %w", err)
		tl_message_action_gen.go#L4285: 		return fmt.Errorf("can't decode messageActionGroupCall#7a0d7f42 to nil")
		tl_message_action_gen.go#L4289: 			return fmt.Errorf("unable to decode messageActionGroupCall#7a0d7f42: field flags: %w", err)
		tl_message_action_gen.go#L4294: 			return fmt.Errorf("unable to decode messageActionGroupCall#7a0d7f42: field call: %w", err)
		tl_message_action_gen.go#L4300: 			return fmt.Errorf("unable to decode messageActionGroupCall#7a0d7f42: field duration: %w", err)
		tl_message_action_gen.go#L4430: 		return fmt.Errorf("can't encode messageActionInviteToGroupCall#502f92f7 as nil")
		tl_message_action_gen.go#L4439: 		return fmt.Errorf("can't encode messageActionInviteToGroupCall#502f92f7 as nil")
		tl_message_action_gen.go#L4442: 		return fmt.Errorf("unable to encode messageActionInviteToGroupCall#502f92f7: field call: %w", err)
		tl_message_action_gen.go#L4454: 		return fmt.Errorf("can't decode messageActionInviteToGroupCall#502f92f7 to nil")
		tl_message_action_gen.go#L4457: 		return fmt.Errorf("unable to decode messageActionInviteToGroupCall#502f92f7: %w", err)
		tl_message_action_gen.go#L4465: 		return fmt.Errorf("can't decode messageActionInviteToGroupCall#502f92f7 to nil")
		tl_message_action_gen.go#L4469: 			return fmt.Errorf("unable to decode messageActionInviteToGroupCall#502f92f7: field call: %w", err)
		tl_message_action_gen.go#L4475: 			return fmt.Errorf("unable to decode messageActionInviteToGroupCall#502f92f7: field users: %w", err)
		tl_message_action_gen.go#L4484: 				return fmt.Errorf("unable to decode messageActionInviteToGroupCall#502f92f7: field users: %w", err)
		tl_message_action_gen.go#L4633: 		return fmt.Errorf("can't encode messageActionSetMessagesTTL#3c134d7b as nil")
		tl_message_action_gen.go#L4642: 		return fmt.Errorf("can't encode messageActionSetMessagesTTL#3c134d7b as nil")
		tl_message_action_gen.go#L4646: 		return fmt.Errorf("unable to encode messageActionSetMessagesTTL#3c134d7b: field flags: %w", err)
		tl_message_action_gen.go#L4658: 		return fmt.Errorf("can't decode messageActionSetMessagesTTL#3c134d7b to nil")
		tl_message_action_gen.go#L4661: 		return fmt.Errorf("unable to decode messageActionSetMessagesTTL#3c134d7b: %w", err)
		tl_message_action_gen.go#L4669: 		return fmt.Errorf("can't decode messageActionSetMessagesTTL#3c134d7b to nil")
		tl_message_action_gen.go#L4673: 			return fmt.Errorf("unable to decode messageActionSetMessagesTTL#3c134d7b: field flags: %w", err)
		tl_message_action_gen.go#L4679: 			return fmt.Errorf("unable to decode messageActionSetMessagesTTL#3c134d7b: field period: %w", err)
		tl_message_action_gen.go#L4686: 			return fmt.Errorf("unable to decode messageActionSetMessagesTTL#3c134d7b: field auto_setting_from: %w", err)
		tl_message_action_gen.go#L4816: 		return fmt.Errorf("can't encode messageActionGroupCallScheduled#b3a07661 as nil")
		tl_message_action_gen.go#L4825: 		return fmt.Errorf("can't encode messageActionGroupCallScheduled#b3a07661 as nil")
		tl_message_action_gen.go#L4828: 		return fmt.Errorf("unable to encode messageActionGroupCallScheduled#b3a07661: field call: %w", err)
		tl_message_action_gen.go#L4837: 		return fmt.Errorf("can't decode messageActionGroupCallScheduled#b3a07661 to nil")
		tl_message_action_gen.go#L4840: 		return fmt.Errorf("unable to decode messageActionGroupCallScheduled#b3a07661: %w", err)
		tl_message_action_gen.go#L4848: 		return fmt.Errorf("can't decode messageActionGroupCallScheduled#b3a07661 to nil")
		tl_message_action_gen.go#L4852: 			return fmt.Errorf("unable to decode messageActionGroupCallScheduled#b3a07661: field call: %w", err)
		tl_message_action_gen.go#L4858: 			return fmt.Errorf("unable to decode messageActionGroupCallScheduled#b3a07661: field schedule_date: %w", err)
		tl_message_action_gen.go#L4967: 		return fmt.Errorf("can't encode messageActionSetChatTheme#aa786345 as nil")
		tl_message_action_gen.go#L4976: 		return fmt.Errorf("can't encode messageActionSetChatTheme#aa786345 as nil")
		tl_message_action_gen.go#L4985: 		return fmt.Errorf("can't decode messageActionSetChatTheme#aa786345 to nil")
		tl_message_action_gen.go#L4988: 		return fmt.Errorf("unable to decode messageActionSetChatTheme#aa786345: %w", err)
		tl_message_action_gen.go#L4996: 		return fmt.Errorf("can't decode messageActionSetChatTheme#aa786345 to nil")
		tl_message_action_gen.go#L5001: 			return fmt.Errorf("unable to decode messageActionSetChatTheme#aa786345: field emoticon: %w", err)
		tl_message_action_gen.go#L5085: 		return fmt.Errorf("can't encode messageActionChatJoinedByRequest#ebbca3cb as nil")
		tl_message_action_gen.go#L5094: 		return fmt.Errorf("can't encode messageActionChatJoinedByRequest#ebbca3cb as nil")
		tl_message_action_gen.go#L5102: 		return fmt.Errorf("can't decode messageActionChatJoinedByRequest#ebbca3cb to nil")
		tl_message_action_gen.go#L5105: 		return fmt.Errorf("unable to decode messageActionChatJoinedByRequest#ebbca3cb: %w", err)
		tl_message_action_gen.go#L5113: 		return fmt.Errorf("can't decode messageActionChatJoinedByRequest#ebbca3cb to nil")
		tl_message_action_gen.go#L5222: 		return fmt.Errorf("can't encode messageActionWebViewDataSentMe#47dd8079 as nil")
		tl_message_action_gen.go#L5231: 		return fmt.Errorf("can't encode messageActionWebViewDataSentMe#47dd8079 as nil")
		tl_message_action_gen.go#L5241: 		return fmt.Errorf("can't decode messageActionWebViewDataSentMe#47dd8079 to nil")
		tl_message_action_gen.go#L5244: 		return fmt.Errorf("unable to decode messageActionWebViewDataSentMe#47dd8079: %w", err)
		tl_message_action_gen.go#L5252: 		return fmt.Errorf("can't decode messageActionWebViewDataSentMe#47dd8079 to nil")
		tl_message_action_gen.go#L5257: 			return fmt.Errorf("unable to decode messageActionWebViewDataSentMe#47dd8079: field text: %w", err)
		tl_message_action_gen.go#L5264: 			return fmt.Errorf("unable to decode messageActionWebViewDataSentMe#47dd8079: field data: %w", err)
		tl_message_action_gen.go#L5382: 		return fmt.Errorf("can't encode messageActionWebViewDataSent#b4c38cb5 as nil")
		tl_message_action_gen.go#L5391: 		return fmt.Errorf("can't encode messageActionWebViewDataSent#b4c38cb5 as nil")
		tl_message_action_gen.go#L5400: 		return fmt.Errorf("can't decode messageActionWebViewDataSent#b4c38cb5 to nil")
		tl_message_action_gen.go#L5403: 		return fmt.Errorf("unable to decode messageActionWebViewDataSent#b4c38cb5: %w", err)
		tl_message_action_gen.go#L5411: 		return fmt.Errorf("can't decode messageActionWebViewDataSent#b4c38cb5 to nil")
		tl_message_action_gen.go#L5416: 			return fmt.Errorf("unable to decode messageActionWebViewDataSent#b4c38cb5: field text: %w", err)
		tl_message_action_gen.go#L5601: 		return fmt.Errorf("can't encode messageActionGiftPremium#c83d6aec as nil")
		tl_message_action_gen.go#L5610: 		return fmt.Errorf("can't encode messageActionGiftPremium#c83d6aec as nil")
		tl_message_action_gen.go#L5614: 		return fmt.Errorf("unable to encode messageActionGiftPremium#c83d6aec: field flags: %w", err)
		tl_message_action_gen.go#L5631: 		return fmt.Errorf("can't decode messageActionGiftPremium#c83d6aec to nil")
		tl_message_action_gen.go#L5634: 		return fmt.Errorf("unable to decode messageActionGiftPremium#c83d6aec: %w", err)
		tl_message_action_gen.go#L5642: 		return fmt.Errorf("can't decode messageActionGiftPremium#c83d6aec to nil")
		tl_message_action_gen.go#L5646: 			return fmt.Errorf("unable to decode messageActionGiftPremium#c83d6aec: field flags: %w", err)
		tl_message_action_gen.go#L5652: 			return fmt.Errorf("unable to decode messageActionGiftPremium#c83d6aec: field currency: %w", err)
		tl_message_action_gen.go#L5659: 			return fmt.Errorf("unable to decode messageActionGiftPremium#c83d6aec: field amount: %w", err)
		tl_message_action_gen.go#L5666: 			return fmt.Errorf("unable to decode messageActionGiftPremium#c83d6aec: field months: %w", err)
		tl_message_action_gen.go#L5673: 			return fmt.Errorf("unable to decode messageActionGiftPremium#c83d6aec: field crypto_currency: %w", err)
		tl_message_action_gen.go#L5680: 			return fmt.Errorf("unable to decode messageActionGiftPremium#c83d6aec: field crypto_amount: %w", err)
		tl_message_action_gen.go#L5883: 		return fmt.Errorf("can't encode messageActionTopicCreate#d999256 as nil")
		tl_message_action_gen.go#L5892: 		return fmt.Errorf("can't encode messageActionTopicCreate#d999256 as nil")
		tl_message_action_gen.go#L5896: 		return fmt.Errorf("unable to encode messageActionTopicCreate#d999256: field flags: %w", err)
		tl_message_action_gen.go#L5909: 		return fmt.Errorf("can't decode messageActionTopicCreate#d999256 to nil")
		tl_message_action_gen.go#L5912: 		return fmt.Errorf("unable to decode messageActionTopicCreate#d999256: %w", err)
		tl_message_action_gen.go#L5920: 		return fmt.Errorf("can't decode messageActionTopicCreate#d999256 to nil")
		tl_message_action_gen.go#L5924: 			return fmt.Errorf("unable to decode messageActionTopicCreate#d999256: field flags: %w", err)
		tl_message_action_gen.go#L5930: 			return fmt.Errorf("unable to decode messageActionTopicCreate#d999256: field title: %w", err)
		tl_message_action_gen.go#L5937: 			return fmt.Errorf("unable to decode messageActionTopicCreate#d999256: field icon_color: %w", err)
		tl_message_action_gen.go#L5944: 			return fmt.Errorf("unable to decode messageActionTopicCreate#d999256: field icon_emoji_id: %w", err)
		tl_message_action_gen.go#L6158: 		return fmt.Errorf("can't encode messageActionTopicEdit#c0944820 as nil")
		tl_message_action_gen.go#L6167: 		return fmt.Errorf("can't encode messageActionTopicEdit#c0944820 as nil")
		tl_message_action_gen.go#L6171: 		return fmt.Errorf("unable to encode messageActionTopicEdit#c0944820: field flags: %w", err)
		tl_message_action_gen.go#L6191: 		return fmt.Errorf("can't decode messageActionTopicEdit#c0944820 to nil")
		tl_message_action_gen.go#L6194: 		return fmt.Errorf("unable to decode messageActionTopicEdit#c0944820: %w", err)
		tl_message_action_gen.go#L6202: 		return fmt.Errorf("can't decode messageActionTopicEdit#c0944820 to nil")
		tl_message_action_gen.go#L6206: 			return fmt.Errorf("unable to decode messageActionTopicEdit#c0944820: field flags: %w", err)
		tl_message_action_gen.go#L6212: 			return fmt.Errorf("unable to decode messageActionTopicEdit#c0944820: field title: %w", err)
		tl_message_action_gen.go#L6219: 			return fmt.Errorf("unable to decode messageActionTopicEdit#c0944820: field icon_emoji_id: %w", err)
		tl_message_action_gen.go#L6226: 			return fmt.Errorf("unable to decode messageActionTopicEdit#c0944820: field closed: %w", err)
		tl_message_action_gen.go#L6233: 			return fmt.Errorf("unable to decode messageActionTopicEdit#c0944820: field hidden: %w", err)
		tl_message_action_gen.go#L6401: 		return fmt.Errorf("can't encode messageActionSuggestProfilePhoto#57de635e as nil")
		tl_message_action_gen.go#L6410: 		return fmt.Errorf("can't encode messageActionSuggestProfilePhoto#57de635e as nil")
		tl_message_action_gen.go#L6413: 		return fmt.Errorf("unable to encode messageActionSuggestProfilePhoto#57de635e: field photo is nil")
		tl_message_action_gen.go#L6416: 		return fmt.Errorf("unable to encode messageActionSuggestProfilePhoto#57de635e: field photo: %w", err)
		tl_message_action_gen.go#L6424: 		return fmt.Errorf("can't decode messageActionSuggestProfilePhoto#57de635e to nil")
		tl_message_action_gen.go#L6427: 		return fmt.Errorf("unable to decode messageActionSuggestProfilePhoto#57de635e: %w", err)
		tl_message_action_gen.go#L6435: 		return fmt.Errorf("can't decode messageActionSuggestProfilePhoto#57de635e to nil")
		tl_message_action_gen.go#L6440: 			return fmt.Errorf("unable to decode messageActionSuggestProfilePhoto#57de635e: field photo: %w", err)
		tl_message_action_gen.go#L6559: 		return fmt.Errorf("can't encode messageActionRequestedPeer#31518e9b as nil")
		tl_message_action_gen.go#L6568: 		return fmt.Errorf("can't encode messageActionRequestedPeer#31518e9b as nil")
		tl_message_action_gen.go#L6574: 			return fmt.Errorf("unable to encode messageActionRequestedPeer#31518e9b: field peers element with index %d is nil", idx)
		tl_message_action_gen.go#L6577: 			return fmt.Errorf("unable to encode messageActionRequestedPeer#31518e9b: field peers element with index %d: %w", idx, err)
		tl_message_action_gen.go#L6586: 		return fmt.Errorf("can't decode messageActionRequestedPeer#31518e9b to nil")
		tl_message_action_gen.go#L6589: 		return fmt.Errorf("unable to decode messageActionRequestedPeer#31518e9b: %w", err)
		tl_message_action_gen.go#L6597: 		return fmt.Errorf("can't decode messageActionRequestedPeer#31518e9b to nil")
		tl_message_action_gen.go#L6602: 			return fmt.Errorf("unable to decode messageActionRequestedPeer#31518e9b: field button_id: %w", err)
		tl_message_action_gen.go#L6609: 			return fmt.Errorf("unable to decode messageActionRequestedPeer#31518e9b: field peers: %w", err)
		tl_message_action_gen.go#L6618: 				return fmt.Errorf("unable to decode messageActionRequestedPeer#31518e9b: field peers: %w", err)
		tl_message_action_gen.go#L6793: 		return fmt.Errorf("can't encode messageActionSetChatWallPaper#5060a3f4 as nil")
		tl_message_action_gen.go#L6802: 		return fmt.Errorf("can't encode messageActionSetChatWallPaper#5060a3f4 as nil")
		tl_message_action_gen.go#L6806: 		return fmt.Errorf("unable to encode messageActionSetChatWallPaper#5060a3f4: field flags: %w", err)
		tl_message_action_gen.go#L6809: 		return fmt.Errorf("unable to encode messageActionSetChatWallPaper#5060a3f4: field wallpaper is nil")
		tl_message_action_gen.go#L6812: 		return fmt.Errorf("unable to encode messageActionSetChatWallPaper#5060a3f4: field wallpaper: %w", err)
		tl_message_action_gen.go#L6820: 		return fmt.Errorf("can't decode messageActionSetChatWallPaper#5060a3f4 to nil")
		tl_message_action_gen.go#L6823: 		return fmt.Errorf("unable to decode messageActionSetChatWallPaper#5060a3f4: %w", err)
		tl_message_action_gen.go#L6831: 		return fmt.Errorf("can't decode messageActionSetChatWallPaper#5060a3f4 to nil")
		tl_message_action_gen.go#L6835: 			return fmt.Errorf("unable to decode messageActionSetChatWallPaper#5060a3f4: field flags: %w", err)
		tl_message_action_gen.go#L6843: 			return fmt.Errorf("unable to decode messageActionSetChatWallPaper#5060a3f4: field wallpaper: %w", err)
		tl_message_action_gen.go#L7157: 		return fmt.Errorf("can't encode messageActionGiftCode#678c2e09 as nil")
		tl_message_action_gen.go#L7166: 		return fmt.Errorf("can't encode messageActionGiftCode#678c2e09 as nil")
		tl_message_action_gen.go#L7170: 		return fmt.Errorf("unable to encode messageActionGiftCode#678c2e09: field flags: %w", err)
		tl_message_action_gen.go#L7174: 			return fmt.Errorf("unable to encode messageActionGiftCode#678c2e09: field boost_peer is nil")
		tl_message_action_gen.go#L7177: 			return fmt.Errorf("unable to encode messageActionGiftCode#678c2e09: field boost_peer: %w", err)
		tl_message_action_gen.go#L7200: 		return fmt.Errorf("can't decode messageActionGiftCode#678c2e09 to nil")
		tl_message_action_gen.go#L7203: 		return fmt.Errorf("unable to decode messageActionGiftCode#678c2e09: %w", err)
		tl_message_action_gen.go#L7211: 		return fmt.Errorf("can't decode messageActionGiftCode#678c2e09 to nil")
		tl_message_action_gen.go#L7215: 			return fmt.Errorf("unable to decode messageActionGiftCode#678c2e09: field flags: %w", err)
		tl_message_action_gen.go#L7223: 			return fmt.Errorf("unable to decode messageActionGiftCode#678c2e09: field boost_peer: %w", err)
		tl_message_action_gen.go#L7230: 			return fmt.Errorf("unable to decode messageActionGiftCode#678c2e09: field months: %w", err)
		tl_message_action_gen.go#L7237: 			return fmt.Errorf("unable to decode messageActionGiftCode#678c2e09: field slug: %w", err)
		tl_message_action_gen.go#L7244: 			return fmt.Errorf("unable to decode messageActionGiftCode#678c2e09: field currency: %w", err)
		tl_message_action_gen.go#L7251: 			return fmt.Errorf("unable to decode messageActionGiftCode#678c2e09: field amount: %w", err)
		tl_message_action_gen.go#L7258: 			return fmt.Errorf("unable to decode messageActionGiftCode#678c2e09: field crypto_currency: %w", err)
		tl_message_action_gen.go#L7265: 			return fmt.Errorf("unable to decode messageActionGiftCode#678c2e09: field crypto_amount: %w", err)
		tl_message_action_gen.go#L7488: 		return fmt.Errorf("can't encode messageActionGiveawayLaunch#332ba9ed as nil")
		tl_message_action_gen.go#L7497: 		return fmt.Errorf("can't encode messageActionGiveawayLaunch#332ba9ed as nil")
		tl_message_action_gen.go#L7505: 		return fmt.Errorf("can't decode messageActionGiveawayLaunch#332ba9ed to nil")
		tl_message_action_gen.go#L7508: 		return fmt.Errorf("unable to decode messageActionGiveawayLaunch#332ba9ed: %w", err)
		tl_message_action_gen.go#L7516: 		return fmt.Errorf("can't decode messageActionGiveawayLaunch#332ba9ed to nil")
		tl_message_action_gen.go#L7621: 		return fmt.Errorf("can't encode messageActionGiveawayResults#2a9fadc5 as nil")
		tl_message_action_gen.go#L7630: 		return fmt.Errorf("can't encode messageActionGiveawayResults#2a9fadc5 as nil")
		tl_message_action_gen.go#L7640: 		return fmt.Errorf("can't decode messageActionGiveawayResults#2a9fadc5 to nil")
		tl_message_action_gen.go#L7643: 		return fmt.Errorf("unable to decode messageActionGiveawayResults#2a9fadc5: %w", err)
		tl_message_action_gen.go#L7651: 		return fmt.Errorf("can't decode messageActionGiveawayResults#2a9fadc5 to nil")
		tl_message_action_gen.go#L7656: 			return fmt.Errorf("unable to decode messageActionGiveawayResults#2a9fadc5: field winners_count: %w", err)
		tl_message_action_gen.go#L7663: 			return fmt.Errorf("unable to decode messageActionGiveawayResults#2a9fadc5: field unclaimed_count: %w", err)
		tl_message_action_gen.go#L7773: 			return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
		tl_message_action_gen.go#L7780: 			return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
		tl_message_action_gen.go#L7787: 			return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
		tl_message_action_gen.go#L7794: 			return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
		tl_message_action_gen.go#L7801: 			return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
		tl_message_action_gen.go#L7808: 			return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
		tl_message_action_gen.go#L7815: 			return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
		tl_message_action_gen.go#L7822: 			return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
		tl_message_action_gen.go#L7829: 			return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
		tl_message_action_gen.go#L7836: 			return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
		tl_message_action_gen.go#L7843: 			return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
		tl_message_action_gen.go#L7850: 			return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
		tl_message_action_gen.go#L7857: 			return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
		tl_message_action_gen.go#L7864: 			return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
		tl_message_action_gen.go#L7871: 			return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
		tl_message_action_gen.go#L7878: 			return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
		tl_message_action_gen.go#L7885: 			return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
		tl_message_action_gen.go#L7892: 			return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
		tl_message_action_gen.go#L7899: 			return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
		tl_message_action_gen.go#L7906: 			return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
		tl_message_action_gen.go#L7913: 			return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
		tl_message_action_gen.go#L7920: 			return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
		tl_message_action_gen.go#L7927: 			return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
		tl_message_action_gen.go#L7934: 			return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
		tl_message_action_gen.go#L7941: 			return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
		tl_message_action_gen.go#L7948: 			return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
		tl_message_action_gen.go#L7955: 			return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
		tl_message_action_gen.go#L7962: 			return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
		tl_message_action_gen.go#L7969: 			return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
		tl_message_action_gen.go#L7976: 			return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
		tl_message_action_gen.go#L7983: 			return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
		tl_message_action_gen.go#L7990: 			return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
		tl_message_action_gen.go#L7997: 			return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
		tl_message_action_gen.go#L8004: 			return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
		tl_message_action_gen.go#L8011: 			return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
		tl_message_action_gen.go#L8018: 			return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
		tl_message_action_gen.go#L8025: 			return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
		tl_message_action_gen.go#L8032: 			return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
		tl_message_action_gen.go#L8039: 			return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
		tl_message_action_gen.go#L8046: 			return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
		tl_message_action_gen.go#L8053: 			return nil, fmt.Errorf("unable to decode MessageActionClass: %w", err)
		tl_message_action_gen.go#L8057: 		return nil, fmt.Errorf("unable to decode MessageActionClass: %w", bin.NewUnexpectedID(id))
		tl_message_action_gen.go#L8069: 		return fmt.Errorf("unable to decode MessageActionBox to nil")
		tl_message_action_gen.go#L8073: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_message_action_gen.go#L8082: 		return fmt.Errorf("unable to encode MessageActionClass as nil")
		tl_message_entity_gen.go#L137: 		return fmt.Errorf("can't encode messageEntityUnknown#bb92ba95 as nil")
		tl_message_entity_gen.go#L146: 		return fmt.Errorf("can't encode messageEntityUnknown#bb92ba95 as nil")
		tl_message_entity_gen.go#L156: 		return fmt.Errorf("can't decode messageEntityUnknown#bb92ba95 to nil")
		tl_message_entity_gen.go#L159: 		return fmt.Errorf("unable to decode messageEntityUnknown#bb92ba95: %w", err)
		tl_message_entity_gen.go#L167: 		return fmt.Errorf("can't decode messageEntityUnknown#bb92ba95 to nil")
		tl_message_entity_gen.go#L172: 			return fmt.Errorf("unable to decode messageEntityUnknown#bb92ba95: field offset: %w", err)
		tl_message_entity_gen.go#L179: 			return fmt.Errorf("unable to decode messageEntityUnknown#bb92ba95: field length: %w", err)
		tl_message_entity_gen.go#L310: 		return fmt.Errorf("can't encode messageEntityMention#fa04579d as nil")
		tl_message_entity_gen.go#L319: 		return fmt.Errorf("can't encode messageEntityMention#fa04579d as nil")
		tl_message_entity_gen.go#L329: 		return fmt.Errorf("can't decode messageEntityMention#fa04579d to nil")
		tl_message_entity_gen.go#L332: 		return fmt.Errorf("unable to decode messageEntityMention#fa04579d: %w", err)
		tl_message_entity_gen.go#L340: 		return fmt.Errorf("can't decode messageEntityMention#fa04579d to nil")
		tl_message_entity_gen.go#L345: 			return fmt.Errorf("unable to decode messageEntityMention#fa04579d: field offset: %w", err)
		tl_message_entity_gen.go#L352: 			return fmt.Errorf("unable to decode messageEntityMention#fa04579d: field length: %w", err)
		tl_message_entity_gen.go#L478: 		return fmt.Errorf("can't encode messageEntityHashtag#6f635b0d as nil")
		tl_message_entity_gen.go#L487: 		return fmt.Errorf("can't encode messageEntityHashtag#6f635b0d as nil")
		tl_message_entity_gen.go#L497: 		return fmt.Errorf("can't decode messageEntityHashtag#6f635b0d to nil")
		tl_message_entity_gen.go#L500: 		return fmt.Errorf("unable to decode messageEntityHashtag#6f635b0d: %w", err)
		tl_message_entity_gen.go#L508: 		return fmt.Errorf("can't decode messageEntityHashtag#6f635b0d to nil")
		tl_message_entity_gen.go#L513: 			return fmt.Errorf("unable to decode messageEntityHashtag#6f635b0d: field offset: %w", err)
		tl_message_entity_gen.go#L520: 			return fmt.Errorf("unable to decode messageEntityHashtag#6f635b0d: field length: %w", err)
		tl_message_entity_gen.go#L646: 		return fmt.Errorf("can't encode messageEntityBotCommand#6cef8ac7 as nil")
		tl_message_entity_gen.go#L655: 		return fmt.Errorf("can't encode messageEntityBotCommand#6cef8ac7 as nil")
		tl_message_entity_gen.go#L665: 		return fmt.Errorf("can't decode messageEntityBotCommand#6cef8ac7 to nil")
		tl_message_entity_gen.go#L668: 		return fmt.Errorf("unable to decode messageEntityBotCommand#6cef8ac7: %w", err)
		tl_message_entity_gen.go#L676: 		return fmt.Errorf("can't decode messageEntityBotCommand#6cef8ac7 to nil")
		tl_message_entity_gen.go#L681: 			return fmt.Errorf("unable to decode messageEntityBotCommand#6cef8ac7: field offset: %w", err)
		tl_message_entity_gen.go#L688: 			return fmt.Errorf("unable to decode messageEntityBotCommand#6cef8ac7: field length: %w", err)
		tl_message_entity_gen.go#L820: 		return fmt.Errorf("can't encode messageEntityUrl#6ed02538 as nil")
		tl_message_entity_gen.go#L829: 		return fmt.Errorf("can't encode messageEntityUrl#6ed02538 as nil")
		tl_message_entity_gen.go#L839: 		return fmt.Errorf("can't decode messageEntityUrl#6ed02538 to nil")
		tl_message_entity_gen.go#L842: 		return fmt.Errorf("unable to decode messageEntityUrl#6ed02538: %w", err)
		tl_message_entity_gen.go#L850: 		return fmt.Errorf("can't decode messageEntityUrl#6ed02538 to nil")
		tl_message_entity_gen.go#L855: 			return fmt.Errorf("unable to decode messageEntityUrl#6ed02538: field offset: %w", err)
		tl_message_entity_gen.go#L862: 			return fmt.Errorf("unable to decode messageEntityUrl#6ed02538: field length: %w", err)
		tl_message_entity_gen.go#L991: 		return fmt.Errorf("can't encode messageEntityEmail#64e475c2 as nil")
		tl_message_entity_gen.go#L1000: 		return fmt.Errorf("can't encode messageEntityEmail#64e475c2 as nil")
		tl_message_entity_gen.go#L1010: 		return fmt.Errorf("can't decode messageEntityEmail#64e475c2 to nil")
		tl_message_entity_gen.go#L1013: 		return fmt.Errorf("unable to decode messageEntityEmail#64e475c2: %w", err)
		tl_message_entity_gen.go#L1021: 		return fmt.Errorf("can't decode messageEntityEmail#64e475c2 to nil")
		tl_message_entity_gen.go#L1026: 			return fmt.Errorf("unable to decode messageEntityEmail#64e475c2: field offset: %w", err)
		tl_message_entity_gen.go#L1033: 			return fmt.Errorf("unable to decode messageEntityEmail#64e475c2: field length: %w", err)
		tl_message_entity_gen.go#L1159: 		return fmt.Errorf("can't encode messageEntityBold#bd610bc9 as nil")
		tl_message_entity_gen.go#L1168: 		return fmt.Errorf("can't encode messageEntityBold#bd610bc9 as nil")
		tl_message_entity_gen.go#L1178: 		return fmt.Errorf("can't decode messageEntityBold#bd610bc9 to nil")
		tl_message_entity_gen.go#L1181: 		return fmt.Errorf("unable to decode messageEntityBold#bd610bc9: %w", err)
		tl_message_entity_gen.go#L1189: 		return fmt.Errorf("can't decode messageEntityBold#bd610bc9 to nil")
		tl_message_entity_gen.go#L1194: 			return fmt.Errorf("unable to decode messageEntityBold#bd610bc9: field offset: %w", err)
		tl_message_entity_gen.go#L1201: 			return fmt.Errorf("unable to decode messageEntityBold#bd610bc9: field length: %w", err)
		tl_message_entity_gen.go#L1327: 		return fmt.Errorf("can't encode messageEntityItalic#826f8b60 as nil")
		tl_message_entity_gen.go#L1336: 		return fmt.Errorf("can't encode messageEntityItalic#826f8b60 as nil")
		tl_message_entity_gen.go#L1346: 		return fmt.Errorf("can't decode messageEntityItalic#826f8b60 to nil")
		tl_message_entity_gen.go#L1349: 		return fmt.Errorf("unable to decode messageEntityItalic#826f8b60: %w", err)
		tl_message_entity_gen.go#L1357: 		return fmt.Errorf("can't decode messageEntityItalic#826f8b60 to nil")
		tl_message_entity_gen.go#L1362: 			return fmt.Errorf("unable to decode messageEntityItalic#826f8b60: field offset: %w", err)
		tl_message_entity_gen.go#L1369: 			return fmt.Errorf("unable to decode messageEntityItalic#826f8b60: field length: %w", err)
		tl_message_entity_gen.go#L1495: 		return fmt.Errorf("can't encode messageEntityCode#28a20571 as nil")
		tl_message_entity_gen.go#L1504: 		return fmt.Errorf("can't encode messageEntityCode#28a20571 as nil")
		tl_message_entity_gen.go#L1514: 		return fmt.Errorf("can't decode messageEntityCode#28a20571 to nil")
		tl_message_entity_gen.go#L1517: 		return fmt.Errorf("unable to decode messageEntityCode#28a20571: %w", err)
		tl_message_entity_gen.go#L1525: 		return fmt.Errorf("can't decode messageEntityCode#28a20571 to nil")
		tl_message_entity_gen.go#L1530: 			return fmt.Errorf("unable to decode messageEntityCode#28a20571: field offset: %w", err)
		tl_message_entity_gen.go#L1537: 			return fmt.Errorf("unable to decode messageEntityCode#28a20571: field length: %w", err)
		tl_message_entity_gen.go#L1675: 		return fmt.Errorf("can't encode messageEntityPre#73924be0 as nil")
		tl_message_entity_gen.go#L1684: 		return fmt.Errorf("can't encode messageEntityPre#73924be0 as nil")
		tl_message_entity_gen.go#L1695: 		return fmt.Errorf("can't decode messageEntityPre#73924be0 to nil")
		tl_message_entity_gen.go#L1698: 		return fmt.Errorf("unable to decode messageEntityPre#73924be0: %w", err)
		tl_message_entity_gen.go#L1706: 		return fmt.Errorf("can't decode messageEntityPre#73924be0 to nil")
		tl_message_entity_gen.go#L1711: 			return fmt.Errorf("unable to decode messageEntityPre#73924be0: field offset: %w", err)
		tl_message_entity_gen.go#L1718: 			return fmt.Errorf("unable to decode messageEntityPre#73924be0: field length: %w", err)
		tl_message_entity_gen.go#L1725: 			return fmt.Errorf("unable to decode messageEntityPre#73924be0: field language: %w", err)
		tl_message_entity_gen.go#L1880: 		return fmt.Errorf("can't encode messageEntityTextUrl#76a6d327 as nil")
		tl_message_entity_gen.go#L1889: 		return fmt.Errorf("can't encode messageEntityTextUrl#76a6d327 as nil")
		tl_message_entity_gen.go#L1900: 		return fmt.Errorf("can't decode messageEntityTextUrl#76a6d327 to nil")
		tl_message_entity_gen.go#L1903: 		return fmt.Errorf("unable to decode messageEntityTextUrl#76a6d327: %w", err)
		tl_message_entity_gen.go#L1911: 		return fmt.Errorf("can't decode messageEntityTextUrl#76a6d327 to nil")
		tl_message_entity_gen.go#L1916: 			return fmt.Errorf("unable to decode messageEntityTextUrl#76a6d327: field offset: %w", err)
		tl_message_entity_gen.go#L1923: 			return fmt.Errorf("unable to decode messageEntityTextUrl#76a6d327: field length: %w", err)
		tl_message_entity_gen.go#L1930: 			return fmt.Errorf("unable to decode messageEntityTextUrl#76a6d327: field url: %w", err)
		tl_message_entity_gen.go#L2080: 		return fmt.Errorf("can't encode messageEntityMentionName#dc7b1140 as nil")
		tl_message_entity_gen.go#L2089: 		return fmt.Errorf("can't encode messageEntityMentionName#dc7b1140 as nil")
		tl_message_entity_gen.go#L2100: 		return fmt.Errorf("can't decode messageEntityMentionName#dc7b1140 to nil")
		tl_message_entity_gen.go#L2103: 		return fmt.Errorf("unable to decode messageEntityMentionName#dc7b1140: %w", err)
		tl_message_entity_gen.go#L2111: 		return fmt.Errorf("can't decode messageEntityMentionName#dc7b1140 to nil")
		tl_message_entity_gen.go#L2116: 			return fmt.Errorf("unable to decode messageEntityMentionName#dc7b1140: field offset: %w", err)
		tl_message_entity_gen.go#L2123: 			return fmt.Errorf("unable to decode messageEntityMentionName#dc7b1140: field length: %w", err)
		tl_message_entity_gen.go#L2130: 			return fmt.Errorf("unable to decode messageEntityMentionName#dc7b1140: field user_id: %w", err)
		tl_message_entity_gen.go#L2280: 		return fmt.Errorf("can't encode inputMessageEntityMentionName#208e68c9 as nil")
		tl_message_entity_gen.go#L2289: 		return fmt.Errorf("can't encode inputMessageEntityMentionName#208e68c9 as nil")
		tl_message_entity_gen.go#L2294: 		return fmt.Errorf("unable to encode inputMessageEntityMentionName#208e68c9: field user_id is nil")
		tl_message_entity_gen.go#L2297: 		return fmt.Errorf("unable to encode inputMessageEntityMentionName#208e68c9: field user_id: %w", err)
		tl_message_entity_gen.go#L2305: 		return fmt.Errorf("can't decode inputMessageEntityMentionName#208e68c9 to nil")
		tl_message_entity_gen.go#L2308: 		return fmt.Errorf("unable to decode inputMessageEntityMentionName#208e68c9: %w", err)
		tl_message_entity_gen.go#L2316: 		return fmt.Errorf("can't decode inputMessageEntityMentionName#208e68c9 to nil")
		tl_message_entity_gen.go#L2321: 			return fmt.Errorf("unable to decode inputMessageEntityMentionName#208e68c9: field offset: %w", err)
		tl_message_entity_gen.go#L2328: 			return fmt.Errorf("unable to decode inputMessageEntityMentionName#208e68c9: field length: %w", err)
		tl_message_entity_gen.go#L2335: 			return fmt.Errorf("unable to decode inputMessageEntityMentionName#208e68c9: field user_id: %w", err)
		tl_message_entity_gen.go#L2469: 		return fmt.Errorf("can't encode messageEntityPhone#9b69e34b as nil")
		tl_message_entity_gen.go#L2478: 		return fmt.Errorf("can't encode messageEntityPhone#9b69e34b as nil")
		tl_message_entity_gen.go#L2488: 		return fmt.Errorf("can't decode messageEntityPhone#9b69e34b to nil")
		tl_message_entity_gen.go#L2491: 		return fmt.Errorf("unable to decode messageEntityPhone#9b69e34b: %w", err)
		tl_message_entity_gen.go#L2499: 		return fmt.Errorf("can't decode messageEntityPhone#9b69e34b to nil")
		tl_message_entity_gen.go#L2504: 			return fmt.Errorf("unable to decode messageEntityPhone#9b69e34b: field offset: %w", err)
		tl_message_entity_gen.go#L2511: 			return fmt.Errorf("unable to decode messageEntityPhone#9b69e34b: field length: %w", err)
		tl_message_entity_gen.go#L2637: 		return fmt.Errorf("can't encode messageEntityCashtag#4c4e743f as nil")
		tl_message_entity_gen.go#L2646: 		return fmt.Errorf("can't encode messageEntityCashtag#4c4e743f as nil")
		tl_message_entity_gen.go#L2656: 		return fmt.Errorf("can't decode messageEntityCashtag#4c4e743f to nil")
		tl_message_entity_gen.go#L2659: 		return fmt.Errorf("unable to decode messageEntityCashtag#4c4e743f: %w", err)
		tl_message_entity_gen.go#L2667: 		return fmt.Errorf("can't decode messageEntityCashtag#4c4e743f to nil")
		tl_message_entity_gen.go#L2672: 			return fmt.Errorf("unable to decode messageEntityCashtag#4c4e743f: field offset: %w", err)
		tl_message_entity_gen.go#L2679: 			return fmt.Errorf("unable to decode messageEntityCashtag#4c4e743f: field length: %w", err)
		tl_message_entity_gen.go#L2805: 		return fmt.Errorf("can't encode messageEntityUnderline#9c4e7e8b as nil")
		tl_message_entity_gen.go#L2814: 		return fmt.Errorf("can't encode messageEntityUnderline#9c4e7e8b as nil")
		tl_message_entity_gen.go#L2824: 		return fmt.Errorf("can't decode messageEntityUnderline#9c4e7e8b to nil")
		tl_message_entity_gen.go#L2827: 		return fmt.Errorf("unable to decode messageEntityUnderline#9c4e7e8b: %w", err)
		tl_message_entity_gen.go#L2835: 		return fmt.Errorf("can't decode messageEntityUnderline#9c4e7e8b to nil")
		tl_message_entity_gen.go#L2840: 			return fmt.Errorf("unable to decode messageEntityUnderline#9c4e7e8b: field offset: %w", err)
		tl_message_entity_gen.go#L2847: 			return fmt.Errorf("unable to decode messageEntityUnderline#9c4e7e8b: field length: %w", err)
		tl_message_entity_gen.go#L2973: 		return fmt.Errorf("can't encode messageEntityStrike#bf0693d4 as nil")
		tl_message_entity_gen.go#L2982: 		return fmt.Errorf("can't encode messageEntityStrike#bf0693d4 as nil")
		tl_message_entity_gen.go#L2992: 		return fmt.Errorf("can't decode messageEntityStrike#bf0693d4 to nil")
		tl_message_entity_gen.go#L2995: 		return fmt.Errorf("unable to decode messageEntityStrike#bf0693d4: %w", err)
		tl_message_entity_gen.go#L3003: 		return fmt.Errorf("can't decode messageEntityStrike#bf0693d4 to nil")
		tl_message_entity_gen.go#L3008: 			return fmt.Errorf("unable to decode messageEntityStrike#bf0693d4: field offset: %w", err)
		tl_message_entity_gen.go#L3015: 			return fmt.Errorf("unable to decode messageEntityStrike#bf0693d4: field length: %w", err)
		tl_message_entity_gen.go#L3141: 		return fmt.Errorf("can't encode messageEntityBankCard#761e6af4 as nil")
		tl_message_entity_gen.go#L3150: 		return fmt.Errorf("can't encode messageEntityBankCard#761e6af4 as nil")
		tl_message_entity_gen.go#L3160: 		return fmt.Errorf("can't decode messageEntityBankCard#761e6af4 to nil")
		tl_message_entity_gen.go#L3163: 		return fmt.Errorf("unable to decode messageEntityBankCard#761e6af4: %w", err)
		tl_message_entity_gen.go#L3171: 		return fmt.Errorf("can't decode messageEntityBankCard#761e6af4 to nil")
		tl_message_entity_gen.go#L3176: 			return fmt.Errorf("unable to decode messageEntityBankCard#761e6af4: field offset: %w", err)
		tl_message_entity_gen.go#L3183: 			return fmt.Errorf("unable to decode messageEntityBankCard#761e6af4: field length: %w", err)
		tl_message_entity_gen.go#L3309: 		return fmt.Errorf("can't encode messageEntitySpoiler#32ca960f as nil")
		tl_message_entity_gen.go#L3318: 		return fmt.Errorf("can't encode messageEntitySpoiler#32ca960f as nil")
		tl_message_entity_gen.go#L3328: 		return fmt.Errorf("can't decode messageEntitySpoiler#32ca960f to nil")
		tl_message_entity_gen.go#L3331: 		return fmt.Errorf("unable to decode messageEntitySpoiler#32ca960f: %w", err)
		tl_message_entity_gen.go#L3339: 		return fmt.Errorf("can't decode messageEntitySpoiler#32ca960f to nil")
		tl_message_entity_gen.go#L3344: 			return fmt.Errorf("unable to decode messageEntitySpoiler#32ca960f: field offset: %w", err)
		tl_message_entity_gen.go#L3351: 			return fmt.Errorf("unable to decode messageEntitySpoiler#32ca960f: field length: %w", err)
		tl_message_entity_gen.go#L3499: 		return fmt.Errorf("can't encode messageEntityCustomEmoji#c8cf05f8 as nil")
		tl_message_entity_gen.go#L3508: 		return fmt.Errorf("can't encode messageEntityCustomEmoji#c8cf05f8 as nil")
		tl_message_entity_gen.go#L3519: 		return fmt.Errorf("can't decode messageEntityCustomEmoji#c8cf05f8 to nil")
		tl_message_entity_gen.go#L3522: 		return fmt.Errorf("unable to decode messageEntityCustomEmoji#c8cf05f8: %w", err)
		tl_message_entity_gen.go#L3530: 		return fmt.Errorf("can't decode messageEntityCustomEmoji#c8cf05f8 to nil")
		tl_message_entity_gen.go#L3535: 			return fmt.Errorf("unable to decode messageEntityCustomEmoji#c8cf05f8: field offset: %w", err)
		tl_message_entity_gen.go#L3542: 			return fmt.Errorf("unable to decode messageEntityCustomEmoji#c8cf05f8: field length: %w", err)
		tl_message_entity_gen.go#L3549: 			return fmt.Errorf("unable to decode messageEntityCustomEmoji#c8cf05f8: field document_id: %w", err)
		tl_message_entity_gen.go#L3683: 		return fmt.Errorf("can't encode messageEntityBlockquote#20df5d0 as nil")
		tl_message_entity_gen.go#L3692: 		return fmt.Errorf("can't encode messageEntityBlockquote#20df5d0 as nil")
		tl_message_entity_gen.go#L3702: 		return fmt.Errorf("can't decode messageEntityBlockquote#20df5d0 to nil")
		tl_message_entity_gen.go#L3705: 		return fmt.Errorf("unable to decode messageEntityBlockquote#20df5d0: %w", err)
		tl_message_entity_gen.go#L3713: 		return fmt.Errorf("can't decode messageEntityBlockquote#20df5d0 to nil")
		tl_message_entity_gen.go#L3718: 			return fmt.Errorf("unable to decode messageEntityBlockquote#20df5d0: field offset: %w", err)
		tl_message_entity_gen.go#L3725: 			return fmt.Errorf("unable to decode messageEntityBlockquote#20df5d0: field length: %w", err)
		tl_message_entity_gen.go#L3827: 			return nil, fmt.Errorf("unable to decode MessageEntityClass: %w", err)
		tl_message_entity_gen.go#L3834: 			return nil, fmt.Errorf("unable to decode MessageEntityClass: %w", err)
		tl_message_entity_gen.go#L3841: 			return nil, fmt.Errorf("unable to decode MessageEntityClass: %w", err)
		tl_message_entity_gen.go#L3848: 			return nil, fmt.Errorf("unable to decode MessageEntityClass: %w", err)
		tl_message_entity_gen.go#L3855: 			return nil, fmt.Errorf("unable to decode MessageEntityClass: %w", err)
		tl_message_entity_gen.go#L3862: 			return nil, fmt.Errorf("unable to decode MessageEntityClass: %w", err)
		tl_message_entity_gen.go#L3869: 			return nil, fmt.Errorf("unable to decode MessageEntityClass: %w", err)
		tl_message_entity_gen.go#L3876: 			return nil, fmt.Errorf("unable to decode MessageEntityClass: %w", err)
		tl_message_entity_gen.go#L3883: 			return nil, fmt.Errorf("unable to decode MessageEntityClass: %w", err)
		tl_message_entity_gen.go#L3890: 			return nil, fmt.Errorf("unable to decode MessageEntityClass: %w", err)
		tl_message_entity_gen.go#L3897: 			return nil, fmt.Errorf("unable to decode MessageEntityClass: %w", err)
		tl_message_entity_gen.go#L3904: 			return nil, fmt.Errorf("unable to decode MessageEntityClass: %w", err)
		tl_message_entity_gen.go#L3911: 			return nil, fmt.Errorf("unable to decode MessageEntityClass: %w", err)
		tl_message_entity_gen.go#L3918: 			return nil, fmt.Errorf("unable to decode MessageEntityClass: %w", err)
		tl_message_entity_gen.go#L3925: 			return nil, fmt.Errorf("unable to decode MessageEntityClass: %w", err)
		tl_message_entity_gen.go#L3932: 			return nil, fmt.Errorf("unable to decode MessageEntityClass: %w", err)
		tl_message_entity_gen.go#L3939: 			return nil, fmt.Errorf("unable to decode MessageEntityClass: %w", err)
		tl_message_entity_gen.go#L3946: 			return nil, fmt.Errorf("unable to decode MessageEntityClass: %w", err)
		tl_message_entity_gen.go#L3953: 			return nil, fmt.Errorf("unable to decode MessageEntityClass: %w", err)
		tl_message_entity_gen.go#L3960: 			return nil, fmt.Errorf("unable to decode MessageEntityClass: %w", err)
		tl_message_entity_gen.go#L3967: 			return nil, fmt.Errorf("unable to decode MessageEntityClass: %w", err)
		tl_message_entity_gen.go#L3971: 		return nil, fmt.Errorf("unable to decode MessageEntityClass: %w", bin.NewUnexpectedID(id))
		tl_message_entity_gen.go#L3983: 		return fmt.Errorf("unable to decode MessageEntityBox to nil")
		tl_message_entity_gen.go#L3987: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_message_entity_gen.go#L3996: 		return fmt.Errorf("unable to encode MessageEntityClass as nil")
		tl_message_extended_media_gen.go#L201: 		return fmt.Errorf("can't encode messageExtendedMediaPreview#ad628cc8 as nil")
		tl_message_extended_media_gen.go#L210: 		return fmt.Errorf("can't encode messageExtendedMediaPreview#ad628cc8 as nil")
		tl_message_extended_media_gen.go#L214: 		return fmt.Errorf("unable to encode messageExtendedMediaPreview#ad628cc8: field flags: %w", err)
		tl_message_extended_media_gen.go#L224: 			return fmt.Errorf("unable to encode messageExtendedMediaPreview#ad628cc8: field thumb is nil")
		tl_message_extended_media_gen.go#L227: 			return fmt.Errorf("unable to encode messageExtendedMediaPreview#ad628cc8: field thumb: %w", err)
		tl_message_extended_media_gen.go#L239: 		return fmt.Errorf("can't decode messageExtendedMediaPreview#ad628cc8 to nil")
		tl_message_extended_media_gen.go#L242: 		return fmt.Errorf("unable to decode messageExtendedMediaPreview#ad628cc8: %w", err)
		tl_message_extended_media_gen.go#L250: 		return fmt.Errorf("can't decode messageExtendedMediaPreview#ad628cc8 to nil")
		tl_message_extended_media_gen.go#L254: 			return fmt.Errorf("unable to decode messageExtendedMediaPreview#ad628cc8: field flags: %w", err)
		tl_message_extended_media_gen.go#L260: 			return fmt.Errorf("unable to decode messageExtendedMediaPreview#ad628cc8: field w: %w", err)
		tl_message_extended_media_gen.go#L267: 			return fmt.Errorf("unable to decode messageExtendedMediaPreview#ad628cc8: field h: %w", err)
		tl_message_extended_media_gen.go#L274: 			return fmt.Errorf("unable to decode messageExtendedMediaPreview#ad628cc8: field thumb: %w", err)
		tl_message_extended_media_gen.go#L281: 			return fmt.Errorf("unable to decode messageExtendedMediaPreview#ad628cc8: field video_duration: %w", err)
		tl_message_extended_media_gen.go#L446: 		return fmt.Errorf("can't encode messageExtendedMedia#ee479c64 as nil")
		tl_message_extended_media_gen.go#L455: 		return fmt.Errorf("can't encode messageExtendedMedia#ee479c64 as nil")
		tl_message_extended_media_gen.go#L458: 		return fmt.Errorf("unable to encode messageExtendedMedia#ee479c64: field media is nil")
		tl_message_extended_media_gen.go#L461: 		return fmt.Errorf("unable to encode messageExtendedMedia#ee479c64: field media: %w", err)
		tl_message_extended_media_gen.go#L469: 		return fmt.Errorf("can't decode messageExtendedMedia#ee479c64 to nil")
		tl_message_extended_media_gen.go#L472: 		return fmt.Errorf("unable to decode messageExtendedMedia#ee479c64: %w", err)
		tl_message_extended_media_gen.go#L480: 		return fmt.Errorf("can't decode messageExtendedMedia#ee479c64 to nil")
		tl_message_extended_media_gen.go#L485: 			return fmt.Errorf("unable to decode messageExtendedMedia#ee479c64: field media: %w", err)
		tl_message_extended_media_gen.go#L548: 			return nil, fmt.Errorf("unable to decode MessageExtendedMediaClass: %w", err)
		tl_message_extended_media_gen.go#L555: 			return nil, fmt.Errorf("unable to decode MessageExtendedMediaClass: %w", err)
		tl_message_extended_media_gen.go#L559: 		return nil, fmt.Errorf("unable to decode MessageExtendedMediaClass: %w", bin.NewUnexpectedID(id))
		tl_message_extended_media_gen.go#L571: 		return fmt.Errorf("unable to decode MessageExtendedMediaBox to nil")
		tl_message_extended_media_gen.go#L575: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_message_extended_media_gen.go#L584: 		return fmt.Errorf("unable to encode MessageExtendedMediaClass as nil")
		tl_message_fwd_header_gen.go#L288: 		return fmt.Errorf("can't encode messageFwdHeader#5f777dce as nil")
		tl_message_fwd_header_gen.go#L297: 		return fmt.Errorf("can't encode messageFwdHeader#5f777dce as nil")
		tl_message_fwd_header_gen.go#L301: 		return fmt.Errorf("unable to encode messageFwdHeader#5f777dce: field flags: %w", err)
		tl_message_fwd_header_gen.go#L305: 			return fmt.Errorf("unable to encode messageFwdHeader#5f777dce: field from_id is nil")
		tl_message_fwd_header_gen.go#L308: 			return fmt.Errorf("unable to encode messageFwdHeader#5f777dce: field from_id: %w", err)
		tl_message_fwd_header_gen.go#L323: 			return fmt.Errorf("unable to encode messageFwdHeader#5f777dce: field saved_from_peer is nil")
		tl_message_fwd_header_gen.go#L326: 			return fmt.Errorf("unable to encode messageFwdHeader#5f777dce: field saved_from_peer: %w", err)
		tl_message_fwd_header_gen.go#L341: 		return fmt.Errorf("can't decode messageFwdHeader#5f777dce to nil")
		tl_message_fwd_header_gen.go#L344: 		return fmt.Errorf("unable to decode messageFwdHeader#5f777dce: %w", err)
		tl_message_fwd_header_gen.go#L352: 		return fmt.Errorf("can't decode messageFwdHeader#5f777dce to nil")
		tl_message_fwd_header_gen.go#L356: 			return fmt.Errorf("unable to decode messageFwdHeader#5f777dce: field flags: %w", err)
		tl_message_fwd_header_gen.go#L363: 			return fmt.Errorf("unable to decode messageFwdHeader#5f777dce: field from_id: %w", err)
		tl_message_fwd_header_gen.go#L370: 			return fmt.Errorf("unable to decode messageFwdHeader#5f777dce: field from_name: %w", err)
		tl_message_fwd_header_gen.go#L377: 			return fmt.Errorf("unable to decode messageFwdHeader#5f777dce: field date: %w", err)
		tl_message_fwd_header_gen.go#L384: 			return fmt.Errorf("unable to decode messageFwdHeader#5f777dce: field channel_post: %w", err)
		tl_message_fwd_header_gen.go#L391: 			return fmt.Errorf("unable to decode messageFwdHeader#5f777dce: field post_author: %w", err)
		tl_message_fwd_header_gen.go#L398: 			return fmt.Errorf("unable to decode messageFwdHeader#5f777dce: field saved_from_peer: %w", err)
		tl_message_fwd_header_gen.go#L405: 			return fmt.Errorf("unable to decode messageFwdHeader#5f777dce: field saved_from_msg_id: %w", err)
		tl_message_fwd_header_gen.go#L412: 			return fmt.Errorf("unable to decode messageFwdHeader#5f777dce: field psa_type: %w", err)
		tl_message_gen.go#L152: 		return fmt.Errorf("can't encode messageEmpty#90a6ca84 as nil")
		tl_message_gen.go#L161: 		return fmt.Errorf("can't encode messageEmpty#90a6ca84 as nil")
		tl_message_gen.go#L165: 		return fmt.Errorf("unable to encode messageEmpty#90a6ca84: field flags: %w", err)
		tl_message_gen.go#L170: 			return fmt.Errorf("unable to encode messageEmpty#90a6ca84: field peer_id is nil")
		tl_message_gen.go#L173: 			return fmt.Errorf("unable to encode messageEmpty#90a6ca84: field peer_id: %w", err)
		tl_message_gen.go#L182: 		return fmt.Errorf("can't decode messageEmpty#90a6ca84 to nil")
		tl_message_gen.go#L185: 		return fmt.Errorf("unable to decode messageEmpty#90a6ca84: %w", err)
		tl_message_gen.go#L193: 		return fmt.Errorf("can't decode messageEmpty#90a6ca84 to nil")
		tl_message_gen.go#L197: 			return fmt.Errorf("unable to decode messageEmpty#90a6ca84: field flags: %w", err)
		tl_message_gen.go#L203: 			return fmt.Errorf("unable to decode messageEmpty#90a6ca84: field id: %w", err)
		tl_message_gen.go#L210: 			return fmt.Errorf("unable to decode messageEmpty#90a6ca84: field peer_id: %w", err)
		tl_message_gen.go#L887: 		return fmt.Errorf("can't encode message#38116ee0 as nil")
		tl_message_gen.go#L896: 		return fmt.Errorf("can't encode message#38116ee0 as nil")
		tl_message_gen.go#L900: 		return fmt.Errorf("unable to encode message#38116ee0: field flags: %w", err)
		tl_message_gen.go#L905: 			return fmt.Errorf("unable to encode message#38116ee0: field from_id is nil")
		tl_message_gen.go#L908: 			return fmt.Errorf("unable to encode message#38116ee0: field from_id: %w", err)
		tl_message_gen.go#L912: 		return fmt.Errorf("unable to encode message#38116ee0: field peer_id is nil")
		tl_message_gen.go#L915: 		return fmt.Errorf("unable to encode message#38116ee0: field peer_id: %w", err)
		tl_message_gen.go#L919: 			return fmt.Errorf("unable to encode message#38116ee0: field fwd_from: %w", err)
		tl_message_gen.go#L927: 			return fmt.Errorf("unable to encode message#38116ee0: field reply_to is nil")
		tl_message_gen.go#L930: 			return fmt.Errorf("unable to encode message#38116ee0: field reply_to: %w", err)
		tl_message_gen.go#L937: 			return fmt.Errorf("unable to encode message#38116ee0: field media is nil")
		tl_message_gen.go#L940: 			return fmt.Errorf("unable to encode message#38116ee0: field media: %w", err)
		tl_message_gen.go#L945: 			return fmt.Errorf("unable to encode message#38116ee0: field reply_markup is nil")
		tl_message_gen.go#L948: 			return fmt.Errorf("unable to encode message#38116ee0: field reply_markup: %w", err)
		tl_message_gen.go#L955: 				return fmt.Errorf("unable to encode message#38116ee0: field entities element with index %d is nil", idx)
		tl_message_gen.go#L958: 				return fmt.Errorf("unable to encode message#38116ee0: field entities element with index %d: %w", idx, err)
		tl_message_gen.go#L970: 			return fmt.Errorf("unable to encode message#38116ee0: field replies: %w", err)
		tl_message_gen.go#L984: 			return fmt.Errorf("unable to encode message#38116ee0: field reactions: %w", err)
		tl_message_gen.go#L991: 				return fmt.Errorf("unable to encode message#38116ee0: field restriction_reason element with index %d: %w", idx, err)
		tl_message_gen.go#L1004: 		return fmt.Errorf("can't decode message#38116ee0 to nil")
		tl_message_gen.go#L1007: 		return fmt.Errorf("unable to decode message#38116ee0: %w", err)
		tl_message_gen.go#L1015: 		return fmt.Errorf("can't decode message#38116ee0 to nil")
		tl_message_gen.go#L1019: 			return fmt.Errorf("unable to decode message#38116ee0: field flags: %w", err)
		tl_message_gen.go#L1036: 			return fmt.Errorf("unable to decode message#38116ee0: field id: %w", err)
		tl_message_gen.go#L1043: 			return fmt.Errorf("unable to decode message#38116ee0: field from_id: %w", err)
		tl_message_gen.go#L1050: 			return fmt.Errorf("unable to decode message#38116ee0: field peer_id: %w", err)
		tl_message_gen.go#L1056: 			return fmt.Errorf("unable to decode message#38116ee0: field fwd_from: %w", err)
		tl_message_gen.go#L1062: 			return fmt.Errorf("unable to decode message#38116ee0: field via_bot_id: %w", err)
		tl_message_gen.go#L1069: 			return fmt.Errorf("unable to decode message#38116ee0: field reply_to: %w", err)
		tl_message_gen.go#L1076: 			return fmt.Errorf("unable to decode message#38116ee0: field date: %w", err)
		tl_message_gen.go#L1083: 			return fmt.Errorf("unable to decode message#38116ee0: field message: %w", err)
		tl_message_gen.go#L1090: 			return fmt.Errorf("unable to decode message#38116ee0: field media: %w", err)
		tl_message_gen.go#L1097: 			return fmt.Errorf("unable to decode message#38116ee0: field reply_markup: %w", err)
		tl_message_gen.go#L1104: 			return fmt.Errorf("unable to decode message#38116ee0: field entities: %w", err)
		tl_message_gen.go#L1113: 				return fmt.Errorf("unable to decode message#38116ee0: field entities: %w", err)
		tl_message_gen.go#L1121: 			return fmt.Errorf("unable to decode message#38116ee0: field views: %w", err)
		tl_message_gen.go#L1128: 			return fmt.Errorf("unable to decode message#38116ee0: field forwards: %w", err)
		tl_message_gen.go#L1134: 			return fmt.Errorf("unable to decode message#38116ee0: field replies: %w", err)
		tl_message_gen.go#L1140: 			return fmt.Errorf("unable to decode message#38116ee0: field edit_date: %w", err)
		tl_message_gen.go#L1147: 			return fmt.Errorf("unable to decode message#38116ee0: field post_author: %w", err)
		tl_message_gen.go#L1154: 			return fmt.Errorf("unable to decode message#38116ee0: field grouped_id: %w", err)
		tl_message_gen.go#L1160: 			return fmt.Errorf("unable to decode message#38116ee0: field reactions: %w", err)
		tl_message_gen.go#L1166: 			return fmt.Errorf("unable to decode message#38116ee0: field restriction_reason: %w", err)
		tl_message_gen.go#L1175: 				return fmt.Errorf("unable to decode message#38116ee0: field restriction_reason: %w", err)
		tl_message_gen.go#L1183: 			return fmt.Errorf("unable to decode message#38116ee0: field ttl_period: %w", err)
		tl_message_gen.go#L2009: 		return fmt.Errorf("can't encode messageService#2b085862 as nil")
		tl_message_gen.go#L2018: 		return fmt.Errorf("can't encode messageService#2b085862 as nil")
		tl_message_gen.go#L2022: 		return fmt.Errorf("unable to encode messageService#2b085862: field flags: %w", err)
		tl_message_gen.go#L2027: 			return fmt.Errorf("unable to encode messageService#2b085862: field from_id is nil")
		tl_message_gen.go#L2030: 			return fmt.Errorf("unable to encode messageService#2b085862: field from_id: %w", err)
		tl_message_gen.go#L2034: 		return fmt.Errorf("unable to encode messageService#2b085862: field peer_id is nil")
		tl_message_gen.go#L2037: 		return fmt.Errorf("unable to encode messageService#2b085862: field peer_id: %w", err)
		tl_message_gen.go#L2041: 			return fmt.Errorf("unable to encode messageService#2b085862: field reply_to is nil")
		tl_message_gen.go#L2044: 			return fmt.Errorf("unable to encode messageService#2b085862: field reply_to: %w", err)
		tl_message_gen.go#L2049: 		return fmt.Errorf("unable to encode messageService#2b085862: field action is nil")
		tl_message_gen.go#L2052: 		return fmt.Errorf("unable to encode messageService#2b085862: field action: %w", err)
		tl_message_gen.go#L2063: 		return fmt.Errorf("can't decode messageService#2b085862 to nil")
		tl_message_gen.go#L2066: 		return fmt.Errorf("unable to decode messageService#2b085862: %w", err)
		tl_message_gen.go#L2074: 		return fmt.Errorf("can't decode messageService#2b085862 to nil")
		tl_message_gen.go#L2078: 			return fmt.Errorf("unable to decode messageService#2b085862: field flags: %w", err)
		tl_message_gen.go#L2090: 			return fmt.Errorf("unable to decode messageService#2b085862: field id: %w", err)
		tl_message_gen.go#L2097: 			return fmt.Errorf("unable to decode messageService#2b085862: field from_id: %w", err)
		tl_message_gen.go#L2104: 			return fmt.Errorf("unable to decode messageService#2b085862: field peer_id: %w", err)
		tl_message_gen.go#L2111: 			return fmt.Errorf("unable to decode messageService#2b085862: field reply_to: %w", err)
		tl_message_gen.go#L2118: 			return fmt.Errorf("unable to decode messageService#2b085862: field date: %w", err)
		tl_message_gen.go#L2125: 			return fmt.Errorf("unable to decode messageService#2b085862: field action: %w", err)
		tl_message_gen.go#L2132: 			return fmt.Errorf("unable to decode messageService#2b085862: field ttl_period: %w", err)
		tl_message_gen.go#L2488: 			return nil, fmt.Errorf("unable to decode MessageClass: %w", err)
		tl_message_gen.go#L2495: 			return nil, fmt.Errorf("unable to decode MessageClass: %w", err)
		tl_message_gen.go#L2502: 			return nil, fmt.Errorf("unable to decode MessageClass: %w", err)
		tl_message_gen.go#L2506: 		return nil, fmt.Errorf("unable to decode MessageClass: %w", bin.NewUnexpectedID(id))
		tl_message_gen.go#L2518: 		return fmt.Errorf("unable to decode MessageBox to nil")
		tl_message_gen.go#L2522: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_message_gen.go#L2531: 		return fmt.Errorf("unable to encode MessageClass as nil")
		tl_message_media_gen.go#L103: 		return fmt.Errorf("can't encode messageMediaEmpty#3ded6320 as nil")
		tl_message_media_gen.go#L112: 		return fmt.Errorf("can't encode messageMediaEmpty#3ded6320 as nil")
		tl_message_media_gen.go#L120: 		return fmt.Errorf("can't decode messageMediaEmpty#3ded6320 to nil")
		tl_message_media_gen.go#L123: 		return fmt.Errorf("unable to decode messageMediaEmpty#3ded6320: %w", err)
		tl_message_media_gen.go#L131: 		return fmt.Errorf("can't decode messageMediaEmpty#3ded6320 to nil")
		tl_message_media_gen.go#L278: 		return fmt.Errorf("can't encode messageMediaPhoto#695150d7 as nil")
		tl_message_media_gen.go#L287: 		return fmt.Errorf("can't encode messageMediaPhoto#695150d7 as nil")
		tl_message_media_gen.go#L291: 		return fmt.Errorf("unable to encode messageMediaPhoto#695150d7: field flags: %w", err)
		tl_message_media_gen.go#L295: 			return fmt.Errorf("unable to encode messageMediaPhoto#695150d7: field photo is nil")
		tl_message_media_gen.go#L298: 			return fmt.Errorf("unable to encode messageMediaPhoto#695150d7: field photo: %w", err)
		tl_message_media_gen.go#L310: 		return fmt.Errorf("can't decode messageMediaPhoto#695150d7 to nil")
		tl_message_media_gen.go#L313: 		return fmt.Errorf("unable to decode messageMediaPhoto#695150d7: %w", err)
		tl_message_media_gen.go#L321: 		return fmt.Errorf("can't decode messageMediaPhoto#695150d7 to nil")
		tl_message_media_gen.go#L325: 			return fmt.Errorf("unable to decode messageMediaPhoto#695150d7: field flags: %w", err)
		tl_message_media_gen.go#L332: 			return fmt.Errorf("unable to decode messageMediaPhoto#695150d7: field photo: %w", err)
		tl_message_media_gen.go#L339: 			return fmt.Errorf("unable to decode messageMediaPhoto#695150d7: field ttl_seconds: %w", err)
		tl_message_media_gen.go#L487: 		return fmt.Errorf("can't encode messageMediaGeo#56e0d474 as nil")
		tl_message_media_gen.go#L496: 		return fmt.Errorf("can't encode messageMediaGeo#56e0d474 as nil")
		tl_message_media_gen.go#L499: 		return fmt.Errorf("unable to encode messageMediaGeo#56e0d474: field geo is nil")
		tl_message_media_gen.go#L502: 		return fmt.Errorf("unable to encode messageMediaGeo#56e0d474: field geo: %w", err)
		tl_message_media_gen.go#L510: 		return fmt.Errorf("can't decode messageMediaGeo#56e0d474 to nil")
		tl_message_media_gen.go#L513: 		return fmt.Errorf("unable to decode messageMediaGeo#56e0d474: %w", err)
		tl_message_media_gen.go#L521: 		return fmt.Errorf("can't decode messageMediaGeo#56e0d474 to nil")
		tl_message_media_gen.go#L526: 			return fmt.Errorf("unable to decode messageMediaGeo#56e0d474: field geo: %w", err)
		tl_message_media_gen.go#L671: 		return fmt.Errorf("can't encode messageMediaContact#70322949 as nil")
		tl_message_media_gen.go#L680: 		return fmt.Errorf("can't encode messageMediaContact#70322949 as nil")
		tl_message_media_gen.go#L693: 		return fmt.Errorf("can't decode messageMediaContact#70322949 to nil")
		tl_message_media_gen.go#L696: 		return fmt.Errorf("unable to decode messageMediaContact#70322949: %w", err)
		tl_message_media_gen.go#L704: 		return fmt.Errorf("can't decode messageMediaContact#70322949 to nil")
		tl_message_media_gen.go#L709: 			return fmt.Errorf("unable to decode messageMediaContact#70322949: field phone_number: %w", err)
		tl_message_media_gen.go#L716: 			return fmt.Errorf("unable to decode messageMediaContact#70322949: field first_name: %w", err)
		tl_message_media_gen.go#L723: 			return fmt.Errorf("unable to decode messageMediaContact#70322949: field last_name: %w", err)
		tl_message_media_gen.go#L730: 			return fmt.Errorf("unable to decode messageMediaContact#70322949: field vcard: %w", err)
		tl_message_media_gen.go#L737: 			return fmt.Errorf("unable to decode messageMediaContact#70322949: field user_id: %w", err)
		tl_message_media_gen.go#L853: 		return fmt.Errorf("can't encode messageMediaUnsupported#9f84f49e as nil")
		tl_message_media_gen.go#L862: 		return fmt.Errorf("can't encode messageMediaUnsupported#9f84f49e as nil")
		tl_message_media_gen.go#L870: 		return fmt.Errorf("can't decode messageMediaUnsupported#9f84f49e to nil")
		tl_message_media_gen.go#L873: 		return fmt.Errorf("unable to decode messageMediaUnsupported#9f84f49e: %w", err)
		tl_message_media_gen.go#L881: 		return fmt.Errorf("can't decode messageMediaUnsupported#9f84f49e to nil")
		tl_message_media_gen.go#L1066: 		return fmt.Errorf("can't encode messageMediaDocument#4cf4d72d as nil")
		tl_message_media_gen.go#L1075: 		return fmt.Errorf("can't encode messageMediaDocument#4cf4d72d as nil")
		tl_message_media_gen.go#L1079: 		return fmt.Errorf("unable to encode messageMediaDocument#4cf4d72d: field flags: %w", err)
		tl_message_media_gen.go#L1083: 			return fmt.Errorf("unable to encode messageMediaDocument#4cf4d72d: field document is nil")
		tl_message_media_gen.go#L1086: 			return fmt.Errorf("unable to encode messageMediaDocument#4cf4d72d: field document: %w", err)
		tl_message_media_gen.go#L1091: 			return fmt.Errorf("unable to encode messageMediaDocument#4cf4d72d: field alt_document is nil")
		tl_message_media_gen.go#L1094: 			return fmt.Errorf("unable to encode messageMediaDocument#4cf4d72d: field alt_document: %w", err)
		tl_message_media_gen.go#L1106: 		return fmt.Errorf("can't decode messageMediaDocument#4cf4d72d to nil")
		tl_message_media_gen.go#L1109: 		return fmt.Errorf("unable to decode messageMediaDocument#4cf4d72d: %w", err)
		tl_message_media_gen.go#L1117: 		return fmt.Errorf("can't decode messageMediaDocument#4cf4d72d to nil")
		tl_message_media_gen.go#L1121: 			return fmt.Errorf("unable to decode messageMediaDocument#4cf4d72d: field flags: %w", err)
		tl_message_media_gen.go#L1129: 			return fmt.Errorf("unable to decode messageMediaDocument#4cf4d72d: field document: %w", err)
		tl_message_media_gen.go#L1136: 			return fmt.Errorf("unable to decode messageMediaDocument#4cf4d72d: field alt_document: %w", err)
		tl_message_media_gen.go#L1143: 			return fmt.Errorf("unable to decode messageMediaDocument#4cf4d72d: field ttl_seconds: %w", err)
		tl_message_media_gen.go#L1406: 		return fmt.Errorf("can't encode messageMediaWebPage#ddf10c3b as nil")
		tl_message_media_gen.go#L1415: 		return fmt.Errorf("can't encode messageMediaWebPage#ddf10c3b as nil")
		tl_message_media_gen.go#L1419: 		return fmt.Errorf("unable to encode messageMediaWebPage#ddf10c3b: field flags: %w", err)
		tl_message_media_gen.go#L1422: 		return fmt.Errorf("unable to encode messageMediaWebPage#ddf10c3b: field webpage is nil")
		tl_message_media_gen.go#L1425: 		return fmt.Errorf("unable to encode messageMediaWebPage#ddf10c3b: field webpage: %w", err)
		tl_message_media_gen.go#L1433: 		return fmt.Errorf("can't decode messageMediaWebPage#ddf10c3b to nil")
		tl_message_media_gen.go#L1436: 		return fmt.Errorf("unable to decode messageMediaWebPage#ddf10c3b: %w", err)
		tl_message_media_gen.go#L1444: 		return fmt.Errorf("can't decode messageMediaWebPage#ddf10c3b to nil")
		tl_message_media_gen.go#L1448: 			return fmt.Errorf("unable to decode messageMediaWebPage#ddf10c3b: field flags: %w", err)
		tl_message_media_gen.go#L1458: 			return fmt.Errorf("unable to decode messageMediaWebPage#ddf10c3b: field webpage: %w", err)
		tl_message_media_gen.go#L1691: 		return fmt.Errorf("can't encode messageMediaVenue#2ec0533f as nil")
		tl_message_media_gen.go#L1700: 		return fmt.Errorf("can't encode messageMediaVenue#2ec0533f as nil")
		tl_message_media_gen.go#L1703: 		return fmt.Errorf("unable to encode messageMediaVenue#2ec0533f: field geo is nil")
		tl_message_media_gen.go#L1706: 		return fmt.Errorf("unable to encode messageMediaVenue#2ec0533f: field geo: %w", err)
		tl_message_media_gen.go#L1719: 		return fmt.Errorf("can't decode messageMediaVenue#2ec0533f to nil")
		tl_message_media_gen.go#L1722: 		return fmt.Errorf("unable to decode messageMediaVenue#2ec0533f: %w", err)
		tl_message_media_gen.go#L1730: 		return fmt.Errorf("can't decode messageMediaVenue#2ec0533f to nil")
		tl_message_media_gen.go#L1735: 			return fmt.Errorf("unable to decode messageMediaVenue#2ec0533f: field geo: %w", err)
		tl_message_media_gen.go#L1742: 			return fmt.Errorf("unable to decode messageMediaVenue#2ec0533f: field title: %w", err)
		tl_message_media_gen.go#L1749: 			return fmt.Errorf("unable to decode messageMediaVenue#2ec0533f: field address: %w", err)
		tl_message_media_gen.go#L1756: 			return fmt.Errorf("unable to decode messageMediaVenue#2ec0533f: field provider: %w", err)
		tl_message_media_gen.go#L1763: 			return fmt.Errorf("unable to decode messageMediaVenue#2ec0533f: field venue_id: %w", err)
		tl_message_media_gen.go#L1770: 			return fmt.Errorf("unable to decode messageMediaVenue#2ec0533f: field venue_type: %w", err)
		tl_message_media_gen.go#L1911: 		return fmt.Errorf("can't encode messageMediaGame#fdb19008 as nil")
		tl_message_media_gen.go#L1920: 		return fmt.Errorf("can't encode messageMediaGame#fdb19008 as nil")
		tl_message_media_gen.go#L1923: 		return fmt.Errorf("unable to encode messageMediaGame#fdb19008: field game: %w", err)
		tl_message_media_gen.go#L1931: 		return fmt.Errorf("can't decode messageMediaGame#fdb19008 to nil")
		tl_message_media_gen.go#L1934: 		return fmt.Errorf("unable to decode messageMediaGame#fdb19008: %w", err)
		tl_message_media_gen.go#L1942: 		return fmt.Errorf("can't decode messageMediaGame#fdb19008 to nil")
		tl_message_media_gen.go#L1946: 			return fmt.Errorf("unable to decode messageMediaGame#fdb19008: field game: %w", err)
		tl_message_media_gen.go#L2208: 		return fmt.Errorf("can't encode messageMediaInvoice#f6a548d3 as nil")
		tl_message_media_gen.go#L2217: 		return fmt.Errorf("can't encode messageMediaInvoice#f6a548d3 as nil")
		tl_message_media_gen.go#L2221: 		return fmt.Errorf("unable to encode messageMediaInvoice#f6a548d3: field flags: %w", err)
		tl_message_media_gen.go#L2227: 			return fmt.Errorf("unable to encode messageMediaInvoice#f6a548d3: field photo is nil")
		tl_message_media_gen.go#L2230: 			return fmt.Errorf("unable to encode messageMediaInvoice#f6a548d3: field photo: %w", err)
		tl_message_media_gen.go#L2241: 			return fmt.Errorf("unable to encode messageMediaInvoice#f6a548d3: field extended_media is nil")
		tl_message_media_gen.go#L2244: 			return fmt.Errorf("unable to encode messageMediaInvoice#f6a548d3: field extended_media: %w", err)
		tl_message_media_gen.go#L2253: 		return fmt.Errorf("can't decode messageMediaInvoice#f6a548d3 to nil")
		tl_message_media_gen.go#L2256: 		return fmt.Errorf("unable to decode messageMediaInvoice#f6a548d3: %w", err)
		tl_message_media_gen.go#L2264: 		return fmt.Errorf("can't decode messageMediaInvoice#f6a548d3 to nil")
		tl_message_media_gen.go#L2268: 			return fmt.Errorf("unable to decode messageMediaInvoice#f6a548d3: field flags: %w", err)
		tl_message_media_gen.go#L2276: 			return fmt.Errorf("unable to decode messageMediaInvoice#f6a548d3: field title: %w", err)
		tl_message_media_gen.go#L2283: 			return fmt.Errorf("unable to decode messageMediaInvoice#f6a548d3: field description: %w", err)
		tl_message_media_gen.go#L2290: 			return fmt.Errorf("unable to decode messageMediaInvoice#f6a548d3: field photo: %w", err)
		tl_message_media_gen.go#L2297: 			return fmt.Errorf("unable to decode messageMediaInvoice#f6a548d3: field receipt_msg_id: %w", err)
		tl_message_media_gen.go#L2304: 			return fmt.Errorf("unable to decode messageMediaInvoice#f6a548d3: field currency: %w", err)
		tl_message_media_gen.go#L2311: 			return fmt.Errorf("unable to decode messageMediaInvoice#f6a548d3: field total_amount: %w", err)
		tl_message_media_gen.go#L2318: 			return fmt.Errorf("unable to decode messageMediaInvoice#f6a548d3: field start_param: %w", err)
		tl_message_media_gen.go#L2325: 			return fmt.Errorf("unable to decode messageMediaInvoice#f6a548d3: field extended_media: %w", err)
		tl_message_media_gen.go#L2623: 		return fmt.Errorf("can't encode messageMediaGeoLive#b940c666 as nil")
		tl_message_media_gen.go#L2632: 		return fmt.Errorf("can't encode messageMediaGeoLive#b940c666 as nil")
		tl_message_media_gen.go#L2636: 		return fmt.Errorf("unable to encode messageMediaGeoLive#b940c666: field flags: %w", err)
		tl_message_media_gen.go#L2639: 		return fmt.Errorf("unable to encode messageMediaGeoLive#b940c666: field geo is nil")
		tl_message_media_gen.go#L2642: 		return fmt.Errorf("unable to encode messageMediaGeoLive#b940c666: field geo: %w", err)
		tl_message_media_gen.go#L2657: 		return fmt.Errorf("can't decode messageMediaGeoLive#b940c666 to nil")
		tl_message_media_gen.go#L2660: 		return fmt.Errorf("unable to decode messageMediaGeoLive#b940c666: %w", err)
		tl_message_media_gen.go#L2668: 		return fmt.Errorf("can't decode messageMediaGeoLive#b940c666 to nil")
		tl_message_media_gen.go#L2672: 			return fmt.Errorf("unable to decode messageMediaGeoLive#b940c666: field flags: %w", err)
		tl_message_media_gen.go#L2678: 			return fmt.Errorf("unable to decode messageMediaGeoLive#b940c666: field geo: %w", err)
		tl_message_media_gen.go#L2685: 			return fmt.Errorf("unable to decode messageMediaGeoLive#b940c666: field heading: %w", err)
		tl_message_media_gen.go#L2692: 			return fmt.Errorf("unable to decode messageMediaGeoLive#b940c666: field period: %w", err)
		tl_message_media_gen.go#L2699: 			return fmt.Errorf("unable to decode messageMediaGeoLive#b940c666: field proximity_notification_radius: %w", err)
		tl_message_media_gen.go#L2855: 		return fmt.Errorf("can't encode messageMediaPoll#4bd6e798 as nil")
		tl_message_media_gen.go#L2864: 		return fmt.Errorf("can't encode messageMediaPoll#4bd6e798 as nil")
		tl_message_media_gen.go#L2867: 		return fmt.Errorf("unable to encode messageMediaPoll#4bd6e798: field poll: %w", err)
		tl_message_media_gen.go#L2870: 		return fmt.Errorf("unable to encode messageMediaPoll#4bd6e798: field results: %w", err)
		tl_message_media_gen.go#L2878: 		return fmt.Errorf("can't decode messageMediaPoll#4bd6e798 to nil")
		tl_message_media_gen.go#L2881: 		return fmt.Errorf("unable to decode messageMediaPoll#4bd6e798: %w", err)
		tl_message_media_gen.go#L2889: 		return fmt.Errorf("can't decode messageMediaPoll#4bd6e798 to nil")
		tl_message_media_gen.go#L2893: 			return fmt.Errorf("unable to decode messageMediaPoll#4bd6e798: field poll: %w", err)
		tl_message_media_gen.go#L2898: 			return fmt.Errorf("unable to decode messageMediaPoll#4bd6e798: field results: %w", err)
		tl_message_media_gen.go#L3023: 		return fmt.Errorf("can't encode messageMediaDice#3f7ee58b as nil")
		tl_message_media_gen.go#L3032: 		return fmt.Errorf("can't encode messageMediaDice#3f7ee58b as nil")
		tl_message_media_gen.go#L3042: 		return fmt.Errorf("can't decode messageMediaDice#3f7ee58b to nil")
		tl_message_media_gen.go#L3045: 		return fmt.Errorf("unable to decode messageMediaDice#3f7ee58b: %w", err)
		tl_message_media_gen.go#L3053: 		return fmt.Errorf("can't decode messageMediaDice#3f7ee58b to nil")
		tl_message_media_gen.go#L3058: 			return fmt.Errorf("unable to decode messageMediaDice#3f7ee58b: field value: %w", err)
		tl_message_media_gen.go#L3065: 			return fmt.Errorf("unable to decode messageMediaDice#3f7ee58b: field emoticon: %w", err)
		tl_message_media_gen.go#L3241: 		return fmt.Errorf("can't encode messageMediaStory#68cb6283 as nil")
		tl_message_media_gen.go#L3250: 		return fmt.Errorf("can't encode messageMediaStory#68cb6283 as nil")
		tl_message_media_gen.go#L3254: 		return fmt.Errorf("unable to encode messageMediaStory#68cb6283: field flags: %w", err)
		tl_message_media_gen.go#L3257: 		return fmt.Errorf("unable to encode messageMediaStory#68cb6283: field peer is nil")
		tl_message_media_gen.go#L3260: 		return fmt.Errorf("unable to encode messageMediaStory#68cb6283: field peer: %w", err)
		tl_message_media_gen.go#L3265: 			return fmt.Errorf("unable to encode messageMediaStory#68cb6283: field story is nil")
		tl_message_media_gen.go#L3268: 			return fmt.Errorf("unable to encode messageMediaStory#68cb6283: field story: %w", err)
		tl_message_media_gen.go#L3277: 		return fmt.Errorf("can't decode messageMediaStory#68cb6283 to nil")
		tl_message_media_gen.go#L3280: 		return fmt.Errorf("unable to decode messageMediaStory#68cb6283: %w", err)
		tl_message_media_gen.go#L3288: 		return fmt.Errorf("can't decode messageMediaStory#68cb6283 to nil")
		tl_message_media_gen.go#L3292: 			return fmt.Errorf("unable to decode messageMediaStory#68cb6283: field flags: %w", err)
		tl_message_media_gen.go#L3299: 			return fmt.Errorf("unable to decode messageMediaStory#68cb6283: field peer: %w", err)
		tl_message_media_gen.go#L3306: 			return fmt.Errorf("unable to decode messageMediaStory#68cb6283: field id: %w", err)
		tl_message_media_gen.go#L3313: 			return fmt.Errorf("unable to decode messageMediaStory#68cb6283: field story: %w", err)
		tl_message_media_gen.go#L3586: 		return fmt.Errorf("can't encode messageMediaGiveaway#daad85b0 as nil")
		tl_message_media_gen.go#L3595: 		return fmt.Errorf("can't encode messageMediaGiveaway#daad85b0 as nil")
		tl_message_media_gen.go#L3599: 		return fmt.Errorf("unable to encode messageMediaGiveaway#daad85b0: field flags: %w", err)
		tl_message_media_gen.go#L3623: 		return fmt.Errorf("can't decode messageMediaGiveaway#daad85b0 to nil")
		tl_message_media_gen.go#L3626: 		return fmt.Errorf("unable to decode messageMediaGiveaway#daad85b0: %w", err)
		tl_message_media_gen.go#L3634: 		return fmt.Errorf("can't decode messageMediaGiveaway#daad85b0 to nil")
		tl_message_media_gen.go#L3638: 			return fmt.Errorf("unable to decode messageMediaGiveaway#daad85b0: field flags: %w", err)
		tl_message_media_gen.go#L3646: 			return fmt.Errorf("unable to decode messageMediaGiveaway#daad85b0: field channels: %w", err)
		tl_message_media_gen.go#L3655: 				return fmt.Errorf("unable to decode messageMediaGiveaway#daad85b0: field channels: %w", err)
		tl_message_media_gen.go#L3663: 			return fmt.Errorf("unable to decode messageMediaGiveaway#daad85b0: field countries_iso2: %w", err)
		tl_message_media_gen.go#L3672: 				return fmt.Errorf("unable to decode messageMediaGiveaway#daad85b0: field countries_iso2: %w", err)
		tl_message_media_gen.go#L3680: 			return fmt.Errorf("unable to decode messageMediaGiveaway#daad85b0: field prize_description: %w", err)
		tl_message_media_gen.go#L3687: 			return fmt.Errorf("unable to decode messageMediaGiveaway#daad85b0: field quantity: %w", err)
		tl_message_media_gen.go#L3694: 			return fmt.Errorf("unable to decode messageMediaGiveaway#daad85b0: field months: %w", err)
		tl_message_media_gen.go#L3701: 			return fmt.Errorf("unable to decode messageMediaGiveaway#daad85b0: field until_date: %w", err)
		tl_message_media_gen.go#L4044: 		return fmt.Errorf("can't encode messageMediaGiveawayResults#c6991068 as nil")
		tl_message_media_gen.go#L4053: 		return fmt.Errorf("can't encode messageMediaGiveawayResults#c6991068 as nil")
		tl_message_media_gen.go#L4057: 		return fmt.Errorf("unable to encode messageMediaGiveawayResults#c6991068: field flags: %w", err)
		tl_message_media_gen.go#L4081: 		return fmt.Errorf("can't decode messageMediaGiveawayResults#c6991068 to nil")
		tl_message_media_gen.go#L4084: 		return fmt.Errorf("unable to decode messageMediaGiveawayResults#c6991068: %w", err)
		tl_message_media_gen.go#L4092: 		return fmt.Errorf("can't decode messageMediaGiveawayResults#c6991068 to nil")
		tl_message_media_gen.go#L4096: 			return fmt.Errorf("unable to decode messageMediaGiveawayResults#c6991068: field flags: %w", err)
		tl_message_media_gen.go#L4104: 			return fmt.Errorf("unable to decode messageMediaGiveawayResults#c6991068: field channel_id: %w", err)
		tl_message_media_gen.go#L4111: 			return fmt.Errorf("unable to decode messageMediaGiveawayResults#c6991068: field additional_peers_count: %w", err)
		tl_message_media_gen.go#L4118: 			return fmt.Errorf("unable to decode messageMediaGiveawayResults#c6991068: field launch_msg_id: %w", err)
		tl_message_media_gen.go#L4125: 			return fmt.Errorf("unable to decode messageMediaGiveawayResults#c6991068: field winners_count: %w", err)
		tl_message_media_gen.go#L4132: 			return fmt.Errorf("unable to decode messageMediaGiveawayResults#c6991068: field unclaimed_count: %w", err)
		tl_message_media_gen.go#L4139: 			return fmt.Errorf("unable to decode messageMediaGiveawayResults#c6991068: field winners: %w", err)
		tl_message_media_gen.go#L4148: 				return fmt.Errorf("unable to decode messageMediaGiveawayResults#c6991068: field winners: %w", err)
		tl_message_media_gen.go#L4156: 			return fmt.Errorf("unable to decode messageMediaGiveawayResults#c6991068: field months: %w", err)
		tl_message_media_gen.go#L4163: 			return fmt.Errorf("unable to decode messageMediaGiveawayResults#c6991068: field prize_description: %w", err)
		tl_message_media_gen.go#L4170: 			return fmt.Errorf("unable to decode messageMediaGiveawayResults#c6991068: field until_date: %w", err)
		tl_message_media_gen.go#L4369: 			return nil, fmt.Errorf("unable to decode MessageMediaClass: %w", err)
		tl_message_media_gen.go#L4376: 			return nil, fmt.Errorf("unable to decode MessageMediaClass: %w", err)
		tl_message_media_gen.go#L4383: 			return nil, fmt.Errorf("unable to decode MessageMediaClass: %w", err)
		tl_message_media_gen.go#L4390: 			return nil, fmt.Errorf("unable to decode MessageMediaClass: %w", err)
		tl_message_media_gen.go#L4397: 			return nil, fmt.Errorf("unable to decode MessageMediaClass: %w", err)
		tl_message_media_gen.go#L4404: 			return nil, fmt.Errorf("unable to decode MessageMediaClass: %w", err)
		tl_message_media_gen.go#L4411: 			return nil, fmt.Errorf("unable to decode MessageMediaClass: %w", err)
		tl_message_media_gen.go#L4418: 			return nil, fmt.Errorf("unable to decode MessageMediaClass: %w", err)
		tl_message_media_gen.go#L4425: 			return nil, fmt.Errorf("unable to decode MessageMediaClass: %w", err)
		tl_message_media_gen.go#L4432: 			return nil, fmt.Errorf("unable to decode MessageMediaClass: %w", err)
		tl_message_media_gen.go#L4439: 			return nil, fmt.Errorf("unable to decode MessageMediaClass: %w", err)
		tl_message_media_gen.go#L4446: 			return nil, fmt.Errorf("unable to decode MessageMediaClass: %w", err)
		tl_message_media_gen.go#L4453: 			return nil, fmt.Errorf("unable to decode MessageMediaClass: %w", err)
		tl_message_media_gen.go#L4460: 			return nil, fmt.Errorf("unable to decode MessageMediaClass: %w", err)
		tl_message_media_gen.go#L4467: 			return nil, fmt.Errorf("unable to decode MessageMediaClass: %w", err)
		tl_message_media_gen.go#L4474: 			return nil, fmt.Errorf("unable to decode MessageMediaClass: %w", err)
		tl_message_media_gen.go#L4478: 		return nil, fmt.Errorf("unable to decode MessageMediaClass: %w", bin.NewUnexpectedID(id))
		tl_message_media_gen.go#L4490: 		return fmt.Errorf("unable to decode MessageMediaBox to nil")
		tl_message_media_gen.go#L4494: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_message_media_gen.go#L4503: 		return fmt.Errorf("unable to encode MessageMediaClass as nil")
		tl_message_peer_reaction_gen.go#L204: 		return fmt.Errorf("can't encode messagePeerReaction#8c79b63c as nil")
		tl_message_peer_reaction_gen.go#L213: 		return fmt.Errorf("can't encode messagePeerReaction#8c79b63c as nil")
		tl_message_peer_reaction_gen.go#L217: 		return fmt.Errorf("unable to encode messagePeerReaction#8c79b63c: field flags: %w", err)
		tl_message_peer_reaction_gen.go#L220: 		return fmt.Errorf("unable to encode messagePeerReaction#8c79b63c: field peer_id is nil")
		tl_message_peer_reaction_gen.go#L223: 		return fmt.Errorf("unable to encode messagePeerReaction#8c79b63c: field peer_id: %w", err)
		tl_message_peer_reaction_gen.go#L227: 		return fmt.Errorf("unable to encode messagePeerReaction#8c79b63c: field reaction is nil")
		tl_message_peer_reaction_gen.go#L230: 		return fmt.Errorf("unable to encode messagePeerReaction#8c79b63c: field reaction: %w", err)
		tl_message_peer_reaction_gen.go#L238: 		return fmt.Errorf("can't decode messagePeerReaction#8c79b63c to nil")
		tl_message_peer_reaction_gen.go#L241: 		return fmt.Errorf("unable to decode messagePeerReaction#8c79b63c: %w", err)
		tl_message_peer_reaction_gen.go#L249: 		return fmt.Errorf("can't decode messagePeerReaction#8c79b63c to nil")
		tl_message_peer_reaction_gen.go#L253: 			return fmt.Errorf("unable to decode messagePeerReaction#8c79b63c: field flags: %w", err)
		tl_message_peer_reaction_gen.go#L262: 			return fmt.Errorf("unable to decode messagePeerReaction#8c79b63c: field peer_id: %w", err)
		tl_message_peer_reaction_gen.go#L269: 			return fmt.Errorf("unable to decode messagePeerReaction#8c79b63c: field date: %w", err)
		tl_message_peer_reaction_gen.go#L276: 			return fmt.Errorf("unable to decode messagePeerReaction#8c79b63c: field reaction: %w", err)
		tl_message_peer_vote_gen.go#L142: 		return fmt.Errorf("can't encode messagePeerVote#b6cc2d5c as nil")
		tl_message_peer_vote_gen.go#L151: 		return fmt.Errorf("can't encode messagePeerVote#b6cc2d5c as nil")
		tl_message_peer_vote_gen.go#L154: 		return fmt.Errorf("unable to encode messagePeerVote#b6cc2d5c: field peer is nil")
		tl_message_peer_vote_gen.go#L157: 		return fmt.Errorf("unable to encode messagePeerVote#b6cc2d5c: field peer: %w", err)
		tl_message_peer_vote_gen.go#L167: 		return fmt.Errorf("can't decode messagePeerVote#b6cc2d5c to nil")
		tl_message_peer_vote_gen.go#L170: 		return fmt.Errorf("unable to decode messagePeerVote#b6cc2d5c: %w", err)
		tl_message_peer_vote_gen.go#L178: 		return fmt.Errorf("can't decode messagePeerVote#b6cc2d5c to nil")
		tl_message_peer_vote_gen.go#L183: 			return fmt.Errorf("unable to decode messagePeerVote#b6cc2d5c: field peer: %w", err)
		tl_message_peer_vote_gen.go#L190: 			return fmt.Errorf("unable to decode messagePeerVote#b6cc2d5c: field option: %w", err)
		tl_message_peer_vote_gen.go#L197: 			return fmt.Errorf("unable to decode messagePeerVote#b6cc2d5c: field date: %w", err)
		tl_message_peer_vote_gen.go#L329: 		return fmt.Errorf("can't encode messagePeerVoteInputOption#74cda504 as nil")
		tl_message_peer_vote_gen.go#L338: 		return fmt.Errorf("can't encode messagePeerVoteInputOption#74cda504 as nil")
		tl_message_peer_vote_gen.go#L341: 		return fmt.Errorf("unable to encode messagePeerVoteInputOption#74cda504: field peer is nil")
		tl_message_peer_vote_gen.go#L344: 		return fmt.Errorf("unable to encode messagePeerVoteInputOption#74cda504: field peer: %w", err)
		tl_message_peer_vote_gen.go#L353: 		return fmt.Errorf("can't decode messagePeerVoteInputOption#74cda504 to nil")
		tl_message_peer_vote_gen.go#L356: 		return fmt.Errorf("unable to decode messagePeerVoteInputOption#74cda504: %w", err)
		tl_message_peer_vote_gen.go#L364: 		return fmt.Errorf("can't decode messagePeerVoteInputOption#74cda504 to nil")
		tl_message_peer_vote_gen.go#L369: 			return fmt.Errorf("unable to decode messagePeerVoteInputOption#74cda504: field peer: %w", err)
		tl_message_peer_vote_gen.go#L376: 			return fmt.Errorf("unable to decode messagePeerVoteInputOption#74cda504: field date: %w", err)
		tl_message_peer_vote_gen.go#L507: 		return fmt.Errorf("can't encode messagePeerVoteMultiple#4628f6e6 as nil")
		tl_message_peer_vote_gen.go#L516: 		return fmt.Errorf("can't encode messagePeerVoteMultiple#4628f6e6 as nil")
		tl_message_peer_vote_gen.go#L519: 		return fmt.Errorf("unable to encode messagePeerVoteMultiple#4628f6e6: field peer is nil")
		tl_message_peer_vote_gen.go#L522: 		return fmt.Errorf("unable to encode messagePeerVoteMultiple#4628f6e6: field peer: %w", err)
		tl_message_peer_vote_gen.go#L535: 		return fmt.Errorf("can't decode messagePeerVoteMultiple#4628f6e6 to nil")
		tl_message_peer_vote_gen.go#L538: 		return fmt.Errorf("unable to decode messagePeerVoteMultiple#4628f6e6: %w", err)
		tl_message_peer_vote_gen.go#L546: 		return fmt.Errorf("can't decode messagePeerVoteMultiple#4628f6e6 to nil")
		tl_message_peer_vote_gen.go#L551: 			return fmt.Errorf("unable to decode messagePeerVoteMultiple#4628f6e6: field peer: %w", err)
		tl_message_peer_vote_gen.go#L558: 			return fmt.Errorf("unable to decode messagePeerVoteMultiple#4628f6e6: field options: %w", err)
		tl_message_peer_vote_gen.go#L567: 				return fmt.Errorf("unable to decode messagePeerVoteMultiple#4628f6e6: field options: %w", err)
		tl_message_peer_vote_gen.go#L575: 			return fmt.Errorf("unable to decode messagePeerVoteMultiple#4628f6e6: field date: %w", err)
		tl_message_peer_vote_gen.go#L661: 			return nil, fmt.Errorf("unable to decode MessagePeerVoteClass: %w", err)
		tl_message_peer_vote_gen.go#L668: 			return nil, fmt.Errorf("unable to decode MessagePeerVoteClass: %w", err)
		tl_message_peer_vote_gen.go#L675: 			return nil, fmt.Errorf("unable to decode MessagePeerVoteClass: %w", err)
		tl_message_peer_vote_gen.go#L679: 		return nil, fmt.Errorf("unable to decode MessagePeerVoteClass: %w", bin.NewUnexpectedID(id))
		tl_message_peer_vote_gen.go#L691: 		return fmt.Errorf("unable to decode MessagePeerVoteBox to nil")
		tl_message_peer_vote_gen.go#L695: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_message_peer_vote_gen.go#L704: 		return fmt.Errorf("unable to encode MessagePeerVoteClass as nil")
		tl_message_range_gen.go#L126: 		return fmt.Errorf("can't encode messageRange#ae30253 as nil")
		tl_message_range_gen.go#L135: 		return fmt.Errorf("can't encode messageRange#ae30253 as nil")
		tl_message_range_gen.go#L145: 		return fmt.Errorf("can't decode messageRange#ae30253 to nil")
		tl_message_range_gen.go#L148: 		return fmt.Errorf("unable to decode messageRange#ae30253: %w", err)
		tl_message_range_gen.go#L156: 		return fmt.Errorf("can't decode messageRange#ae30253 to nil")
		tl_message_range_gen.go#L161: 			return fmt.Errorf("unable to decode messageRange#ae30253: field min_id: %w", err)
		tl_message_range_gen.go#L168: 			return fmt.Errorf("unable to decode messageRange#ae30253: field max_id: %w", err)
		tl_message_range_vector_gen.go#L112: 		return fmt.Errorf("can't encode Vector<MessageRange> as nil")
		tl_message_range_vector_gen.go#L121: 		return fmt.Errorf("can't encode Vector<MessageRange> as nil")
		tl_message_range_vector_gen.go#L126: 			return fmt.Errorf("unable to encode Vector<MessageRange>: field Elems element with index %d: %w", idx, err)
		tl_message_range_vector_gen.go#L135: 		return fmt.Errorf("can't decode Vector<MessageRange> to nil")
		tl_message_range_vector_gen.go#L144: 		return fmt.Errorf("can't decode Vector<MessageRange> to nil")
		tl_message_range_vector_gen.go#L149: 			return fmt.Errorf("unable to decode Vector<MessageRange>: field Elems: %w", err)
		tl_message_range_vector_gen.go#L158: 				return fmt.Errorf("unable to decode Vector<MessageRange>: field Elems: %w", err)
		tl_message_reactions_gen.go#L191: 		return fmt.Errorf("can't encode messageReactions#4f2b9479 as nil")
		tl_message_reactions_gen.go#L200: 		return fmt.Errorf("can't encode messageReactions#4f2b9479 as nil")
		tl_message_reactions_gen.go#L204: 		return fmt.Errorf("unable to encode messageReactions#4f2b9479: field flags: %w", err)
		tl_message_reactions_gen.go#L209: 			return fmt.Errorf("unable to encode messageReactions#4f2b9479: field results element with index %d: %w", idx, err)
		tl_message_reactions_gen.go#L216: 				return fmt.Errorf("unable to encode messageReactions#4f2b9479: field recent_reactions element with index %d: %w", idx, err)
		tl_message_reactions_gen.go#L226: 		return fmt.Errorf("can't decode messageReactions#4f2b9479 to nil")
		tl_message_reactions_gen.go#L229: 		return fmt.Errorf("unable to decode messageReactions#4f2b9479: %w", err)
		tl_message_reactions_gen.go#L237: 		return fmt.Errorf("can't decode messageReactions#4f2b9479 to nil")
		tl_message_reactions_gen.go#L241: 			return fmt.Errorf("unable to decode messageReactions#4f2b9479: field flags: %w", err)
		tl_message_reactions_gen.go#L249: 			return fmt.Errorf("unable to decode messageReactions#4f2b9479: field results: %w", err)
		tl_message_reactions_gen.go#L258: 				return fmt.Errorf("unable to decode messageReactions#4f2b9479: field results: %w", err)
		tl_message_reactions_gen.go#L266: 			return fmt.Errorf("unable to decode messageReactions#4f2b9479: field recent_reactions: %w", err)
		tl_message_reactions_gen.go#L275: 				return fmt.Errorf("unable to decode messageReactions#4f2b9479: field recent_reactions: %w", err)
		tl_message_replies_gen.go#L248: 		return fmt.Errorf("can't encode messageReplies#83d60fc2 as nil")
		tl_message_replies_gen.go#L257: 		return fmt.Errorf("can't encode messageReplies#83d60fc2 as nil")
		tl_message_replies_gen.go#L261: 		return fmt.Errorf("unable to encode messageReplies#83d60fc2: field flags: %w", err)
		tl_message_replies_gen.go#L269: 				return fmt.Errorf("unable to encode messageReplies#83d60fc2: field recent_repliers element with index %d is nil", idx)
		tl_message_replies_gen.go#L272: 				return fmt.Errorf("unable to encode messageReplies#83d60fc2: field recent_repliers element with index %d: %w", idx, err)
		tl_message_replies_gen.go#L291: 		return fmt.Errorf("can't decode messageReplies#83d60fc2 to nil")
		tl_message_replies_gen.go#L294: 		return fmt.Errorf("unable to decode messageReplies#83d60fc2: %w", err)
		tl_message_replies_gen.go#L302: 		return fmt.Errorf("can't decode messageReplies#83d60fc2 to nil")
		tl_message_replies_gen.go#L306: 			return fmt.Errorf("unable to decode messageReplies#83d60fc2: field flags: %w", err)
		tl_message_replies_gen.go#L313: 			return fmt.Errorf("unable to decode messageReplies#83d60fc2: field replies: %w", err)
		tl_message_replies_gen.go#L320: 			return fmt.Errorf("unable to decode messageReplies#83d60fc2: field replies_pts: %w", err)
		tl_message_replies_gen.go#L327: 			return fmt.Errorf("unable to decode messageReplies#83d60fc2: field recent_repliers: %w", err)
		tl_message_replies_gen.go#L336: 				return fmt.Errorf("unable to decode messageReplies#83d60fc2: field recent_repliers: %w", err)
		tl_message_replies_gen.go#L344: 			return fmt.Errorf("unable to decode messageReplies#83d60fc2: field channel_id: %w", err)
		tl_message_replies_gen.go#L351: 			return fmt.Errorf("unable to decode messageReplies#83d60fc2: field max_id: %w", err)
		tl_message_replies_gen.go#L358: 			return fmt.Errorf("unable to decode messageReplies#83d60fc2: field read_max_id: %w", err)
		tl_message_reply_header_gen.go#L347: 		return fmt.Errorf("can't encode messageReplyHeader#afbc09db as nil")
		tl_message_reply_header_gen.go#L356: 		return fmt.Errorf("can't encode messageReplyHeader#afbc09db as nil")
		tl_message_reply_header_gen.go#L360: 		return fmt.Errorf("unable to encode messageReplyHeader#afbc09db: field flags: %w", err)
		tl_message_reply_header_gen.go#L367: 			return fmt.Errorf("unable to encode messageReplyHeader#afbc09db: field reply_to_peer_id is nil")
		tl_message_reply_header_gen.go#L370: 			return fmt.Errorf("unable to encode messageReplyHeader#afbc09db: field reply_to_peer_id: %w", err)
		tl_message_reply_header_gen.go#L375: 			return fmt.Errorf("unable to encode messageReplyHeader#afbc09db: field reply_from: %w", err)
		tl_message_reply_header_gen.go#L380: 			return fmt.Errorf("unable to encode messageReplyHeader#afbc09db: field reply_media is nil")
		tl_message_reply_header_gen.go#L383: 			return fmt.Errorf("unable to encode messageReplyHeader#afbc09db: field reply_media: %w", err)
		tl_message_reply_header_gen.go#L396: 				return fmt.Errorf("unable to encode messageReplyHeader#afbc09db: field quote_entities element with index %d is nil", idx)
		tl_message_reply_header_gen.go#L399: 				return fmt.Errorf("unable to encode messageReplyHeader#afbc09db: field quote_entities element with index %d: %w", idx, err)
		tl_message_reply_header_gen.go#L412: 		return fmt.Errorf("can't decode messageReplyHeader#afbc09db to nil")
		tl_message_reply_header_gen.go#L415: 		return fmt.Errorf("unable to decode messageReplyHeader#afbc09db: %w", err)
		tl_message_reply_header_gen.go#L423: 		return fmt.Errorf("can't decode messageReplyHeader#afbc09db to nil")
		tl_message_reply_header_gen.go#L427: 			return fmt.Errorf("unable to decode messageReplyHeader#afbc09db: field flags: %w", err)
		tl_message_reply_header_gen.go#L436: 			return fmt.Errorf("unable to decode messageReplyHeader#afbc09db: field reply_to_msg_id: %w", err)
		tl_message_reply_header_gen.go#L443: 			return fmt.Errorf("unable to decode messageReplyHeader#afbc09db: field reply_to_peer_id: %w", err)
		tl_message_reply_header_gen.go#L449: 			return fmt.Errorf("unable to decode messageReplyHeader#afbc09db: field reply_from: %w", err)
		tl_message_reply_header_gen.go#L455: 			return fmt.Errorf("unable to decode messageReplyHeader#afbc09db: field reply_media: %w", err)
		tl_message_reply_header_gen.go#L462: 			return fmt.Errorf("unable to decode messageReplyHeader#afbc09db: field reply_to_top_id: %w", err)
		tl_message_reply_header_gen.go#L469: 			return fmt.Errorf("unable to decode messageReplyHeader#afbc09db: field quote_text: %w", err)
		tl_message_reply_header_gen.go#L476: 			return fmt.Errorf("unable to decode messageReplyHeader#afbc09db: field quote_entities: %w", err)
		tl_message_reply_header_gen.go#L485: 				return fmt.Errorf("unable to decode messageReplyHeader#afbc09db: field quote_entities: %w", err)
		tl_message_reply_header_gen.go#L493: 			return fmt.Errorf("unable to decode messageReplyHeader#afbc09db: field quote_offset: %w", err)
		tl_message_reply_header_gen.go#L809: 		return fmt.Errorf("can't encode messageReplyStoryHeader#9c98bfc1 as nil")
		tl_message_reply_header_gen.go#L818: 		return fmt.Errorf("can't encode messageReplyStoryHeader#9c98bfc1 as nil")
		tl_message_reply_header_gen.go#L828: 		return fmt.Errorf("can't decode messageReplyStoryHeader#9c98bfc1 to nil")
		tl_message_reply_header_gen.go#L831: 		return fmt.Errorf("unable to decode messageReplyStoryHeader#9c98bfc1: %w", err)
		tl_message_reply_header_gen.go#L839: 		return fmt.Errorf("can't decode messageReplyStoryHeader#9c98bfc1 to nil")
		tl_message_reply_header_gen.go#L844: 			return fmt.Errorf("unable to decode messageReplyStoryHeader#9c98bfc1: field user_id: %w", err)
		tl_message_reply_header_gen.go#L851: 			return fmt.Errorf("unable to decode messageReplyStoryHeader#9c98bfc1: field story_id: %w", err)
		tl_message_reply_header_gen.go#L922: 			return nil, fmt.Errorf("unable to decode MessageReplyHeaderClass: %w", err)
		tl_message_reply_header_gen.go#L929: 			return nil, fmt.Errorf("unable to decode MessageReplyHeaderClass: %w", err)
		tl_message_reply_header_gen.go#L933: 		return nil, fmt.Errorf("unable to decode MessageReplyHeaderClass: %w", bin.NewUnexpectedID(id))
		tl_message_reply_header_gen.go#L945: 		return fmt.Errorf("unable to decode MessageReplyHeaderBox to nil")
		tl_message_reply_header_gen.go#L949: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_message_reply_header_gen.go#L958: 		return fmt.Errorf("unable to encode MessageReplyHeaderClass as nil")
		tl_message_views_gen.go#L179: 		return fmt.Errorf("can't encode messageViews#455b853d as nil")
		tl_message_views_gen.go#L188: 		return fmt.Errorf("can't encode messageViews#455b853d as nil")
		tl_message_views_gen.go#L192: 		return fmt.Errorf("unable to encode messageViews#455b853d: field flags: %w", err)
		tl_message_views_gen.go#L202: 			return fmt.Errorf("unable to encode messageViews#455b853d: field replies: %w", err)
		tl_message_views_gen.go#L211: 		return fmt.Errorf("can't decode messageViews#455b853d to nil")
		tl_message_views_gen.go#L214: 		return fmt.Errorf("unable to decode messageViews#455b853d: %w", err)
		tl_message_views_gen.go#L222: 		return fmt.Errorf("can't decode messageViews#455b853d to nil")
		tl_message_views_gen.go#L226: 			return fmt.Errorf("unable to decode messageViews#455b853d: field flags: %w", err)
		tl_message_views_gen.go#L232: 			return fmt.Errorf("unable to decode messageViews#455b853d: field views: %w", err)
		tl_message_views_gen.go#L239: 			return fmt.Errorf("unable to decode messageViews#455b853d: field forwards: %w", err)
		tl_message_views_gen.go#L245: 			return fmt.Errorf("unable to decode messageViews#455b853d: field replies: %w", err)
		tl_messages_accept_encryption_gen.go#L140: 		return fmt.Errorf("can't encode messages.acceptEncryption#3dbc0415 as nil")
		tl_messages_accept_encryption_gen.go#L149: 		return fmt.Errorf("can't encode messages.acceptEncryption#3dbc0415 as nil")
		tl_messages_accept_encryption_gen.go#L152: 		return fmt.Errorf("unable to encode messages.acceptEncryption#3dbc0415: field peer: %w", err)
		tl_messages_accept_encryption_gen.go#L162: 		return fmt.Errorf("can't decode messages.acceptEncryption#3dbc0415 to nil")
		tl_messages_accept_encryption_gen.go#L165: 		return fmt.Errorf("unable to decode messages.acceptEncryption#3dbc0415: %w", err)
		tl_messages_accept_encryption_gen.go#L173: 		return fmt.Errorf("can't decode messages.acceptEncryption#3dbc0415 to nil")
		tl_messages_accept_encryption_gen.go#L177: 			return fmt.Errorf("unable to decode messages.acceptEncryption#3dbc0415: field peer: %w", err)
		tl_messages_accept_encryption_gen.go#L183: 			return fmt.Errorf("unable to decode messages.acceptEncryption#3dbc0415: field g_b: %w", err)
		tl_messages_accept_encryption_gen.go#L190: 			return fmt.Errorf("unable to decode messages.acceptEncryption#3dbc0415: field key_fingerprint: %w", err)
		tl_messages_accept_url_auth_gen.go#L218: 		return fmt.Errorf("can't encode messages.acceptUrlAuth#b12c7125 as nil")
		tl_messages_accept_url_auth_gen.go#L227: 		return fmt.Errorf("can't encode messages.acceptUrlAuth#b12c7125 as nil")
		tl_messages_accept_url_auth_gen.go#L231: 		return fmt.Errorf("unable to encode messages.acceptUrlAuth#b12c7125: field flags: %w", err)
		tl_messages_accept_url_auth_gen.go#L235: 			return fmt.Errorf("unable to encode messages.acceptUrlAuth#b12c7125: field peer is nil")
		tl_messages_accept_url_auth_gen.go#L238: 			return fmt.Errorf("unable to encode messages.acceptUrlAuth#b12c7125: field peer: %w", err)
		tl_messages_accept_url_auth_gen.go#L256: 		return fmt.Errorf("can't decode messages.acceptUrlAuth#b12c7125 to nil")
		tl_messages_accept_url_auth_gen.go#L259: 		return fmt.Errorf("unable to decode messages.acceptUrlAuth#b12c7125: %w", err)
		tl_messages_accept_url_auth_gen.go#L267: 		return fmt.Errorf("can't decode messages.acceptUrlAuth#b12c7125 to nil")
		tl_messages_accept_url_auth_gen.go#L271: 			return fmt.Errorf("unable to decode messages.acceptUrlAuth#b12c7125: field flags: %w", err)
		tl_messages_accept_url_auth_gen.go#L278: 			return fmt.Errorf("unable to decode messages.acceptUrlAuth#b12c7125: field peer: %w", err)
		tl_messages_accept_url_auth_gen.go#L285: 			return fmt.Errorf("unable to decode messages.acceptUrlAuth#b12c7125: field msg_id: %w", err)
		tl_messages_accept_url_auth_gen.go#L292: 			return fmt.Errorf("unable to decode messages.acceptUrlAuth#b12c7125: field button_id: %w", err)
		tl_messages_accept_url_auth_gen.go#L299: 			return fmt.Errorf("unable to decode messages.acceptUrlAuth#b12c7125: field url: %w", err)
		tl_messages_add_chat_user_gen.go#L144: 		return fmt.Errorf("can't encode messages.addChatUser#f24753e3 as nil")
		tl_messages_add_chat_user_gen.go#L153: 		return fmt.Errorf("can't encode messages.addChatUser#f24753e3 as nil")
		tl_messages_add_chat_user_gen.go#L157: 		return fmt.Errorf("unable to encode messages.addChatUser#f24753e3: field user_id is nil")
		tl_messages_add_chat_user_gen.go#L160: 		return fmt.Errorf("unable to encode messages.addChatUser#f24753e3: field user_id: %w", err)
		tl_messages_add_chat_user_gen.go#L169: 		return fmt.Errorf("can't decode messages.addChatUser#f24753e3 to nil")
		tl_messages_add_chat_user_gen.go#L172: 		return fmt.Errorf("unable to decode messages.addChatUser#f24753e3: %w", err)
		tl_messages_add_chat_user_gen.go#L180: 		return fmt.Errorf("can't decode messages.addChatUser#f24753e3 to nil")
		tl_messages_add_chat_user_gen.go#L185: 			return fmt.Errorf("unable to decode messages.addChatUser#f24753e3: field chat_id: %w", err)
		tl_messages_add_chat_user_gen.go#L192: 			return fmt.Errorf("unable to decode messages.addChatUser#f24753e3: field user_id: %w", err)
		tl_messages_add_chat_user_gen.go#L199: 			return fmt.Errorf("unable to decode messages.addChatUser#f24753e3: field fwd_limit: %w", err)
		tl_messages_affected_found_messages_gen.go#L154: 		return fmt.Errorf("can't encode messages.affectedFoundMessages#ef8d3e6c as nil")
		tl_messages_affected_found_messages_gen.go#L163: 		return fmt.Errorf("can't encode messages.affectedFoundMessages#ef8d3e6c as nil")
		tl_messages_affected_found_messages_gen.go#L178: 		return fmt.Errorf("can't decode messages.affectedFoundMessages#ef8d3e6c to nil")
		tl_messages_affected_found_messages_gen.go#L181: 		return fmt.Errorf("unable to decode messages.affectedFoundMessages#ef8d3e6c: %w", err)
		tl_messages_affected_found_messages_gen.go#L189: 		return fmt.Errorf("can't decode messages.affectedFoundMessages#ef8d3e6c to nil")
		tl_messages_affected_found_messages_gen.go#L194: 			return fmt.Errorf("unable to decode messages.affectedFoundMessages#ef8d3e6c: field pts: %w", err)
		tl_messages_affected_found_messages_gen.go#L201: 			return fmt.Errorf("unable to decode messages.affectedFoundMessages#ef8d3e6c: field pts_count: %w", err)
		tl_messages_affected_found_messages_gen.go#L208: 			return fmt.Errorf("unable to decode messages.affectedFoundMessages#ef8d3e6c: field offset: %w", err)
		tl_messages_affected_found_messages_gen.go#L215: 			return fmt.Errorf("unable to decode messages.affectedFoundMessages#ef8d3e6c: field messages: %w", err)
		tl_messages_affected_found_messages_gen.go#L224: 				return fmt.Errorf("unable to decode messages.affectedFoundMessages#ef8d3e6c: field messages: %w", err)
		tl_messages_affected_history_gen.go#L139: 		return fmt.Errorf("can't encode messages.affectedHistory#b45c69d1 as nil")
		tl_messages_affected_history_gen.go#L148: 		return fmt.Errorf("can't encode messages.affectedHistory#b45c69d1 as nil")
		tl_messages_affected_history_gen.go#L159: 		return fmt.Errorf("can't decode messages.affectedHistory#b45c69d1 to nil")
		tl_messages_affected_history_gen.go#L162: 		return fmt.Errorf("unable to decode messages.affectedHistory#b45c69d1: %w", err)
		tl_messages_affected_history_gen.go#L170: 		return fmt.Errorf("can't decode messages.affectedHistory#b45c69d1 to nil")
		tl_messages_affected_history_gen.go#L175: 			return fmt.Errorf("unable to decode messages.affectedHistory#b45c69d1: field pts: %w", err)
		tl_messages_affected_history_gen.go#L182: 			return fmt.Errorf("unable to decode messages.affectedHistory#b45c69d1: field pts_count: %w", err)
		tl_messages_affected_history_gen.go#L189: 			return fmt.Errorf("unable to decode messages.affectedHistory#b45c69d1: field offset: %w", err)
		tl_messages_affected_messages_gen.go#L132: 		return fmt.Errorf("can't encode messages.affectedMessages#84d19185 as nil")
		tl_messages_affected_messages_gen.go#L141: 		return fmt.Errorf("can't encode messages.affectedMessages#84d19185 as nil")
		tl_messages_affected_messages_gen.go#L151: 		return fmt.Errorf("can't decode messages.affectedMessages#84d19185 to nil")
		tl_messages_affected_messages_gen.go#L154: 		return fmt.Errorf("unable to decode messages.affectedMessages#84d19185: %w", err)
		tl_messages_affected_messages_gen.go#L162: 		return fmt.Errorf("can't decode messages.affectedMessages#84d19185 to nil")
		tl_messages_affected_messages_gen.go#L167: 			return fmt.Errorf("unable to decode messages.affectedMessages#84d19185: field pts: %w", err)
		tl_messages_affected_messages_gen.go#L174: 			return fmt.Errorf("unable to decode messages.affectedMessages#84d19185: field pts_count: %w", err)
		tl_messages_all_stickers_gen.go#L103: 		return fmt.Errorf("can't encode messages.allStickersNotModified#e86602c3 as nil")
		tl_messages_all_stickers_gen.go#L112: 		return fmt.Errorf("can't encode messages.allStickersNotModified#e86602c3 as nil")
		tl_messages_all_stickers_gen.go#L120: 		return fmt.Errorf("can't decode messages.allStickersNotModified#e86602c3 to nil")
		tl_messages_all_stickers_gen.go#L123: 		return fmt.Errorf("unable to decode messages.allStickersNotModified#e86602c3: %w", err)
		tl_messages_all_stickers_gen.go#L131: 		return fmt.Errorf("can't decode messages.allStickersNotModified#e86602c3 to nil")
		tl_messages_all_stickers_gen.go#L236: 		return fmt.Errorf("can't encode messages.allStickers#cdbbcebb as nil")
		tl_messages_all_stickers_gen.go#L245: 		return fmt.Errorf("can't encode messages.allStickers#cdbbcebb as nil")
		tl_messages_all_stickers_gen.go#L251: 			return fmt.Errorf("unable to encode messages.allStickers#cdbbcebb: field sets element with index %d: %w", idx, err)
		tl_messages_all_stickers_gen.go#L260: 		return fmt.Errorf("can't decode messages.allStickers#cdbbcebb to nil")
		tl_messages_all_stickers_gen.go#L263: 		return fmt.Errorf("unable to decode messages.allStickers#cdbbcebb: %w", err)
		tl_messages_all_stickers_gen.go#L271: 		return fmt.Errorf("can't decode messages.allStickers#cdbbcebb to nil")
		tl_messages_all_stickers_gen.go#L276: 			return fmt.Errorf("unable to decode messages.allStickers#cdbbcebb: field hash: %w", err)
		tl_messages_all_stickers_gen.go#L283: 			return fmt.Errorf("unable to decode messages.allStickers#cdbbcebb: field sets: %w", err)
		tl_messages_all_stickers_gen.go#L292: 				return fmt.Errorf("unable to decode messages.allStickers#cdbbcebb: field sets: %w", err)
		tl_messages_all_stickers_gen.go#L377: 			return nil, fmt.Errorf("unable to decode MessagesAllStickersClass: %w", err)
		tl_messages_all_stickers_gen.go#L384: 			return nil, fmt.Errorf("unable to decode MessagesAllStickersClass: %w", err)
		tl_messages_all_stickers_gen.go#L388: 		return nil, fmt.Errorf("unable to decode MessagesAllStickersClass: %w", bin.NewUnexpectedID(id))
		tl_messages_all_stickers_gen.go#L400: 		return fmt.Errorf("unable to decode MessagesAllStickersBox to nil")
		tl_messages_all_stickers_gen.go#L404: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_messages_all_stickers_gen.go#L413: 		return fmt.Errorf("unable to encode MessagesAllStickersClass as nil")
		tl_messages_archived_stickers_gen.go#L126: 		return fmt.Errorf("can't encode messages.archivedStickers#4fcba9c8 as nil")
		tl_messages_archived_stickers_gen.go#L135: 		return fmt.Errorf("can't encode messages.archivedStickers#4fcba9c8 as nil")
		tl_messages_archived_stickers_gen.go#L141: 			return fmt.Errorf("unable to encode messages.archivedStickers#4fcba9c8: field sets element with index %d is nil", idx)
		tl_messages_archived_stickers_gen.go#L144: 			return fmt.Errorf("unable to encode messages.archivedStickers#4fcba9c8: field sets element with index %d: %w", idx, err)
		tl_messages_archived_stickers_gen.go#L153: 		return fmt.Errorf("can't decode messages.archivedStickers#4fcba9c8 to nil")
		tl_messages_archived_stickers_gen.go#L156: 		return fmt.Errorf("unable to decode messages.archivedStickers#4fcba9c8: %w", err)
		tl_messages_archived_stickers_gen.go#L164: 		return fmt.Errorf("can't decode messages.archivedStickers#4fcba9c8 to nil")
		tl_messages_archived_stickers_gen.go#L169: 			return fmt.Errorf("unable to decode messages.archivedStickers#4fcba9c8: field count: %w", err)
		tl_messages_archived_stickers_gen.go#L176: 			return fmt.Errorf("unable to decode messages.archivedStickers#4fcba9c8: field sets: %w", err)
		tl_messages_archived_stickers_gen.go#L185: 				return fmt.Errorf("unable to decode messages.archivedStickers#4fcba9c8: field sets: %w", err)
		tl_messages_available_reactions_gen.go#L103: 		return fmt.Errorf("can't encode messages.availableReactionsNotModified#9f071957 as nil")
		tl_messages_available_reactions_gen.go#L112: 		return fmt.Errorf("can't encode messages.availableReactionsNotModified#9f071957 as nil")
		tl_messages_available_reactions_gen.go#L120: 		return fmt.Errorf("can't decode messages.availableReactionsNotModified#9f071957 to nil")
		tl_messages_available_reactions_gen.go#L123: 		return fmt.Errorf("unable to decode messages.availableReactionsNotModified#9f071957: %w", err)
		tl_messages_available_reactions_gen.go#L131: 		return fmt.Errorf("can't decode messages.availableReactionsNotModified#9f071957 to nil")
		tl_messages_available_reactions_gen.go#L242: 		return fmt.Errorf("can't encode messages.availableReactions#768e3aad as nil")
		tl_messages_available_reactions_gen.go#L251: 		return fmt.Errorf("can't encode messages.availableReactions#768e3aad as nil")
		tl_messages_available_reactions_gen.go#L257: 			return fmt.Errorf("unable to encode messages.availableReactions#768e3aad: field reactions element with index %d: %w", idx, err)
		tl_messages_available_reactions_gen.go#L266: 		return fmt.Errorf("can't decode messages.availableReactions#768e3aad to nil")
		tl_messages_available_reactions_gen.go#L269: 		return fmt.Errorf("unable to decode messages.availableReactions#768e3aad: %w", err)
		tl_messages_available_reactions_gen.go#L277: 		return fmt.Errorf("can't decode messages.availableReactions#768e3aad to nil")
		tl_messages_available_reactions_gen.go#L282: 			return fmt.Errorf("unable to decode messages.availableReactions#768e3aad: field hash: %w", err)
		tl_messages_available_reactions_gen.go#L289: 			return fmt.Errorf("unable to decode messages.availableReactions#768e3aad: field reactions: %w", err)
		tl_messages_available_reactions_gen.go#L298: 				return fmt.Errorf("unable to decode messages.availableReactions#768e3aad: field reactions: %w", err)
		tl_messages_available_reactions_gen.go#L383: 			return nil, fmt.Errorf("unable to decode MessagesAvailableReactionsClass: %w", err)
		tl_messages_available_reactions_gen.go#L390: 			return nil, fmt.Errorf("unable to decode MessagesAvailableReactionsClass: %w", err)
		tl_messages_available_reactions_gen.go#L394: 		return nil, fmt.Errorf("unable to decode MessagesAvailableReactionsClass: %w", bin.NewUnexpectedID(id))
		tl_messages_available_reactions_gen.go#L406: 		return fmt.Errorf("unable to decode MessagesAvailableReactionsBox to nil")
		tl_messages_available_reactions_gen.go#L410: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_messages_available_reactions_gen.go#L419: 		return fmt.Errorf("unable to encode MessagesAvailableReactionsClass as nil")
		tl_messages_bot_app_gen.go#L180: 		return fmt.Errorf("can't encode messages.botApp#eb50adf5 as nil")
		tl_messages_bot_app_gen.go#L189: 		return fmt.Errorf("can't encode messages.botApp#eb50adf5 as nil")
		tl_messages_bot_app_gen.go#L193: 		return fmt.Errorf("unable to encode messages.botApp#eb50adf5: field flags: %w", err)
		tl_messages_bot_app_gen.go#L196: 		return fmt.Errorf("unable to encode messages.botApp#eb50adf5: field app is nil")
		tl_messages_bot_app_gen.go#L199: 		return fmt.Errorf("unable to encode messages.botApp#eb50adf5: field app: %w", err)
		tl_messages_bot_app_gen.go#L207: 		return fmt.Errorf("can't decode messages.botApp#eb50adf5 to nil")
		tl_messages_bot_app_gen.go#L210: 		return fmt.Errorf("unable to decode messages.botApp#eb50adf5: %w", err)
		tl_messages_bot_app_gen.go#L218: 		return fmt.Errorf("can't decode messages.botApp#eb50adf5 to nil")
		tl_messages_bot_app_gen.go#L222: 			return fmt.Errorf("unable to decode messages.botApp#eb50adf5: field flags: %w", err)
		tl_messages_bot_app_gen.go#L231: 			return fmt.Errorf("unable to decode messages.botApp#eb50adf5: field app: %w", err)
		tl_messages_bot_callback_answer_gen.go#L212: 		return fmt.Errorf("can't encode messages.botCallbackAnswer#36585ea4 as nil")
		tl_messages_bot_callback_answer_gen.go#L221: 		return fmt.Errorf("can't encode messages.botCallbackAnswer#36585ea4 as nil")
		tl_messages_bot_callback_answer_gen.go#L225: 		return fmt.Errorf("unable to encode messages.botCallbackAnswer#36585ea4: field flags: %w", err)
		tl_messages_bot_callback_answer_gen.go#L240: 		return fmt.Errorf("can't decode messages.botCallbackAnswer#36585ea4 to nil")
		tl_messages_bot_callback_answer_gen.go#L243: 		return fmt.Errorf("unable to decode messages.botCallbackAnswer#36585ea4: %w", err)
		tl_messages_bot_callback_answer_gen.go#L251: 		return fmt.Errorf("can't decode messages.botCallbackAnswer#36585ea4 to nil")
		tl_messages_bot_callback_answer_gen.go#L255: 			return fmt.Errorf("unable to decode messages.botCallbackAnswer#36585ea4: field flags: %w", err)
		tl_messages_bot_callback_answer_gen.go#L264: 			return fmt.Errorf("unable to decode messages.botCallbackAnswer#36585ea4: field message: %w", err)
		tl_messages_bot_callback_answer_gen.go#L271: 			return fmt.Errorf("unable to decode messages.botCallbackAnswer#36585ea4: field url: %w", err)
		tl_messages_bot_callback_answer_gen.go#L278: 			return fmt.Errorf("unable to decode messages.botCallbackAnswer#36585ea4: field cache_time: %w", err)
		tl_messages_bot_results_gen.go#L240: 		return fmt.Errorf("can't encode messages.botResults#e021f2f6 as nil")
		tl_messages_bot_results_gen.go#L249: 		return fmt.Errorf("can't encode messages.botResults#e021f2f6 as nil")
		tl_messages_bot_results_gen.go#L253: 		return fmt.Errorf("unable to encode messages.botResults#e021f2f6: field flags: %w", err)
		tl_messages_bot_results_gen.go#L261: 			return fmt.Errorf("unable to encode messages.botResults#e021f2f6: field switch_pm: %w", err)
		tl_messages_bot_results_gen.go#L266: 			return fmt.Errorf("unable to encode messages.botResults#e021f2f6: field switch_webview: %w", err)
		tl_messages_bot_results_gen.go#L272: 			return fmt.Errorf("unable to encode messages.botResults#e021f2f6: field results element with index %d is nil", idx)
		tl_messages_bot_results_gen.go#L275: 			return fmt.Errorf("unable to encode messages.botResults#e021f2f6: field results element with index %d: %w", idx, err)
		tl_messages_bot_results_gen.go#L282: 			return fmt.Errorf("unable to encode messages.botResults#e021f2f6: field users element with index %d is nil", idx)
		tl_messages_bot_results_gen.go#L285: 			return fmt.Errorf("unable to encode messages.botResults#e021f2f6: field users element with index %d: %w", idx, err)
		tl_messages_bot_results_gen.go#L294: 		return fmt.Errorf("can't decode messages.botResults#e021f2f6 to nil")
		tl_messages_bot_results_gen.go#L297: 		return fmt.Errorf("unable to decode messages.botResults#e021f2f6: %w", err)
		tl_messages_bot_results_gen.go#L305: 		return fmt.Errorf("can't decode messages.botResults#e021f2f6 to nil")
		tl_messages_bot_results_gen.go#L309: 			return fmt.Errorf("unable to decode messages.botResults#e021f2f6: field flags: %w", err)
		tl_messages_bot_results_gen.go#L316: 			return fmt.Errorf("unable to decode messages.botResults#e021f2f6: field query_id: %w", err)
		tl_messages_bot_results_gen.go#L323: 			return fmt.Errorf("unable to decode messages.botResults#e021f2f6: field next_offset: %w", err)
		tl_messages_bot_results_gen.go#L329: 			return fmt.Errorf("unable to decode messages.botResults#e021f2f6: field switch_pm: %w", err)
		tl_messages_bot_results_gen.go#L334: 			return fmt.Errorf("unable to decode messages.botResults#e021f2f6: field switch_webview: %w", err)
		tl_messages_bot_results_gen.go#L340: 			return fmt.Errorf("unable to decode messages.botResults#e021f2f6: field results: %w", err)
		tl_messages_bot_results_gen.go#L349: 				return fmt.Errorf("unable to decode messages.botResults#e021f2f6: field results: %w", err)
		tl_messages_bot_results_gen.go#L357: 			return fmt.Errorf("unable to decode messages.botResults#e021f2f6: field cache_time: %w", err)
		tl_messages_bot_results_gen.go#L364: 			return fmt.Errorf("unable to decode messages.botResults#e021f2f6: field users: %w", err)
		tl_messages_bot_results_gen.go#L373: 				return fmt.Errorf("unable to decode messages.botResults#e021f2f6: field users: %w", err)
		tl_messages_chat_admins_with_invites_gen.go#L126: 		return fmt.Errorf("can't encode messages.chatAdminsWithInvites#b69b72d7 as nil")
		tl_messages_chat_admins_with_invites_gen.go#L135: 		return fmt.Errorf("can't encode messages.chatAdminsWithInvites#b69b72d7 as nil")
		tl_messages_chat_admins_with_invites_gen.go#L140: 			return fmt.Errorf("unable to encode messages.chatAdminsWithInvites#b69b72d7: field admins element with index %d: %w", idx, err)
		tl_messages_chat_admins_with_invites_gen.go#L146: 			return fmt.Errorf("unable to encode messages.chatAdminsWithInvites#b69b72d7: field users element with index %d is nil", idx)
		tl_messages_chat_admins_with_invites_gen.go#L149: 			return fmt.Errorf("unable to encode messages.chatAdminsWithInvites#b69b72d7: field users element with index %d: %w", idx, err)
		tl_messages_chat_admins_with_invites_gen.go#L158: 		return fmt.Errorf("can't decode messages.chatAdminsWithInvites#b69b72d7 to nil")
		tl_messages_chat_admins_with_invites_gen.go#L161: 		return fmt.Errorf("unable to decode messages.chatAdminsWithInvites#b69b72d7: %w", err)
		tl_messages_chat_admins_with_invites_gen.go#L169: 		return fmt.Errorf("can't decode messages.chatAdminsWithInvites#b69b72d7 to nil")
		tl_messages_chat_admins_with_invites_gen.go#L174: 			return fmt.Errorf("unable to decode messages.chatAdminsWithInvites#b69b72d7: field admins: %w", err)
		tl_messages_chat_admins_with_invites_gen.go#L183: 				return fmt.Errorf("unable to decode messages.chatAdminsWithInvites#b69b72d7: field admins: %w", err)
		tl_messages_chat_admins_with_invites_gen.go#L191: 			return fmt.Errorf("unable to decode messages.chatAdminsWithInvites#b69b72d7: field users: %w", err)
		tl_messages_chat_admins_with_invites_gen.go#L200: 				return fmt.Errorf("unable to decode messages.chatAdminsWithInvites#b69b72d7: field users: %w", err)
		tl_messages_chat_full_gen.go#L143: 		return fmt.Errorf("can't encode messages.chatFull#e5d7d19c as nil")
		tl_messages_chat_full_gen.go#L152: 		return fmt.Errorf("can't encode messages.chatFull#e5d7d19c as nil")
		tl_messages_chat_full_gen.go#L155: 		return fmt.Errorf("unable to encode messages.chatFull#e5d7d19c: field full_chat is nil")
		tl_messages_chat_full_gen.go#L158: 		return fmt.Errorf("unable to encode messages.chatFull#e5d7d19c: field full_chat: %w", err)
		tl_messages_chat_full_gen.go#L163: 			return fmt.Errorf("unable to encode messages.chatFull#e5d7d19c: field chats element with index %d is nil", idx)
		tl_messages_chat_full_gen.go#L166: 			return fmt.Errorf("unable to encode messages.chatFull#e5d7d19c: field chats element with index %d: %w", idx, err)
		tl_messages_chat_full_gen.go#L172: 			return fmt.Errorf("unable to encode messages.chatFull#e5d7d19c: field users element with index %d is nil", idx)
		tl_messages_chat_full_gen.go#L175: 			return fmt.Errorf("unable to encode messages.chatFull#e5d7d19c: field users element with index %d: %w", idx, err)
		tl_messages_chat_full_gen.go#L184: 		return fmt.Errorf("can't decode messages.chatFull#e5d7d19c to nil")
		tl_messages_chat_full_gen.go#L187: 		return fmt.Errorf("unable to decode messages.chatFull#e5d7d19c: %w", err)
		tl_messages_chat_full_gen.go#L195: 		return fmt.Errorf("can't decode messages.chatFull#e5d7d19c to nil")
		tl_messages_chat_full_gen.go#L200: 			return fmt.Errorf("unable to decode messages.chatFull#e5d7d19c: field full_chat: %w", err)
		tl_messages_chat_full_gen.go#L207: 			return fmt.Errorf("unable to decode messages.chatFull#e5d7d19c: field chats: %w", err)
		tl_messages_chat_full_gen.go#L216: 				return fmt.Errorf("unable to decode messages.chatFull#e5d7d19c: field chats: %w", err)
		tl_messages_chat_full_gen.go#L224: 			return fmt.Errorf("unable to decode messages.chatFull#e5d7d19c: field users: %w", err)
		tl_messages_chat_full_gen.go#L233: 				return fmt.Errorf("unable to decode messages.chatFull#e5d7d19c: field users: %w", err)
		tl_messages_chat_invite_importers_gen.go#L137: 		return fmt.Errorf("can't encode messages.chatInviteImporters#81b6b00a as nil")
		tl_messages_chat_invite_importers_gen.go#L146: 		return fmt.Errorf("can't encode messages.chatInviteImporters#81b6b00a as nil")
		tl_messages_chat_invite_importers_gen.go#L152: 			return fmt.Errorf("unable to encode messages.chatInviteImporters#81b6b00a: field importers element with index %d: %w", idx, err)
		tl_messages_chat_invite_importers_gen.go#L158: 			return fmt.Errorf("unable to encode messages.chatInviteImporters#81b6b00a: field users element with index %d is nil", idx)
		tl_messages_chat_invite_importers_gen.go#L161: 			return fmt.Errorf("unable to encode messages.chatInviteImporters#81b6b00a: field users element with index %d: %w", idx, err)
		tl_messages_chat_invite_importers_gen.go#L170: 		return fmt.Errorf("can't decode messages.chatInviteImporters#81b6b00a to nil")
		tl_messages_chat_invite_importers_gen.go#L173: 		return fmt.Errorf("unable to decode messages.chatInviteImporters#81b6b00a: %w", err)
		tl_messages_chat_invite_importers_gen.go#L181: 		return fmt.Errorf("can't decode messages.chatInviteImporters#81b6b00a to nil")
		tl_messages_chat_invite_importers_gen.go#L186: 			return fmt.Errorf("unable to decode messages.chatInviteImporters#81b6b00a: field count: %w", err)
		tl_messages_chat_invite_importers_gen.go#L193: 			return fmt.Errorf("unable to decode messages.chatInviteImporters#81b6b00a: field importers: %w", err)
		tl_messages_chat_invite_importers_gen.go#L202: 				return fmt.Errorf("unable to decode messages.chatInviteImporters#81b6b00a: field importers: %w", err)
		tl_messages_chat_invite_importers_gen.go#L210: 			return fmt.Errorf("unable to decode messages.chatInviteImporters#81b6b00a: field users: %w", err)
		tl_messages_chat_invite_importers_gen.go#L219: 				return fmt.Errorf("unable to decode messages.chatInviteImporters#81b6b00a: field users: %w", err)
		tl_messages_chats_gen.go#L120: 		return fmt.Errorf("can't encode messages.chats#64ff9fd5 as nil")
		tl_messages_chats_gen.go#L129: 		return fmt.Errorf("can't encode messages.chats#64ff9fd5 as nil")
		tl_messages_chats_gen.go#L134: 			return fmt.Errorf("unable to encode messages.chats#64ff9fd5: field chats element with index %d is nil", idx)
		tl_messages_chats_gen.go#L137: 			return fmt.Errorf("unable to encode messages.chats#64ff9fd5: field chats element with index %d: %w", idx, err)
		tl_messages_chats_gen.go#L146: 		return fmt.Errorf("can't decode messages.chats#64ff9fd5 to nil")
		tl_messages_chats_gen.go#L149: 		return fmt.Errorf("unable to decode messages.chats#64ff9fd5: %w", err)
		tl_messages_chats_gen.go#L157: 		return fmt.Errorf("can't decode messages.chats#64ff9fd5 to nil")
		tl_messages_chats_gen.go#L162: 			return fmt.Errorf("unable to decode messages.chats#64ff9fd5: field chats: %w", err)
		tl_messages_chats_gen.go#L171: 				return fmt.Errorf("unable to decode messages.chats#64ff9fd5: field chats: %w", err)
		tl_messages_chats_gen.go#L292: 		return fmt.Errorf("can't encode messages.chatsSlice#9cd81144 as nil")
		tl_messages_chats_gen.go#L301: 		return fmt.Errorf("can't encode messages.chatsSlice#9cd81144 as nil")
		tl_messages_chats_gen.go#L307: 			return fmt.Errorf("unable to encode messages.chatsSlice#9cd81144: field chats element with index %d is nil", idx)
		tl_messages_chats_gen.go#L310: 			return fmt.Errorf("unable to encode messages.chatsSlice#9cd81144: field chats element with index %d: %w", idx, err)
		tl_messages_chats_gen.go#L319: 		return fmt.Errorf("can't decode messages.chatsSlice#9cd81144 to nil")
		tl_messages_chats_gen.go#L322: 		return fmt.Errorf("unable to decode messages.chatsSlice#9cd81144: %w", err)
		tl_messages_chats_gen.go#L330: 		return fmt.Errorf("can't decode messages.chatsSlice#9cd81144 to nil")
		tl_messages_chats_gen.go#L335: 			return fmt.Errorf("unable to decode messages.chatsSlice#9cd81144: field count: %w", err)
		tl_messages_chats_gen.go#L342: 			return fmt.Errorf("unable to decode messages.chatsSlice#9cd81144: field chats: %w", err)
		tl_messages_chats_gen.go#L351: 				return fmt.Errorf("unable to decode messages.chatsSlice#9cd81144: field chats: %w", err)
		tl_messages_chats_gen.go#L433: 			return nil, fmt.Errorf("unable to decode MessagesChatsClass: %w", err)
		tl_messages_chats_gen.go#L440: 			return nil, fmt.Errorf("unable to decode MessagesChatsClass: %w", err)
		tl_messages_chats_gen.go#L444: 		return nil, fmt.Errorf("unable to decode MessagesChatsClass: %w", bin.NewUnexpectedID(id))
		tl_messages_chats_gen.go#L456: 		return fmt.Errorf("unable to decode MessagesChatsBox to nil")
		tl_messages_chats_gen.go#L460: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_messages_chats_gen.go#L469: 		return fmt.Errorf("unable to encode MessagesChatsClass as nil")
		tl_messages_check_chat_invite_gen.go#L118: 		return fmt.Errorf("can't encode messages.checkChatInvite#3eadb1bb as nil")
		tl_messages_check_chat_invite_gen.go#L127: 		return fmt.Errorf("can't encode messages.checkChatInvite#3eadb1bb as nil")
		tl_messages_check_chat_invite_gen.go#L136: 		return fmt.Errorf("can't decode messages.checkChatInvite#3eadb1bb to nil")
		tl_messages_check_chat_invite_gen.go#L139: 		return fmt.Errorf("unable to decode messages.checkChatInvite#3eadb1bb: %w", err)
		tl_messages_check_chat_invite_gen.go#L147: 		return fmt.Errorf("can't decode messages.checkChatInvite#3eadb1bb to nil")
		tl_messages_check_chat_invite_gen.go#L152: 			return fmt.Errorf("unable to decode messages.checkChatInvite#3eadb1bb: field hash: %w", err)
		tl_messages_check_history_import_gen.go#L119: 		return fmt.Errorf("can't encode messages.checkHistoryImport#43fe19f3 as nil")
		tl_messages_check_history_import_gen.go#L128: 		return fmt.Errorf("can't encode messages.checkHistoryImport#43fe19f3 as nil")
		tl_messages_check_history_import_gen.go#L137: 		return fmt.Errorf("can't decode messages.checkHistoryImport#43fe19f3 to nil")
		tl_messages_check_history_import_gen.go#L140: 		return fmt.Errorf("unable to decode messages.checkHistoryImport#43fe19f3: %w", err)
		tl_messages_check_history_import_gen.go#L148: 		return fmt.Errorf("can't decode messages.checkHistoryImport#43fe19f3 to nil")
		tl_messages_check_history_import_gen.go#L153: 			return fmt.Errorf("unable to decode messages.checkHistoryImport#43fe19f3: field import_head: %w", err)
		tl_messages_check_history_import_peer_gen.go#L126: 		return fmt.Errorf("can't encode messages.checkHistoryImportPeer#5dc60f03 as nil")
		tl_messages_check_history_import_peer_gen.go#L135: 		return fmt.Errorf("can't encode messages.checkHistoryImportPeer#5dc60f03 as nil")
		tl_messages_check_history_import_peer_gen.go#L138: 		return fmt.Errorf("unable to encode messages.checkHistoryImportPeer#5dc60f03: field peer is nil")
		tl_messages_check_history_import_peer_gen.go#L141: 		return fmt.Errorf("unable to encode messages.checkHistoryImportPeer#5dc60f03: field peer: %w", err)
		tl_messages_check_history_import_peer_gen.go#L149: 		return fmt.Errorf("can't decode messages.checkHistoryImportPeer#5dc60f03 to nil")
		tl_messages_check_history_import_peer_gen.go#L152: 		return fmt.Errorf("unable to decode messages.checkHistoryImportPeer#5dc60f03: %w", err)
		tl_messages_check_history_import_peer_gen.go#L160: 		return fmt.Errorf("can't decode messages.checkHistoryImportPeer#5dc60f03 to nil")
		tl_messages_check_history_import_peer_gen.go#L165: 			return fmt.Errorf("unable to decode messages.checkHistoryImportPeer#5dc60f03: field peer: %w", err)
		tl_messages_checked_history_import_peer_gen.go#L122: 		return fmt.Errorf("can't encode messages.checkedHistoryImportPeer#a24de717 as nil")
		tl_messages_checked_history_import_peer_gen.go#L131: 		return fmt.Errorf("can't encode messages.checkedHistoryImportPeer#a24de717 as nil")
		tl_messages_checked_history_import_peer_gen.go#L140: 		return fmt.Errorf("can't decode messages.checkedHistoryImportPeer#a24de717 to nil")
		tl_messages_checked_history_import_peer_gen.go#L143: 		return fmt.Errorf("unable to decode messages.checkedHistoryImportPeer#a24de717: %w", err)
		tl_messages_checked_history_import_peer_gen.go#L151: 		return fmt.Errorf("can't decode messages.checkedHistoryImportPeer#a24de717 to nil")
		tl_messages_checked_history_import_peer_gen.go#L156: 			return fmt.Errorf("unable to decode messages.checkedHistoryImportPeer#a24de717: field confirm_text: %w", err)
		tl_messages_clear_all_drafts_gen.go#L101: 		return fmt.Errorf("can't encode messages.clearAllDrafts#7e58ee9c as nil")
		tl_messages_clear_all_drafts_gen.go#L110: 		return fmt.Errorf("can't encode messages.clearAllDrafts#7e58ee9c as nil")
		tl_messages_clear_all_drafts_gen.go#L118: 		return fmt.Errorf("can't decode messages.clearAllDrafts#7e58ee9c to nil")
		tl_messages_clear_all_drafts_gen.go#L121: 		return fmt.Errorf("unable to decode messages.clearAllDrafts#7e58ee9c: %w", err)
		tl_messages_clear_all_drafts_gen.go#L129: 		return fmt.Errorf("can't decode messages.clearAllDrafts#7e58ee9c to nil")
		tl_messages_clear_recent_reactions_gen.go#L101: 		return fmt.Errorf("can't encode messages.clearRecentReactions#9dfeefb4 as nil")
		tl_messages_clear_recent_reactions_gen.go#L110: 		return fmt.Errorf("can't encode messages.clearRecentReactions#9dfeefb4 as nil")
		tl_messages_clear_recent_reactions_gen.go#L118: 		return fmt.Errorf("can't decode messages.clearRecentReactions#9dfeefb4 to nil")
		tl_messages_clear_recent_reactions_gen.go#L121: 		return fmt.Errorf("unable to decode messages.clearRecentReactions#9dfeefb4: %w", err)
		tl_messages_clear_recent_reactions_gen.go#L129: 		return fmt.Errorf("can't decode messages.clearRecentReactions#9dfeefb4 to nil")
		tl_messages_clear_recent_stickers_gen.go#L131: 		return fmt.Errorf("can't encode messages.clearRecentStickers#8999602d as nil")
		tl_messages_clear_recent_stickers_gen.go#L140: 		return fmt.Errorf("can't encode messages.clearRecentStickers#8999602d as nil")
		tl_messages_clear_recent_stickers_gen.go#L144: 		return fmt.Errorf("unable to encode messages.clearRecentStickers#8999602d: field flags: %w", err)
		tl_messages_clear_recent_stickers_gen.go#L152: 		return fmt.Errorf("can't decode messages.clearRecentStickers#8999602d to nil")
		tl_messages_clear_recent_stickers_gen.go#L155: 		return fmt.Errorf("unable to decode messages.clearRecentStickers#8999602d: %w", err)
		tl_messages_clear_recent_stickers_gen.go#L163: 		return fmt.Errorf("can't decode messages.clearRecentStickers#8999602d to nil")
		tl_messages_clear_recent_stickers_gen.go#L167: 			return fmt.Errorf("unable to decode messages.clearRecentStickers#8999602d: field flags: %w", err)
		tl_messages_create_chat_gen.go#L170: 		return fmt.Errorf("can't encode messages.createChat#34a818 as nil")
		tl_messages_create_chat_gen.go#L179: 		return fmt.Errorf("can't encode messages.createChat#34a818 as nil")
		tl_messages_create_chat_gen.go#L183: 		return fmt.Errorf("unable to encode messages.createChat#34a818: field flags: %w", err)
		tl_messages_create_chat_gen.go#L188: 			return fmt.Errorf("unable to encode messages.createChat#34a818: field users element with index %d is nil", idx)
		tl_messages_create_chat_gen.go#L191: 			return fmt.Errorf("unable to encode messages.createChat#34a818: field users element with index %d: %w", idx, err)
		tl_messages_create_chat_gen.go#L204: 		return fmt.Errorf("can't decode messages.createChat#34a818 to nil")
		tl_messages_create_chat_gen.go#L207: 		return fmt.Errorf("unable to decode messages.createChat#34a818: %w", err)
		tl_messages_create_chat_gen.go#L215: 		return fmt.Errorf("can't decode messages.createChat#34a818 to nil")
		tl_messages_create_chat_gen.go#L219: 			return fmt.Errorf("unable to decode messages.createChat#34a818: field flags: %w", err)
		tl_messages_create_chat_gen.go#L225: 			return fmt.Errorf("unable to decode messages.createChat#34a818: field users: %w", err)
		tl_messages_create_chat_gen.go#L234: 				return fmt.Errorf("unable to decode messages.createChat#34a818: field users: %w", err)
		tl_messages_create_chat_gen.go#L242: 			return fmt.Errorf("unable to decode messages.createChat#34a818: field title: %w", err)
		tl_messages_create_chat_gen.go#L249: 			return fmt.Errorf("unable to decode messages.createChat#34a818: field ttl_period: %w", err)
		tl_messages_delete_chat_gen.go#L118: 		return fmt.Errorf("can't encode messages.deleteChat#5bd0ee50 as nil")
		tl_messages_delete_chat_gen.go#L127: 		return fmt.Errorf("can't encode messages.deleteChat#5bd0ee50 as nil")
		tl_messages_delete_chat_gen.go#L136: 		return fmt.Errorf("can't decode messages.deleteChat#5bd0ee50 to nil")
		tl_messages_delete_chat_gen.go#L139: 		return fmt.Errorf("unable to decode messages.deleteChat#5bd0ee50: %w", err)
		tl_messages_delete_chat_gen.go#L147: 		return fmt.Errorf("can't decode messages.deleteChat#5bd0ee50 to nil")
		tl_messages_delete_chat_gen.go#L152: 			return fmt.Errorf("unable to decode messages.deleteChat#5bd0ee50: field chat_id: %w", err)
		tl_messages_delete_chat_user_gen.go#L153: 		return fmt.Errorf("can't encode messages.deleteChatUser#a2185cab as nil")
		tl_messages_delete_chat_user_gen.go#L162: 		return fmt.Errorf("can't encode messages.deleteChatUser#a2185cab as nil")
		tl_messages_delete_chat_user_gen.go#L166: 		return fmt.Errorf("unable to encode messages.deleteChatUser#a2185cab: field flags: %w", err)
		tl_messages_delete_chat_user_gen.go#L170: 		return fmt.Errorf("unable to encode messages.deleteChatUser#a2185cab: field user_id is nil")
		tl_messages_delete_chat_user_gen.go#L173: 		return fmt.Errorf("unable to encode messages.deleteChatUser#a2185cab: field user_id: %w", err)
		tl_messages_delete_chat_user_gen.go#L181: 		return fmt.Errorf("can't decode messages.deleteChatUser#a2185cab to nil")
		tl_messages_delete_chat_user_gen.go#L184: 		return fmt.Errorf("unable to decode messages.deleteChatUser#a2185cab: %w", err)
		tl_messages_delete_chat_user_gen.go#L192: 		return fmt.Errorf("can't decode messages.deleteChatUser#a2185cab to nil")
		tl_messages_delete_chat_user_gen.go#L196: 			return fmt.Errorf("unable to decode messages.deleteChatUser#a2185cab: field flags: %w", err)
		tl_messages_delete_chat_user_gen.go#L203: 			return fmt.Errorf("unable to decode messages.deleteChatUser#a2185cab: field chat_id: %w", err)
		tl_messages_delete_chat_user_gen.go#L210: 			return fmt.Errorf("unable to decode messages.deleteChatUser#a2185cab: field user_id: %w", err)
		tl_messages_delete_exported_chat_invite_gen.go#L126: 		return fmt.Errorf("can't encode messages.deleteExportedChatInvite#d464a42b as nil")
		tl_messages_delete_exported_chat_invite_gen.go#L135: 		return fmt.Errorf("can't encode messages.deleteExportedChatInvite#d464a42b as nil")
		tl_messages_delete_exported_chat_invite_gen.go#L138: 		return fmt.Errorf("unable to encode messages.deleteExportedChatInvite#d464a42b: field peer is nil")
		tl_messages_delete_exported_chat_invite_gen.go#L141: 		return fmt.Errorf("unable to encode messages.deleteExportedChatInvite#d464a42b: field peer: %w", err)
		tl_messages_delete_exported_chat_invite_gen.go#L150: 		return fmt.Errorf("can't decode messages.deleteExportedChatInvite#d464a42b to nil")
		tl_messages_delete_exported_chat_invite_gen.go#L153: 		return fmt.Errorf("unable to decode messages.deleteExportedChatInvite#d464a42b: %w", err)
		tl_messages_delete_exported_chat_invite_gen.go#L161: 		return fmt.Errorf("can't decode messages.deleteExportedChatInvite#d464a42b to nil")
		tl_messages_delete_exported_chat_invite_gen.go#L166: 			return fmt.Errorf("unable to decode messages.deleteExportedChatInvite#d464a42b: field peer: %w", err)
		tl_messages_delete_exported_chat_invite_gen.go#L173: 			return fmt.Errorf("unable to decode messages.deleteExportedChatInvite#d464a42b: field link: %w", err)
		tl_messages_delete_history_gen.go#L209: 		return fmt.Errorf("can't encode messages.deleteHistory#b08f922a as nil")
		tl_messages_delete_history_gen.go#L218: 		return fmt.Errorf("can't encode messages.deleteHistory#b08f922a as nil")
		tl_messages_delete_history_gen.go#L222: 		return fmt.Errorf("unable to encode messages.deleteHistory#b08f922a: field flags: %w", err)
		tl_messages_delete_history_gen.go#L225: 		return fmt.Errorf("unable to encode messages.deleteHistory#b08f922a: field peer is nil")
		tl_messages_delete_history_gen.go#L228: 		return fmt.Errorf("unable to encode messages.deleteHistory#b08f922a: field peer: %w", err)
		tl_messages_delete_history_gen.go#L243: 		return fmt.Errorf("can't decode messages.deleteHistory#b08f922a to nil")
		tl_messages_delete_history_gen.go#L246: 		return fmt.Errorf("unable to decode messages.deleteHistory#b08f922a: %w", err)
		tl_messages_delete_history_gen.go#L254: 		return fmt.Errorf("can't decode messages.deleteHistory#b08f922a to nil")
		tl_messages_delete_history_gen.go#L258: 			return fmt.Errorf("unable to decode messages.deleteHistory#b08f922a: field flags: %w", err)
		tl_messages_delete_history_gen.go#L266: 			return fmt.Errorf("unable to decode messages.deleteHistory#b08f922a: field peer: %w", err)
		tl_messages_delete_history_gen.go#L273: 			return fmt.Errorf("unable to decode messages.deleteHistory#b08f922a: field max_id: %w", err)
		tl_messages_delete_history_gen.go#L280: 			return fmt.Errorf("unable to decode messages.deleteHistory#b08f922a: field min_date: %w", err)
		tl_messages_delete_history_gen.go#L287: 			return fmt.Errorf("unable to decode messages.deleteHistory#b08f922a: field max_date: %w", err)
		tl_messages_delete_messages_gen.go#L142: 		return fmt.Errorf("can't encode messages.deleteMessages#e58e95d2 as nil")
		tl_messages_delete_messages_gen.go#L151: 		return fmt.Errorf("can't encode messages.deleteMessages#e58e95d2 as nil")
		tl_messages_delete_messages_gen.go#L155: 		return fmt.Errorf("unable to encode messages.deleteMessages#e58e95d2: field flags: %w", err)
		tl_messages_delete_messages_gen.go#L167: 		return fmt.Errorf("can't decode messages.deleteMessages#e58e95d2 to nil")
		tl_messages_delete_messages_gen.go#L170: 		return fmt.Errorf("unable to decode messages.deleteMessages#e58e95d2: %w", err)
		tl_messages_delete_messages_gen.go#L178: 		return fmt.Errorf("can't decode messages.deleteMessages#e58e95d2 to nil")
		tl_messages_delete_messages_gen.go#L182: 			return fmt.Errorf("unable to decode messages.deleteMessages#e58e95d2: field flags: %w", err)
		tl_messages_delete_messages_gen.go#L189: 			return fmt.Errorf("unable to decode messages.deleteMessages#e58e95d2: field id: %w", err)
		tl_messages_delete_messages_gen.go#L198: 				return fmt.Errorf("unable to decode messages.deleteMessages#e58e95d2: field id: %w", err)
		tl_messages_delete_phone_call_history_gen.go#L131: 		return fmt.Errorf("can't encode messages.deletePhoneCallHistory#f9cbe409 as nil")
		tl_messages_delete_phone_call_history_gen.go#L140: 		return fmt.Errorf("can't encode messages.deletePhoneCallHistory#f9cbe409 as nil")
		tl_messages_delete_phone_call_history_gen.go#L144: 		return fmt.Errorf("unable to encode messages.deletePhoneCallHistory#f9cbe409: field flags: %w", err)
		tl_messages_delete_phone_call_history_gen.go#L152: 		return fmt.Errorf("can't decode messages.deletePhoneCallHistory#f9cbe409 to nil")
		tl_messages_delete_phone_call_history_gen.go#L155: 		return fmt.Errorf("unable to decode messages.deletePhoneCallHistory#f9cbe409: %w", err)
		tl_messages_delete_phone_call_history_gen.go#L163: 		return fmt.Errorf("can't decode messages.deletePhoneCallHistory#f9cbe409 to nil")
		tl_messages_delete_phone_call_history_gen.go#L167: 			return fmt.Errorf("unable to decode messages.deletePhoneCallHistory#f9cbe409: field flags: %w", err)
		tl_messages_delete_revoked_exported_chat_invites_gen.go#L126: 		return fmt.Errorf("can't encode messages.deleteRevokedExportedChatInvites#56987bd5 as nil")
		tl_messages_delete_revoked_exported_chat_invites_gen.go#L135: 		return fmt.Errorf("can't encode messages.deleteRevokedExportedChatInvites#56987bd5 as nil")
		tl_messages_delete_revoked_exported_chat_invites_gen.go#L138: 		return fmt.Errorf("unable to encode messages.deleteRevokedExportedChatInvites#56987bd5: field peer is nil")
		tl_messages_delete_revoked_exported_chat_invites_gen.go#L141: 		return fmt.Errorf("unable to encode messages.deleteRevokedExportedChatInvites#56987bd5: field peer: %w", err)
		tl_messages_delete_revoked_exported_chat_invites_gen.go#L144: 		return fmt.Errorf("unable to encode messages.deleteRevokedExportedChatInvites#56987bd5: field admin_id is nil")
		tl_messages_delete_revoked_exported_chat_invites_gen.go#L147: 		return fmt.Errorf("unable to encode messages.deleteRevokedExportedChatInvites#56987bd5: field admin_id: %w", err)
		tl_messages_delete_revoked_exported_chat_invites_gen.go#L155: 		return fmt.Errorf("can't decode messages.deleteRevokedExportedChatInvites#56987bd5 to nil")
		tl_messages_delete_revoked_exported_chat_invites_gen.go#L158: 		return fmt.Errorf("unable to decode messages.deleteRevokedExportedChatInvites#56987bd5: %w", err)
		tl_messages_delete_revoked_exported_chat_invites_gen.go#L166: 		return fmt.Errorf("can't decode messages.deleteRevokedExportedChatInvites#56987bd5 to nil")
		tl_messages_delete_revoked_exported_chat_invites_gen.go#L171: 			return fmt.Errorf("unable to decode messages.deleteRevokedExportedChatInvites#56987bd5: field peer: %w", err)
		tl_messages_delete_revoked_exported_chat_invites_gen.go#L178: 			return fmt.Errorf("unable to decode messages.deleteRevokedExportedChatInvites#56987bd5: field admin_id: %w", err)
		tl_messages_delete_scheduled_messages_gen.go#L126: 		return fmt.Errorf("can't encode messages.deleteScheduledMessages#59ae2b16 as nil")
		tl_messages_delete_scheduled_messages_gen.go#L135: 		return fmt.Errorf("can't encode messages.deleteScheduledMessages#59ae2b16 as nil")
		tl_messages_delete_scheduled_messages_gen.go#L138: 		return fmt.Errorf("unable to encode messages.deleteScheduledMessages#59ae2b16: field peer is nil")
		tl_messages_delete_scheduled_messages_gen.go#L141: 		return fmt.Errorf("unable to encode messages.deleteScheduledMessages#59ae2b16: field peer: %w", err)
		tl_messages_delete_scheduled_messages_gen.go#L153: 		return fmt.Errorf("can't decode messages.deleteScheduledMessages#59ae2b16 to nil")
		tl_messages_delete_scheduled_messages_gen.go#L156: 		return fmt.Errorf("unable to decode messages.deleteScheduledMessages#59ae2b16: %w", err)
		tl_messages_delete_scheduled_messages_gen.go#L164: 		return fmt.Errorf("can't decode messages.deleteScheduledMessages#59ae2b16 to nil")
		tl_messages_delete_scheduled_messages_gen.go#L169: 			return fmt.Errorf("unable to decode messages.deleteScheduledMessages#59ae2b16: field peer: %w", err)
		tl_messages_delete_scheduled_messages_gen.go#L176: 			return fmt.Errorf("unable to decode messages.deleteScheduledMessages#59ae2b16: field id: %w", err)
		tl_messages_delete_scheduled_messages_gen.go#L185: 				return fmt.Errorf("unable to decode messages.deleteScheduledMessages#59ae2b16: field id: %w", err)
		tl_messages_dh_config_gen.go#L120: 		return fmt.Errorf("can't encode messages.dhConfigNotModified#c0e24635 as nil")
		tl_messages_dh_config_gen.go#L129: 		return fmt.Errorf("can't encode messages.dhConfigNotModified#c0e24635 as nil")
		tl_messages_dh_config_gen.go#L138: 		return fmt.Errorf("can't decode messages.dhConfigNotModified#c0e24635 to nil")
		tl_messages_dh_config_gen.go#L141: 		return fmt.Errorf("unable to decode messages.dhConfigNotModified#c0e24635: %w", err)
		tl_messages_dh_config_gen.go#L149: 		return fmt.Errorf("can't decode messages.dhConfigNotModified#c0e24635 to nil")
		tl_messages_dh_config_gen.go#L154: 			return fmt.Errorf("unable to decode messages.dhConfigNotModified#c0e24635: field random: %w", err)
		tl_messages_dh_config_gen.go#L294: 		return fmt.Errorf("can't encode messages.dhConfig#2c221edd as nil")
		tl_messages_dh_config_gen.go#L303: 		return fmt.Errorf("can't encode messages.dhConfig#2c221edd as nil")
		tl_messages_dh_config_gen.go#L315: 		return fmt.Errorf("can't decode messages.dhConfig#2c221edd to nil")
		tl_messages_dh_config_gen.go#L318: 		return fmt.Errorf("unable to decode messages.dhConfig#2c221edd: %w", err)
		tl_messages_dh_config_gen.go#L326: 		return fmt.Errorf("can't decode messages.dhConfig#2c221edd to nil")
		tl_messages_dh_config_gen.go#L331: 			return fmt.Errorf("unable to decode messages.dhConfig#2c221edd: field g: %w", err)
		tl_messages_dh_config_gen.go#L338: 			return fmt.Errorf("unable to decode messages.dhConfig#2c221edd: field p: %w", err)
		tl_messages_dh_config_gen.go#L345: 			return fmt.Errorf("unable to decode messages.dhConfig#2c221edd: field version: %w", err)
		tl_messages_dh_config_gen.go#L352: 			return fmt.Errorf("unable to decode messages.dhConfig#2c221edd: field random: %w", err)
		tl_messages_dh_config_gen.go#L454: 			return nil, fmt.Errorf("unable to decode MessagesDhConfigClass: %w", err)
		tl_messages_dh_config_gen.go#L461: 			return nil, fmt.Errorf("unable to decode MessagesDhConfigClass: %w", err)
		tl_messages_dh_config_gen.go#L465: 		return nil, fmt.Errorf("unable to decode MessagesDhConfigClass: %w", bin.NewUnexpectedID(id))
		tl_messages_dh_config_gen.go#L477: 		return fmt.Errorf("unable to decode MessagesDhConfigBox to nil")
		tl_messages_dh_config_gen.go#L481: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_messages_dh_config_gen.go#L490: 		return fmt.Errorf("unable to encode MessagesDhConfigClass as nil")
		tl_messages_dialogs_gen.go#L153: 		return fmt.Errorf("can't encode messages.dialogs#15ba6c40 as nil")
		tl_messages_dialogs_gen.go#L162: 		return fmt.Errorf("can't encode messages.dialogs#15ba6c40 as nil")
		tl_messages_dialogs_gen.go#L167: 			return fmt.Errorf("unable to encode messages.dialogs#15ba6c40: field dialogs element with index %d is nil", idx)
		tl_messages_dialogs_gen.go#L170: 			return fmt.Errorf("unable to encode messages.dialogs#15ba6c40: field dialogs element with index %d: %w", idx, err)
		tl_messages_dialogs_gen.go#L176: 			return fmt.Errorf("unable to encode messages.dialogs#15ba6c40: field messages element with index %d is nil", idx)
		tl_messages_dialogs_gen.go#L179: 			return fmt.Errorf("unable to encode messages.dialogs#15ba6c40: field messages element with index %d: %w", idx, err)
		tl_messages_dialogs_gen.go#L185: 			return fmt.Errorf("unable to encode messages.dialogs#15ba6c40: field chats element with index %d is nil", idx)
		tl_messages_dialogs_gen.go#L188: 			return fmt.Errorf("unable to encode messages.dialogs#15ba6c40: field chats element with index %d: %w", idx, err)
		tl_messages_dialogs_gen.go#L194: 			return fmt.Errorf("unable to encode messages.dialogs#15ba6c40: field users element with index %d is nil", idx)
		tl_messages_dialogs_gen.go#L197: 			return fmt.Errorf("unable to encode messages.dialogs#15ba6c40: field users element with index %d: %w", idx, err)
		tl_messages_dialogs_gen.go#L206: 		return fmt.Errorf("can't decode messages.dialogs#15ba6c40 to nil")
		tl_messages_dialogs_gen.go#L209: 		return fmt.Errorf("unable to decode messages.dialogs#15ba6c40: %w", err)
		tl_messages_dialogs_gen.go#L217: 		return fmt.Errorf("can't decode messages.dialogs#15ba6c40 to nil")
		tl_messages_dialogs_gen.go#L222: 			return fmt.Errorf("unable to decode messages.dialogs#15ba6c40: field dialogs: %w", err)
		tl_messages_dialogs_gen.go#L231: 				return fmt.Errorf("unable to decode messages.dialogs#15ba6c40: field dialogs: %w", err)
		tl_messages_dialogs_gen.go#L239: 			return fmt.Errorf("unable to decode messages.dialogs#15ba6c40: field messages: %w", err)
		tl_messages_dialogs_gen.go#L248: 				return fmt.Errorf("unable to decode messages.dialogs#15ba6c40: field messages: %w", err)
		tl_messages_dialogs_gen.go#L256: 			return fmt.Errorf("unable to decode messages.dialogs#15ba6c40: field chats: %w", err)
		tl_messages_dialogs_gen.go#L265: 				return fmt.Errorf("unable to decode messages.dialogs#15ba6c40: field chats: %w", err)
		tl_messages_dialogs_gen.go#L273: 			return fmt.Errorf("unable to decode messages.dialogs#15ba6c40: field users: %w", err)
		tl_messages_dialogs_gen.go#L282: 				return fmt.Errorf("unable to decode messages.dialogs#15ba6c40: field users: %w", err)
		tl_messages_dialogs_gen.go#L472: 		return fmt.Errorf("can't encode messages.dialogsSlice#71e094f3 as nil")
		tl_messages_dialogs_gen.go#L481: 		return fmt.Errorf("can't encode messages.dialogsSlice#71e094f3 as nil")
		tl_messages_dialogs_gen.go#L487: 			return fmt.Errorf("unable to encode messages.dialogsSlice#71e094f3: field dialogs element with index %d is nil", idx)
		tl_messages_dialogs_gen.go#L490: 			return fmt.Errorf("unable to encode messages.dialogsSlice#71e094f3: field dialogs element with index %d: %w", idx, err)
		tl_messages_dialogs_gen.go#L496: 			return fmt.Errorf("unable to encode messages.dialogsSlice#71e094f3: field messages element with index %d is nil", idx)
		tl_messages_dialogs_gen.go#L499: 			return fmt.Errorf("unable to encode messages.dialogsSlice#71e094f3: field messages element with index %d: %w", idx, err)
		tl_messages_dialogs_gen.go#L505: 			return fmt.Errorf("unable to encode messages.dialogsSlice#71e094f3: field chats element with index %d is nil", idx)
		tl_messages_dialogs_gen.go#L508: 			return fmt.Errorf("unable to encode messages.dialogsSlice#71e094f3: field chats element with index %d: %w", idx, err)
		tl_messages_dialogs_gen.go#L514: 			return fmt.Errorf("unable to encode messages.dialogsSlice#71e094f3: field users element with index %d is nil", idx)
		tl_messages_dialogs_gen.go#L517: 			return fmt.Errorf("unable to encode messages.dialogsSlice#71e094f3: field users element with index %d: %w", idx, err)
		tl_messages_dialogs_gen.go#L526: 		return fmt.Errorf("can't decode messages.dialogsSlice#71e094f3 to nil")
		tl_messages_dialogs_gen.go#L529: 		return fmt.Errorf("unable to decode messages.dialogsSlice#71e094f3: %w", err)
		tl_messages_dialogs_gen.go#L537: 		return fmt.Errorf("can't decode messages.dialogsSlice#71e094f3 to nil")
		tl_messages_dialogs_gen.go#L542: 			return fmt.Errorf("unable to decode messages.dialogsSlice#71e094f3: field count: %w", err)
		tl_messages_dialogs_gen.go#L549: 			return fmt.Errorf("unable to decode messages.dialogsSlice#71e094f3: field dialogs: %w", err)
		tl_messages_dialogs_gen.go#L558: 				return fmt.Errorf("unable to decode messages.dialogsSlice#71e094f3: field dialogs: %w", err)
		tl_messages_dialogs_gen.go#L566: 			return fmt.Errorf("unable to decode messages.dialogsSlice#71e094f3: field messages: %w", err)
		tl_messages_dialogs_gen.go#L575: 				return fmt.Errorf("unable to decode messages.dialogsSlice#71e094f3: field messages: %w", err)
		tl_messages_dialogs_gen.go#L583: 			return fmt.Errorf("unable to decode messages.dialogsSlice#71e094f3: field chats: %w", err)
		tl_messages_dialogs_gen.go#L592: 				return fmt.Errorf("unable to decode messages.dialogsSlice#71e094f3: field chats: %w", err)
		tl_messages_dialogs_gen.go#L600: 			return fmt.Errorf("unable to decode messages.dialogsSlice#71e094f3: field users: %w", err)
		tl_messages_dialogs_gen.go#L609: 				return fmt.Errorf("unable to decode messages.dialogsSlice#71e094f3: field users: %w", err)
		tl_messages_dialogs_gen.go#L763: 		return fmt.Errorf("can't encode messages.dialogsNotModified#f0e3e596 as nil")
		tl_messages_dialogs_gen.go#L772: 		return fmt.Errorf("can't encode messages.dialogsNotModified#f0e3e596 as nil")
		tl_messages_dialogs_gen.go#L781: 		return fmt.Errorf("can't decode messages.dialogsNotModified#f0e3e596 to nil")
		tl_messages_dialogs_gen.go#L784: 		return fmt.Errorf("unable to decode messages.dialogsNotModified#f0e3e596: %w", err)
		tl_messages_dialogs_gen.go#L792: 		return fmt.Errorf("can't decode messages.dialogsNotModified#f0e3e596 to nil")
		tl_messages_dialogs_gen.go#L797: 			return fmt.Errorf("unable to decode messages.dialogsNotModified#f0e3e596: field count: %w", err)
		tl_messages_dialogs_gen.go#L914: 			return nil, fmt.Errorf("unable to decode MessagesDialogsClass: %w", err)
		tl_messages_dialogs_gen.go#L921: 			return nil, fmt.Errorf("unable to decode MessagesDialogsClass: %w", err)
		tl_messages_dialogs_gen.go#L928: 			return nil, fmt.Errorf("unable to decode MessagesDialogsClass: %w", err)
		tl_messages_dialogs_gen.go#L932: 		return nil, fmt.Errorf("unable to decode MessagesDialogsClass: %w", bin.NewUnexpectedID(id))
		tl_messages_dialogs_gen.go#L944: 		return fmt.Errorf("unable to decode MessagesDialogsBox to nil")
		tl_messages_dialogs_gen.go#L948: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_messages_dialogs_gen.go#L957: 		return fmt.Errorf("unable to encode MessagesDialogsClass as nil")
		tl_messages_discard_encryption_gen.go#L142: 		return fmt.Errorf("can't encode messages.discardEncryption#f393aea0 as nil")
		tl_messages_discard_encryption_gen.go#L151: 		return fmt.Errorf("can't encode messages.discardEncryption#f393aea0 as nil")
		tl_messages_discard_encryption_gen.go#L155: 		return fmt.Errorf("unable to encode messages.discardEncryption#f393aea0: field flags: %w", err)
		tl_messages_discard_encryption_gen.go#L164: 		return fmt.Errorf("can't decode messages.discardEncryption#f393aea0 to nil")
		tl_messages_discard_encryption_gen.go#L167: 		return fmt.Errorf("unable to decode messages.discardEncryption#f393aea0: %w", err)
		tl_messages_discard_encryption_gen.go#L175: 		return fmt.Errorf("can't decode messages.discardEncryption#f393aea0 to nil")
		tl_messages_discard_encryption_gen.go#L179: 			return fmt.Errorf("unable to decode messages.discardEncryption#f393aea0: field flags: %w", err)
		tl_messages_discard_encryption_gen.go#L186: 			return fmt.Errorf("unable to decode messages.discardEncryption#f393aea0: field chat_id: %w", err)
		tl_messages_discussion_message_gen.go#L233: 		return fmt.Errorf("can't encode messages.discussionMessage#a6341782 as nil")
		tl_messages_discussion_message_gen.go#L242: 		return fmt.Errorf("can't encode messages.discussionMessage#a6341782 as nil")
		tl_messages_discussion_message_gen.go#L246: 		return fmt.Errorf("unable to encode messages.discussionMessage#a6341782: field flags: %w", err)
		tl_messages_discussion_message_gen.go#L251: 			return fmt.Errorf("unable to encode messages.discussionMessage#a6341782: field messages element with index %d is nil", idx)
		tl_messages_discussion_message_gen.go#L254: 			return fmt.Errorf("unable to encode messages.discussionMessage#a6341782: field messages element with index %d: %w", idx, err)
		tl_messages_discussion_message_gen.go#L270: 			return fmt.Errorf("unable to encode messages.discussionMessage#a6341782: field chats element with index %d is nil", idx)
		tl_messages_discussion_message_gen.go#L273: 			return fmt.Errorf("unable to encode messages.discussionMessage#a6341782: field chats element with index %d: %w", idx, err)
		tl_messages_discussion_message_gen.go#L279: 			return fmt.Errorf("unable to encode messages.discussionMessage#a6341782: field users element with index %d is nil", idx)
		tl_messages_discussion_message_gen.go#L282: 			return fmt.Errorf("unable to encode messages.discussionMessage#a6341782: field users element with index %d: %w", idx, err)
		tl_messages_discussion_message_gen.go#L291: 		return fmt.Errorf("can't decode messages.discussionMessage#a6341782 to nil")
		tl_messages_discussion_message_gen.go#L294: 		return fmt.Errorf("unable to decode messages.discussionMessage#a6341782: %w", err)
		tl_messages_discussion_message_gen.go#L302: 		return fmt.Errorf("can't decode messages.discussionMessage#a6341782 to nil")
		tl_messages_discussion_message_gen.go#L306: 			return fmt.Errorf("unable to decode messages.discussionMessage#a6341782: field flags: %w", err)
		tl_messages_discussion_message_gen.go#L312: 			return fmt.Errorf("unable to decode messages.discussionMessage#a6341782: field messages: %w", err)
		tl_messages_discussion_message_gen.go#L321: 				return fmt.Errorf("unable to decode messages.discussionMessage#a6341782: field messages: %w", err)
		tl_messages_discussion_message_gen.go#L329: 			return fmt.Errorf("unable to decode messages.discussionMessage#a6341782: field max_id: %w", err)
		tl_messages_discussion_message_gen.go#L336: 			return fmt.Errorf("unable to decode messages.discussionMessage#a6341782: field read_inbox_max_id: %w", err)
		tl_messages_discussion_message_gen.go#L343: 			return fmt.Errorf("unable to decode messages.discussionMessage#a6341782: field read_outbox_max_id: %w", err)
		tl_messages_discussion_message_gen.go#L350: 			return fmt.Errorf("unable to decode messages.discussionMessage#a6341782: field unread_count: %w", err)
		tl_messages_discussion_message_gen.go#L357: 			return fmt.Errorf("unable to decode messages.discussionMessage#a6341782: field chats: %w", err)
		tl_messages_discussion_message_gen.go#L366: 				return fmt.Errorf("unable to decode messages.discussionMessage#a6341782: field chats: %w", err)
		tl_messages_discussion_message_gen.go#L374: 			return fmt.Errorf("unable to decode messages.discussionMessage#a6341782: field users: %w", err)
		tl_messages_discussion_message_gen.go#L383: 				return fmt.Errorf("unable to decode messages.discussionMessage#a6341782: field users: %w", err)
		tl_messages_edit_chat_about_gen.go#L132: 		return fmt.Errorf("can't encode messages.editChatAbout#def60797 as nil")
		tl_messages_edit_chat_about_gen.go#L141: 		return fmt.Errorf("can't encode messages.editChatAbout#def60797 as nil")
		tl_messages_edit_chat_about_gen.go#L144: 		return fmt.Errorf("unable to encode messages.editChatAbout#def60797: field peer is nil")
		tl_messages_edit_chat_about_gen.go#L147: 		return fmt.Errorf("unable to encode messages.editChatAbout#def60797: field peer: %w", err)
		tl_messages_edit_chat_about_gen.go#L156: 		return fmt.Errorf("can't decode messages.editChatAbout#def60797 to nil")
		tl_messages_edit_chat_about_gen.go#L159: 		return fmt.Errorf("unable to decode messages.editChatAbout#def60797: %w", err)
		tl_messages_edit_chat_about_gen.go#L167: 		return fmt.Errorf("can't decode messages.editChatAbout#def60797 to nil")
		tl_messages_edit_chat_about_gen.go#L172: 			return fmt.Errorf("unable to decode messages.editChatAbout#def60797: field peer: %w", err)
		tl_messages_edit_chat_about_gen.go#L179: 			return fmt.Errorf("unable to decode messages.editChatAbout#def60797: field about: %w", err)
		tl_messages_edit_chat_admin_gen.go#L140: 		return fmt.Errorf("can't encode messages.editChatAdmin#a85bd1c2 as nil")
		tl_messages_edit_chat_admin_gen.go#L149: 		return fmt.Errorf("can't encode messages.editChatAdmin#a85bd1c2 as nil")
		tl_messages_edit_chat_admin_gen.go#L153: 		return fmt.Errorf("unable to encode messages.editChatAdmin#a85bd1c2: field user_id is nil")
		tl_messages_edit_chat_admin_gen.go#L156: 		return fmt.Errorf("unable to encode messages.editChatAdmin#a85bd1c2: field user_id: %w", err)
		tl_messages_edit_chat_admin_gen.go#L165: 		return fmt.Errorf("can't decode messages.editChatAdmin#a85bd1c2 to nil")
		tl_messages_edit_chat_admin_gen.go#L168: 		return fmt.Errorf("unable to decode messages.editChatAdmin#a85bd1c2: %w", err)
		tl_messages_edit_chat_admin_gen.go#L176: 		return fmt.Errorf("can't decode messages.editChatAdmin#a85bd1c2 to nil")
		tl_messages_edit_chat_admin_gen.go#L181: 			return fmt.Errorf("unable to decode messages.editChatAdmin#a85bd1c2: field chat_id: %w", err)
		tl_messages_edit_chat_admin_gen.go#L188: 			return fmt.Errorf("unable to decode messages.editChatAdmin#a85bd1c2: field user_id: %w", err)
		tl_messages_edit_chat_admin_gen.go#L195: 			return fmt.Errorf("unable to decode messages.editChatAdmin#a85bd1c2: field is_admin: %w", err)
		tl_messages_edit_chat_default_banned_rights_gen.go#L129: 		return fmt.Errorf("can't encode messages.editChatDefaultBannedRights#a5866b41 as nil")
		tl_messages_edit_chat_default_banned_rights_gen.go#L138: 		return fmt.Errorf("can't encode messages.editChatDefaultBannedRights#a5866b41 as nil")
		tl_messages_edit_chat_default_banned_rights_gen.go#L141: 		return fmt.Errorf("unable to encode messages.editChatDefaultBannedRights#a5866b41: field peer is nil")
		tl_messages_edit_chat_default_banned_rights_gen.go#L144: 		return fmt.Errorf("unable to encode messages.editChatDefaultBannedRights#a5866b41: field peer: %w", err)
		tl_messages_edit_chat_default_banned_rights_gen.go#L147: 		return fmt.Errorf("unable to encode messages.editChatDefaultBannedRights#a5866b41: field banned_rights: %w", err)
		tl_messages_edit_chat_default_banned_rights_gen.go#L155: 		return fmt.Errorf("can't decode messages.editChatDefaultBannedRights#a5866b41 to nil")
		tl_messages_edit_chat_default_banned_rights_gen.go#L158: 		return fmt.Errorf("unable to decode messages.editChatDefaultBannedRights#a5866b41: %w", err)
		tl_messages_edit_chat_default_banned_rights_gen.go#L166: 		return fmt.Errorf("can't decode messages.editChatDefaultBannedRights#a5866b41 to nil")
		tl_messages_edit_chat_default_banned_rights_gen.go#L171: 			return fmt.Errorf("unable to decode messages.editChatDefaultBannedRights#a5866b41: field peer: %w", err)
		tl_messages_edit_chat_default_banned_rights_gen.go#L177: 			return fmt.Errorf("unable to decode messages.editChatDefaultBannedRights#a5866b41: field banned_rights: %w", err)
		tl_messages_edit_chat_photo_gen.go#L126: 		return fmt.Errorf("can't encode messages.editChatPhoto#35ddd674 as nil")
		tl_messages_edit_chat_photo_gen.go#L135: 		return fmt.Errorf("can't encode messages.editChatPhoto#35ddd674 as nil")
		tl_messages_edit_chat_photo_gen.go#L139: 		return fmt.Errorf("unable to encode messages.editChatPhoto#35ddd674: field photo is nil")
		tl_messages_edit_chat_photo_gen.go#L142: 		return fmt.Errorf("unable to encode messages.editChatPhoto#35ddd674: field photo: %w", err)
		tl_messages_edit_chat_photo_gen.go#L150: 		return fmt.Errorf("can't decode messages.editChatPhoto#35ddd674 to nil")
		tl_messages_edit_chat_photo_gen.go#L153: 		return fmt.Errorf("unable to decode messages.editChatPhoto#35ddd674: %w", err)
		tl_messages_edit_chat_photo_gen.go#L161: 		return fmt.Errorf("can't decode messages.editChatPhoto#35ddd674 to nil")
		tl_messages_edit_chat_photo_gen.go#L166: 			return fmt.Errorf("unable to decode messages.editChatPhoto#35ddd674: field chat_id: %w", err)
		tl_messages_edit_chat_photo_gen.go#L173: 			return fmt.Errorf("unable to decode messages.editChatPhoto#35ddd674: field photo: %w", err)
		tl_messages_edit_chat_title_gen.go#L126: 		return fmt.Errorf("can't encode messages.editChatTitle#73783ffd as nil")
		tl_messages_edit_chat_title_gen.go#L135: 		return fmt.Errorf("can't encode messages.editChatTitle#73783ffd as nil")
		tl_messages_edit_chat_title_gen.go#L145: 		return fmt.Errorf("can't decode messages.editChatTitle#73783ffd to nil")
		tl_messages_edit_chat_title_gen.go#L148: 		return fmt.Errorf("unable to decode messages.editChatTitle#73783ffd: %w", err)
		tl_messages_edit_chat_title_gen.go#L156: 		return fmt.Errorf("can't decode messages.editChatTitle#73783ffd to nil")
		tl_messages_edit_chat_title_gen.go#L161: 			return fmt.Errorf("unable to decode messages.editChatTitle#73783ffd: field chat_id: %w", err)
		tl_messages_edit_chat_title_gen.go#L168: 			return fmt.Errorf("unable to decode messages.editChatTitle#73783ffd: field title: %w", err)
		tl_messages_edit_exported_chat_invite_gen.go#L234: 		return fmt.Errorf("can't encode messages.editExportedChatInvite#bdca2f75 as nil")
		tl_messages_edit_exported_chat_invite_gen.go#L243: 		return fmt.Errorf("can't encode messages.editExportedChatInvite#bdca2f75 as nil")
		tl_messages_edit_exported_chat_invite_gen.go#L247: 		return fmt.Errorf("unable to encode messages.editExportedChatInvite#bdca2f75: field flags: %w", err)
		tl_messages_edit_exported_chat_invite_gen.go#L250: 		return fmt.Errorf("unable to encode messages.editExportedChatInvite#bdca2f75: field peer is nil")
		tl_messages_edit_exported_chat_invite_gen.go#L253: 		return fmt.Errorf("unable to encode messages.editExportedChatInvite#bdca2f75: field peer: %w", err)
		tl_messages_edit_exported_chat_invite_gen.go#L274: 		return fmt.Errorf("can't decode messages.editExportedChatInvite#bdca2f75 to nil")
		tl_messages_edit_exported_chat_invite_gen.go#L277: 		return fmt.Errorf("unable to decode messages.editExportedChatInvite#bdca2f75: %w", err)
		tl_messages_edit_exported_chat_invite_gen.go#L285: 		return fmt.Errorf("can't decode messages.editExportedChatInvite#bdca2f75 to nil")
		tl_messages_edit_exported_chat_invite_gen.go#L289: 			return fmt.Errorf("unable to decode messages.editExportedChatInvite#bdca2f75: field flags: %w", err)
		tl_messages_edit_exported_chat_invite_gen.go#L296: 			return fmt.Errorf("unable to decode messages.editExportedChatInvite#bdca2f75: field peer: %w", err)
		tl_messages_edit_exported_chat_invite_gen.go#L303: 			return fmt.Errorf("unable to decode messages.editExportedChatInvite#bdca2f75: field link: %w", err)
		tl_messages_edit_exported_chat_invite_gen.go#L310: 			return fmt.Errorf("unable to decode messages.editExportedChatInvite#bdca2f75: field expire_date: %w", err)
		tl_messages_edit_exported_chat_invite_gen.go#L317: 			return fmt.Errorf("unable to decode messages.editExportedChatInvite#bdca2f75: field usage_limit: %w", err)
		tl_messages_edit_exported_chat_invite_gen.go#L324: 			return fmt.Errorf("unable to decode messages.editExportedChatInvite#bdca2f75: field request_needed: %w", err)
		tl_messages_edit_exported_chat_invite_gen.go#L331: 			return fmt.Errorf("unable to decode messages.editExportedChatInvite#bdca2f75: field title: %w", err)
		tl_messages_edit_inline_bot_message_gen.go#L241: 		return fmt.Errorf("can't encode messages.editInlineBotMessage#83557dba as nil")
		tl_messages_edit_inline_bot_message_gen.go#L250: 		return fmt.Errorf("can't encode messages.editInlineBotMessage#83557dba as nil")
		tl_messages_edit_inline_bot_message_gen.go#L254: 		return fmt.Errorf("unable to encode messages.editInlineBotMessage#83557dba: field flags: %w", err)
		tl_messages_edit_inline_bot_message_gen.go#L257: 		return fmt.Errorf("unable to encode messages.editInlineBotMessage#83557dba: field id is nil")
		tl_messages_edit_inline_bot_message_gen.go#L260: 		return fmt.Errorf("unable to encode messages.editInlineBotMessage#83557dba: field id: %w", err)
		tl_messages_edit_inline_bot_message_gen.go#L267: 			return fmt.Errorf("unable to encode messages.editInlineBotMessage#83557dba: field media is nil")
		tl_messages_edit_inline_bot_message_gen.go#L270: 			return fmt.Errorf("unable to encode messages.editInlineBotMessage#83557dba: field media: %w", err)
		tl_messages_edit_inline_bot_message_gen.go#L275: 			return fmt.Errorf("unable to encode messages.editInlineBotMessage#83557dba: field reply_markup is nil")
		tl_messages_edit_inline_bot_message_gen.go#L278: 			return fmt.Errorf("unable to encode messages.editInlineBotMessage#83557dba: field reply_markup: %w", err)
		tl_messages_edit_inline_bot_message_gen.go#L285: 				return fmt.Errorf("unable to encode messages.editInlineBotMessage#83557dba: field entities element with index %d is nil", idx)
		tl_messages_edit_inline_bot_message_gen.go#L288: 				return fmt.Errorf("unable to encode messages.editInlineBotMessage#83557dba: field entities element with index %d: %w", idx, err)
		tl_messages_edit_inline_bot_message_gen.go#L298: 		return fmt.Errorf("can't decode messages.editInlineBotMessage#83557dba to nil")
		tl_messages_edit_inline_bot_message_gen.go#L301: 		return fmt.Errorf("unable to decode messages.editInlineBotMessage#83557dba: %w", err)
		tl_messages_edit_inline_bot_message_gen.go#L309: 		return fmt.Errorf("can't decode messages.editInlineBotMessage#83557dba to nil")
		tl_messages_edit_inline_bot_message_gen.go#L313: 			return fmt.Errorf("unable to decode messages.editInlineBotMessage#83557dba: field flags: %w", err)
		tl_messages_edit_inline_bot_message_gen.go#L321: 			return fmt.Errorf("unable to decode messages.editInlineBotMessage#83557dba: field id: %w", err)
		tl_messages_edit_inline_bot_message_gen.go#L328: 			return fmt.Errorf("unable to decode messages.editInlineBotMessage#83557dba: field message: %w", err)
		tl_messages_edit_inline_bot_message_gen.go#L335: 			return fmt.Errorf("unable to decode messages.editInlineBotMessage#83557dba: field media: %w", err)
		tl_messages_edit_inline_bot_message_gen.go#L342: 			return fmt.Errorf("unable to decode messages.editInlineBotMessage#83557dba: field reply_markup: %w", err)
		tl_messages_edit_inline_bot_message_gen.go#L349: 			return fmt.Errorf("unable to decode messages.editInlineBotMessage#83557dba: field entities: %w", err)
		tl_messages_edit_inline_bot_message_gen.go#L358: 				return fmt.Errorf("unable to decode messages.editInlineBotMessage#83557dba: field entities: %w", err)
		tl_messages_edit_message_gen.go#L275: 		return fmt.Errorf("can't encode messages.editMessage#48f71778 as nil")
		tl_messages_edit_message_gen.go#L284: 		return fmt.Errorf("can't encode messages.editMessage#48f71778 as nil")
		tl_messages_edit_message_gen.go#L288: 		return fmt.Errorf("unable to encode messages.editMessage#48f71778: field flags: %w", err)
		tl_messages_edit_message_gen.go#L291: 		return fmt.Errorf("unable to encode messages.editMessage#48f71778: field peer is nil")
		tl_messages_edit_message_gen.go#L294: 		return fmt.Errorf("unable to encode messages.editMessage#48f71778: field peer: %w", err)
		tl_messages_edit_message_gen.go#L302: 			return fmt.Errorf("unable to encode messages.editMessage#48f71778: field media is nil")
		tl_messages_edit_message_gen.go#L305: 			return fmt.Errorf("unable to encode messages.editMessage#48f71778: field media: %w", err)
		tl_messages_edit_message_gen.go#L310: 			return fmt.Errorf("unable to encode messages.editMessage#48f71778: field reply_markup is nil")
		tl_messages_edit_message_gen.go#L313: 			return fmt.Errorf("unable to encode messages.editMessage#48f71778: field reply_markup: %w", err)
		tl_messages_edit_message_gen.go#L320: 				return fmt.Errorf("unable to encode messages.editMessage#48f71778: field entities element with index %d is nil", idx)
		tl_messages_edit_message_gen.go#L323: 				return fmt.Errorf("unable to encode messages.editMessage#48f71778: field entities element with index %d: %w", idx, err)
		tl_messages_edit_message_gen.go#L336: 		return fmt.Errorf("can't decode messages.editMessage#48f71778 to nil")
		tl_messages_edit_message_gen.go#L339: 		return fmt.Errorf("unable to decode messages.editMessage#48f71778: %w", err)
		tl_messages_edit_message_gen.go#L347: 		return fmt.Errorf("can't decode messages.editMessage#48f71778 to nil")
		tl_messages_edit_message_gen.go#L351: 			return fmt.Errorf("unable to decode messages.editMessage#48f71778: field flags: %w", err)
		tl_messages_edit_message_gen.go#L359: 			return fmt.Errorf("unable to decode messages.editMessage#48f71778: field peer: %w", err)
		tl_messages_edit_message_gen.go#L366: 			return fmt.Errorf("unable to decode messages.editMessage#48f71778: field id: %w", err)
		tl_messages_edit_message_gen.go#L373: 			return fmt.Errorf("unable to decode messages.editMessage#48f71778: field message: %w", err)
		tl_messages_edit_message_gen.go#L380: 			return fmt.Errorf("unable to decode messages.editMessage#48f71778: field media: %w", err)
		tl_messages_edit_message_gen.go#L387: 			return fmt.Errorf("unable to decode messages.editMessage#48f71778: field reply_markup: %w", err)
		tl_messages_edit_message_gen.go#L394: 			return fmt.Errorf("unable to decode messages.editMessage#48f71778: field entities: %w", err)
		tl_messages_edit_message_gen.go#L403: 				return fmt.Errorf("unable to decode messages.editMessage#48f71778: field entities: %w", err)
		tl_messages_edit_message_gen.go#L411: 			return fmt.Errorf("unable to decode messages.editMessage#48f71778: field schedule_date: %w", err)
		tl_messages_emoji_groups_gen.go#L106: 		return fmt.Errorf("can't encode messages.emojiGroupsNotModified#6fb4ad87 as nil")
		tl_messages_emoji_groups_gen.go#L115: 		return fmt.Errorf("can't encode messages.emojiGroupsNotModified#6fb4ad87 as nil")
		tl_messages_emoji_groups_gen.go#L123: 		return fmt.Errorf("can't decode messages.emojiGroupsNotModified#6fb4ad87 to nil")
		tl_messages_emoji_groups_gen.go#L126: 		return fmt.Errorf("unable to decode messages.emojiGroupsNotModified#6fb4ad87: %w", err)
		tl_messages_emoji_groups_gen.go#L134: 		return fmt.Errorf("can't decode messages.emojiGroupsNotModified#6fb4ad87 to nil")
		tl_messages_emoji_groups_gen.go#L245: 		return fmt.Errorf("can't encode messages.emojiGroups#881fb94b as nil")
		tl_messages_emoji_groups_gen.go#L254: 		return fmt.Errorf("can't encode messages.emojiGroups#881fb94b as nil")
		tl_messages_emoji_groups_gen.go#L260: 			return fmt.Errorf("unable to encode messages.emojiGroups#881fb94b: field groups element with index %d: %w", idx, err)
		tl_messages_emoji_groups_gen.go#L269: 		return fmt.Errorf("can't decode messages.emojiGroups#881fb94b to nil")
		tl_messages_emoji_groups_gen.go#L272: 		return fmt.Errorf("unable to decode messages.emojiGroups#881fb94b: %w", err)
		tl_messages_emoji_groups_gen.go#L280: 		return fmt.Errorf("can't decode messages.emojiGroups#881fb94b to nil")
		tl_messages_emoji_groups_gen.go#L285: 			return fmt.Errorf("unable to decode messages.emojiGroups#881fb94b: field hash: %w", err)
		tl_messages_emoji_groups_gen.go#L292: 			return fmt.Errorf("unable to decode messages.emojiGroups#881fb94b: field groups: %w", err)
		tl_messages_emoji_groups_gen.go#L301: 				return fmt.Errorf("unable to decode messages.emojiGroups#881fb94b: field groups: %w", err)
		tl_messages_emoji_groups_gen.go#L386: 			return nil, fmt.Errorf("unable to decode MessagesEmojiGroupsClass: %w", err)
		tl_messages_emoji_groups_gen.go#L393: 			return nil, fmt.Errorf("unable to decode MessagesEmojiGroupsClass: %w", err)
		tl_messages_emoji_groups_gen.go#L397: 		return nil, fmt.Errorf("unable to decode MessagesEmojiGroupsClass: %w", bin.NewUnexpectedID(id))
		tl_messages_emoji_groups_gen.go#L409: 		return fmt.Errorf("unable to decode MessagesEmojiGroupsBox to nil")
		tl_messages_emoji_groups_gen.go#L413: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_messages_emoji_groups_gen.go#L422: 		return fmt.Errorf("unable to encode MessagesEmojiGroupsClass as nil")
		tl_messages_export_chat_invite_gen.go#L220: 		return fmt.Errorf("can't encode messages.exportChatInvite#a02ce5d5 as nil")
		tl_messages_export_chat_invite_gen.go#L229: 		return fmt.Errorf("can't encode messages.exportChatInvite#a02ce5d5 as nil")
		tl_messages_export_chat_invite_gen.go#L233: 		return fmt.Errorf("unable to encode messages.exportChatInvite#a02ce5d5: field flags: %w", err)
		tl_messages_export_chat_invite_gen.go#L236: 		return fmt.Errorf("unable to encode messages.exportChatInvite#a02ce5d5: field peer is nil")
		tl_messages_export_chat_invite_gen.go#L239: 		return fmt.Errorf("unable to encode messages.exportChatInvite#a02ce5d5: field peer: %w", err)
		tl_messages_export_chat_invite_gen.go#L256: 		return fmt.Errorf("can't decode messages.exportChatInvite#a02ce5d5 to nil")
		tl_messages_export_chat_invite_gen.go#L259: 		return fmt.Errorf("unable to decode messages.exportChatInvite#a02ce5d5: %w", err)
		tl_messages_export_chat_invite_gen.go#L267: 		return fmt.Errorf("can't decode messages.exportChatInvite#a02ce5d5 to nil")
		tl_messages_export_chat_invite_gen.go#L271: 			return fmt.Errorf("unable to decode messages.exportChatInvite#a02ce5d5: field flags: %w", err)
		tl_messages_export_chat_invite_gen.go#L279: 			return fmt.Errorf("unable to decode messages.exportChatInvite#a02ce5d5: field peer: %w", err)
		tl_messages_export_chat_invite_gen.go#L286: 			return fmt.Errorf("unable to decode messages.exportChatInvite#a02ce5d5: field expire_date: %w", err)
		tl_messages_export_chat_invite_gen.go#L293: 			return fmt.Errorf("unable to decode messages.exportChatInvite#a02ce5d5: field usage_limit: %w", err)
		tl_messages_export_chat_invite_gen.go#L300: 			return fmt.Errorf("unable to decode messages.exportChatInvite#a02ce5d5: field title: %w", err)
		tl_messages_exported_chat_invite_gen.go#L131: 		return fmt.Errorf("can't encode messages.exportedChatInvite#1871be50 as nil")
		tl_messages_exported_chat_invite_gen.go#L140: 		return fmt.Errorf("can't encode messages.exportedChatInvite#1871be50 as nil")
		tl_messages_exported_chat_invite_gen.go#L143: 		return fmt.Errorf("unable to encode messages.exportedChatInvite#1871be50: field invite is nil")
		tl_messages_exported_chat_invite_gen.go#L146: 		return fmt.Errorf("unable to encode messages.exportedChatInvite#1871be50: field invite: %w", err)
		tl_messages_exported_chat_invite_gen.go#L151: 			return fmt.Errorf("unable to encode messages.exportedChatInvite#1871be50: field users element with index %d is nil", idx)
		tl_messages_exported_chat_invite_gen.go#L154: 			return fmt.Errorf("unable to encode messages.exportedChatInvite#1871be50: field users element with index %d: %w", idx, err)
		tl_messages_exported_chat_invite_gen.go#L163: 		return fmt.Errorf("can't decode messages.exportedChatInvite#1871be50 to nil")
		tl_messages_exported_chat_invite_gen.go#L166: 		return fmt.Errorf("unable to decode messages.exportedChatInvite#1871be50: %w", err)
		tl_messages_exported_chat_invite_gen.go#L174: 		return fmt.Errorf("can't decode messages.exportedChatInvite#1871be50 to nil")
		tl_messages_exported_chat_invite_gen.go#L179: 			return fmt.Errorf("unable to decode messages.exportedChatInvite#1871be50: field invite: %w", err)
		tl_messages_exported_chat_invite_gen.go#L186: 			return fmt.Errorf("unable to decode messages.exportedChatInvite#1871be50: field users: %w", err)
		tl_messages_exported_chat_invite_gen.go#L195: 				return fmt.Errorf("unable to decode messages.exportedChatInvite#1871be50: field users: %w", err)
		tl_messages_exported_chat_invite_gen.go#L332: 		return fmt.Errorf("can't encode messages.exportedChatInviteReplaced#222600ef as nil")
		tl_messages_exported_chat_invite_gen.go#L341: 		return fmt.Errorf("can't encode messages.exportedChatInviteReplaced#222600ef as nil")
		tl_messages_exported_chat_invite_gen.go#L344: 		return fmt.Errorf("unable to encode messages.exportedChatInviteReplaced#222600ef: field invite is nil")
		tl_messages_exported_chat_invite_gen.go#L347: 		return fmt.Errorf("unable to encode messages.exportedChatInviteReplaced#222600ef: field invite: %w", err)
		tl_messages_exported_chat_invite_gen.go#L350: 		return fmt.Errorf("unable to encode messages.exportedChatInviteReplaced#222600ef: field new_invite is nil")
		tl_messages_exported_chat_invite_gen.go#L353: 		return fmt.Errorf("unable to encode messages.exportedChatInviteReplaced#222600ef: field new_invite: %w", err)
		tl_messages_exported_chat_invite_gen.go#L358: 			return fmt.Errorf("unable to encode messages.exportedChatInviteReplaced#222600ef: field users element with index %d is nil", idx)
		tl_messages_exported_chat_invite_gen.go#L361: 			return fmt.Errorf("unable to encode messages.exportedChatInviteReplaced#222600ef: field users element with index %d: %w", idx, err)
		tl_messages_exported_chat_invite_gen.go#L370: 		return fmt.Errorf("can't decode messages.exportedChatInviteReplaced#222600ef to nil")
		tl_messages_exported_chat_invite_gen.go#L373: 		return fmt.Errorf("unable to decode messages.exportedChatInviteReplaced#222600ef: %w", err)
		tl_messages_exported_chat_invite_gen.go#L381: 		return fmt.Errorf("can't decode messages.exportedChatInviteReplaced#222600ef to nil")
		tl_messages_exported_chat_invite_gen.go#L386: 			return fmt.Errorf("unable to decode messages.exportedChatInviteReplaced#222600ef: field invite: %w", err)
		tl_messages_exported_chat_invite_gen.go#L393: 			return fmt.Errorf("unable to decode messages.exportedChatInviteReplaced#222600ef: field new_invite: %w", err)
		tl_messages_exported_chat_invite_gen.go#L400: 			return fmt.Errorf("unable to decode messages.exportedChatInviteReplaced#222600ef: field users: %w", err)
		tl_messages_exported_chat_invite_gen.go#L409: 				return fmt.Errorf("unable to decode messages.exportedChatInviteReplaced#222600ef: field users: %w", err)
		tl_messages_exported_chat_invite_gen.go#L502: 			return nil, fmt.Errorf("unable to decode MessagesExportedChatInviteClass: %w", err)
		tl_messages_exported_chat_invite_gen.go#L509: 			return nil, fmt.Errorf("unable to decode MessagesExportedChatInviteClass: %w", err)
		tl_messages_exported_chat_invite_gen.go#L513: 		return nil, fmt.Errorf("unable to decode MessagesExportedChatInviteClass: %w", bin.NewUnexpectedID(id))
		tl_messages_exported_chat_invite_gen.go#L525: 		return fmt.Errorf("unable to decode MessagesExportedChatInviteBox to nil")
		tl_messages_exported_chat_invite_gen.go#L529: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_messages_exported_chat_invite_gen.go#L538: 		return fmt.Errorf("unable to encode MessagesExportedChatInviteClass as nil")
		tl_messages_exported_chat_invites_gen.go#L137: 		return fmt.Errorf("can't encode messages.exportedChatInvites#bdc62dcc as nil")
		tl_messages_exported_chat_invites_gen.go#L146: 		return fmt.Errorf("can't encode messages.exportedChatInvites#bdc62dcc as nil")
		tl_messages_exported_chat_invites_gen.go#L152: 			return fmt.Errorf("unable to encode messages.exportedChatInvites#bdc62dcc: field invites element with index %d is nil", idx)
		tl_messages_exported_chat_invites_gen.go#L155: 			return fmt.Errorf("unable to encode messages.exportedChatInvites#bdc62dcc: field invites element with index %d: %w", idx, err)
		tl_messages_exported_chat_invites_gen.go#L161: 			return fmt.Errorf("unable to encode messages.exportedChatInvites#bdc62dcc: field users element with index %d is nil", idx)
		tl_messages_exported_chat_invites_gen.go#L164: 			return fmt.Errorf("unable to encode messages.exportedChatInvites#bdc62dcc: field users element with index %d: %w", idx, err)
		tl_messages_exported_chat_invites_gen.go#L173: 		return fmt.Errorf("can't decode messages.exportedChatInvites#bdc62dcc to nil")
		tl_messages_exported_chat_invites_gen.go#L176: 		return fmt.Errorf("unable to decode messages.exportedChatInvites#bdc62dcc: %w", err)
		tl_messages_exported_chat_invites_gen.go#L184: 		return fmt.Errorf("can't decode messages.exportedChatInvites#bdc62dcc to nil")
		tl_messages_exported_chat_invites_gen.go#L189: 			return fmt.Errorf("unable to decode messages.exportedChatInvites#bdc62dcc: field count: %w", err)
		tl_messages_exported_chat_invites_gen.go#L196: 			return fmt.Errorf("unable to decode messages.exportedChatInvites#bdc62dcc: field invites: %w", err)
		tl_messages_exported_chat_invites_gen.go#L205: 				return fmt.Errorf("unable to decode messages.exportedChatInvites#bdc62dcc: field invites: %w", err)
		tl_messages_exported_chat_invites_gen.go#L213: 			return fmt.Errorf("unable to decode messages.exportedChatInvites#bdc62dcc: field users: %w", err)
		tl_messages_exported_chat_invites_gen.go#L222: 				return fmt.Errorf("unable to decode messages.exportedChatInvites#bdc62dcc: field users: %w", err)
		tl_messages_fave_sticker_gen.go#L126: 		return fmt.Errorf("can't encode messages.faveSticker#b9ffc55b as nil")
		tl_messages_fave_sticker_gen.go#L135: 		return fmt.Errorf("can't encode messages.faveSticker#b9ffc55b as nil")
		tl_messages_fave_sticker_gen.go#L138: 		return fmt.Errorf("unable to encode messages.faveSticker#b9ffc55b: field id is nil")
		tl_messages_fave_sticker_gen.go#L141: 		return fmt.Errorf("unable to encode messages.faveSticker#b9ffc55b: field id: %w", err)
		tl_messages_fave_sticker_gen.go#L150: 		return fmt.Errorf("can't decode messages.faveSticker#b9ffc55b to nil")
		tl_messages_fave_sticker_gen.go#L153: 		return fmt.Errorf("unable to decode messages.faveSticker#b9ffc55b: %w", err)
		tl_messages_fave_sticker_gen.go#L161: 		return fmt.Errorf("can't decode messages.faveSticker#b9ffc55b to nil")
		tl_messages_fave_sticker_gen.go#L166: 			return fmt.Errorf("unable to decode messages.faveSticker#b9ffc55b: field id: %w", err)
		tl_messages_fave_sticker_gen.go#L173: 			return fmt.Errorf("unable to decode messages.faveSticker#b9ffc55b: field unfave: %w", err)
		tl_messages_faved_stickers_gen.go#L103: 		return fmt.Errorf("can't encode messages.favedStickersNotModified#9e8fa6d3 as nil")
		tl_messages_faved_stickers_gen.go#L112: 		return fmt.Errorf("can't encode messages.favedStickersNotModified#9e8fa6d3 as nil")
		tl_messages_faved_stickers_gen.go#L120: 		return fmt.Errorf("can't decode messages.favedStickersNotModified#9e8fa6d3 to nil")
		tl_messages_faved_stickers_gen.go#L123: 		return fmt.Errorf("unable to decode messages.favedStickersNotModified#9e8fa6d3: %w", err)
		tl_messages_faved_stickers_gen.go#L131: 		return fmt.Errorf("can't decode messages.favedStickersNotModified#9e8fa6d3 to nil")
		tl_messages_faved_stickers_gen.go#L247: 		return fmt.Errorf("can't encode messages.favedStickers#2cb51097 as nil")
		tl_messages_faved_stickers_gen.go#L256: 		return fmt.Errorf("can't encode messages.favedStickers#2cb51097 as nil")
		tl_messages_faved_stickers_gen.go#L262: 			return fmt.Errorf("unable to encode messages.favedStickers#2cb51097: field packs element with index %d: %w", idx, err)
		tl_messages_faved_stickers_gen.go#L268: 			return fmt.Errorf("unable to encode messages.favedStickers#2cb51097: field stickers element with index %d is nil", idx)
		tl_messages_faved_stickers_gen.go#L271: 			return fmt.Errorf("unable to encode messages.favedStickers#2cb51097: field stickers element with index %d: %w", idx, err)
		tl_messages_faved_stickers_gen.go#L280: 		return fmt.Errorf("can't decode messages.favedStickers#2cb51097 to nil")
		tl_messages_faved_stickers_gen.go#L283: 		return fmt.Errorf("unable to decode messages.favedStickers#2cb51097: %w", err)
		tl_messages_faved_stickers_gen.go#L291: 		return fmt.Errorf("can't decode messages.favedStickers#2cb51097 to nil")
		tl_messages_faved_stickers_gen.go#L296: 			return fmt.Errorf("unable to decode messages.favedStickers#2cb51097: field hash: %w", err)
		tl_messages_faved_stickers_gen.go#L303: 			return fmt.Errorf("unable to decode messages.favedStickers#2cb51097: field packs: %w", err)
		tl_messages_faved_stickers_gen.go#L312: 				return fmt.Errorf("unable to decode messages.favedStickers#2cb51097: field packs: %w", err)
		tl_messages_faved_stickers_gen.go#L320: 			return fmt.Errorf("unable to decode messages.favedStickers#2cb51097: field stickers: %w", err)
		tl_messages_faved_stickers_gen.go#L329: 				return fmt.Errorf("unable to decode messages.favedStickers#2cb51097: field stickers: %w", err)
		tl_messages_faved_stickers_gen.go#L427: 			return nil, fmt.Errorf("unable to decode MessagesFavedStickersClass: %w", err)
		tl_messages_faved_stickers_gen.go#L434: 			return nil, fmt.Errorf("unable to decode MessagesFavedStickersClass: %w", err)
		tl_messages_faved_stickers_gen.go#L438: 		return nil, fmt.Errorf("unable to decode MessagesFavedStickersClass: %w", bin.NewUnexpectedID(id))
		tl_messages_faved_stickers_gen.go#L450: 		return fmt.Errorf("unable to decode MessagesFavedStickersBox to nil")
		tl_messages_faved_stickers_gen.go#L454: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_messages_faved_stickers_gen.go#L463: 		return fmt.Errorf("unable to encode MessagesFavedStickersClass as nil")
		tl_messages_featured_stickers_gen.go#L120: 		return fmt.Errorf("can't encode messages.featuredStickersNotModified#c6dc0c66 as nil")
		tl_messages_featured_stickers_gen.go#L129: 		return fmt.Errorf("can't encode messages.featuredStickersNotModified#c6dc0c66 as nil")
		tl_messages_featured_stickers_gen.go#L138: 		return fmt.Errorf("can't decode messages.featuredStickersNotModified#c6dc0c66 to nil")
		tl_messages_featured_stickers_gen.go#L141: 		return fmt.Errorf("unable to decode messages.featuredStickersNotModified#c6dc0c66: %w", err)
		tl_messages_featured_stickers_gen.go#L149: 		return fmt.Errorf("can't decode messages.featuredStickersNotModified#c6dc0c66 to nil")
		tl_messages_featured_stickers_gen.go#L154: 			return fmt.Errorf("unable to decode messages.featuredStickersNotModified#c6dc0c66: field count: %w", err)
		tl_messages_featured_stickers_gen.go#L318: 		return fmt.Errorf("can't encode messages.featuredStickers#be382906 as nil")
		tl_messages_featured_stickers_gen.go#L327: 		return fmt.Errorf("can't encode messages.featuredStickers#be382906 as nil")
		tl_messages_featured_stickers_gen.go#L331: 		return fmt.Errorf("unable to encode messages.featuredStickers#be382906: field flags: %w", err)
		tl_messages_featured_stickers_gen.go#L338: 			return fmt.Errorf("unable to encode messages.featuredStickers#be382906: field sets element with index %d is nil", idx)
		tl_messages_featured_stickers_gen.go#L341: 			return fmt.Errorf("unable to encode messages.featuredStickers#be382906: field sets element with index %d: %w", idx, err)
		tl_messages_featured_stickers_gen.go#L354: 		return fmt.Errorf("can't decode messages.featuredStickers#be382906 to nil")
		tl_messages_featured_stickers_gen.go#L357: 		return fmt.Errorf("unable to decode messages.featuredStickers#be382906: %w", err)
		tl_messages_featured_stickers_gen.go#L365: 		return fmt.Errorf("can't decode messages.featuredStickers#be382906 to nil")
		tl_messages_featured_stickers_gen.go#L369: 			return fmt.Errorf("unable to decode messages.featuredStickers#be382906: field flags: %w", err)
		tl_messages_featured_stickers_gen.go#L376: 			return fmt.Errorf("unable to decode messages.featuredStickers#be382906: field hash: %w", err)
		tl_messages_featured_stickers_gen.go#L383: 			return fmt.Errorf("unable to decode messages.featuredStickers#be382906: field count: %w", err)
		tl_messages_featured_stickers_gen.go#L390: 			return fmt.Errorf("unable to decode messages.featuredStickers#be382906: field sets: %w", err)
		tl_messages_featured_stickers_gen.go#L399: 				return fmt.Errorf("unable to decode messages.featuredStickers#be382906: field sets: %w", err)
		tl_messages_featured_stickers_gen.go#L407: 			return fmt.Errorf("unable to decode messages.featuredStickers#be382906: field unread: %w", err)
		tl_messages_featured_stickers_gen.go#L416: 				return fmt.Errorf("unable to decode messages.featuredStickers#be382906: field unread: %w", err)
		tl_messages_featured_stickers_gen.go#L544: 			return nil, fmt.Errorf("unable to decode MessagesFeaturedStickersClass: %w", err)
		tl_messages_featured_stickers_gen.go#L551: 			return nil, fmt.Errorf("unable to decode MessagesFeaturedStickersClass: %w", err)
		tl_messages_featured_stickers_gen.go#L555: 		return nil, fmt.Errorf("unable to decode MessagesFeaturedStickersClass: %w", bin.NewUnexpectedID(id))
		tl_messages_featured_stickers_gen.go#L567: 		return fmt.Errorf("unable to decode MessagesFeaturedStickersBox to nil")
		tl_messages_featured_stickers_gen.go#L571: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_messages_featured_stickers_gen.go#L580: 		return fmt.Errorf("unable to encode MessagesFeaturedStickersClass as nil")
		tl_messages_filter_gen.go#L103: 		return fmt.Errorf("can't encode inputMessagesFilterEmpty#57e2f66c as nil")
		tl_messages_filter_gen.go#L112: 		return fmt.Errorf("can't encode inputMessagesFilterEmpty#57e2f66c as nil")
		tl_messages_filter_gen.go#L120: 		return fmt.Errorf("can't decode inputMessagesFilterEmpty#57e2f66c to nil")
		tl_messages_filter_gen.go#L123: 		return fmt.Errorf("unable to decode inputMessagesFilterEmpty#57e2f66c: %w", err)
		tl_messages_filter_gen.go#L131: 		return fmt.Errorf("can't decode inputMessagesFilterEmpty#57e2f66c to nil")
		tl_messages_filter_gen.go#L205: 		return fmt.Errorf("can't encode inputMessagesFilterPhotos#9609a51c as nil")
		tl_messages_filter_gen.go#L214: 		return fmt.Errorf("can't encode inputMessagesFilterPhotos#9609a51c as nil")
		tl_messages_filter_gen.go#L222: 		return fmt.Errorf("can't decode inputMessagesFilterPhotos#9609a51c to nil")
		tl_messages_filter_gen.go#L225: 		return fmt.Errorf("unable to decode inputMessagesFilterPhotos#9609a51c: %w", err)
		tl_messages_filter_gen.go#L233: 		return fmt.Errorf("can't decode inputMessagesFilterPhotos#9609a51c to nil")
		tl_messages_filter_gen.go#L307: 		return fmt.Errorf("can't encode inputMessagesFilterVideo#9fc00e65 as nil")
		tl_messages_filter_gen.go#L316: 		return fmt.Errorf("can't encode inputMessagesFilterVideo#9fc00e65 as nil")
		tl_messages_filter_gen.go#L324: 		return fmt.Errorf("can't decode inputMessagesFilterVideo#9fc00e65 to nil")
		tl_messages_filter_gen.go#L327: 		return fmt.Errorf("unable to decode inputMessagesFilterVideo#9fc00e65: %w", err)
		tl_messages_filter_gen.go#L335: 		return fmt.Errorf("can't decode inputMessagesFilterVideo#9fc00e65 to nil")
		tl_messages_filter_gen.go#L409: 		return fmt.Errorf("can't encode inputMessagesFilterPhotoVideo#56e9f0e4 as nil")
		tl_messages_filter_gen.go#L418: 		return fmt.Errorf("can't encode inputMessagesFilterPhotoVideo#56e9f0e4 as nil")
		tl_messages_filter_gen.go#L426: 		return fmt.Errorf("can't decode inputMessagesFilterPhotoVideo#56e9f0e4 to nil")
		tl_messages_filter_gen.go#L429: 		return fmt.Errorf("unable to decode inputMessagesFilterPhotoVideo#56e9f0e4: %w", err)
		tl_messages_filter_gen.go#L437: 		return fmt.Errorf("can't decode inputMessagesFilterPhotoVideo#56e9f0e4 to nil")
		tl_messages_filter_gen.go#L511: 		return fmt.Errorf("can't encode inputMessagesFilterDocument#9eddf188 as nil")
		tl_messages_filter_gen.go#L520: 		return fmt.Errorf("can't encode inputMessagesFilterDocument#9eddf188 as nil")
		tl_messages_filter_gen.go#L528: 		return fmt.Errorf("can't decode inputMessagesFilterDocument#9eddf188 to nil")
		tl_messages_filter_gen.go#L531: 		return fmt.Errorf("unable to decode inputMessagesFilterDocument#9eddf188: %w", err)
		tl_messages_filter_gen.go#L539: 		return fmt.Errorf("can't decode inputMessagesFilterDocument#9eddf188 to nil")
		tl_messages_filter_gen.go#L613: 		return fmt.Errorf("can't encode inputMessagesFilterUrl#7ef0dd87 as nil")
		tl_messages_filter_gen.go#L622: 		return fmt.Errorf("can't encode inputMessagesFilterUrl#7ef0dd87 as nil")
		tl_messages_filter_gen.go#L630: 		return fmt.Errorf("can't decode inputMessagesFilterUrl#7ef0dd87 to nil")
		tl_messages_filter_gen.go#L633: 		return fmt.Errorf("unable to decode inputMessagesFilterUrl#7ef0dd87: %w", err)
		tl_messages_filter_gen.go#L641: 		return fmt.Errorf("can't decode inputMessagesFilterUrl#7ef0dd87 to nil")
		tl_messages_filter_gen.go#L715: 		return fmt.Errorf("can't encode inputMessagesFilterGif#ffc86587 as nil")
		tl_messages_filter_gen.go#L724: 		return fmt.Errorf("can't encode inputMessagesFilterGif#ffc86587 as nil")
		tl_messages_filter_gen.go#L732: 		return fmt.Errorf("can't decode inputMessagesFilterGif#ffc86587 to nil")
		tl_messages_filter_gen.go#L735: 		return fmt.Errorf("unable to decode inputMessagesFilterGif#ffc86587: %w", err)
		tl_messages_filter_gen.go#L743: 		return fmt.Errorf("can't decode inputMessagesFilterGif#ffc86587 to nil")
		tl_messages_filter_gen.go#L817: 		return fmt.Errorf("can't encode inputMessagesFilterVoice#50f5c392 as nil")
		tl_messages_filter_gen.go#L826: 		return fmt.Errorf("can't encode inputMessagesFilterVoice#50f5c392 as nil")
		tl_messages_filter_gen.go#L834: 		return fmt.Errorf("can't decode inputMessagesFilterVoice#50f5c392 to nil")
		tl_messages_filter_gen.go#L837: 		return fmt.Errorf("unable to decode inputMessagesFilterVoice#50f5c392: %w", err)
		tl_messages_filter_gen.go#L845: 		return fmt.Errorf("can't decode inputMessagesFilterVoice#50f5c392 to nil")
		tl_messages_filter_gen.go#L919: 		return fmt.Errorf("can't encode inputMessagesFilterMusic#3751b49e as nil")
		tl_messages_filter_gen.go#L928: 		return fmt.Errorf("can't encode inputMessagesFilterMusic#3751b49e as nil")
		tl_messages_filter_gen.go#L936: 		return fmt.Errorf("can't decode inputMessagesFilterMusic#3751b49e to nil")
		tl_messages_filter_gen.go#L939: 		return fmt.Errorf("unable to decode inputMessagesFilterMusic#3751b49e: %w", err)
		tl_messages_filter_gen.go#L947: 		return fmt.Errorf("can't decode inputMessagesFilterMusic#3751b49e to nil")
		tl_messages_filter_gen.go#L1021: 		return fmt.Errorf("can't encode inputMessagesFilterChatPhotos#3a20ecb8 as nil")
		tl_messages_filter_gen.go#L1030: 		return fmt.Errorf("can't encode inputMessagesFilterChatPhotos#3a20ecb8 as nil")
		tl_messages_filter_gen.go#L1038: 		return fmt.Errorf("can't decode inputMessagesFilterChatPhotos#3a20ecb8 to nil")
		tl_messages_filter_gen.go#L1041: 		return fmt.Errorf("unable to decode inputMessagesFilterChatPhotos#3a20ecb8: %w", err)
		tl_messages_filter_gen.go#L1049: 		return fmt.Errorf("can't decode inputMessagesFilterChatPhotos#3a20ecb8 to nil")
		tl_messages_filter_gen.go#L1156: 		return fmt.Errorf("can't encode inputMessagesFilterPhoneCalls#80c99768 as nil")
		tl_messages_filter_gen.go#L1165: 		return fmt.Errorf("can't encode inputMessagesFilterPhoneCalls#80c99768 as nil")
		tl_messages_filter_gen.go#L1169: 		return fmt.Errorf("unable to encode inputMessagesFilterPhoneCalls#80c99768: field flags: %w", err)
		tl_messages_filter_gen.go#L1177: 		return fmt.Errorf("can't decode inputMessagesFilterPhoneCalls#80c99768 to nil")
		tl_messages_filter_gen.go#L1180: 		return fmt.Errorf("unable to decode inputMessagesFilterPhoneCalls#80c99768: %w", err)
		tl_messages_filter_gen.go#L1188: 		return fmt.Errorf("can't decode inputMessagesFilterPhoneCalls#80c99768 to nil")
		tl_messages_filter_gen.go#L1192: 			return fmt.Errorf("unable to decode inputMessagesFilterPhoneCalls#80c99768: field flags: %w", err)
		tl_messages_filter_gen.go#L1287: 		return fmt.Errorf("can't encode inputMessagesFilterRoundVoice#7a7c17a4 as nil")
		tl_messages_filter_gen.go#L1296: 		return fmt.Errorf("can't encode inputMessagesFilterRoundVoice#7a7c17a4 as nil")
		tl_messages_filter_gen.go#L1304: 		return fmt.Errorf("can't decode inputMessagesFilterRoundVoice#7a7c17a4 to nil")
		tl_messages_filter_gen.go#L1307: 		return fmt.Errorf("unable to decode inputMessagesFilterRoundVoice#7a7c17a4: %w", err)
		tl_messages_filter_gen.go#L1315: 		return fmt.Errorf("can't decode inputMessagesFilterRoundVoice#7a7c17a4 to nil")
		tl_messages_filter_gen.go#L1389: 		return fmt.Errorf("can't encode inputMessagesFilterRoundVideo#b549da53 as nil")
		tl_messages_filter_gen.go#L1398: 		return fmt.Errorf("can't encode inputMessagesFilterRoundVideo#b549da53 as nil")
		tl_messages_filter_gen.go#L1406: 		return fmt.Errorf("can't decode inputMessagesFilterRoundVideo#b549da53 to nil")
		tl_messages_filter_gen.go#L1409: 		return fmt.Errorf("unable to decode inputMessagesFilterRoundVideo#b549da53: %w", err)
		tl_messages_filter_gen.go#L1417: 		return fmt.Errorf("can't decode inputMessagesFilterRoundVideo#b549da53 to nil")
		tl_messages_filter_gen.go#L1494: 		return fmt.Errorf("can't encode inputMessagesFilterMyMentions#c1f8e69a as nil")
		tl_messages_filter_gen.go#L1503: 		return fmt.Errorf("can't encode inputMessagesFilterMyMentions#c1f8e69a as nil")
		tl_messages_filter_gen.go#L1511: 		return fmt.Errorf("can't decode inputMessagesFilterMyMentions#c1f8e69a to nil")
		tl_messages_filter_gen.go#L1514: 		return fmt.Errorf("unable to decode inputMessagesFilterMyMentions#c1f8e69a: %w", err)
		tl_messages_filter_gen.go#L1522: 		return fmt.Errorf("can't decode inputMessagesFilterMyMentions#c1f8e69a to nil")
		tl_messages_filter_gen.go#L1596: 		return fmt.Errorf("can't encode inputMessagesFilterGeo#e7026d0d as nil")
		tl_messages_filter_gen.go#L1605: 		return fmt.Errorf("can't encode inputMessagesFilterGeo#e7026d0d as nil")
		tl_messages_filter_gen.go#L1613: 		return fmt.Errorf("can't decode inputMessagesFilterGeo#e7026d0d to nil")
		tl_messages_filter_gen.go#L1616: 		return fmt.Errorf("unable to decode inputMessagesFilterGeo#e7026d0d: %w", err)
		tl_messages_filter_gen.go#L1624: 		return fmt.Errorf("can't decode inputMessagesFilterGeo#e7026d0d to nil")
		tl_messages_filter_gen.go#L1698: 		return fmt.Errorf("can't encode inputMessagesFilterContacts#e062db83 as nil")
		tl_messages_filter_gen.go#L1707: 		return fmt.Errorf("can't encode inputMessagesFilterContacts#e062db83 as nil")
		tl_messages_filter_gen.go#L1715: 		return fmt.Errorf("can't decode inputMessagesFilterContacts#e062db83 to nil")
		tl_messages_filter_gen.go#L1718: 		return fmt.Errorf("unable to decode inputMessagesFilterContacts#e062db83: %w", err)
		tl_messages_filter_gen.go#L1726: 		return fmt.Errorf("can't decode inputMessagesFilterContacts#e062db83 to nil")
		tl_messages_filter_gen.go#L1800: 		return fmt.Errorf("can't encode inputMessagesFilterPinned#1bb00451 as nil")
		tl_messages_filter_gen.go#L1809: 		return fmt.Errorf("can't encode inputMessagesFilterPinned#1bb00451 as nil")
		tl_messages_filter_gen.go#L1817: 		return fmt.Errorf("can't decode inputMessagesFilterPinned#1bb00451 to nil")
		tl_messages_filter_gen.go#L1820: 		return fmt.Errorf("unable to decode inputMessagesFilterPinned#1bb00451: %w", err)
		tl_messages_filter_gen.go#L1828: 		return fmt.Errorf("can't decode inputMessagesFilterPinned#1bb00451 to nil")
		tl_messages_filter_gen.go#L1896: 			return nil, fmt.Errorf("unable to decode MessagesFilterClass: %w", err)
		tl_messages_filter_gen.go#L1903: 			return nil, fmt.Errorf("unable to decode MessagesFilterClass: %w", err)
		tl_messages_filter_gen.go#L1910: 			return nil, fmt.Errorf("unable to decode MessagesFilterClass: %w", err)
		tl_messages_filter_gen.go#L1917: 			return nil, fmt.Errorf("unable to decode MessagesFilterClass: %w", err)
		tl_messages_filter_gen.go#L1924: 			return nil, fmt.Errorf("unable to decode MessagesFilterClass: %w", err)
		tl_messages_filter_gen.go#L1931: 			return nil, fmt.Errorf("unable to decode MessagesFilterClass: %w", err)
		tl_messages_filter_gen.go#L1938: 			return nil, fmt.Errorf("unable to decode MessagesFilterClass: %w", err)
		tl_messages_filter_gen.go#L1945: 			return nil, fmt.Errorf("unable to decode MessagesFilterClass: %w", err)
		tl_messages_filter_gen.go#L1952: 			return nil, fmt.Errorf("unable to decode MessagesFilterClass: %w", err)
		tl_messages_filter_gen.go#L1959: 			return nil, fmt.Errorf("unable to decode MessagesFilterClass: %w", err)
		tl_messages_filter_gen.go#L1966: 			return nil, fmt.Errorf("unable to decode MessagesFilterClass: %w", err)
		tl_messages_filter_gen.go#L1973: 			return nil, fmt.Errorf("unable to decode MessagesFilterClass: %w", err)
		tl_messages_filter_gen.go#L1980: 			return nil, fmt.Errorf("unable to decode MessagesFilterClass: %w", err)
		tl_messages_filter_gen.go#L1987: 			return nil, fmt.Errorf("unable to decode MessagesFilterClass: %w", err)
		tl_messages_filter_gen.go#L1994: 			return nil, fmt.Errorf("unable to decode MessagesFilterClass: %w", err)
		tl_messages_filter_gen.go#L2001: 			return nil, fmt.Errorf("unable to decode MessagesFilterClass: %w", err)
		tl_messages_filter_gen.go#L2008: 			return nil, fmt.Errorf("unable to decode MessagesFilterClass: %w", err)
		tl_messages_filter_gen.go#L2012: 		return nil, fmt.Errorf("unable to decode MessagesFilterClass: %w", bin.NewUnexpectedID(id))
		tl_messages_filter_gen.go#L2024: 		return fmt.Errorf("unable to decode MessagesFilterBox to nil")
		tl_messages_filter_gen.go#L2028: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_messages_filter_gen.go#L2037: 		return fmt.Errorf("unable to encode MessagesFilterClass as nil")
		tl_messages_forum_topics_gen.go#L218: 		return fmt.Errorf("can't encode messages.forumTopics#367617d3 as nil")
		tl_messages_forum_topics_gen.go#L227: 		return fmt.Errorf("can't encode messages.forumTopics#367617d3 as nil")
		tl_messages_forum_topics_gen.go#L231: 		return fmt.Errorf("unable to encode messages.forumTopics#367617d3: field flags: %w", err)
		tl_messages_forum_topics_gen.go#L237: 			return fmt.Errorf("unable to encode messages.forumTopics#367617d3: field topics element with index %d is nil", idx)
		tl_messages_forum_topics_gen.go#L240: 			return fmt.Errorf("unable to encode messages.forumTopics#367617d3: field topics element with index %d: %w", idx, err)
		tl_messages_forum_topics_gen.go#L246: 			return fmt.Errorf("unable to encode messages.forumTopics#367617d3: field messages element with index %d is nil", idx)
		tl_messages_forum_topics_gen.go#L249: 			return fmt.Errorf("unable to encode messages.forumTopics#367617d3: field messages element with index %d: %w", idx, err)
		tl_messages_forum_topics_gen.go#L255: 			return fmt.Errorf("unable to encode messages.forumTopics#367617d3: field chats element with index %d is nil", idx)
		tl_messages_forum_topics_gen.go#L258: 			return fmt.Errorf("unable to encode messages.forumTopics#367617d3: field chats element with index %d: %w", idx, err)
		tl_messages_forum_topics_gen.go#L264: 			return fmt.Errorf("unable to encode messages.forumTopics#367617d3: field users element with index %d is nil", idx)
		tl_messages_forum_topics_gen.go#L267: 			return fmt.Errorf("unable to encode messages.forumTopics#367617d3: field users element with index %d: %w", idx, err)
		tl_messages_forum_topics_gen.go#L277: 		return fmt.Errorf("can't decode messages.forumTopics#367617d3 to nil")
		tl_messages_forum_topics_gen.go#L280: 		return fmt.Errorf("unable to decode messages.forumTopics#367617d3: %w", err)
		tl_messages_forum_topics_gen.go#L288: 		return fmt.Errorf("can't decode messages.forumTopics#367617d3 to nil")
		tl_messages_forum_topics_gen.go#L292: 			return fmt.Errorf("unable to decode messages.forumTopics#367617d3: field flags: %w", err)
		tl_messages_forum_topics_gen.go#L299: 			return fmt.Errorf("unable to decode messages.forumTopics#367617d3: field count: %w", err)
		tl_messages_forum_topics_gen.go#L306: 			return fmt.Errorf("unable to decode messages.forumTopics#367617d3: field topics: %w", err)
		tl_messages_forum_topics_gen.go#L315: 				return fmt.Errorf("unable to decode messages.forumTopics#367617d3: field topics: %w", err)
		tl_messages_forum_topics_gen.go#L323: 			return fmt.Errorf("unable to decode messages.forumTopics#367617d3: field messages: %w", err)
		tl_messages_forum_topics_gen.go#L332: 				return fmt.Errorf("unable to decode messages.forumTopics#367617d3: field messages: %w", err)
		tl_messages_forum_topics_gen.go#L340: 			return fmt.Errorf("unable to decode messages.forumTopics#367617d3: field chats: %w", err)
		tl_messages_forum_topics_gen.go#L349: 				return fmt.Errorf("unable to decode messages.forumTopics#367617d3: field chats: %w", err)
		tl_messages_forum_topics_gen.go#L357: 			return fmt.Errorf("unable to decode messages.forumTopics#367617d3: field users: %w", err)
		tl_messages_forum_topics_gen.go#L366: 				return fmt.Errorf("unable to decode messages.forumTopics#367617d3: field users: %w", err)
		tl_messages_forum_topics_gen.go#L374: 			return fmt.Errorf("unable to decode messages.forumTopics#367617d3: field pts: %w", err)
		tl_messages_forward_messages_gen.go#L318: 		return fmt.Errorf("can't encode messages.forwardMessages#c661bbc4 as nil")
		tl_messages_forward_messages_gen.go#L327: 		return fmt.Errorf("can't encode messages.forwardMessages#c661bbc4 as nil")
		tl_messages_forward_messages_gen.go#L331: 		return fmt.Errorf("unable to encode messages.forwardMessages#c661bbc4: field flags: %w", err)
		tl_messages_forward_messages_gen.go#L334: 		return fmt.Errorf("unable to encode messages.forwardMessages#c661bbc4: field from_peer is nil")
		tl_messages_forward_messages_gen.go#L337: 		return fmt.Errorf("unable to encode messages.forwardMessages#c661bbc4: field from_peer: %w", err)
		tl_messages_forward_messages_gen.go#L348: 		return fmt.Errorf("unable to encode messages.forwardMessages#c661bbc4: field to_peer is nil")
		tl_messages_forward_messages_gen.go#L351: 		return fmt.Errorf("unable to encode messages.forwardMessages#c661bbc4: field to_peer: %w", err)
		tl_messages_forward_messages_gen.go#L361: 			return fmt.Errorf("unable to encode messages.forwardMessages#c661bbc4: field send_as is nil")
		tl_messages_forward_messages_gen.go#L364: 			return fmt.Errorf("unable to encode messages.forwardMessages#c661bbc4: field send_as: %w", err)
		tl_messages_forward_messages_gen.go#L373: 		return fmt.Errorf("can't decode messages.forwardMessages#c661bbc4 to nil")
		tl_messages_forward_messages_gen.go#L376: 		return fmt.Errorf("unable to decode messages.forwardMessages#c661bbc4: %w", err)
		tl_messages_forward_messages_gen.go#L384: 		return fmt.Errorf("can't decode messages.forwardMessages#c661bbc4 to nil")
		tl_messages_forward_messages_gen.go#L388: 			return fmt.Errorf("unable to decode messages.forwardMessages#c661bbc4: field flags: %w", err)
		tl_messages_forward_messages_gen.go#L400: 			return fmt.Errorf("unable to decode messages.forwardMessages#c661bbc4: field from_peer: %w", err)
		tl_messages_forward_messages_gen.go#L407: 			return fmt.Errorf("unable to decode messages.forwardMessages#c661bbc4: field id: %w", err)
		tl_messages_forward_messages_gen.go#L416: 				return fmt.Errorf("unable to decode messages.forwardMessages#c661bbc4: field id: %w", err)
		tl_messages_forward_messages_gen.go#L424: 			return fmt.Errorf("unable to decode messages.forwardMessages#c661bbc4: field random_id: %w", err)
		tl_messages_forward_messages_gen.go#L433: 				return fmt.Errorf("unable to decode messages.forwardMessages#c661bbc4: field random_id: %w", err)
		tl_messages_forward_messages_gen.go#L441: 			return fmt.Errorf("unable to decode messages.forwardMessages#c661bbc4: field to_peer: %w", err)
		tl_messages_forward_messages_gen.go#L448: 			return fmt.Errorf("unable to decode messages.forwardMessages#c661bbc4: field top_msg_id: %w", err)
		tl_messages_forward_messages_gen.go#L455: 			return fmt.Errorf("unable to decode messages.forwardMessages#c661bbc4: field schedule_date: %w", err)
		tl_messages_forward_messages_gen.go#L462: 			return fmt.Errorf("unable to decode messages.forwardMessages#c661bbc4: field send_as: %w", err)
		tl_messages_found_sticker_sets_gen.go#L103: 		return fmt.Errorf("can't encode messages.foundStickerSetsNotModified#d54b65d as nil")
		tl_messages_found_sticker_sets_gen.go#L112: 		return fmt.Errorf("can't encode messages.foundStickerSetsNotModified#d54b65d as nil")
		tl_messages_found_sticker_sets_gen.go#L120: 		return fmt.Errorf("can't decode messages.foundStickerSetsNotModified#d54b65d to nil")
		tl_messages_found_sticker_sets_gen.go#L123: 		return fmt.Errorf("unable to decode messages.foundStickerSetsNotModified#d54b65d: %w", err)
		tl_messages_found_sticker_sets_gen.go#L131: 		return fmt.Errorf("can't decode messages.foundStickerSetsNotModified#d54b65d to nil")
		tl_messages_found_sticker_sets_gen.go#L236: 		return fmt.Errorf("can't encode messages.foundStickerSets#8af09dd2 as nil")
		tl_messages_found_sticker_sets_gen.go#L245: 		return fmt.Errorf("can't encode messages.foundStickerSets#8af09dd2 as nil")
		tl_messages_found_sticker_sets_gen.go#L251: 			return fmt.Errorf("unable to encode messages.foundStickerSets#8af09dd2: field sets element with index %d is nil", idx)
		tl_messages_found_sticker_sets_gen.go#L254: 			return fmt.Errorf("unable to encode messages.foundStickerSets#8af09dd2: field sets element with index %d: %w", idx, err)
		tl_messages_found_sticker_sets_gen.go#L263: 		return fmt.Errorf("can't decode messages.foundStickerSets#8af09dd2 to nil")
		tl_messages_found_sticker_sets_gen.go#L266: 		return fmt.Errorf("unable to decode messages.foundStickerSets#8af09dd2: %w", err)
		tl_messages_found_sticker_sets_gen.go#L274: 		return fmt.Errorf("can't decode messages.foundStickerSets#8af09dd2 to nil")
		tl_messages_found_sticker_sets_gen.go#L279: 			return fmt.Errorf("unable to decode messages.foundStickerSets#8af09dd2: field hash: %w", err)
		tl_messages_found_sticker_sets_gen.go#L286: 			return fmt.Errorf("unable to decode messages.foundStickerSets#8af09dd2: field sets: %w", err)
		tl_messages_found_sticker_sets_gen.go#L295: 				return fmt.Errorf("unable to decode messages.foundStickerSets#8af09dd2: field sets: %w", err)
		tl_messages_found_sticker_sets_gen.go#L385: 			return nil, fmt.Errorf("unable to decode MessagesFoundStickerSetsClass: %w", err)
		tl_messages_found_sticker_sets_gen.go#L392: 			return nil, fmt.Errorf("unable to decode MessagesFoundStickerSetsClass: %w", err)
		tl_messages_found_sticker_sets_gen.go#L396: 		return nil, fmt.Errorf("unable to decode MessagesFoundStickerSetsClass: %w", bin.NewUnexpectedID(id))
		tl_messages_found_sticker_sets_gen.go#L408: 		return fmt.Errorf("unable to decode MessagesFoundStickerSetsBox to nil")
		tl_messages_found_sticker_sets_gen.go#L412: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_messages_found_sticker_sets_gen.go#L421: 		return fmt.Errorf("unable to encode MessagesFoundStickerSetsClass as nil")
		tl_messages_get_admins_with_invites_gen.go#L115: 		return fmt.Errorf("can't encode messages.getAdminsWithInvites#3920e6ef as nil")
		tl_messages_get_admins_with_invites_gen.go#L124: 		return fmt.Errorf("can't encode messages.getAdminsWithInvites#3920e6ef as nil")
		tl_messages_get_admins_with_invites_gen.go#L127: 		return fmt.Errorf("unable to encode messages.getAdminsWithInvites#3920e6ef: field peer is nil")
		tl_messages_get_admins_with_invites_gen.go#L130: 		return fmt.Errorf("unable to encode messages.getAdminsWithInvites#3920e6ef: field peer: %w", err)
		tl_messages_get_admins_with_invites_gen.go#L138: 		return fmt.Errorf("can't decode messages.getAdminsWithInvites#3920e6ef to nil")
		tl_messages_get_admins_with_invites_gen.go#L141: 		return fmt.Errorf("unable to decode messages.getAdminsWithInvites#3920e6ef: %w", err)
		tl_messages_get_admins_with_invites_gen.go#L149: 		return fmt.Errorf("can't decode messages.getAdminsWithInvites#3920e6ef to nil")
		tl_messages_get_admins_with_invites_gen.go#L154: 			return fmt.Errorf("unable to decode messages.getAdminsWithInvites#3920e6ef: field peer: %w", err)
		tl_messages_get_all_drafts_gen.go#L103: 		return fmt.Errorf("can't encode messages.getAllDrafts#6a3f8d65 as nil")
		tl_messages_get_all_drafts_gen.go#L112: 		return fmt.Errorf("can't encode messages.getAllDrafts#6a3f8d65 as nil")
		tl_messages_get_all_drafts_gen.go#L120: 		return fmt.Errorf("can't decode messages.getAllDrafts#6a3f8d65 to nil")
		tl_messages_get_all_drafts_gen.go#L123: 		return fmt.Errorf("unable to decode messages.getAllDrafts#6a3f8d65: %w", err)
		tl_messages_get_all_drafts_gen.go#L131: 		return fmt.Errorf("can't decode messages.getAllDrafts#6a3f8d65 to nil")
		tl_messages_get_all_stickers_gen.go#L118: 		return fmt.Errorf("can't encode messages.getAllStickers#b8a0a1a8 as nil")
		tl_messages_get_all_stickers_gen.go#L127: 		return fmt.Errorf("can't encode messages.getAllStickers#b8a0a1a8 as nil")
		tl_messages_get_all_stickers_gen.go#L136: 		return fmt.Errorf("can't decode messages.getAllStickers#b8a0a1a8 to nil")
		tl_messages_get_all_stickers_gen.go#L139: 		return fmt.Errorf("unable to decode messages.getAllStickers#b8a0a1a8: %w", err)
		tl_messages_get_all_stickers_gen.go#L147: 		return fmt.Errorf("can't decode messages.getAllStickers#b8a0a1a8 to nil")
		tl_messages_get_all_stickers_gen.go#L152: 			return fmt.Errorf("unable to decode messages.getAllStickers#b8a0a1a8: field hash: %w", err)
		tl_messages_get_archived_stickers_gen.go#L180: 		return fmt.Errorf("can't encode messages.getArchivedStickers#57f17692 as nil")
		tl_messages_get_archived_stickers_gen.go#L189: 		return fmt.Errorf("can't encode messages.getArchivedStickers#57f17692 as nil")
		tl_messages_get_archived_stickers_gen.go#L193: 		return fmt.Errorf("unable to encode messages.getArchivedStickers#57f17692: field flags: %w", err)
		tl_messages_get_archived_stickers_gen.go#L203: 		return fmt.Errorf("can't decode messages.getArchivedStickers#57f17692 to nil")
		tl_messages_get_archived_stickers_gen.go#L206: 		return fmt.Errorf("unable to decode messages.getArchivedStickers#57f17692: %w", err)
		tl_messages_get_archived_stickers_gen.go#L214: 		return fmt.Errorf("can't decode messages.getArchivedStickers#57f17692 to nil")
		tl_messages_get_archived_stickers_gen.go#L218: 			return fmt.Errorf("unable to decode messages.getArchivedStickers#57f17692: field flags: %w", err)
		tl_messages_get_archived_stickers_gen.go#L226: 			return fmt.Errorf("unable to decode messages.getArchivedStickers#57f17692: field offset_id: %w", err)
		tl_messages_get_archived_stickers_gen.go#L233: 			return fmt.Errorf("unable to decode messages.getArchivedStickers#57f17692: field limit: %w", err)
		tl_messages_get_attach_menu_bot_gen.go#L119: 		return fmt.Errorf("can't encode messages.getAttachMenuBot#77216192 as nil")
		tl_messages_get_attach_menu_bot_gen.go#L128: 		return fmt.Errorf("can't encode messages.getAttachMenuBot#77216192 as nil")
		tl_messages_get_attach_menu_bot_gen.go#L131: 		return fmt.Errorf("unable to encode messages.getAttachMenuBot#77216192: field bot is nil")
		tl_messages_get_attach_menu_bot_gen.go#L134: 		return fmt.Errorf("unable to encode messages.getAttachMenuBot#77216192: field bot: %w", err)
		tl_messages_get_attach_menu_bot_gen.go#L142: 		return fmt.Errorf("can't decode messages.getAttachMenuBot#77216192 to nil")
		tl_messages_get_attach_menu_bot_gen.go#L145: 		return fmt.Errorf("unable to decode messages.getAttachMenuBot#77216192: %w", err)
		tl_messages_get_attach_menu_bot_gen.go#L153: 		return fmt.Errorf("can't decode messages.getAttachMenuBot#77216192 to nil")
		tl_messages_get_attach_menu_bot_gen.go#L158: 			return fmt.Errorf("unable to decode messages.getAttachMenuBot#77216192: field bot: %w", err)
		tl_messages_get_attach_menu_bots_gen.go#L121: 		return fmt.Errorf("can't encode messages.getAttachMenuBots#16fcc2cb as nil")
		tl_messages_get_attach_menu_bots_gen.go#L130: 		return fmt.Errorf("can't encode messages.getAttachMenuBots#16fcc2cb as nil")
		tl_messages_get_attach_menu_bots_gen.go#L139: 		return fmt.Errorf("can't decode messages.getAttachMenuBots#16fcc2cb to nil")
		tl_messages_get_attach_menu_bots_gen.go#L142: 		return fmt.Errorf("unable to decode messages.getAttachMenuBots#16fcc2cb: %w", err)
		tl_messages_get_attach_menu_bots_gen.go#L150: 		return fmt.Errorf("can't decode messages.getAttachMenuBots#16fcc2cb to nil")
		tl_messages_get_attach_menu_bots_gen.go#L155: 			return fmt.Errorf("unable to decode messages.getAttachMenuBots#16fcc2cb: field hash: %w", err)
		tl_messages_get_attached_stickers_gen.go#L115: 		return fmt.Errorf("can't encode messages.getAttachedStickers#cc5b67cc as nil")
		tl_messages_get_attached_stickers_gen.go#L124: 		return fmt.Errorf("can't encode messages.getAttachedStickers#cc5b67cc as nil")
		tl_messages_get_attached_stickers_gen.go#L127: 		return fmt.Errorf("unable to encode messages.getAttachedStickers#cc5b67cc: field media is nil")
		tl_messages_get_attached_stickers_gen.go#L130: 		return fmt.Errorf("unable to encode messages.getAttachedStickers#cc5b67cc: field media: %w", err)
		tl_messages_get_attached_stickers_gen.go#L138: 		return fmt.Errorf("can't decode messages.getAttachedStickers#cc5b67cc to nil")
		tl_messages_get_attached_stickers_gen.go#L141: 		return fmt.Errorf("unable to decode messages.getAttachedStickers#cc5b67cc: %w", err)
		tl_messages_get_attached_stickers_gen.go#L149: 		return fmt.Errorf("can't decode messages.getAttachedStickers#cc5b67cc to nil")
		tl_messages_get_attached_stickers_gen.go#L154: 			return fmt.Errorf("unable to decode messages.getAttachedStickers#cc5b67cc: field media: %w", err)
		tl_messages_get_available_reactions_gen.go#L121: 		return fmt.Errorf("can't encode messages.getAvailableReactions#18dea0ac as nil")
		tl_messages_get_available_reactions_gen.go#L130: 		return fmt.Errorf("can't encode messages.getAvailableReactions#18dea0ac as nil")
		tl_messages_get_available_reactions_gen.go#L139: 		return fmt.Errorf("can't decode messages.getAvailableReactions#18dea0ac to nil")
		tl_messages_get_available_reactions_gen.go#L142: 		return fmt.Errorf("unable to decode messages.getAvailableReactions#18dea0ac: %w", err)
		tl_messages_get_available_reactions_gen.go#L150: 		return fmt.Errorf("can't decode messages.getAvailableReactions#18dea0ac to nil")
		tl_messages_get_available_reactions_gen.go#L155: 			return fmt.Errorf("unable to decode messages.getAvailableReactions#18dea0ac: field hash: %w", err)
		tl_messages_get_bot_app_gen.go#L135: 		return fmt.Errorf("can't encode messages.getBotApp#34fdc5c3 as nil")
		tl_messages_get_bot_app_gen.go#L144: 		return fmt.Errorf("can't encode messages.getBotApp#34fdc5c3 as nil")
		tl_messages_get_bot_app_gen.go#L147: 		return fmt.Errorf("unable to encode messages.getBotApp#34fdc5c3: field app is nil")
		tl_messages_get_bot_app_gen.go#L150: 		return fmt.Errorf("unable to encode messages.getBotApp#34fdc5c3: field app: %w", err)
		tl_messages_get_bot_app_gen.go#L159: 		return fmt.Errorf("can't decode messages.getBotApp#34fdc5c3 to nil")
		tl_messages_get_bot_app_gen.go#L162: 		return fmt.Errorf("unable to decode messages.getBotApp#34fdc5c3: %w", err)
		tl_messages_get_bot_app_gen.go#L170: 		return fmt.Errorf("can't decode messages.getBotApp#34fdc5c3 to nil")
		tl_messages_get_bot_app_gen.go#L175: 			return fmt.Errorf("unable to decode messages.getBotApp#34fdc5c3: field app: %w", err)
		tl_messages_get_bot_app_gen.go#L182: 			return fmt.Errorf("unable to decode messages.getBotApp#34fdc5c3: field hash: %w", err)
		tl_messages_get_bot_callback_answer_gen.go#L198: 		return fmt.Errorf("can't encode messages.getBotCallbackAnswer#9342ca07 as nil")
		tl_messages_get_bot_callback_answer_gen.go#L207: 		return fmt.Errorf("can't encode messages.getBotCallbackAnswer#9342ca07 as nil")
		tl_messages_get_bot_callback_answer_gen.go#L211: 		return fmt.Errorf("unable to encode messages.getBotCallbackAnswer#9342ca07: field flags: %w", err)
		tl_messages_get_bot_callback_answer_gen.go#L214: 		return fmt.Errorf("unable to encode messages.getBotCallbackAnswer#9342ca07: field peer is nil")
		tl_messages_get_bot_callback_answer_gen.go#L217: 		return fmt.Errorf("unable to encode messages.getBotCallbackAnswer#9342ca07: field peer: %w", err)
		tl_messages_get_bot_callback_answer_gen.go#L225: 			return fmt.Errorf("unable to encode messages.getBotCallbackAnswer#9342ca07: field password is nil")
		tl_messages_get_bot_callback_answer_gen.go#L228: 			return fmt.Errorf("unable to encode messages.getBotCallbackAnswer#9342ca07: field password: %w", err)
		tl_messages_get_bot_callback_answer_gen.go#L237: 		return fmt.Errorf("can't decode messages.getBotCallbackAnswer#9342ca07 to nil")
		tl_messages_get_bot_callback_answer_gen.go#L240: 		return fmt.Errorf("unable to decode messages.getBotCallbackAnswer#9342ca07: %w", err)
		tl_messages_get_bot_callback_answer_gen.go#L248: 		return fmt.Errorf("can't decode messages.getBotCallbackAnswer#9342ca07 to nil")
		tl_messages_get_bot_callback_answer_gen.go#L252: 			return fmt.Errorf("unable to decode messages.getBotCallbackAnswer#9342ca07: field flags: %w", err)
		tl_messages_get_bot_callback_answer_gen.go#L259: 			return fmt.Errorf("unable to decode messages.getBotCallbackAnswer#9342ca07: field peer: %w", err)
		tl_messages_get_bot_callback_answer_gen.go#L266: 			return fmt.Errorf("unable to decode messages.getBotCallbackAnswer#9342ca07: field msg_id: %w", err)
		tl_messages_get_bot_callback_answer_gen.go#L273: 			return fmt.Errorf("unable to decode messages.getBotCallbackAnswer#9342ca07: field data: %w", err)
		tl_messages_get_bot_callback_answer_gen.go#L280: 			return fmt.Errorf("unable to decode messages.getBotCallbackAnswer#9342ca07: field password: %w", err)
		tl_messages_get_chat_invite_importers_gen.go#L231: 		return fmt.Errorf("can't encode messages.getChatInviteImporters#df04dd4e as nil")
		tl_messages_get_chat_invite_importers_gen.go#L240: 		return fmt.Errorf("can't encode messages.getChatInviteImporters#df04dd4e as nil")
		tl_messages_get_chat_invite_importers_gen.go#L244: 		return fmt.Errorf("unable to encode messages.getChatInviteImporters#df04dd4e: field flags: %w", err)
		tl_messages_get_chat_invite_importers_gen.go#L247: 		return fmt.Errorf("unable to encode messages.getChatInviteImporters#df04dd4e: field peer is nil")
		tl_messages_get_chat_invite_importers_gen.go#L250: 		return fmt.Errorf("unable to encode messages.getChatInviteImporters#df04dd4e: field peer: %w", err)
		tl_messages_get_chat_invite_importers_gen.go#L260: 		return fmt.Errorf("unable to encode messages.getChatInviteImporters#df04dd4e: field offset_user is nil")
		tl_messages_get_chat_invite_importers_gen.go#L263: 		return fmt.Errorf("unable to encode messages.getChatInviteImporters#df04dd4e: field offset_user: %w", err)
		tl_messages_get_chat_invite_importers_gen.go#L272: 		return fmt.Errorf("can't decode messages.getChatInviteImporters#df04dd4e to nil")
		tl_messages_get_chat_invite_importers_gen.go#L275: 		return fmt.Errorf("unable to decode messages.getChatInviteImporters#df04dd4e: %w", err)
		tl_messages_get_chat_invite_importers_gen.go#L283: 		return fmt.Errorf("can't decode messages.getChatInviteImporters#df04dd4e to nil")
		tl_messages_get_chat_invite_importers_gen.go#L287: 			return fmt.Errorf("unable to decode messages.getChatInviteImporters#df04dd4e: field flags: %w", err)
		tl_messages_get_chat_invite_importers_gen.go#L294: 			return fmt.Errorf("unable to decode messages.getChatInviteImporters#df04dd4e: field peer: %w", err)
		tl_messages_get_chat_invite_importers_gen.go#L301: 			return fmt.Errorf("unable to decode messages.getChatInviteImporters#df04dd4e: field link: %w", err)
		tl_messages_get_chat_invite_importers_gen.go#L308: 			return fmt.Errorf("unable to decode messages.getChatInviteImporters#df04dd4e: field q: %w", err)
		tl_messages_get_chat_invite_importers_gen.go#L315: 			return fmt.Errorf("unable to decode messages.getChatInviteImporters#df04dd4e: field offset_date: %w", err)
		tl_messages_get_chat_invite_importers_gen.go#L322: 			return fmt.Errorf("unable to decode messages.getChatInviteImporters#df04dd4e: field offset_user: %w", err)
		tl_messages_get_chat_invite_importers_gen.go#L329: 			return fmt.Errorf("unable to decode messages.getChatInviteImporters#df04dd4e: field limit: %w", err)
		tl_messages_get_chats_gen.go#L115: 		return fmt.Errorf("can't encode messages.getChats#49e9528f as nil")
		tl_messages_get_chats_gen.go#L124: 		return fmt.Errorf("can't encode messages.getChats#49e9528f as nil")
		tl_messages_get_chats_gen.go#L136: 		return fmt.Errorf("can't decode messages.getChats#49e9528f to nil")
		tl_messages_get_chats_gen.go#L139: 		return fmt.Errorf("unable to decode messages.getChats#49e9528f: %w", err)
		tl_messages_get_chats_gen.go#L147: 		return fmt.Errorf("can't decode messages.getChats#49e9528f to nil")
		tl_messages_get_chats_gen.go#L152: 			return fmt.Errorf("unable to decode messages.getChats#49e9528f: field id: %w", err)
		tl_messages_get_chats_gen.go#L161: 				return fmt.Errorf("unable to decode messages.getChats#49e9528f: field id: %w", err)
		tl_messages_get_common_chats_gen.go#L143: 		return fmt.Errorf("can't encode messages.getCommonChats#e40ca104 as nil")
		tl_messages_get_common_chats_gen.go#L152: 		return fmt.Errorf("can't encode messages.getCommonChats#e40ca104 as nil")
		tl_messages_get_common_chats_gen.go#L155: 		return fmt.Errorf("unable to encode messages.getCommonChats#e40ca104: field user_id is nil")
		tl_messages_get_common_chats_gen.go#L158: 		return fmt.Errorf("unable to encode messages.getCommonChats#e40ca104: field user_id: %w", err)
		tl_messages_get_common_chats_gen.go#L168: 		return fmt.Errorf("can't decode messages.getCommonChats#e40ca104 to nil")
		tl_messages_get_common_chats_gen.go#L171: 		return fmt.Errorf("unable to decode messages.getCommonChats#e40ca104: %w", err)
		tl_messages_get_common_chats_gen.go#L179: 		return fmt.Errorf("can't decode messages.getCommonChats#e40ca104 to nil")
		tl_messages_get_common_chats_gen.go#L184: 			return fmt.Errorf("unable to decode messages.getCommonChats#e40ca104: field user_id: %w", err)
		tl_messages_get_common_chats_gen.go#L191: 			return fmt.Errorf("unable to decode messages.getCommonChats#e40ca104: field max_id: %w", err)
		tl_messages_get_common_chats_gen.go#L198: 			return fmt.Errorf("unable to decode messages.getCommonChats#e40ca104: field limit: %w", err)
		tl_messages_get_custom_emoji_documents_gen.go#L127: 		return fmt.Errorf("can't encode messages.getCustomEmojiDocuments#d9ab0f54 as nil")
		tl_messages_get_custom_emoji_documents_gen.go#L136: 		return fmt.Errorf("can't encode messages.getCustomEmojiDocuments#d9ab0f54 as nil")
		tl_messages_get_custom_emoji_documents_gen.go#L148: 		return fmt.Errorf("can't decode messages.getCustomEmojiDocuments#d9ab0f54 to nil")
		tl_messages_get_custom_emoji_documents_gen.go#L151: 		return fmt.Errorf("unable to decode messages.getCustomEmojiDocuments#d9ab0f54: %w", err)
		tl_messages_get_custom_emoji_documents_gen.go#L159: 		return fmt.Errorf("can't decode messages.getCustomEmojiDocuments#d9ab0f54 to nil")
		tl_messages_get_custom_emoji_documents_gen.go#L164: 			return fmt.Errorf("unable to decode messages.getCustomEmojiDocuments#d9ab0f54: field document_id: %w", err)
		tl_messages_get_custom_emoji_documents_gen.go#L173: 				return fmt.Errorf("unable to decode messages.getCustomEmojiDocuments#d9ab0f54: field document_id: %w", err)
		tl_messages_get_default_history_ttl_gen.go#L98: 		return fmt.Errorf("can't encode messages.getDefaultHistoryTTL#658b7188 as nil")
		tl_messages_get_default_history_ttl_gen.go#L107: 		return fmt.Errorf("can't encode messages.getDefaultHistoryTTL#658b7188 as nil")
		tl_messages_get_default_history_ttl_gen.go#L115: 		return fmt.Errorf("can't decode messages.getDefaultHistoryTTL#658b7188 to nil")
		tl_messages_get_default_history_ttl_gen.go#L118: 		return fmt.Errorf("unable to decode messages.getDefaultHistoryTTL#658b7188: %w", err)
		tl_messages_get_default_history_ttl_gen.go#L126: 		return fmt.Errorf("can't decode messages.getDefaultHistoryTTL#658b7188 to nil")
		tl_messages_get_dh_config_gen.go#L130: 		return fmt.Errorf("can't encode messages.getDhConfig#26cf8950 as nil")
		tl_messages_get_dh_config_gen.go#L139: 		return fmt.Errorf("can't encode messages.getDhConfig#26cf8950 as nil")
		tl_messages_get_dh_config_gen.go#L149: 		return fmt.Errorf("can't decode messages.getDhConfig#26cf8950 to nil")
		tl_messages_get_dh_config_gen.go#L152: 		return fmt.Errorf("unable to decode messages.getDhConfig#26cf8950: %w", err)
		tl_messages_get_dh_config_gen.go#L160: 		return fmt.Errorf("can't decode messages.getDhConfig#26cf8950 to nil")
		tl_messages_get_dh_config_gen.go#L165: 			return fmt.Errorf("unable to decode messages.getDhConfig#26cf8950: field version: %w", err)
		tl_messages_get_dh_config_gen.go#L172: 			return fmt.Errorf("unable to decode messages.getDhConfig#26cf8950: field random_length: %w", err)
		tl_messages_get_dialog_filters_gen.go#L101: 		return fmt.Errorf("can't encode messages.getDialogFilters#f19ed96d as nil")
		tl_messages_get_dialog_filters_gen.go#L110: 		return fmt.Errorf("can't encode messages.getDialogFilters#f19ed96d as nil")
		tl_messages_get_dialog_filters_gen.go#L118: 		return fmt.Errorf("can't decode messages.getDialogFilters#f19ed96d to nil")
		tl_messages_get_dialog_filters_gen.go#L121: 		return fmt.Errorf("unable to decode messages.getDialogFilters#f19ed96d: %w", err)
		tl_messages_get_dialog_filters_gen.go#L129: 		return fmt.Errorf("can't decode messages.getDialogFilters#f19ed96d to nil")
		tl_messages_get_dialog_unread_marks_gen.go#L98: 		return fmt.Errorf("can't encode messages.getDialogUnreadMarks#22e24e22 as nil")
		tl_messages_get_dialog_unread_marks_gen.go#L107: 		return fmt.Errorf("can't encode messages.getDialogUnreadMarks#22e24e22 as nil")
		tl_messages_get_dialog_unread_marks_gen.go#L115: 		return fmt.Errorf("can't decode messages.getDialogUnreadMarks#22e24e22 to nil")
		tl_messages_get_dialog_unread_marks_gen.go#L118: 		return fmt.Errorf("unable to decode messages.getDialogUnreadMarks#22e24e22: %w", err)
		tl_messages_get_dialog_unread_marks_gen.go#L126: 		return fmt.Errorf("can't decode messages.getDialogUnreadMarks#22e24e22 to nil")
		tl_messages_get_dialogs_gen.go#L222: 		return fmt.Errorf("can't encode messages.getDialogs#a0f4cb4f as nil")
		tl_messages_get_dialogs_gen.go#L231: 		return fmt.Errorf("can't encode messages.getDialogs#a0f4cb4f as nil")
		tl_messages_get_dialogs_gen.go#L235: 		return fmt.Errorf("unable to encode messages.getDialogs#a0f4cb4f: field flags: %w", err)
		tl_messages_get_dialogs_gen.go#L243: 		return fmt.Errorf("unable to encode messages.getDialogs#a0f4cb4f: field offset_peer is nil")
		tl_messages_get_dialogs_gen.go#L246: 		return fmt.Errorf("unable to encode messages.getDialogs#a0f4cb4f: field offset_peer: %w", err)
		tl_messages_get_dialogs_gen.go#L256: 		return fmt.Errorf("can't decode messages.getDialogs#a0f4cb4f to nil")
		tl_messages_get_dialogs_gen.go#L259: 		return fmt.Errorf("unable to decode messages.getDialogs#a0f4cb4f: %w", err)
		tl_messages_get_dialogs_gen.go#L267: 		return fmt.Errorf("can't decode messages.getDialogs#a0f4cb4f to nil")
		tl_messages_get_dialogs_gen.go#L271: 			return fmt.Errorf("unable to decode messages.getDialogs#a0f4cb4f: field flags: %w", err)
		tl_messages_get_dialogs_gen.go#L278: 			return fmt.Errorf("unable to decode messages.getDialogs#a0f4cb4f: field folder_id: %w", err)
		tl_messages_get_dialogs_gen.go#L285: 			return fmt.Errorf("unable to decode messages.getDialogs#a0f4cb4f: field offset_date: %w", err)
		tl_messages_get_dialogs_gen.go#L292: 			return fmt.Errorf("unable to decode messages.getDialogs#a0f4cb4f: field offset_id: %w", err)
		tl_messages_get_dialogs_gen.go#L299: 			return fmt.Errorf("unable to decode messages.getDialogs#a0f4cb4f: field offset_peer: %w", err)
		tl_messages_get_dialogs_gen.go#L306: 			return fmt.Errorf("unable to decode messages.getDialogs#a0f4cb4f: field limit: %w", err)
		tl_messages_get_dialogs_gen.go#L313: 			return fmt.Errorf("unable to decode messages.getDialogs#a0f4cb4f: field hash: %w", err)
		tl_messages_get_discussion_message_gen.go#L134: 		return fmt.Errorf("can't encode messages.getDiscussionMessage#446972fd as nil")
		tl_messages_get_discussion_message_gen.go#L143: 		return fmt.Errorf("can't encode messages.getDiscussionMessage#446972fd as nil")
		tl_messages_get_discussion_message_gen.go#L146: 		return fmt.Errorf("unable to encode messages.getDiscussionMessage#446972fd: field peer is nil")
		tl_messages_get_discussion_message_gen.go#L149: 		return fmt.Errorf("unable to encode messages.getDiscussionMessage#446972fd: field peer: %w", err)
		tl_messages_get_discussion_message_gen.go#L158: 		return fmt.Errorf("can't decode messages.getDiscussionMessage#446972fd to nil")
		tl_messages_get_discussion_message_gen.go#L161: 		return fmt.Errorf("unable to decode messages.getDiscussionMessage#446972fd: %w", err)
		tl_messages_get_discussion_message_gen.go#L169: 		return fmt.Errorf("can't decode messages.getDiscussionMessage#446972fd to nil")
		tl_messages_get_discussion_message_gen.go#L174: 			return fmt.Errorf("unable to decode messages.getDiscussionMessage#446972fd: field peer: %w", err)
		tl_messages_get_discussion_message_gen.go#L181: 			return fmt.Errorf("unable to decode messages.getDiscussionMessage#446972fd: field msg_id: %w", err)
		tl_messages_get_document_by_hash_gen.go#L137: 		return fmt.Errorf("can't encode messages.getDocumentByHash#b1f2061f as nil")
		tl_messages_get_document_by_hash_gen.go#L146: 		return fmt.Errorf("can't encode messages.getDocumentByHash#b1f2061f as nil")
		tl_messages_get_document_by_hash_gen.go#L157: 		return fmt.Errorf("can't decode messages.getDocumentByHash#b1f2061f to nil")
		tl_messages_get_document_by_hash_gen.go#L160: 		return fmt.Errorf("unable to decode messages.getDocumentByHash#b1f2061f: %w", err)
		tl_messages_get_document_by_hash_gen.go#L168: 		return fmt.Errorf("can't decode messages.getDocumentByHash#b1f2061f to nil")
		tl_messages_get_document_by_hash_gen.go#L173: 			return fmt.Errorf("unable to decode messages.getDocumentByHash#b1f2061f: field sha256: %w", err)
		tl_messages_get_document_by_hash_gen.go#L180: 			return fmt.Errorf("unable to decode messages.getDocumentByHash#b1f2061f: field size: %w", err)
		tl_messages_get_document_by_hash_gen.go#L187: 			return fmt.Errorf("unable to decode messages.getDocumentByHash#b1f2061f: field mime_type: %w", err)
		tl_messages_get_emoji_groups_gen.go#L122: 		return fmt.Errorf("can't encode messages.getEmojiGroups#7488ce5b as nil")
		tl_messages_get_emoji_groups_gen.go#L131: 		return fmt.Errorf("can't encode messages.getEmojiGroups#7488ce5b as nil")
		tl_messages_get_emoji_groups_gen.go#L140: 		return fmt.Errorf("can't decode messages.getEmojiGroups#7488ce5b to nil")
		tl_messages_get_emoji_groups_gen.go#L143: 		return fmt.Errorf("unable to decode messages.getEmojiGroups#7488ce5b: %w", err)
		tl_messages_get_emoji_groups_gen.go#L151: 		return fmt.Errorf("can't decode messages.getEmojiGroups#7488ce5b to nil")
		tl_messages_get_emoji_groups_gen.go#L156: 			return fmt.Errorf("unable to decode messages.getEmojiGroups#7488ce5b: field hash: %w", err)
		tl_messages_get_emoji_keywords_difference_gen.go#L129: 		return fmt.Errorf("can't encode messages.getEmojiKeywordsDifference#1508b6af as nil")
		tl_messages_get_emoji_keywords_difference_gen.go#L138: 		return fmt.Errorf("can't encode messages.getEmojiKeywordsDifference#1508b6af as nil")
		tl_messages_get_emoji_keywords_difference_gen.go#L148: 		return fmt.Errorf("can't decode messages.getEmojiKeywordsDifference#1508b6af to nil")
		tl_messages_get_emoji_keywords_difference_gen.go#L151: 		return fmt.Errorf("unable to decode messages.getEmojiKeywordsDifference#1508b6af: %w", err)
		tl_messages_get_emoji_keywords_difference_gen.go#L159: 		return fmt.Errorf("can't decode messages.getEmojiKeywordsDifference#1508b6af to nil")
		tl_messages_get_emoji_keywords_difference_gen.go#L164: 			return fmt.Errorf("unable to decode messages.getEmojiKeywordsDifference#1508b6af: field lang_code: %w", err)
		tl_messages_get_emoji_keywords_difference_gen.go#L171: 			return fmt.Errorf("unable to decode messages.getEmojiKeywordsDifference#1508b6af: field from_version: %w", err)
		tl_messages_get_emoji_keywords_gen.go#L118: 		return fmt.Errorf("can't encode messages.getEmojiKeywords#35a0e062 as nil")
		tl_messages_get_emoji_keywords_gen.go#L127: 		return fmt.Errorf("can't encode messages.getEmojiKeywords#35a0e062 as nil")
		tl_messages_get_emoji_keywords_gen.go#L136: 		return fmt.Errorf("can't decode messages.getEmojiKeywords#35a0e062 to nil")
		tl_messages_get_emoji_keywords_gen.go#L139: 		return fmt.Errorf("unable to decode messages.getEmojiKeywords#35a0e062: %w", err)
		tl_messages_get_emoji_keywords_gen.go#L147: 		return fmt.Errorf("can't decode messages.getEmojiKeywords#35a0e062 to nil")
		tl_messages_get_emoji_keywords_gen.go#L152: 			return fmt.Errorf("unable to decode messages.getEmojiKeywords#35a0e062: field lang_code: %w", err)
		tl_messages_get_emoji_keywords_languages_gen.go#L121: 		return fmt.Errorf("can't encode messages.getEmojiKeywordsLanguages#4e9963b2 as nil")
		tl_messages_get_emoji_keywords_languages_gen.go#L130: 		return fmt.Errorf("can't encode messages.getEmojiKeywordsLanguages#4e9963b2 as nil")
		tl_messages_get_emoji_keywords_languages_gen.go#L142: 		return fmt.Errorf("can't decode messages.getEmojiKeywordsLanguages#4e9963b2 to nil")
		tl_messages_get_emoji_keywords_languages_gen.go#L145: 		return fmt.Errorf("unable to decode messages.getEmojiKeywordsLanguages#4e9963b2: %w", err)
		tl_messages_get_emoji_keywords_languages_gen.go#L153: 		return fmt.Errorf("can't decode messages.getEmojiKeywordsLanguages#4e9963b2 to nil")
		tl_messages_get_emoji_keywords_languages_gen.go#L158: 			return fmt.Errorf("unable to decode messages.getEmojiKeywordsLanguages#4e9963b2: field lang_codes: %w", err)
		tl_messages_get_emoji_keywords_languages_gen.go#L167: 				return fmt.Errorf("unable to decode messages.getEmojiKeywordsLanguages#4e9963b2: field lang_codes: %w", err)
		tl_messages_get_emoji_profile_photo_groups_gen.go#L123: 		return fmt.Errorf("can't encode messages.getEmojiProfilePhotoGroups#21a548f3 as nil")
		tl_messages_get_emoji_profile_photo_groups_gen.go#L132: 		return fmt.Errorf("can't encode messages.getEmojiProfilePhotoGroups#21a548f3 as nil")
		tl_messages_get_emoji_profile_photo_groups_gen.go#L141: 		return fmt.Errorf("can't decode messages.getEmojiProfilePhotoGroups#21a548f3 to nil")
		tl_messages_get_emoji_profile_photo_groups_gen.go#L144: 		return fmt.Errorf("unable to decode messages.getEmojiProfilePhotoGroups#21a548f3: %w", err)
		tl_messages_get_emoji_profile_photo_groups_gen.go#L152: 		return fmt.Errorf("can't decode messages.getEmojiProfilePhotoGroups#21a548f3 to nil")
		tl_messages_get_emoji_profile_photo_groups_gen.go#L157: 			return fmt.Errorf("unable to decode messages.getEmojiProfilePhotoGroups#21a548f3: field hash: %w", err)
		tl_messages_get_emoji_status_groups_gen.go#L123: 		return fmt.Errorf("can't encode messages.getEmojiStatusGroups#2ecd56cd as nil")
		tl_messages_get_emoji_status_groups_gen.go#L132: 		return fmt.Errorf("can't encode messages.getEmojiStatusGroups#2ecd56cd as nil")
		tl_messages_get_emoji_status_groups_gen.go#L141: 		return fmt.Errorf("can't decode messages.getEmojiStatusGroups#2ecd56cd to nil")
		tl_messages_get_emoji_status_groups_gen.go#L144: 		return fmt.Errorf("unable to decode messages.getEmojiStatusGroups#2ecd56cd: %w", err)
		tl_messages_get_emoji_status_groups_gen.go#L152: 		return fmt.Errorf("can't decode messages.getEmojiStatusGroups#2ecd56cd to nil")
		tl_messages_get_emoji_status_groups_gen.go#L157: 			return fmt.Errorf("unable to decode messages.getEmojiStatusGroups#2ecd56cd: field hash: %w", err)
		tl_messages_get_emoji_stickers_gen.go#L121: 		return fmt.Errorf("can't encode messages.getEmojiStickers#fbfca18f as nil")
		tl_messages_get_emoji_stickers_gen.go#L130: 		return fmt.Errorf("can't encode messages.getEmojiStickers#fbfca18f as nil")
		tl_messages_get_emoji_stickers_gen.go#L139: 		return fmt.Errorf("can't decode messages.getEmojiStickers#fbfca18f to nil")
		tl_messages_get_emoji_stickers_gen.go#L142: 		return fmt.Errorf("unable to decode messages.getEmojiStickers#fbfca18f: %w", err)
		tl_messages_get_emoji_stickers_gen.go#L150: 		return fmt.Errorf("can't decode messages.getEmojiStickers#fbfca18f to nil")
		tl_messages_get_emoji_stickers_gen.go#L155: 			return fmt.Errorf("unable to decode messages.getEmojiStickers#fbfca18f: field hash: %w", err)
		tl_messages_get_emoji_url_gen.go#L120: 		return fmt.Errorf("can't encode messages.getEmojiURL#d5b10c26 as nil")
		tl_messages_get_emoji_url_gen.go#L129: 		return fmt.Errorf("can't encode messages.getEmojiURL#d5b10c26 as nil")
		tl_messages_get_emoji_url_gen.go#L138: 		return fmt.Errorf("can't decode messages.getEmojiURL#d5b10c26 to nil")
		tl_messages_get_emoji_url_gen.go#L141: 		return fmt.Errorf("unable to decode messages.getEmojiURL#d5b10c26: %w", err)
		tl_messages_get_emoji_url_gen.go#L149: 		return fmt.Errorf("can't decode messages.getEmojiURL#d5b10c26 to nil")
		tl_messages_get_emoji_url_gen.go#L154: 			return fmt.Errorf("unable to decode messages.getEmojiURL#d5b10c26: field lang_code: %w", err)
		tl_messages_get_exported_chat_invite_gen.go#L126: 		return fmt.Errorf("can't encode messages.getExportedChatInvite#73746f5c as nil")
		tl_messages_get_exported_chat_invite_gen.go#L135: 		return fmt.Errorf("can't encode messages.getExportedChatInvite#73746f5c as nil")
		tl_messages_get_exported_chat_invite_gen.go#L138: 		return fmt.Errorf("unable to encode messages.getExportedChatInvite#73746f5c: field peer is nil")
		tl_messages_get_exported_chat_invite_gen.go#L141: 		return fmt.Errorf("unable to encode messages.getExportedChatInvite#73746f5c: field peer: %w", err)
		tl_messages_get_exported_chat_invite_gen.go#L150: 		return fmt.Errorf("can't decode messages.getExportedChatInvite#73746f5c to nil")
		tl_messages_get_exported_chat_invite_gen.go#L153: 		return fmt.Errorf("unable to decode messages.getExportedChatInvite#73746f5c: %w", err)
		tl_messages_get_exported_chat_invite_gen.go#L161: 		return fmt.Errorf("can't decode messages.getExportedChatInvite#73746f5c to nil")
		tl_messages_get_exported_chat_invite_gen.go#L166: 			return fmt.Errorf("unable to decode messages.getExportedChatInvite#73746f5c: field peer: %w", err)
		tl_messages_get_exported_chat_invite_gen.go#L173: 			return fmt.Errorf("unable to decode messages.getExportedChatInvite#73746f5c: field link: %w", err)
		tl_messages_get_exported_chat_invites_gen.go#L213: 		return fmt.Errorf("can't encode messages.getExportedChatInvites#a2b5a3f6 as nil")
		tl_messages_get_exported_chat_invites_gen.go#L222: 		return fmt.Errorf("can't encode messages.getExportedChatInvites#a2b5a3f6 as nil")
		tl_messages_get_exported_chat_invites_gen.go#L226: 		return fmt.Errorf("unable to encode messages.getExportedChatInvites#a2b5a3f6: field flags: %w", err)
		tl_messages_get_exported_chat_invites_gen.go#L229: 		return fmt.Errorf("unable to encode messages.getExportedChatInvites#a2b5a3f6: field peer is nil")
		tl_messages_get_exported_chat_invites_gen.go#L232: 		return fmt.Errorf("unable to encode messages.getExportedChatInvites#a2b5a3f6: field peer: %w", err)
		tl_messages_get_exported_chat_invites_gen.go#L235: 		return fmt.Errorf("unable to encode messages.getExportedChatInvites#a2b5a3f6: field admin_id is nil")
		tl_messages_get_exported_chat_invites_gen.go#L238: 		return fmt.Errorf("unable to encode messages.getExportedChatInvites#a2b5a3f6: field admin_id: %w", err)
		tl_messages_get_exported_chat_invites_gen.go#L253: 		return fmt.Errorf("can't decode messages.getExportedChatInvites#a2b5a3f6 to nil")
		tl_messages_get_exported_chat_invites_gen.go#L256: 		return fmt.Errorf("unable to decode messages.getExportedChatInvites#a2b5a3f6: %w", err)
		tl_messages_get_exported_chat_invites_gen.go#L264: 		return fmt.Errorf("can't decode messages.getExportedChatInvites#a2b5a3f6 to nil")
		tl_messages_get_exported_chat_invites_gen.go#L268: 			return fmt.Errorf("unable to decode messages.getExportedChatInvites#a2b5a3f6: field flags: %w", err)
		tl_messages_get_exported_chat_invites_gen.go#L275: 			return fmt.Errorf("unable to decode messages.getExportedChatInvites#a2b5a3f6: field peer: %w", err)
		tl_messages_get_exported_chat_invites_gen.go#L282: 			return fmt.Errorf("unable to decode messages.getExportedChatInvites#a2b5a3f6: field admin_id: %w", err)
		tl_messages_get_exported_chat_invites_gen.go#L289: 			return fmt.Errorf("unable to decode messages.getExportedChatInvites#a2b5a3f6: field offset_date: %w", err)
		tl_messages_get_exported_chat_invites_gen.go#L296: 			return fmt.Errorf("unable to decode messages.getExportedChatInvites#a2b5a3f6: field offset_link: %w", err)
		tl_messages_get_exported_chat_invites_gen.go#L303: 			return fmt.Errorf("unable to decode messages.getExportedChatInvites#a2b5a3f6: field limit: %w", err)
		tl_messages_get_extended_media_gen.go#L126: 		return fmt.Errorf("can't encode messages.getExtendedMedia#84f80814 as nil")
		tl_messages_get_extended_media_gen.go#L135: 		return fmt.Errorf("can't encode messages.getExtendedMedia#84f80814 as nil")
		tl_messages_get_extended_media_gen.go#L138: 		return fmt.Errorf("unable to encode messages.getExtendedMedia#84f80814: field peer is nil")
		tl_messages_get_extended_media_gen.go#L141: 		return fmt.Errorf("unable to encode messages.getExtendedMedia#84f80814: field peer: %w", err)
		tl_messages_get_extended_media_gen.go#L153: 		return fmt.Errorf("can't decode messages.getExtendedMedia#84f80814 to nil")
		tl_messages_get_extended_media_gen.go#L156: 		return fmt.Errorf("unable to decode messages.getExtendedMedia#84f80814: %w", err)
		tl_messages_get_extended_media_gen.go#L164: 		return fmt.Errorf("can't decode messages.getExtendedMedia#84f80814 to nil")
		tl_messages_get_extended_media_gen.go#L169: 			return fmt.Errorf("unable to decode messages.getExtendedMedia#84f80814: field peer: %w", err)
		tl_messages_get_extended_media_gen.go#L176: 			return fmt.Errorf("unable to decode messages.getExtendedMedia#84f80814: field id: %w", err)
		tl_messages_get_extended_media_gen.go#L185: 				return fmt.Errorf("unable to decode messages.getExtendedMedia#84f80814: field id: %w", err)
		tl_messages_get_faved_stickers_gen.go#L118: 		return fmt.Errorf("can't encode messages.getFavedStickers#4f1aaa9 as nil")
		tl_messages_get_faved_stickers_gen.go#L127: 		return fmt.Errorf("can't encode messages.getFavedStickers#4f1aaa9 as nil")
		tl_messages_get_faved_stickers_gen.go#L136: 		return fmt.Errorf("can't decode messages.getFavedStickers#4f1aaa9 to nil")
		tl_messages_get_faved_stickers_gen.go#L139: 		return fmt.Errorf("unable to decode messages.getFavedStickers#4f1aaa9: %w", err)
		tl_messages_get_faved_stickers_gen.go#L147: 		return fmt.Errorf("can't decode messages.getFavedStickers#4f1aaa9 to nil")
		tl_messages_get_faved_stickers_gen.go#L152: 			return fmt.Errorf("unable to decode messages.getFavedStickers#4f1aaa9: field hash: %w", err)
		tl_messages_get_featured_emoji_stickers_gen.go#L118: 		return fmt.Errorf("can't encode messages.getFeaturedEmojiStickers#ecf6736 as nil")
		tl_messages_get_featured_emoji_stickers_gen.go#L127: 		return fmt.Errorf("can't encode messages.getFeaturedEmojiStickers#ecf6736 as nil")
		tl_messages_get_featured_emoji_stickers_gen.go#L136: 		return fmt.Errorf("can't decode messages.getFeaturedEmojiStickers#ecf6736 to nil")
		tl_messages_get_featured_emoji_stickers_gen.go#L139: 		return fmt.Errorf("unable to decode messages.getFeaturedEmojiStickers#ecf6736: %w", err)
		tl_messages_get_featured_emoji_stickers_gen.go#L147: 		return fmt.Errorf("can't decode messages.getFeaturedEmojiStickers#ecf6736 to nil")
		tl_messages_get_featured_emoji_stickers_gen.go#L152: 			return fmt.Errorf("unable to decode messages.getFeaturedEmojiStickers#ecf6736: field hash: %w", err)
		tl_messages_get_featured_stickers_gen.go#L118: 		return fmt.Errorf("can't encode messages.getFeaturedStickers#64780b14 as nil")
		tl_messages_get_featured_stickers_gen.go#L127: 		return fmt.Errorf("can't encode messages.getFeaturedStickers#64780b14 as nil")
		tl_messages_get_featured_stickers_gen.go#L136: 		return fmt.Errorf("can't decode messages.getFeaturedStickers#64780b14 to nil")
		tl_messages_get_featured_stickers_gen.go#L139: 		return fmt.Errorf("unable to decode messages.getFeaturedStickers#64780b14: %w", err)
		tl_messages_get_featured_stickers_gen.go#L147: 		return fmt.Errorf("can't decode messages.getFeaturedStickers#64780b14 to nil")
		tl_messages_get_featured_stickers_gen.go#L152: 			return fmt.Errorf("unable to decode messages.getFeaturedStickers#64780b14: field hash: %w", err)
		tl_messages_get_full_chat_gen.go#L121: 		return fmt.Errorf("can't encode messages.getFullChat#aeb00b34 as nil")
		tl_messages_get_full_chat_gen.go#L130: 		return fmt.Errorf("can't encode messages.getFullChat#aeb00b34 as nil")
		tl_messages_get_full_chat_gen.go#L139: 		return fmt.Errorf("can't decode messages.getFullChat#aeb00b34 to nil")
		tl_messages_get_full_chat_gen.go#L142: 		return fmt.Errorf("unable to decode messages.getFullChat#aeb00b34: %w", err)
		tl_messages_get_full_chat_gen.go#L150: 		return fmt.Errorf("can't decode messages.getFullChat#aeb00b34 to nil")
		tl_messages_get_full_chat_gen.go#L155: 			return fmt.Errorf("unable to decode messages.getFullChat#aeb00b34: field chat_id: %w", err)
		tl_messages_get_game_high_scores_gen.go#L137: 		return fmt.Errorf("can't encode messages.getGameHighScores#e822649d as nil")
		tl_messages_get_game_high_scores_gen.go#L146: 		return fmt.Errorf("can't encode messages.getGameHighScores#e822649d as nil")
		tl_messages_get_game_high_scores_gen.go#L149: 		return fmt.Errorf("unable to encode messages.getGameHighScores#e822649d: field peer is nil")
		tl_messages_get_game_high_scores_gen.go#L152: 		return fmt.Errorf("unable to encode messages.getGameHighScores#e822649d: field peer: %w", err)
		tl_messages_get_game_high_scores_gen.go#L156: 		return fmt.Errorf("unable to encode messages.getGameHighScores#e822649d: field user_id is nil")
		tl_messages_get_game_high_scores_gen.go#L159: 		return fmt.Errorf("unable to encode messages.getGameHighScores#e822649d: field user_id: %w", err)
		tl_messages_get_game_high_scores_gen.go#L167: 		return fmt.Errorf("can't decode messages.getGameHighScores#e822649d to nil")
		tl_messages_get_game_high_scores_gen.go#L170: 		return fmt.Errorf("unable to decode messages.getGameHighScores#e822649d: %w", err)
		tl_messages_get_game_high_scores_gen.go#L178: 		return fmt.Errorf("can't decode messages.getGameHighScores#e822649d to nil")
		tl_messages_get_game_high_scores_gen.go#L183: 			return fmt.Errorf("unable to decode messages.getGameHighScores#e822649d: field peer: %w", err)
		tl_messages_get_game_high_scores_gen.go#L190: 			return fmt.Errorf("unable to decode messages.getGameHighScores#e822649d: field id: %w", err)
		tl_messages_get_game_high_scores_gen.go#L197: 			return fmt.Errorf("unable to decode messages.getGameHighScores#e822649d: field user_id: %w", err)
		tl_messages_get_history_gen.go#L197: 		return fmt.Errorf("can't encode messages.getHistory#4423e6c5 as nil")
		tl_messages_get_history_gen.go#L206: 		return fmt.Errorf("can't encode messages.getHistory#4423e6c5 as nil")
		tl_messages_get_history_gen.go#L209: 		return fmt.Errorf("unable to encode messages.getHistory#4423e6c5: field peer is nil")
		tl_messages_get_history_gen.go#L212: 		return fmt.Errorf("unable to encode messages.getHistory#4423e6c5: field peer: %w", err)
		tl_messages_get_history_gen.go#L227: 		return fmt.Errorf("can't decode messages.getHistory#4423e6c5 to nil")
		tl_messages_get_history_gen.go#L230: 		return fmt.Errorf("unable to decode messages.getHistory#4423e6c5: %w", err)
		tl_messages_get_history_gen.go#L238: 		return fmt.Errorf("can't decode messages.getHistory#4423e6c5 to nil")
		tl_messages_get_history_gen.go#L243: 			return fmt.Errorf("unable to decode messages.getHistory#4423e6c5: field peer: %w", err)
		tl_messages_get_history_gen.go#L250: 			return fmt.Errorf("unable to decode messages.getHistory#4423e6c5: field offset_id: %w", err)
		tl_messages_get_history_gen.go#L257: 			return fmt.Errorf("unable to decode messages.getHistory#4423e6c5: field offset_date: %w", err)
		tl_messages_get_history_gen.go#L264: 			return fmt.Errorf("unable to decode messages.getHistory#4423e6c5: field add_offset: %w", err)
		tl_messages_get_history_gen.go#L271: 			return fmt.Errorf("unable to decode messages.getHistory#4423e6c5: field limit: %w", err)
		tl_messages_get_history_gen.go#L278: 			return fmt.Errorf("unable to decode messages.getHistory#4423e6c5: field max_id: %w", err)
		tl_messages_get_history_gen.go#L285: 			return fmt.Errorf("unable to decode messages.getHistory#4423e6c5: field min_id: %w", err)
		tl_messages_get_history_gen.go#L292: 			return fmt.Errorf("unable to decode messages.getHistory#4423e6c5: field hash: %w", err)
		tl_messages_get_inline_bot_results_gen.go#L180: 		return fmt.Errorf("can't encode messages.getInlineBotResults#514e999d as nil")
		tl_messages_get_inline_bot_results_gen.go#L189: 		return fmt.Errorf("can't encode messages.getInlineBotResults#514e999d as nil")
		tl_messages_get_inline_bot_results_gen.go#L193: 		return fmt.Errorf("unable to encode messages.getInlineBotResults#514e999d: field flags: %w", err)
		tl_messages_get_inline_bot_results_gen.go#L196: 		return fmt.Errorf("unable to encode messages.getInlineBotResults#514e999d: field bot is nil")
		tl_messages_get_inline_bot_results_gen.go#L199: 		return fmt.Errorf("unable to encode messages.getInlineBotResults#514e999d: field bot: %w", err)
		tl_messages_get_inline_bot_results_gen.go#L202: 		return fmt.Errorf("unable to encode messages.getInlineBotResults#514e999d: field peer is nil")
		tl_messages_get_inline_bot_results_gen.go#L205: 		return fmt.Errorf("unable to encode messages.getInlineBotResults#514e999d: field peer: %w", err)
		tl_messages_get_inline_bot_results_gen.go#L209: 			return fmt.Errorf("unable to encode messages.getInlineBotResults#514e999d: field geo_point is nil")
		tl_messages_get_inline_bot_results_gen.go#L212: 			return fmt.Errorf("unable to encode messages.getInlineBotResults#514e999d: field geo_point: %w", err)
		tl_messages_get_inline_bot_results_gen.go#L223: 		return fmt.Errorf("can't decode messages.getInlineBotResults#514e999d to nil")
		tl_messages_get_inline_bot_results_gen.go#L226: 		return fmt.Errorf("unable to decode messages.getInlineBotResults#514e999d: %w", err)
		tl_messages_get_inline_bot_results_gen.go#L234: 		return fmt.Errorf("can't decode messages.getInlineBotResults#514e999d to nil")
		tl_messages_get_inline_bot_results_gen.go#L238: 			return fmt.Errorf("unable to decode messages.getInlineBotResults#514e999d: field flags: %w", err)
		tl_messages_get_inline_bot_results_gen.go#L244: 			return fmt.Errorf("unable to decode messages.getInlineBotResults#514e999d: field bot: %w", err)
		tl_messages_get_inline_bot_results_gen.go#L251: 			return fmt.Errorf("unable to decode messages.getInlineBotResults#514e999d: field peer: %w", err)
		tl_messages_get_inline_bot_results_gen.go#L258: 			return fmt.Errorf("unable to decode messages.getInlineBotResults#514e999d: field geo_point: %w", err)
		tl_messages_get_inline_bot_results_gen.go#L265: 			return fmt.Errorf("unable to decode messages.getInlineBotResults#514e999d: field query: %w", err)
		tl_messages_get_inline_bot_results_gen.go#L272: 			return fmt.Errorf("unable to decode messages.getInlineBotResults#514e999d: field offset: %w", err)
		tl_messages_get_inline_game_high_scores_gen.go#L126: 		return fmt.Errorf("can't encode messages.getInlineGameHighScores#f635e1b as nil")
		tl_messages_get_inline_game_high_scores_gen.go#L135: 		return fmt.Errorf("can't encode messages.getInlineGameHighScores#f635e1b as nil")
		tl_messages_get_inline_game_high_scores_gen.go#L138: 		return fmt.Errorf("unable to encode messages.getInlineGameHighScores#f635e1b: field id is nil")
		tl_messages_get_inline_game_high_scores_gen.go#L141: 		return fmt.Errorf("unable to encode messages.getInlineGameHighScores#f635e1b: field id: %w", err)
		tl_messages_get_inline_game_high_scores_gen.go#L144: 		return fmt.Errorf("unable to encode messages.getInlineGameHighScores#f635e1b: field user_id is nil")
		tl_messages_get_inline_game_high_scores_gen.go#L147: 		return fmt.Errorf("unable to encode messages.getInlineGameHighScores#f635e1b: field user_id: %w", err)
		tl_messages_get_inline_game_high_scores_gen.go#L155: 		return fmt.Errorf("can't decode messages.getInlineGameHighScores#f635e1b to nil")
		tl_messages_get_inline_game_high_scores_gen.go#L158: 		return fmt.Errorf("unable to decode messages.getInlineGameHighScores#f635e1b: %w", err)
		tl_messages_get_inline_game_high_scores_gen.go#L166: 		return fmt.Errorf("can't decode messages.getInlineGameHighScores#f635e1b to nil")
		tl_messages_get_inline_game_high_scores_gen.go#L171: 			return fmt.Errorf("unable to decode messages.getInlineGameHighScores#f635e1b: field id: %w", err)
		tl_messages_get_inline_game_high_scores_gen.go#L178: 			return fmt.Errorf("unable to decode messages.getInlineGameHighScores#f635e1b: field user_id: %w", err)
		tl_messages_get_mask_stickers_gen.go#L118: 		return fmt.Errorf("can't encode messages.getMaskStickers#640f82b8 as nil")
		tl_messages_get_mask_stickers_gen.go#L127: 		return fmt.Errorf("can't encode messages.getMaskStickers#640f82b8 as nil")
		tl_messages_get_mask_stickers_gen.go#L136: 		return fmt.Errorf("can't decode messages.getMaskStickers#640f82b8 to nil")
		tl_messages_get_mask_stickers_gen.go#L139: 		return fmt.Errorf("unable to decode messages.getMaskStickers#640f82b8: %w", err)
		tl_messages_get_mask_stickers_gen.go#L147: 		return fmt.Errorf("can't decode messages.getMaskStickers#640f82b8 to nil")
		tl_messages_get_mask_stickers_gen.go#L152: 			return fmt.Errorf("unable to decode messages.getMaskStickers#640f82b8: field hash: %w", err)
		tl_messages_get_message_edit_data_gen.go#L126: 		return fmt.Errorf("can't encode messages.getMessageEditData#fda68d36 as nil")
		tl_messages_get_message_edit_data_gen.go#L135: 		return fmt.Errorf("can't encode messages.getMessageEditData#fda68d36 as nil")
		tl_messages_get_message_edit_data_gen.go#L138: 		return fmt.Errorf("unable to encode messages.getMessageEditData#fda68d36: field peer is nil")
		tl_messages_get_message_edit_data_gen.go#L141: 		return fmt.Errorf("unable to encode messages.getMessageEditData#fda68d36: field peer: %w", err)
		tl_messages_get_message_edit_data_gen.go#L150: 		return fmt.Errorf("can't decode messages.getMessageEditData#fda68d36 to nil")
		tl_messages_get_message_edit_data_gen.go#L153: 		return fmt.Errorf("unable to decode messages.getMessageEditData#fda68d36: %w", err)
		tl_messages_get_message_edit_data_gen.go#L161: 		return fmt.Errorf("can't decode messages.getMessageEditData#fda68d36 to nil")
		tl_messages_get_message_edit_data_gen.go#L166: 			return fmt.Errorf("unable to decode messages.getMessageEditData#fda68d36: field peer: %w", err)
		tl_messages_get_message_edit_data_gen.go#L173: 			return fmt.Errorf("unable to decode messages.getMessageEditData#fda68d36: field id: %w", err)
		tl_messages_get_message_reactions_list_gen.go#L199: 		return fmt.Errorf("can't encode messages.getMessageReactionsList#461b3f48 as nil")
		tl_messages_get_message_reactions_list_gen.go#L208: 		return fmt.Errorf("can't encode messages.getMessageReactionsList#461b3f48 as nil")
		tl_messages_get_message_reactions_list_gen.go#L212: 		return fmt.Errorf("unable to encode messages.getMessageReactionsList#461b3f48: field flags: %w", err)
		tl_messages_get_message_reactions_list_gen.go#L215: 		return fmt.Errorf("unable to encode messages.getMessageReactionsList#461b3f48: field peer is nil")
		tl_messages_get_message_reactions_list_gen.go#L218: 		return fmt.Errorf("unable to encode messages.getMessageReactionsList#461b3f48: field peer: %w", err)
		tl_messages_get_message_reactions_list_gen.go#L223: 			return fmt.Errorf("unable to encode messages.getMessageReactionsList#461b3f48: field reaction is nil")
		tl_messages_get_message_reactions_list_gen.go#L226: 			return fmt.Errorf("unable to encode messages.getMessageReactionsList#461b3f48: field reaction: %w", err)
		tl_messages_get_message_reactions_list_gen.go#L239: 		return fmt.Errorf("can't decode messages.getMessageReactionsList#461b3f48 to nil")
		tl_messages_get_message_reactions_list_gen.go#L242: 		return fmt.Errorf("unable to decode messages.getMessageReactionsList#461b3f48: %w", err)
		tl_messages_get_message_reactions_list_gen.go#L250: 		return fmt.Errorf("can't decode messages.getMessageReactionsList#461b3f48 to nil")
		tl_messages_get_message_reactions_list_gen.go#L254: 			return fmt.Errorf("unable to decode messages.getMessageReactionsList#461b3f48: field flags: %w", err)
		tl_messages_get_message_reactions_list_gen.go#L260: 			return fmt.Errorf("unable to decode messages.getMessageReactionsList#461b3f48: field peer: %w", err)
		tl_messages_get_message_reactions_list_gen.go#L267: 			return fmt.Errorf("unable to decode messages.getMessageReactionsList#461b3f48: field id: %w", err)
		tl_messages_get_message_reactions_list_gen.go#L274: 			return fmt.Errorf("unable to decode messages.getMessageReactionsList#461b3f48: field reaction: %w", err)
		tl_messages_get_message_reactions_list_gen.go#L281: 			return fmt.Errorf("unable to decode messages.getMessageReactionsList#461b3f48: field offset: %w", err)
		tl_messages_get_message_reactions_list_gen.go#L288: 			return fmt.Errorf("unable to decode messages.getMessageReactionsList#461b3f48: field limit: %w", err)
		tl_messages_get_message_read_participants_gen.go#L134: 		return fmt.Errorf("can't encode messages.getMessageReadParticipants#31c1c44f as nil")
		tl_messages_get_message_read_participants_gen.go#L143: 		return fmt.Errorf("can't encode messages.getMessageReadParticipants#31c1c44f as nil")
		tl_messages_get_message_read_participants_gen.go#L146: 		return fmt.Errorf("unable to encode messages.getMessageReadParticipants#31c1c44f: field peer is nil")
		tl_messages_get_message_read_participants_gen.go#L149: 		return fmt.Errorf("unable to encode messages.getMessageReadParticipants#31c1c44f: field peer: %w", err)
		tl_messages_get_message_read_participants_gen.go#L158: 		return fmt.Errorf("can't decode messages.getMessageReadParticipants#31c1c44f to nil")
		tl_messages_get_message_read_participants_gen.go#L161: 		return fmt.Errorf("unable to decode messages.getMessageReadParticipants#31c1c44f: %w", err)
		tl_messages_get_message_read_participants_gen.go#L169: 		return fmt.Errorf("can't decode messages.getMessageReadParticipants#31c1c44f to nil")
		tl_messages_get_message_read_participants_gen.go#L174: 			return fmt.Errorf("unable to decode messages.getMessageReadParticipants#31c1c44f: field peer: %w", err)
		tl_messages_get_message_read_participants_gen.go#L181: 			return fmt.Errorf("unable to decode messages.getMessageReadParticipants#31c1c44f: field msg_id: %w", err)
		tl_messages_get_messages_gen.go#L115: 		return fmt.Errorf("can't encode messages.getMessages#63c66506 as nil")
		tl_messages_get_messages_gen.go#L124: 		return fmt.Errorf("can't encode messages.getMessages#63c66506 as nil")
		tl_messages_get_messages_gen.go#L129: 			return fmt.Errorf("unable to encode messages.getMessages#63c66506: field id element with index %d is nil", idx)
		tl_messages_get_messages_gen.go#L132: 			return fmt.Errorf("unable to encode messages.getMessages#63c66506: field id element with index %d: %w", idx, err)
		tl_messages_get_messages_gen.go#L141: 		return fmt.Errorf("can't decode messages.getMessages#63c66506 to nil")
		tl_messages_get_messages_gen.go#L144: 		return fmt.Errorf("unable to decode messages.getMessages#63c66506: %w", err)
		tl_messages_get_messages_gen.go#L152: 		return fmt.Errorf("can't decode messages.getMessages#63c66506 to nil")
		tl_messages_get_messages_gen.go#L157: 			return fmt.Errorf("unable to decode messages.getMessages#63c66506: field id: %w", err)
		tl_messages_get_messages_gen.go#L166: 				return fmt.Errorf("unable to decode messages.getMessages#63c66506: field id: %w", err)
		tl_messages_get_messages_reactions_gen.go#L129: 		return fmt.Errorf("can't encode messages.getMessagesReactions#8bba90e6 as nil")
		tl_messages_get_messages_reactions_gen.go#L138: 		return fmt.Errorf("can't encode messages.getMessagesReactions#8bba90e6 as nil")
		tl_messages_get_messages_reactions_gen.go#L141: 		return fmt.Errorf("unable to encode messages.getMessagesReactions#8bba90e6: field peer is nil")
		tl_messages_get_messages_reactions_gen.go#L144: 		return fmt.Errorf("unable to encode messages.getMessagesReactions#8bba90e6: field peer: %w", err)
		tl_messages_get_messages_reactions_gen.go#L156: 		return fmt.Errorf("can't decode messages.getMessagesReactions#8bba90e6 to nil")
		tl_messages_get_messages_reactions_gen.go#L159: 		return fmt.Errorf("unable to decode messages.getMessagesReactions#8bba90e6: %w", err)
		tl_messages_get_messages_reactions_gen.go#L167: 		return fmt.Errorf("can't decode messages.getMessagesReactions#8bba90e6 to nil")
		tl_messages_get_messages_reactions_gen.go#L172: 			return fmt.Errorf("unable to decode messages.getMessagesReactions#8bba90e6: field peer: %w", err)
		tl_messages_get_messages_reactions_gen.go#L179: 			return fmt.Errorf("unable to decode messages.getMessagesReactions#8bba90e6: field id: %w", err)
		tl_messages_get_messages_reactions_gen.go#L188: 				return fmt.Errorf("unable to decode messages.getMessagesReactions#8bba90e6: field id: %w", err)
		tl_messages_get_messages_views_gen.go#L140: 		return fmt.Errorf("can't encode messages.getMessagesViews#5784d3e1 as nil")
		tl_messages_get_messages_views_gen.go#L149: 		return fmt.Errorf("can't encode messages.getMessagesViews#5784d3e1 as nil")
		tl_messages_get_messages_views_gen.go#L152: 		return fmt.Errorf("unable to encode messages.getMessagesViews#5784d3e1: field peer is nil")
		tl_messages_get_messages_views_gen.go#L155: 		return fmt.Errorf("unable to encode messages.getMessagesViews#5784d3e1: field peer: %w", err)
		tl_messages_get_messages_views_gen.go#L168: 		return fmt.Errorf("can't decode messages.getMessagesViews#5784d3e1 to nil")
		tl_messages_get_messages_views_gen.go#L171: 		return fmt.Errorf("unable to decode messages.getMessagesViews#5784d3e1: %w", err)
		tl_messages_get_messages_views_gen.go#L179: 		return fmt.Errorf("can't decode messages.getMessagesViews#5784d3e1 to nil")
		tl_messages_get_messages_views_gen.go#L184: 			return fmt.Errorf("unable to decode messages.getMessagesViews#5784d3e1: field peer: %w", err)
		tl_messages_get_messages_views_gen.go#L191: 			return fmt.Errorf("unable to decode messages.getMessagesViews#5784d3e1: field id: %w", err)
		tl_messages_get_messages_views_gen.go#L200: 				return fmt.Errorf("unable to decode messages.getMessagesViews#5784d3e1: field id: %w", err)
		tl_messages_get_messages_views_gen.go#L208: 			return fmt.Errorf("unable to decode messages.getMessagesViews#5784d3e1: field increment: %w", err)
		tl_messages_get_old_featured_stickers_gen.go#L143: 		return fmt.Errorf("can't encode messages.getOldFeaturedStickers#7ed094a1 as nil")
		tl_messages_get_old_featured_stickers_gen.go#L152: 		return fmt.Errorf("can't encode messages.getOldFeaturedStickers#7ed094a1 as nil")
		tl_messages_get_old_featured_stickers_gen.go#L163: 		return fmt.Errorf("can't decode messages.getOldFeaturedStickers#7ed094a1 to nil")
		tl_messages_get_old_featured_stickers_gen.go#L166: 		return fmt.Errorf("unable to decode messages.getOldFeaturedStickers#7ed094a1: %w", err)
		tl_messages_get_old_featured_stickers_gen.go#L174: 		return fmt.Errorf("can't decode messages.getOldFeaturedStickers#7ed094a1 to nil")
		tl_messages_get_old_featured_stickers_gen.go#L179: 			return fmt.Errorf("unable to decode messages.getOldFeaturedStickers#7ed094a1: field offset: %w", err)
		tl_messages_get_old_featured_stickers_gen.go#L186: 			return fmt.Errorf("unable to decode messages.getOldFeaturedStickers#7ed094a1: field limit: %w", err)
		tl_messages_get_old_featured_stickers_gen.go#L193: 			return fmt.Errorf("unable to decode messages.getOldFeaturedStickers#7ed094a1: field hash: %w", err)
		tl_messages_get_onlines_gen.go#L115: 		return fmt.Errorf("can't encode messages.getOnlines#6e2be050 as nil")
		tl_messages_get_onlines_gen.go#L124: 		return fmt.Errorf("can't encode messages.getOnlines#6e2be050 as nil")
		tl_messages_get_onlines_gen.go#L127: 		return fmt.Errorf("unable to encode messages.getOnlines#6e2be050: field peer is nil")
		tl_messages_get_onlines_gen.go#L130: 		return fmt.Errorf("unable to encode messages.getOnlines#6e2be050: field peer: %w", err)
		tl_messages_get_onlines_gen.go#L138: 		return fmt.Errorf("can't decode messages.getOnlines#6e2be050 to nil")
		tl_messages_get_onlines_gen.go#L141: 		return fmt.Errorf("unable to decode messages.getOnlines#6e2be050: %w", err)
		tl_messages_get_onlines_gen.go#L149: 		return fmt.Errorf("can't decode messages.getOnlines#6e2be050 to nil")
		tl_messages_get_onlines_gen.go#L154: 			return fmt.Errorf("unable to decode messages.getOnlines#6e2be050: field peer: %w", err)
		tl_messages_get_peer_dialogs_gen.go#L115: 		return fmt.Errorf("can't encode messages.getPeerDialogs#e470bcfd as nil")
		tl_messages_get_peer_dialogs_gen.go#L124: 		return fmt.Errorf("can't encode messages.getPeerDialogs#e470bcfd as nil")
		tl_messages_get_peer_dialogs_gen.go#L129: 			return fmt.Errorf("unable to encode messages.getPeerDialogs#e470bcfd: field peers element with index %d is nil", idx)
		tl_messages_get_peer_dialogs_gen.go#L132: 			return fmt.Errorf("unable to encode messages.getPeerDialogs#e470bcfd: field peers element with index %d: %w", idx, err)
		tl_messages_get_peer_dialogs_gen.go#L141: 		return fmt.Errorf("can't decode messages.getPeerDialogs#e470bcfd to nil")
		tl_messages_get_peer_dialogs_gen.go#L144: 		return fmt.Errorf("unable to decode messages.getPeerDialogs#e470bcfd: %w", err)
		tl_messages_get_peer_dialogs_gen.go#L152: 		return fmt.Errorf("can't decode messages.getPeerDialogs#e470bcfd to nil")
		tl_messages_get_peer_dialogs_gen.go#L157: 			return fmt.Errorf("unable to decode messages.getPeerDialogs#e470bcfd: field peers: %w", err)
		tl_messages_get_peer_dialogs_gen.go#L166: 				return fmt.Errorf("unable to decode messages.getPeerDialogs#e470bcfd: field peers: %w", err)
		tl_messages_get_peer_settings_gen.go#L115: 		return fmt.Errorf("can't encode messages.getPeerSettings#efd9a6a2 as nil")
		tl_messages_get_peer_settings_gen.go#L124: 		return fmt.Errorf("can't encode messages.getPeerSettings#efd9a6a2 as nil")
		tl_messages_get_peer_settings_gen.go#L127: 		return fmt.Errorf("unable to encode messages.getPeerSettings#efd9a6a2: field peer is nil")
		tl_messages_get_peer_settings_gen.go#L130: 		return fmt.Errorf("unable to encode messages.getPeerSettings#efd9a6a2: field peer: %w", err)
		tl_messages_get_peer_settings_gen.go#L138: 		return fmt.Errorf("can't decode messages.getPeerSettings#efd9a6a2 to nil")
		tl_messages_get_peer_settings_gen.go#L141: 		return fmt.Errorf("unable to decode messages.getPeerSettings#efd9a6a2: %w", err)
		tl_messages_get_peer_settings_gen.go#L149: 		return fmt.Errorf("can't decode messages.getPeerSettings#efd9a6a2 to nil")
		tl_messages_get_peer_settings_gen.go#L154: 			return fmt.Errorf("unable to decode messages.getPeerSettings#efd9a6a2: field peer: %w", err)
		tl_messages_get_pinned_dialogs_gen.go#L118: 		return fmt.Errorf("can't encode messages.getPinnedDialogs#d6b94df2 as nil")
		tl_messages_get_pinned_dialogs_gen.go#L127: 		return fmt.Errorf("can't encode messages.getPinnedDialogs#d6b94df2 as nil")
		tl_messages_get_pinned_dialogs_gen.go#L136: 		return fmt.Errorf("can't decode messages.getPinnedDialogs#d6b94df2 to nil")
		tl_messages_get_pinned_dialogs_gen.go#L139: 		return fmt.Errorf("unable to decode messages.getPinnedDialogs#d6b94df2: %w", err)
		tl_messages_get_pinned_dialogs_gen.go#L147: 		return fmt.Errorf("can't decode messages.getPinnedDialogs#d6b94df2 to nil")
		tl_messages_get_pinned_dialogs_gen.go#L152: 			return fmt.Errorf("unable to decode messages.getPinnedDialogs#d6b94df2: field folder_id: %w", err)
		tl_messages_get_poll_results_gen.go#L126: 		return fmt.Errorf("can't encode messages.getPollResults#73bb643b as nil")
		tl_messages_get_poll_results_gen.go#L135: 		return fmt.Errorf("can't encode messages.getPollResults#73bb643b as nil")
		tl_messages_get_poll_results_gen.go#L138: 		return fmt.Errorf("unable to encode messages.getPollResults#73bb643b: field peer is nil")
		tl_messages_get_poll_results_gen.go#L141: 		return fmt.Errorf("unable to encode messages.getPollResults#73bb643b: field peer: %w", err)
		tl_messages_get_poll_results_gen.go#L150: 		return fmt.Errorf("can't decode messages.getPollResults#73bb643b to nil")
		tl_messages_get_poll_results_gen.go#L153: 		return fmt.Errorf("unable to decode messages.getPollResults#73bb643b: %w", err)
		tl_messages_get_poll_results_gen.go#L161: 		return fmt.Errorf("can't decode messages.getPollResults#73bb643b to nil")
		tl_messages_get_poll_results_gen.go#L166: 			return fmt.Errorf("unable to decode messages.getPollResults#73bb643b: field peer: %w", err)
		tl_messages_get_poll_results_gen.go#L173: 			return fmt.Errorf("unable to decode messages.getPollResults#73bb643b: field msg_id: %w", err)
		tl_messages_get_poll_votes_gen.go#L196: 		return fmt.Errorf("can't encode messages.getPollVotes#b86e380e as nil")
		tl_messages_get_poll_votes_gen.go#L205: 		return fmt.Errorf("can't encode messages.getPollVotes#b86e380e as nil")
		tl_messages_get_poll_votes_gen.go#L209: 		return fmt.Errorf("unable to encode messages.getPollVotes#b86e380e: field flags: %w", err)
		tl_messages_get_poll_votes_gen.go#L212: 		return fmt.Errorf("unable to encode messages.getPollVotes#b86e380e: field peer is nil")
		tl_messages_get_poll_votes_gen.go#L215: 		return fmt.Errorf("unable to encode messages.getPollVotes#b86e380e: field peer: %w", err)
		tl_messages_get_poll_votes_gen.go#L231: 		return fmt.Errorf("can't decode messages.getPollVotes#b86e380e to nil")
		tl_messages_get_poll_votes_gen.go#L234: 		return fmt.Errorf("unable to decode messages.getPollVotes#b86e380e: %w", err)
		tl_messages_get_poll_votes_gen.go#L242: 		return fmt.Errorf("can't decode messages.getPollVotes#b86e380e to nil")
		tl_messages_get_poll_votes_gen.go#L246: 			return fmt.Errorf("unable to decode messages.getPollVotes#b86e380e: field flags: %w", err)
		tl_messages_get_poll_votes_gen.go#L252: 			return fmt.Errorf("unable to decode messages.getPollVotes#b86e380e: field peer: %w", err)
		tl_messages_get_poll_votes_gen.go#L259: 			return fmt.Errorf("unable to decode messages.getPollVotes#b86e380e: field id: %w", err)
		tl_messages_get_poll_votes_gen.go#L266: 			return fmt.Errorf("unable to decode messages.getPollVotes#b86e380e: field option: %w", err)
		tl_messages_get_poll_votes_gen.go#L273: 			return fmt.Errorf("unable to decode messages.getPollVotes#b86e380e: field offset: %w", err)
		tl_messages_get_poll_votes_gen.go#L280: 			return fmt.Errorf("unable to decode messages.getPollVotes#b86e380e: field limit: %w", err)
		tl_messages_get_recent_locations_gen.go#L143: 		return fmt.Errorf("can't encode messages.getRecentLocations#702a40e0 as nil")
		tl_messages_get_recent_locations_gen.go#L152: 		return fmt.Errorf("can't encode messages.getRecentLocations#702a40e0 as nil")
		tl_messages_get_recent_locations_gen.go#L155: 		return fmt.Errorf("unable to encode messages.getRecentLocations#702a40e0: field peer is nil")
		tl_messages_get_recent_locations_gen.go#L158: 		return fmt.Errorf("unable to encode messages.getRecentLocations#702a40e0: field peer: %w", err)
		tl_messages_get_recent_locations_gen.go#L168: 		return fmt.Errorf("can't decode messages.getRecentLocations#702a40e0 to nil")
		tl_messages_get_recent_locations_gen.go#L171: 		return fmt.Errorf("unable to decode messages.getRecentLocations#702a40e0: %w", err)
		tl_messages_get_recent_locations_gen.go#L179: 		return fmt.Errorf("can't decode messages.getRecentLocations#702a40e0 to nil")
		tl_messages_get_recent_locations_gen.go#L184: 			return fmt.Errorf("unable to decode messages.getRecentLocations#702a40e0: field peer: %w", err)
		tl_messages_get_recent_locations_gen.go#L191: 			return fmt.Errorf("unable to decode messages.getRecentLocations#702a40e0: field limit: %w", err)
		tl_messages_get_recent_locations_gen.go#L198: 			return fmt.Errorf("unable to decode messages.getRecentLocations#702a40e0: field hash: %w", err)
		tl_messages_get_recent_reactions_gen.go#L135: 		return fmt.Errorf("can't encode messages.getRecentReactions#39461db2 as nil")
		tl_messages_get_recent_reactions_gen.go#L144: 		return fmt.Errorf("can't encode messages.getRecentReactions#39461db2 as nil")
		tl_messages_get_recent_reactions_gen.go#L154: 		return fmt.Errorf("can't decode messages.getRecentReactions#39461db2 to nil")
		tl_messages_get_recent_reactions_gen.go#L157: 		return fmt.Errorf("unable to decode messages.getRecentReactions#39461db2: %w", err)
		tl_messages_get_recent_reactions_gen.go#L165: 		return fmt.Errorf("can't decode messages.getRecentReactions#39461db2 to nil")
		tl_messages_get_recent_reactions_gen.go#L170: 			return fmt.Errorf("unable to decode messages.getRecentReactions#39461db2: field limit: %w", err)
		tl_messages_get_recent_reactions_gen.go#L177: 			return fmt.Errorf("unable to decode messages.getRecentReactions#39461db2: field hash: %w", err)
		tl_messages_get_recent_stickers_gen.go#L145: 		return fmt.Errorf("can't encode messages.getRecentStickers#9da9403b as nil")
		tl_messages_get_recent_stickers_gen.go#L154: 		return fmt.Errorf("can't encode messages.getRecentStickers#9da9403b as nil")
		tl_messages_get_recent_stickers_gen.go#L158: 		return fmt.Errorf("unable to encode messages.getRecentStickers#9da9403b: field flags: %w", err)
		tl_messages_get_recent_stickers_gen.go#L167: 		return fmt.Errorf("can't decode messages.getRecentStickers#9da9403b to nil")
		tl_messages_get_recent_stickers_gen.go#L170: 		return fmt.Errorf("unable to decode messages.getRecentStickers#9da9403b: %w", err)
		tl_messages_get_recent_stickers_gen.go#L178: 		return fmt.Errorf("can't decode messages.getRecentStickers#9da9403b to nil")
		tl_messages_get_recent_stickers_gen.go#L182: 			return fmt.Errorf("unable to decode messages.getRecentStickers#9da9403b: field flags: %w", err)
		tl_messages_get_recent_stickers_gen.go#L189: 			return fmt.Errorf("unable to decode messages.getRecentStickers#9da9403b: field hash: %w", err)
		tl_messages_get_replies_gen.go#L220: 		return fmt.Errorf("can't encode messages.getReplies#22ddd30c as nil")
		tl_messages_get_replies_gen.go#L229: 		return fmt.Errorf("can't encode messages.getReplies#22ddd30c as nil")
		tl_messages_get_replies_gen.go#L232: 		return fmt.Errorf("unable to encode messages.getReplies#22ddd30c: field peer is nil")
		tl_messages_get_replies_gen.go#L235: 		return fmt.Errorf("unable to encode messages.getReplies#22ddd30c: field peer: %w", err)
		tl_messages_get_replies_gen.go#L251: 		return fmt.Errorf("can't decode messages.getReplies#22ddd30c to nil")
		tl_messages_get_replies_gen.go#L254: 		return fmt.Errorf("unable to decode messages.getReplies#22ddd30c: %w", err)
		tl_messages_get_replies_gen.go#L262: 		return fmt.Errorf("can't decode messages.getReplies#22ddd30c to nil")
		tl_messages_get_replies_gen.go#L267: 			return fmt.Errorf("unable to decode messages.getReplies#22ddd30c: field peer: %w", err)
		tl_messages_get_replies_gen.go#L274: 			return fmt.Errorf("unable to decode messages.getReplies#22ddd30c: field msg_id: %w", err)
		tl_messages_get_replies_gen.go#L281: 			return fmt.Errorf("unable to decode messages.getReplies#22ddd30c: field offset_id: %w", err)
		tl_messages_get_replies_gen.go#L288: 			return fmt.Errorf("unable to decode messages.getReplies#22ddd30c: field offset_date: %w", err)
		tl_messages_get_replies_gen.go#L295: 			return fmt.Errorf("unable to decode messages.getReplies#22ddd30c: field add_offset: %w", err)
		tl_messages_get_replies_gen.go#L302: 			return fmt.Errorf("unable to decode messages.getReplies#22ddd30c: field limit: %w", err)
		tl_messages_get_replies_gen.go#L309: 			return fmt.Errorf("unable to decode messages.getReplies#22ddd30c: field max_id: %w", err)
		tl_messages_get_replies_gen.go#L316: 			return fmt.Errorf("unable to decode messages.getReplies#22ddd30c: field min_id: %w", err)
		tl_messages_get_replies_gen.go#L323: 			return fmt.Errorf("unable to decode messages.getReplies#22ddd30c: field hash: %w", err)
		tl_messages_get_saved_gifs_gen.go#L118: 		return fmt.Errorf("can't encode messages.getSavedGifs#5cf09635 as nil")
		tl_messages_get_saved_gifs_gen.go#L127: 		return fmt.Errorf("can't encode messages.getSavedGifs#5cf09635 as nil")
		tl_messages_get_saved_gifs_gen.go#L136: 		return fmt.Errorf("can't decode messages.getSavedGifs#5cf09635 to nil")
		tl_messages_get_saved_gifs_gen.go#L139: 		return fmt.Errorf("unable to decode messages.getSavedGifs#5cf09635: %w", err)
		tl_messages_get_saved_gifs_gen.go#L147: 		return fmt.Errorf("can't decode messages.getSavedGifs#5cf09635 to nil")
		tl_messages_get_saved_gifs_gen.go#L152: 			return fmt.Errorf("unable to decode messages.getSavedGifs#5cf09635: field hash: %w", err)
		tl_messages_get_scheduled_history_gen.go#L129: 		return fmt.Errorf("can't encode messages.getScheduledHistory#f516760b as nil")
		tl_messages_get_scheduled_history_gen.go#L138: 		return fmt.Errorf("can't encode messages.getScheduledHistory#f516760b as nil")
		tl_messages_get_scheduled_history_gen.go#L141: 		return fmt.Errorf("unable to encode messages.getScheduledHistory#f516760b: field peer is nil")
		tl_messages_get_scheduled_history_gen.go#L144: 		return fmt.Errorf("unable to encode messages.getScheduledHistory#f516760b: field peer: %w", err)
		tl_messages_get_scheduled_history_gen.go#L153: 		return fmt.Errorf("can't decode messages.getScheduledHistory#f516760b to nil")
		tl_messages_get_scheduled_history_gen.go#L156: 		return fmt.Errorf("unable to decode messages.getScheduledHistory#f516760b: %w", err)
		tl_messages_get_scheduled_history_gen.go#L164: 		return fmt.Errorf("can't decode messages.getScheduledHistory#f516760b to nil")
		tl_messages_get_scheduled_history_gen.go#L169: 			return fmt.Errorf("unable to decode messages.getScheduledHistory#f516760b: field peer: %w", err)
		tl_messages_get_scheduled_history_gen.go#L176: 			return fmt.Errorf("unable to decode messages.getScheduledHistory#f516760b: field hash: %w", err)
		tl_messages_get_scheduled_messages_gen.go#L126: 		return fmt.Errorf("can't encode messages.getScheduledMessages#bdbb0464 as nil")
		tl_messages_get_scheduled_messages_gen.go#L135: 		return fmt.Errorf("can't encode messages.getScheduledMessages#bdbb0464 as nil")
		tl_messages_get_scheduled_messages_gen.go#L138: 		return fmt.Errorf("unable to encode messages.getScheduledMessages#bdbb0464: field peer is nil")
		tl_messages_get_scheduled_messages_gen.go#L141: 		return fmt.Errorf("unable to encode messages.getScheduledMessages#bdbb0464: field peer: %w", err)
		tl_messages_get_scheduled_messages_gen.go#L153: 		return fmt.Errorf("can't decode messages.getScheduledMessages#bdbb0464 to nil")
		tl_messages_get_scheduled_messages_gen.go#L156: 		return fmt.Errorf("unable to decode messages.getScheduledMessages#bdbb0464: %w", err)
		tl_messages_get_scheduled_messages_gen.go#L164: 		return fmt.Errorf("can't decode messages.getScheduledMessages#bdbb0464 to nil")
		tl_messages_get_scheduled_messages_gen.go#L169: 			return fmt.Errorf("unable to decode messages.getScheduledMessages#bdbb0464: field peer: %w", err)
		tl_messages_get_scheduled_messages_gen.go#L176: 			return fmt.Errorf("unable to decode messages.getScheduledMessages#bdbb0464: field id: %w", err)
		tl_messages_get_scheduled_messages_gen.go#L185: 				return fmt.Errorf("unable to decode messages.getScheduledMessages#bdbb0464: field id: %w", err)
		tl_messages_get_search_counters_gen.go#L165: 		return fmt.Errorf("can't encode messages.getSearchCounters#ae7cc1 as nil")
		tl_messages_get_search_counters_gen.go#L174: 		return fmt.Errorf("can't encode messages.getSearchCounters#ae7cc1 as nil")
		tl_messages_get_search_counters_gen.go#L178: 		return fmt.Errorf("unable to encode messages.getSearchCounters#ae7cc1: field flags: %w", err)
		tl_messages_get_search_counters_gen.go#L181: 		return fmt.Errorf("unable to encode messages.getSearchCounters#ae7cc1: field peer is nil")
		tl_messages_get_search_counters_gen.go#L184: 		return fmt.Errorf("unable to encode messages.getSearchCounters#ae7cc1: field peer: %w", err)
		tl_messages_get_search_counters_gen.go#L192: 			return fmt.Errorf("unable to encode messages.getSearchCounters#ae7cc1: field filters element with index %d is nil", idx)
		tl_messages_get_search_counters_gen.go#L195: 			return fmt.Errorf("unable to encode messages.getSearchCounters#ae7cc1: field filters element with index %d: %w", idx, err)
		tl_messages_get_search_counters_gen.go#L204: 		return fmt.Errorf("can't decode messages.getSearchCounters#ae7cc1 to nil")
		tl_messages_get_search_counters_gen.go#L207: 		return fmt.Errorf("unable to decode messages.getSearchCounters#ae7cc1: %w", err)
		tl_messages_get_search_counters_gen.go#L215: 		return fmt.Errorf("can't decode messages.getSearchCounters#ae7cc1 to nil")
		tl_messages_get_search_counters_gen.go#L219: 			return fmt.Errorf("unable to decode messages.getSearchCounters#ae7cc1: field flags: %w", err)
		tl_messages_get_search_counters_gen.go#L225: 			return fmt.Errorf("unable to decode messages.getSearchCounters#ae7cc1: field peer: %w", err)
		tl_messages_get_search_counters_gen.go#L232: 			return fmt.Errorf("unable to decode messages.getSearchCounters#ae7cc1: field top_msg_id: %w", err)
		tl_messages_get_search_counters_gen.go#L239: 			return fmt.Errorf("unable to decode messages.getSearchCounters#ae7cc1: field filters: %w", err)
		tl_messages_get_search_counters_gen.go#L248: 				return fmt.Errorf("unable to decode messages.getSearchCounters#ae7cc1: field filters: %w", err)
		tl_messages_get_search_results_calendar_gen.go#L162: 		return fmt.Errorf("can't encode messages.getSearchResultsCalendar#49f0bde9 as nil")
		tl_messages_get_search_results_calendar_gen.go#L171: 		return fmt.Errorf("can't encode messages.getSearchResultsCalendar#49f0bde9 as nil")
		tl_messages_get_search_results_calendar_gen.go#L174: 		return fmt.Errorf("unable to encode messages.getSearchResultsCalendar#49f0bde9: field peer is nil")
		tl_messages_get_search_results_calendar_gen.go#L177: 		return fmt.Errorf("unable to encode messages.getSearchResultsCalendar#49f0bde9: field peer: %w", err)
		tl_messages_get_search_results_calendar_gen.go#L180: 		return fmt.Errorf("unable to encode messages.getSearchResultsCalendar#49f0bde9: field filter is nil")
		tl_messages_get_search_results_calendar_gen.go#L183: 		return fmt.Errorf("unable to encode messages.getSearchResultsCalendar#49f0bde9: field filter: %w", err)
		tl_messages_get_search_results_calendar_gen.go#L193: 		return fmt.Errorf("can't decode messages.getSearchResultsCalendar#49f0bde9 to nil")
		tl_messages_get_search_results_calendar_gen.go#L196: 		return fmt.Errorf("unable to decode messages.getSearchResultsCalendar#49f0bde9: %w", err)
		tl_messages_get_search_results_calendar_gen.go#L204: 		return fmt.Errorf("can't decode messages.getSearchResultsCalendar#49f0bde9 to nil")
		tl_messages_get_search_results_calendar_gen.go#L209: 			return fmt.Errorf("unable to decode messages.getSearchResultsCalendar#49f0bde9: field peer: %w", err)
		tl_messages_get_search_results_calendar_gen.go#L216: 			return fmt.Errorf("unable to decode messages.getSearchResultsCalendar#49f0bde9: field filter: %w", err)
		tl_messages_get_search_results_calendar_gen.go#L223: 			return fmt.Errorf("unable to decode messages.getSearchResultsCalendar#49f0bde9: field offset_id: %w", err)
		tl_messages_get_search_results_calendar_gen.go#L230: 			return fmt.Errorf("unable to decode messages.getSearchResultsCalendar#49f0bde9: field offset_date: %w", err)
		tl_messages_get_search_results_positions_gen.go#L162: 		return fmt.Errorf("can't encode messages.getSearchResultsPositions#6e9583a3 as nil")
		tl_messages_get_search_results_positions_gen.go#L171: 		return fmt.Errorf("can't encode messages.getSearchResultsPositions#6e9583a3 as nil")
		tl_messages_get_search_results_positions_gen.go#L174: 		return fmt.Errorf("unable to encode messages.getSearchResultsPositions#6e9583a3: field peer is nil")
		tl_messages_get_search_results_positions_gen.go#L177: 		return fmt.Errorf("unable to encode messages.getSearchResultsPositions#6e9583a3: field peer: %w", err)
		tl_messages_get_search_results_positions_gen.go#L180: 		return fmt.Errorf("unable to encode messages.getSearchResultsPositions#6e9583a3: field filter is nil")
		tl_messages_get_search_results_positions_gen.go#L183: 		return fmt.Errorf("unable to encode messages.getSearchResultsPositions#6e9583a3: field filter: %w", err)
		tl_messages_get_search_results_positions_gen.go#L193: 		return fmt.Errorf("can't decode messages.getSearchResultsPositions#6e9583a3 to nil")
		tl_messages_get_search_results_positions_gen.go#L196: 		return fmt.Errorf("unable to decode messages.getSearchResultsPositions#6e9583a3: %w", err)
		tl_messages_get_search_results_positions_gen.go#L204: 		return fmt.Errorf("can't decode messages.getSearchResultsPositions#6e9583a3 to nil")
		tl_messages_get_search_results_positions_gen.go#L209: 			return fmt.Errorf("unable to decode messages.getSearchResultsPositions#6e9583a3: field peer: %w", err)
		tl_messages_get_search_results_positions_gen.go#L216: 			return fmt.Errorf("unable to decode messages.getSearchResultsPositions#6e9583a3: field filter: %w", err)
		tl_messages_get_search_results_positions_gen.go#L223: 			return fmt.Errorf("unable to decode messages.getSearchResultsPositions#6e9583a3: field offset_id: %w", err)
		tl_messages_get_search_results_positions_gen.go#L230: 			return fmt.Errorf("unable to decode messages.getSearchResultsPositions#6e9583a3: field limit: %w", err)
		tl_messages_get_split_ranges_gen.go#L98: 		return fmt.Errorf("can't encode messages.getSplitRanges#1cff7e08 as nil")
		tl_messages_get_split_ranges_gen.go#L107: 		return fmt.Errorf("can't encode messages.getSplitRanges#1cff7e08 as nil")
		tl_messages_get_split_ranges_gen.go#L115: 		return fmt.Errorf("can't decode messages.getSplitRanges#1cff7e08 to nil")
		tl_messages_get_split_ranges_gen.go#L118: 		return fmt.Errorf("unable to decode messages.getSplitRanges#1cff7e08: %w", err)
		tl_messages_get_split_ranges_gen.go#L126: 		return fmt.Errorf("can't decode messages.getSplitRanges#1cff7e08 to nil")
		tl_messages_get_sticker_set_gen.go#L129: 		return fmt.Errorf("can't encode messages.getStickerSet#c8a0ec74 as nil")
		tl_messages_get_sticker_set_gen.go#L138: 		return fmt.Errorf("can't encode messages.getStickerSet#c8a0ec74 as nil")
		tl_messages_get_sticker_set_gen.go#L141: 		return fmt.Errorf("unable to encode messages.getStickerSet#c8a0ec74: field stickerset is nil")
		tl_messages_get_sticker_set_gen.go#L144: 		return fmt.Errorf("unable to encode messages.getStickerSet#c8a0ec74: field stickerset: %w", err)
		tl_messages_get_sticker_set_gen.go#L153: 		return fmt.Errorf("can't decode messages.getStickerSet#c8a0ec74 to nil")
		tl_messages_get_sticker_set_gen.go#L156: 		return fmt.Errorf("unable to decode messages.getStickerSet#c8a0ec74: %w", err)
		tl_messages_get_sticker_set_gen.go#L164: 		return fmt.Errorf("can't decode messages.getStickerSet#c8a0ec74 to nil")
		tl_messages_get_sticker_set_gen.go#L169: 			return fmt.Errorf("unable to decode messages.getStickerSet#c8a0ec74: field stickerset: %w", err)
		tl_messages_get_sticker_set_gen.go#L176: 			return fmt.Errorf("unable to decode messages.getStickerSet#c8a0ec74: field hash: %w", err)
		tl_messages_get_stickers_gen.go#L129: 		return fmt.Errorf("can't encode messages.getStickers#d5a5d3a1 as nil")
		tl_messages_get_stickers_gen.go#L138: 		return fmt.Errorf("can't encode messages.getStickers#d5a5d3a1 as nil")
		tl_messages_get_stickers_gen.go#L148: 		return fmt.Errorf("can't decode messages.getStickers#d5a5d3a1 to nil")
		tl_messages_get_stickers_gen.go#L151: 		return fmt.Errorf("unable to decode messages.getStickers#d5a5d3a1: %w", err)
		tl_messages_get_stickers_gen.go#L159: 		return fmt.Errorf("can't decode messages.getStickers#d5a5d3a1 to nil")
		tl_messages_get_stickers_gen.go#L164: 			return fmt.Errorf("unable to decode messages.getStickers#d5a5d3a1: field emoticon: %w", err)
		tl_messages_get_stickers_gen.go#L171: 			return fmt.Errorf("unable to decode messages.getStickers#d5a5d3a1: field hash: %w", err)
		tl_messages_get_suggested_dialog_filters_gen.go#L101: 		return fmt.Errorf("can't encode messages.getSuggestedDialogFilters#a29cd42c as nil")
		tl_messages_get_suggested_dialog_filters_gen.go#L110: 		return fmt.Errorf("can't encode messages.getSuggestedDialogFilters#a29cd42c as nil")
		tl_messages_get_suggested_dialog_filters_gen.go#L118: 		return fmt.Errorf("can't decode messages.getSuggestedDialogFilters#a29cd42c to nil")
		tl_messages_get_suggested_dialog_filters_gen.go#L121: 		return fmt.Errorf("unable to decode messages.getSuggestedDialogFilters#a29cd42c: %w", err)
		tl_messages_get_suggested_dialog_filters_gen.go#L129: 		return fmt.Errorf("can't decode messages.getSuggestedDialogFilters#a29cd42c to nil")
		tl_messages_get_top_reactions_gen.go#L135: 		return fmt.Errorf("can't encode messages.getTopReactions#bb8125ba as nil")
		tl_messages_get_top_reactions_gen.go#L144: 		return fmt.Errorf("can't encode messages.getTopReactions#bb8125ba as nil")
		tl_messages_get_top_reactions_gen.go#L154: 		return fmt.Errorf("can't decode messages.getTopReactions#bb8125ba to nil")
		tl_messages_get_top_reactions_gen.go#L157: 		return fmt.Errorf("unable to decode messages.getTopReactions#bb8125ba: %w", err)
		tl_messages_get_top_reactions_gen.go#L165: 		return fmt.Errorf("can't decode messages.getTopReactions#bb8125ba to nil")
		tl_messages_get_top_reactions_gen.go#L170: 			return fmt.Errorf("unable to decode messages.getTopReactions#bb8125ba: field limit: %w", err)
		tl_messages_get_top_reactions_gen.go#L177: 			return fmt.Errorf("unable to decode messages.getTopReactions#bb8125ba: field hash: %w", err)
		tl_messages_get_unread_mentions_gen.go#L220: 		return fmt.Errorf("can't encode messages.getUnreadMentions#f107e790 as nil")
		tl_messages_get_unread_mentions_gen.go#L229: 		return fmt.Errorf("can't encode messages.getUnreadMentions#f107e790 as nil")
		tl_messages_get_unread_mentions_gen.go#L233: 		return fmt.Errorf("unable to encode messages.getUnreadMentions#f107e790: field flags: %w", err)
		tl_messages_get_unread_mentions_gen.go#L236: 		return fmt.Errorf("unable to encode messages.getUnreadMentions#f107e790: field peer is nil")
		tl_messages_get_unread_mentions_gen.go#L239: 		return fmt.Errorf("unable to encode messages.getUnreadMentions#f107e790: field peer: %w", err)
		tl_messages_get_unread_mentions_gen.go#L255: 		return fmt.Errorf("can't decode messages.getUnreadMentions#f107e790 to nil")
		tl_messages_get_unread_mentions_gen.go#L258: 		return fmt.Errorf("unable to decode messages.getUnreadMentions#f107e790: %w", err)
		tl_messages_get_unread_mentions_gen.go#L266: 		return fmt.Errorf("can't decode messages.getUnreadMentions#f107e790 to nil")
		tl_messages_get_unread_mentions_gen.go#L270: 			return fmt.Errorf("unable to decode messages.getUnreadMentions#f107e790: field flags: %w", err)
		tl_messages_get_unread_mentions_gen.go#L276: 			return fmt.Errorf("unable to decode messages.getUnreadMentions#f107e790: field peer: %w", err)
		tl_messages_get_unread_mentions_gen.go#L283: 			return fmt.Errorf("unable to decode messages.getUnreadMentions#f107e790: field top_msg_id: %w", err)
		tl_messages_get_unread_mentions_gen.go#L290: 			return fmt.Errorf("unable to decode messages.getUnreadMentions#f107e790: field offset_id: %w", err)
		tl_messages_get_unread_mentions_gen.go#L297: 			return fmt.Errorf("unable to decode messages.getUnreadMentions#f107e790: field add_offset: %w", err)
		tl_messages_get_unread_mentions_gen.go#L304: 			return fmt.Errorf("unable to decode messages.getUnreadMentions#f107e790: field limit: %w", err)
		tl_messages_get_unread_mentions_gen.go#L311: 			return fmt.Errorf("unable to decode messages.getUnreadMentions#f107e790: field max_id: %w", err)
		tl_messages_get_unread_mentions_gen.go#L318: 			return fmt.Errorf("unable to decode messages.getUnreadMentions#f107e790: field min_id: %w", err)
		tl_messages_get_unread_reactions_gen.go#L214: 		return fmt.Errorf("can't encode messages.getUnreadReactions#3223495b as nil")
		tl_messages_get_unread_reactions_gen.go#L223: 		return fmt.Errorf("can't encode messages.getUnreadReactions#3223495b as nil")
		tl_messages_get_unread_reactions_gen.go#L227: 		return fmt.Errorf("unable to encode messages.getUnreadReactions#3223495b: field flags: %w", err)
		tl_messages_get_unread_reactions_gen.go#L230: 		return fmt.Errorf("unable to encode messages.getUnreadReactions#3223495b: field peer is nil")
		tl_messages_get_unread_reactions_gen.go#L233: 		return fmt.Errorf("unable to encode messages.getUnreadReactions#3223495b: field peer: %w", err)
		tl_messages_get_unread_reactions_gen.go#L249: 		return fmt.Errorf("can't decode messages.getUnreadReactions#3223495b to nil")
		tl_messages_get_unread_reactions_gen.go#L252: 		return fmt.Errorf("unable to decode messages.getUnreadReactions#3223495b: %w", err)
		tl_messages_get_unread_reactions_gen.go#L260: 		return fmt.Errorf("can't decode messages.getUnreadReactions#3223495b to nil")
		tl_messages_get_unread_reactions_gen.go#L264: 			return fmt.Errorf("unable to decode messages.getUnreadReactions#3223495b: field flags: %w", err)
		tl_messages_get_unread_reactions_gen.go#L270: 			return fmt.Errorf("unable to decode messages.getUnreadReactions#3223495b: field peer: %w", err)
		tl_messages_get_unread_reactions_gen.go#L277: 			return fmt.Errorf("unable to decode messages.getUnreadReactions#3223495b: field top_msg_id: %w", err)
		tl_messages_get_unread_reactions_gen.go#L284: 			return fmt.Errorf("unable to decode messages.getUnreadReactions#3223495b: field offset_id: %w", err)
		tl_messages_get_unread_reactions_gen.go#L291: 			return fmt.Errorf("unable to decode messages.getUnreadReactions#3223495b: field add_offset: %w", err)
		tl_messages_get_unread_reactions_gen.go#L298: 			return fmt.Errorf("unable to decode messages.getUnreadReactions#3223495b: field limit: %w", err)
		tl_messages_get_unread_reactions_gen.go#L305: 			return fmt.Errorf("unable to decode messages.getUnreadReactions#3223495b: field max_id: %w", err)
		tl_messages_get_unread_reactions_gen.go#L312: 			return fmt.Errorf("unable to decode messages.getUnreadReactions#3223495b: field min_id: %w", err)
		tl_messages_get_web_page_gen.go#L132: 		return fmt.Errorf("can't encode messages.getWebPage#8d9692a3 as nil")
		tl_messages_get_web_page_gen.go#L141: 		return fmt.Errorf("can't encode messages.getWebPage#8d9692a3 as nil")
		tl_messages_get_web_page_gen.go#L151: 		return fmt.Errorf("can't decode messages.getWebPage#8d9692a3 to nil")
		tl_messages_get_web_page_gen.go#L154: 		return fmt.Errorf("unable to decode messages.getWebPage#8d9692a3: %w", err)
		tl_messages_get_web_page_gen.go#L162: 		return fmt.Errorf("can't decode messages.getWebPage#8d9692a3 to nil")
		tl_messages_get_web_page_gen.go#L167: 			return fmt.Errorf("unable to decode messages.getWebPage#8d9692a3: field url: %w", err)
		tl_messages_get_web_page_gen.go#L174: 			return fmt.Errorf("unable to decode messages.getWebPage#8d9692a3: field hash: %w", err)
		tl_messages_get_web_page_preview_gen.go#L150: 		return fmt.Errorf("can't encode messages.getWebPagePreview#8b68b0cc as nil")
		tl_messages_get_web_page_preview_gen.go#L159: 		return fmt.Errorf("can't encode messages.getWebPagePreview#8b68b0cc as nil")
		tl_messages_get_web_page_preview_gen.go#L163: 		return fmt.Errorf("unable to encode messages.getWebPagePreview#8b68b0cc: field flags: %w", err)
		tl_messages_get_web_page_preview_gen.go#L170: 				return fmt.Errorf("unable to encode messages.getWebPagePreview#8b68b0cc: field entities element with index %d is nil", idx)
		tl_messages_get_web_page_preview_gen.go#L173: 				return fmt.Errorf("unable to encode messages.getWebPagePreview#8b68b0cc: field entities element with index %d: %w", idx, err)
		tl_messages_get_web_page_preview_gen.go#L183: 		return fmt.Errorf("can't decode messages.getWebPagePreview#8b68b0cc to nil")
		tl_messages_get_web_page_preview_gen.go#L186: 		return fmt.Errorf("unable to decode messages.getWebPagePreview#8b68b0cc: %w", err)
		tl_messages_get_web_page_preview_gen.go#L194: 		return fmt.Errorf("can't decode messages.getWebPagePreview#8b68b0cc to nil")
		tl_messages_get_web_page_preview_gen.go#L198: 			return fmt.Errorf("unable to decode messages.getWebPagePreview#8b68b0cc: field flags: %w", err)
		tl_messages_get_web_page_preview_gen.go#L204: 			return fmt.Errorf("unable to decode messages.getWebPagePreview#8b68b0cc: field message: %w", err)
		tl_messages_get_web_page_preview_gen.go#L211: 			return fmt.Errorf("unable to decode messages.getWebPagePreview#8b68b0cc: field entities: %w", err)
		tl_messages_get_web_page_preview_gen.go#L220: 				return fmt.Errorf("unable to decode messages.getWebPagePreview#8b68b0cc: field entities: %w", err)
		tl_messages_hide_all_chat_join_requests_gen.go#L171: 		return fmt.Errorf("can't encode messages.hideAllChatJoinRequests#e085f4ea as nil")
		tl_messages_hide_all_chat_join_requests_gen.go#L180: 		return fmt.Errorf("can't encode messages.hideAllChatJoinRequests#e085f4ea as nil")
		tl_messages_hide_all_chat_join_requests_gen.go#L184: 		return fmt.Errorf("unable to encode messages.hideAllChatJoinRequests#e085f4ea: field flags: %w", err)
		tl_messages_hide_all_chat_join_requests_gen.go#L187: 		return fmt.Errorf("unable to encode messages.hideAllChatJoinRequests#e085f4ea: field peer is nil")
		tl_messages_hide_all_chat_join_requests_gen.go#L190: 		return fmt.Errorf("unable to encode messages.hideAllChatJoinRequests#e085f4ea: field peer: %w", err)
		tl_messages_hide_all_chat_join_requests_gen.go#L201: 		return fmt.Errorf("can't decode messages.hideAllChatJoinRequests#e085f4ea to nil")
		tl_messages_hide_all_chat_join_requests_gen.go#L204: 		return fmt.Errorf("unable to decode messages.hideAllChatJoinRequests#e085f4ea: %w", err)
		tl_messages_hide_all_chat_join_requests_gen.go#L212: 		return fmt.Errorf("can't decode messages.hideAllChatJoinRequests#e085f4ea to nil")
		tl_messages_hide_all_chat_join_requests_gen.go#L216: 			return fmt.Errorf("unable to decode messages.hideAllChatJoinRequests#e085f4ea: field flags: %w", err)
		tl_messages_hide_all_chat_join_requests_gen.go#L223: 			return fmt.Errorf("unable to decode messages.hideAllChatJoinRequests#e085f4ea: field peer: %w", err)
		tl_messages_hide_all_chat_join_requests_gen.go#L230: 			return fmt.Errorf("unable to decode messages.hideAllChatJoinRequests#e085f4ea: field link: %w", err)
		tl_messages_hide_chat_join_request_gen.go#L162: 		return fmt.Errorf("can't encode messages.hideChatJoinRequest#7fe7e815 as nil")
		tl_messages_hide_chat_join_request_gen.go#L171: 		return fmt.Errorf("can't encode messages.hideChatJoinRequest#7fe7e815 as nil")
		tl_messages_hide_chat_join_request_gen.go#L175: 		return fmt.Errorf("unable to encode messages.hideChatJoinRequest#7fe7e815: field flags: %w", err)
		tl_messages_hide_chat_join_request_gen.go#L178: 		return fmt.Errorf("unable to encode messages.hideChatJoinRequest#7fe7e815: field peer is nil")
		tl_messages_hide_chat_join_request_gen.go#L181: 		return fmt.Errorf("unable to encode messages.hideChatJoinRequest#7fe7e815: field peer: %w", err)
		tl_messages_hide_chat_join_request_gen.go#L184: 		return fmt.Errorf("unable to encode messages.hideChatJoinRequest#7fe7e815: field user_id is nil")
		tl_messages_hide_chat_join_request_gen.go#L187: 		return fmt.Errorf("unable to encode messages.hideChatJoinRequest#7fe7e815: field user_id: %w", err)
		tl_messages_hide_chat_join_request_gen.go#L195: 		return fmt.Errorf("can't decode messages.hideChatJoinRequest#7fe7e815 to nil")
		tl_messages_hide_chat_join_request_gen.go#L198: 		return fmt.Errorf("unable to decode messages.hideChatJoinRequest#7fe7e815: %w", err)
		tl_messages_hide_chat_join_request_gen.go#L206: 		return fmt.Errorf("can't decode messages.hideChatJoinRequest#7fe7e815 to nil")
		tl_messages_hide_chat_join_request_gen.go#L210: 			return fmt.Errorf("unable to decode messages.hideChatJoinRequest#7fe7e815: field flags: %w", err)
		tl_messages_hide_chat_join_request_gen.go#L217: 			return fmt.Errorf("unable to decode messages.hideChatJoinRequest#7fe7e815: field peer: %w", err)
		tl_messages_hide_chat_join_request_gen.go#L224: 			return fmt.Errorf("unable to decode messages.hideChatJoinRequest#7fe7e815: field user_id: %w", err)
		tl_messages_hide_peer_settings_bar_gen.go#L121: 		return fmt.Errorf("can't encode messages.hidePeerSettingsBar#4facb138 as nil")
		tl_messages_hide_peer_settings_bar_gen.go#L130: 		return fmt.Errorf("can't encode messages.hidePeerSettingsBar#4facb138 as nil")
		tl_messages_hide_peer_settings_bar_gen.go#L133: 		return fmt.Errorf("unable to encode messages.hidePeerSettingsBar#4facb138: field peer is nil")
		tl_messages_hide_peer_settings_bar_gen.go#L136: 		return fmt.Errorf("unable to encode messages.hidePeerSettingsBar#4facb138: field peer: %w", err)
		tl_messages_hide_peer_settings_bar_gen.go#L144: 		return fmt.Errorf("can't decode messages.hidePeerSettingsBar#4facb138 to nil")
		tl_messages_hide_peer_settings_bar_gen.go#L147: 		return fmt.Errorf("unable to decode messages.hidePeerSettingsBar#4facb138: %w", err)
		tl_messages_hide_peer_settings_bar_gen.go#L155: 		return fmt.Errorf("can't decode messages.hidePeerSettingsBar#4facb138 to nil")
		tl_messages_hide_peer_settings_bar_gen.go#L160: 			return fmt.Errorf("unable to decode messages.hidePeerSettingsBar#4facb138: field peer: %w", err)
		tl_messages_high_scores_gen.go#L126: 		return fmt.Errorf("can't encode messages.highScores#9a3bfd99 as nil")
		tl_messages_high_scores_gen.go#L135: 		return fmt.Errorf("can't encode messages.highScores#9a3bfd99 as nil")
		tl_messages_high_scores_gen.go#L140: 			return fmt.Errorf("unable to encode messages.highScores#9a3bfd99: field scores element with index %d: %w", idx, err)
		tl_messages_high_scores_gen.go#L146: 			return fmt.Errorf("unable to encode messages.highScores#9a3bfd99: field users element with index %d is nil", idx)
		tl_messages_high_scores_gen.go#L149: 			return fmt.Errorf("unable to encode messages.highScores#9a3bfd99: field users element with index %d: %w", idx, err)
		tl_messages_high_scores_gen.go#L158: 		return fmt.Errorf("can't decode messages.highScores#9a3bfd99 to nil")
		tl_messages_high_scores_gen.go#L161: 		return fmt.Errorf("unable to decode messages.highScores#9a3bfd99: %w", err)
		tl_messages_high_scores_gen.go#L169: 		return fmt.Errorf("can't decode messages.highScores#9a3bfd99 to nil")
		tl_messages_high_scores_gen.go#L174: 			return fmt.Errorf("unable to decode messages.highScores#9a3bfd99: field scores: %w", err)
		tl_messages_high_scores_gen.go#L183: 				return fmt.Errorf("unable to decode messages.highScores#9a3bfd99: field scores: %w", err)
		tl_messages_high_scores_gen.go#L191: 			return fmt.Errorf("unable to decode messages.highScores#9a3bfd99: field users: %w", err)
		tl_messages_high_scores_gen.go#L200: 				return fmt.Errorf("unable to decode messages.highScores#9a3bfd99: field users: %w", err)
		tl_messages_history_import_gen.go#L121: 		return fmt.Errorf("can't encode messages.historyImport#1662af0b as nil")
		tl_messages_history_import_gen.go#L130: 		return fmt.Errorf("can't encode messages.historyImport#1662af0b as nil")
		tl_messages_history_import_gen.go#L139: 		return fmt.Errorf("can't decode messages.historyImport#1662af0b to nil")
		tl_messages_history_import_gen.go#L142: 		return fmt.Errorf("unable to decode messages.historyImport#1662af0b: %w", err)
		tl_messages_history_import_gen.go#L150: 		return fmt.Errorf("can't decode messages.historyImport#1662af0b to nil")
		tl_messages_history_import_gen.go#L155: 			return fmt.Errorf("unable to decode messages.historyImport#1662af0b: field id: %w", err)
		tl_messages_history_import_parsed_gen.go#L172: 		return fmt.Errorf("can't encode messages.historyImportParsed#5e0fb7b9 as nil")
		tl_messages_history_import_parsed_gen.go#L181: 		return fmt.Errorf("can't encode messages.historyImportParsed#5e0fb7b9 as nil")
		tl_messages_history_import_parsed_gen.go#L185: 		return fmt.Errorf("unable to encode messages.historyImportParsed#5e0fb7b9: field flags: %w", err)
		tl_messages_history_import_parsed_gen.go#L196: 		return fmt.Errorf("can't decode messages.historyImportParsed#5e0fb7b9 to nil")
		tl_messages_history_import_parsed_gen.go#L199: 		return fmt.Errorf("unable to decode messages.historyImportParsed#5e0fb7b9: %w", err)
		tl_messages_history_import_parsed_gen.go#L207: 		return fmt.Errorf("can't decode messages.historyImportParsed#5e0fb7b9 to nil")
		tl_messages_history_import_parsed_gen.go#L211: 			return fmt.Errorf("unable to decode messages.historyImportParsed#5e0fb7b9: field flags: %w", err)
		tl_messages_history_import_parsed_gen.go#L219: 			return fmt.Errorf("unable to decode messages.historyImportParsed#5e0fb7b9: field title: %w", err)
		tl_messages_import_chat_invite_gen.go#L118: 		return fmt.Errorf("can't encode messages.importChatInvite#6c50051c as nil")
		tl_messages_import_chat_invite_gen.go#L127: 		return fmt.Errorf("can't encode messages.importChatInvite#6c50051c as nil")
		tl_messages_import_chat_invite_gen.go#L136: 		return fmt.Errorf("can't decode messages.importChatInvite#6c50051c to nil")
		tl_messages_import_chat_invite_gen.go#L139: 		return fmt.Errorf("unable to decode messages.importChatInvite#6c50051c: %w", err)
		tl_messages_import_chat_invite_gen.go#L147: 		return fmt.Errorf("can't decode messages.importChatInvite#6c50051c to nil")
		tl_messages_import_chat_invite_gen.go#L152: 			return fmt.Errorf("unable to decode messages.importChatInvite#6c50051c: field hash: %w", err)
		tl_messages_inactive_chats_gen.go#L137: 		return fmt.Errorf("can't encode messages.inactiveChats#a927fec5 as nil")
		tl_messages_inactive_chats_gen.go#L146: 		return fmt.Errorf("can't encode messages.inactiveChats#a927fec5 as nil")
		tl_messages_inactive_chats_gen.go#L155: 			return fmt.Errorf("unable to encode messages.inactiveChats#a927fec5: field chats element with index %d is nil", idx)
		tl_messages_inactive_chats_gen.go#L158: 			return fmt.Errorf("unable to encode messages.inactiveChats#a927fec5: field chats element with index %d: %w", idx, err)
		tl_messages_inactive_chats_gen.go#L164: 			return fmt.Errorf("unable to encode messages.inactiveChats#a927fec5: field users element with index %d is nil", idx)
		tl_messages_inactive_chats_gen.go#L167: 			return fmt.Errorf("unable to encode messages.inactiveChats#a927fec5: field users element with index %d: %w", idx, err)
		tl_messages_inactive_chats_gen.go#L176: 		return fmt.Errorf("can't decode messages.inactiveChats#a927fec5 to nil")
		tl_messages_inactive_chats_gen.go#L179: 		return fmt.Errorf("unable to decode messages.inactiveChats#a927fec5: %w", err)
		tl_messages_inactive_chats_gen.go#L187: 		return fmt.Errorf("can't decode messages.inactiveChats#a927fec5 to nil")
		tl_messages_inactive_chats_gen.go#L192: 			return fmt.Errorf("unable to decode messages.inactiveChats#a927fec5: field dates: %w", err)
		tl_messages_inactive_chats_gen.go#L201: 				return fmt.Errorf("unable to decode messages.inactiveChats#a927fec5: field dates: %w", err)
		tl_messages_inactive_chats_gen.go#L209: 			return fmt.Errorf("unable to decode messages.inactiveChats#a927fec5: field chats: %w", err)
		tl_messages_inactive_chats_gen.go#L218: 				return fmt.Errorf("unable to decode messages.inactiveChats#a927fec5: field chats: %w", err)
		tl_messages_inactive_chats_gen.go#L226: 			return fmt.Errorf("unable to decode messages.inactiveChats#a927fec5: field users: %w", err)
		tl_messages_inactive_chats_gen.go#L235: 				return fmt.Errorf("unable to decode messages.inactiveChats#a927fec5: field users: %w", err)
		tl_messages_init_history_import_gen.go#L148: 		return fmt.Errorf("can't encode messages.initHistoryImport#34090c3b as nil")
		tl_messages_init_history_import_gen.go#L157: 		return fmt.Errorf("can't encode messages.initHistoryImport#34090c3b as nil")
		tl_messages_init_history_import_gen.go#L160: 		return fmt.Errorf("unable to encode messages.initHistoryImport#34090c3b: field peer is nil")
		tl_messages_init_history_import_gen.go#L163: 		return fmt.Errorf("unable to encode messages.initHistoryImport#34090c3b: field peer: %w", err)
		tl_messages_init_history_import_gen.go#L166: 		return fmt.Errorf("unable to encode messages.initHistoryImport#34090c3b: field file is nil")
		tl_messages_init_history_import_gen.go#L169: 		return fmt.Errorf("unable to encode messages.initHistoryImport#34090c3b: field file: %w", err)
		tl_messages_init_history_import_gen.go#L178: 		return fmt.Errorf("can't decode messages.initHistoryImport#34090c3b to nil")
		tl_messages_init_history_import_gen.go#L181: 		return fmt.Errorf("unable to decode messages.initHistoryImport#34090c3b: %w", err)
		tl_messages_init_history_import_gen.go#L189: 		return fmt.Errorf("can't decode messages.initHistoryImport#34090c3b to nil")
		tl_messages_init_history_import_gen.go#L194: 			return fmt.Errorf("unable to decode messages.initHistoryImport#34090c3b: field peer: %w", err)
		tl_messages_init_history_import_gen.go#L201: 			return fmt.Errorf("unable to decode messages.initHistoryImport#34090c3b: field file: %w", err)
		tl_messages_init_history_import_gen.go#L208: 			return fmt.Errorf("unable to decode messages.initHistoryImport#34090c3b: field media_count: %w", err)
		tl_messages_install_sticker_set_gen.go#L126: 		return fmt.Errorf("can't encode messages.installStickerSet#c78fe460 as nil")
		tl_messages_install_sticker_set_gen.go#L135: 		return fmt.Errorf("can't encode messages.installStickerSet#c78fe460 as nil")
		tl_messages_install_sticker_set_gen.go#L138: 		return fmt.Errorf("unable to encode messages.installStickerSet#c78fe460: field stickerset is nil")
		tl_messages_install_sticker_set_gen.go#L141: 		return fmt.Errorf("unable to encode messages.installStickerSet#c78fe460: field stickerset: %w", err)
		tl_messages_install_sticker_set_gen.go#L150: 		return fmt.Errorf("can't decode messages.installStickerSet#c78fe460 to nil")
		tl_messages_install_sticker_set_gen.go#L153: 		return fmt.Errorf("unable to decode messages.installStickerSet#c78fe460: %w", err)
		tl_messages_install_sticker_set_gen.go#L161: 		return fmt.Errorf("can't decode messages.installStickerSet#c78fe460 to nil")
		tl_messages_install_sticker_set_gen.go#L166: 			return fmt.Errorf("unable to decode messages.installStickerSet#c78fe460: field stickerset: %w", err)
		tl_messages_install_sticker_set_gen.go#L173: 			return fmt.Errorf("unable to decode messages.installStickerSet#c78fe460: field archived: %w", err)
		tl_messages_mark_dialog_unread_gen.go#L142: 		return fmt.Errorf("can't encode messages.markDialogUnread#c286d98f as nil")
		tl_messages_mark_dialog_unread_gen.go#L151: 		return fmt.Errorf("can't encode messages.markDialogUnread#c286d98f as nil")
		tl_messages_mark_dialog_unread_gen.go#L155: 		return fmt.Errorf("unable to encode messages.markDialogUnread#c286d98f: field flags: %w", err)
		tl_messages_mark_dialog_unread_gen.go#L158: 		return fmt.Errorf("unable to encode messages.markDialogUnread#c286d98f: field peer is nil")
		tl_messages_mark_dialog_unread_gen.go#L161: 		return fmt.Errorf("unable to encode messages.markDialogUnread#c286d98f: field peer: %w", err)
		tl_messages_mark_dialog_unread_gen.go#L169: 		return fmt.Errorf("can't decode messages.markDialogUnread#c286d98f to nil")
		tl_messages_mark_dialog_unread_gen.go#L172: 		return fmt.Errorf("unable to decode messages.markDialogUnread#c286d98f: %w", err)
		tl_messages_mark_dialog_unread_gen.go#L180: 		return fmt.Errorf("can't decode messages.markDialogUnread#c286d98f to nil")
		tl_messages_mark_dialog_unread_gen.go#L184: 			return fmt.Errorf("unable to decode messages.markDialogUnread#c286d98f: field flags: %w", err)
		tl_messages_mark_dialog_unread_gen.go#L191: 			return fmt.Errorf("unable to decode messages.markDialogUnread#c286d98f: field peer: %w", err)
		tl_messages_message_edit_data_gen.go#L131: 		return fmt.Errorf("can't encode messages.messageEditData#26b5dde6 as nil")
		tl_messages_message_edit_data_gen.go#L140: 		return fmt.Errorf("can't encode messages.messageEditData#26b5dde6 as nil")
		tl_messages_message_edit_data_gen.go#L144: 		return fmt.Errorf("unable to encode messages.messageEditData#26b5dde6: field flags: %w", err)
		tl_messages_message_edit_data_gen.go#L152: 		return fmt.Errorf("can't decode messages.messageEditData#26b5dde6 to nil")
		tl_messages_message_edit_data_gen.go#L155: 		return fmt.Errorf("unable to decode messages.messageEditData#26b5dde6: %w", err)
		tl_messages_message_edit_data_gen.go#L163: 		return fmt.Errorf("can't decode messages.messageEditData#26b5dde6 to nil")
		tl_messages_message_edit_data_gen.go#L167: 			return fmt.Errorf("unable to decode messages.messageEditData#26b5dde6: field flags: %w", err)
		tl_messages_message_reactions_list_gen.go#L184: 		return fmt.Errorf("can't encode messages.messageReactionsList#31bd492d as nil")
		tl_messages_message_reactions_list_gen.go#L193: 		return fmt.Errorf("can't encode messages.messageReactionsList#31bd492d as nil")
		tl_messages_message_reactions_list_gen.go#L197: 		return fmt.Errorf("unable to encode messages.messageReactionsList#31bd492d: field flags: %w", err)
		tl_messages_message_reactions_list_gen.go#L203: 			return fmt.Errorf("unable to encode messages.messageReactionsList#31bd492d: field reactions element with index %d: %w", idx, err)
		tl_messages_message_reactions_list_gen.go#L209: 			return fmt.Errorf("unable to encode messages.messageReactionsList#31bd492d: field chats element with index %d is nil", idx)
		tl_messages_message_reactions_list_gen.go#L212: 			return fmt.Errorf("unable to encode messages.messageReactionsList#31bd492d: field chats element with index %d: %w", idx, err)
		tl_messages_message_reactions_list_gen.go#L218: 			return fmt.Errorf("unable to encode messages.messageReactionsList#31bd492d: field users element with index %d is nil", idx)
		tl_messages_message_reactions_list_gen.go#L221: 			return fmt.Errorf("unable to encode messages.messageReactionsList#31bd492d: field users element with index %d: %w", idx, err)
		tl_messages_message_reactions_list_gen.go#L233: 		return fmt.Errorf("can't decode messages.messageReactionsList#31bd492d to nil")
		tl_messages_message_reactions_list_gen.go#L236: 		return fmt.Errorf("unable to decode messages.messageReactionsList#31bd492d: %w", err)
		tl_messages_message_reactions_list_gen.go#L244: 		return fmt.Errorf("can't decode messages.messageReactionsList#31bd492d to nil")
		tl_messages_message_reactions_list_gen.go#L248: 			return fmt.Errorf("unable to decode messages.messageReactionsList#31bd492d: field flags: %w", err)
		tl_messages_message_reactions_list_gen.go#L254: 			return fmt.Errorf("unable to decode messages.messageReactionsList#31bd492d: field count: %w", err)
		tl_messages_message_reactions_list_gen.go#L261: 			return fmt.Errorf("unable to decode messages.messageReactionsList#31bd492d: field reactions: %w", err)
		tl_messages_message_reactions_list_gen.go#L270: 				return fmt.Errorf("unable to decode messages.messageReactionsList#31bd492d: field reactions: %w", err)
		tl_messages_message_reactions_list_gen.go#L278: 			return fmt.Errorf("unable to decode messages.messageReactionsList#31bd492d: field chats: %w", err)
		tl_messages_message_reactions_list_gen.go#L287: 				return fmt.Errorf("unable to decode messages.messageReactionsList#31bd492d: field chats: %w", err)
		tl_messages_message_reactions_list_gen.go#L295: 			return fmt.Errorf("unable to decode messages.messageReactionsList#31bd492d: field users: %w", err)
		tl_messages_message_reactions_list_gen.go#L304: 				return fmt.Errorf("unable to decode messages.messageReactionsList#31bd492d: field users: %w", err)
		tl_messages_message_reactions_list_gen.go#L312: 			return fmt.Errorf("unable to decode messages.messageReactionsList#31bd492d: field next_offset: %w", err)
		tl_messages_message_views_gen.go#L137: 		return fmt.Errorf("can't encode messages.messageViews#b6c4f543 as nil")
		tl_messages_message_views_gen.go#L146: 		return fmt.Errorf("can't encode messages.messageViews#b6c4f543 as nil")
		tl_messages_message_views_gen.go#L151: 			return fmt.Errorf("unable to encode messages.messageViews#b6c4f543: field views element with index %d: %w", idx, err)
		tl_messages_message_views_gen.go#L157: 			return fmt.Errorf("unable to encode messages.messageViews#b6c4f543: field chats element with index %d is nil", idx)
		tl_messages_message_views_gen.go#L160: 			return fmt.Errorf("unable to encode messages.messageViews#b6c4f543: field chats element with index %d: %w", idx, err)
		tl_messages_message_views_gen.go#L166: 			return fmt.Errorf("unable to encode messages.messageViews#b6c4f543: field users element with index %d is nil", idx)
		tl_messages_message_views_gen.go#L169: 			return fmt.Errorf("unable to encode messages.messageViews#b6c4f543: field users element with index %d: %w", idx, err)
		tl_messages_message_views_gen.go#L178: 		return fmt.Errorf("can't decode messages.messageViews#b6c4f543 to nil")
		tl_messages_message_views_gen.go#L181: 		return fmt.Errorf("unable to decode messages.messageViews#b6c4f543: %w", err)
		tl_messages_message_views_gen.go#L189: 		return fmt.Errorf("can't decode messages.messageViews#b6c4f543 to nil")
		tl_messages_message_views_gen.go#L194: 			return fmt.Errorf("unable to decode messages.messageViews#b6c4f543: field views: %w", err)
		tl_messages_message_views_gen.go#L203: 				return fmt.Errorf("unable to decode messages.messageViews#b6c4f543: field views: %w", err)
		tl_messages_message_views_gen.go#L211: 			return fmt.Errorf("unable to decode messages.messageViews#b6c4f543: field chats: %w", err)
		tl_messages_message_views_gen.go#L220: 				return fmt.Errorf("unable to decode messages.messageViews#b6c4f543: field chats: %w", err)
		tl_messages_message_views_gen.go#L228: 			return fmt.Errorf("unable to decode messages.messageViews#b6c4f543: field users: %w", err)
		tl_messages_message_views_gen.go#L237: 				return fmt.Errorf("unable to decode messages.messageViews#b6c4f543: field users: %w", err)
		tl_messages_messages_gen.go#L142: 		return fmt.Errorf("can't encode messages.messages#8c718e87 as nil")
		tl_messages_messages_gen.go#L151: 		return fmt.Errorf("can't encode messages.messages#8c718e87 as nil")
		tl_messages_messages_gen.go#L156: 			return fmt.Errorf("unable to encode messages.messages#8c718e87: field messages element with index %d is nil", idx)
		tl_messages_messages_gen.go#L159: 			return fmt.Errorf("unable to encode messages.messages#8c718e87: field messages element with index %d: %w", idx, err)
		tl_messages_messages_gen.go#L165: 			return fmt.Errorf("unable to encode messages.messages#8c718e87: field chats element with index %d is nil", idx)
		tl_messages_messages_gen.go#L168: 			return fmt.Errorf("unable to encode messages.messages#8c718e87: field chats element with index %d: %w", idx, err)
		tl_messages_messages_gen.go#L174: 			return fmt.Errorf("unable to encode messages.messages#8c718e87: field users element with index %d is nil", idx)
		tl_messages_messages_gen.go#L177: 			return fmt.Errorf("unable to encode messages.messages#8c718e87: field users element with index %d: %w", idx, err)
		tl_messages_messages_gen.go#L186: 		return fmt.Errorf("can't decode messages.messages#8c718e87 to nil")
		tl_messages_messages_gen.go#L189: 		return fmt.Errorf("unable to decode messages.messages#8c718e87: %w", err)
		tl_messages_messages_gen.go#L197: 		return fmt.Errorf("can't decode messages.messages#8c718e87 to nil")
		tl_messages_messages_gen.go#L202: 			return fmt.Errorf("unable to decode messages.messages#8c718e87: field messages: %w", err)
		tl_messages_messages_gen.go#L211: 				return fmt.Errorf("unable to decode messages.messages#8c718e87: field messages: %w", err)
		tl_messages_messages_gen.go#L219: 			return fmt.Errorf("unable to decode messages.messages#8c718e87: field chats: %w", err)
		tl_messages_messages_gen.go#L228: 				return fmt.Errorf("unable to decode messages.messages#8c718e87: field chats: %w", err)
		tl_messages_messages_gen.go#L236: 			return fmt.Errorf("unable to decode messages.messages#8c718e87: field users: %w", err)
		tl_messages_messages_gen.go#L245: 				return fmt.Errorf("unable to decode messages.messages#8c718e87: field users: %w", err)
		tl_messages_messages_gen.go#L484: 		return fmt.Errorf("can't encode messages.messagesSlice#3a54685e as nil")
		tl_messages_messages_gen.go#L493: 		return fmt.Errorf("can't encode messages.messagesSlice#3a54685e as nil")
		tl_messages_messages_gen.go#L497: 		return fmt.Errorf("unable to encode messages.messagesSlice#3a54685e: field flags: %w", err)
		tl_messages_messages_gen.go#L509: 			return fmt.Errorf("unable to encode messages.messagesSlice#3a54685e: field messages element with index %d is nil", idx)
		tl_messages_messages_gen.go#L512: 			return fmt.Errorf("unable to encode messages.messagesSlice#3a54685e: field messages element with index %d: %w", idx, err)
		tl_messages_messages_gen.go#L518: 			return fmt.Errorf("unable to encode messages.messagesSlice#3a54685e: field chats element with index %d is nil", idx)
		tl_messages_messages_gen.go#L521: 			return fmt.Errorf("unable to encode messages.messagesSlice#3a54685e: field chats element with index %d: %w", idx, err)
		tl_messages_messages_gen.go#L527: 			return fmt.Errorf("unable to encode messages.messagesSlice#3a54685e: field users element with index %d is nil", idx)
		tl_messages_messages_gen.go#L530: 			return fmt.Errorf("unable to encode messages.messagesSlice#3a54685e: field users element with index %d: %w", idx, err)
		tl_messages_messages_gen.go#L539: 		return fmt.Errorf("can't decode messages.messagesSlice#3a54685e to nil")
		tl_messages_messages_gen.go#L542: 		return fmt.Errorf("unable to decode messages.messagesSlice#3a54685e: %w", err)
		tl_messages_messages_gen.go#L550: 		return fmt.Errorf("can't decode messages.messagesSlice#3a54685e to nil")
		tl_messages_messages_gen.go#L554: 			return fmt.Errorf("unable to decode messages.messagesSlice#3a54685e: field flags: %w", err)
		tl_messages_messages_gen.go#L561: 			return fmt.Errorf("unable to decode messages.messagesSlice#3a54685e: field count: %w", err)
		tl_messages_messages_gen.go#L568: 			return fmt.Errorf("unable to decode messages.messagesSlice#3a54685e: field next_rate: %w", err)
		tl_messages_messages_gen.go#L575: 			return fmt.Errorf("unable to decode messages.messagesSlice#3a54685e: field offset_id_offset: %w", err)
		tl_messages_messages_gen.go#L582: 			return fmt.Errorf("unable to decode messages.messagesSlice#3a54685e: field messages: %w", err)
		tl_messages_messages_gen.go#L591: 				return fmt.Errorf("unable to decode messages.messagesSlice#3a54685e: field messages: %w", err)
		tl_messages_messages_gen.go#L599: 			return fmt.Errorf("unable to decode messages.messagesSlice#3a54685e: field chats: %w", err)
		tl_messages_messages_gen.go#L608: 				return fmt.Errorf("unable to decode messages.messagesSlice#3a54685e: field chats: %w", err)
		tl_messages_messages_gen.go#L616: 			return fmt.Errorf("unable to decode messages.messagesSlice#3a54685e: field users: %w", err)
		tl_messages_messages_gen.go#L625: 				return fmt.Errorf("unable to decode messages.messagesSlice#3a54685e: field users: %w", err)
		tl_messages_messages_gen.go#L932: 		return fmt.Errorf("can't encode messages.channelMessages#c776ba4e as nil")
		tl_messages_messages_gen.go#L941: 		return fmt.Errorf("can't encode messages.channelMessages#c776ba4e as nil")
		tl_messages_messages_gen.go#L945: 		return fmt.Errorf("unable to encode messages.channelMessages#c776ba4e: field flags: %w", err)
		tl_messages_messages_gen.go#L955: 			return fmt.Errorf("unable to encode messages.channelMessages#c776ba4e: field messages element with index %d is nil", idx)
		tl_messages_messages_gen.go#L958: 			return fmt.Errorf("unable to encode messages.channelMessages#c776ba4e: field messages element with index %d: %w", idx, err)
		tl_messages_messages_gen.go#L964: 			return fmt.Errorf("unable to encode messages.channelMessages#c776ba4e: field topics element with index %d is nil", idx)
		tl_messages_messages_gen.go#L967: 			return fmt.Errorf("unable to encode messages.channelMessages#c776ba4e: field topics element with index %d: %w", idx, err)
		tl_messages_messages_gen.go#L973: 			return fmt.Errorf("unable to encode messages.channelMessages#c776ba4e: field chats element with index %d is nil", idx)
		tl_messages_messages_gen.go#L976: 			return fmt.Errorf("unable to encode messages.channelMessages#c776ba4e: field chats element with index %d: %w", idx, err)
		tl_messages_messages_gen.go#L982: 			return fmt.Errorf("unable to encode messages.channelMessages#c776ba4e: field users element with index %d is nil", idx)
		tl_messages_messages_gen.go#L985: 			return fmt.Errorf("unable to encode messages.channelMessages#c776ba4e: field users element with index %d: %w", idx, err)
		tl_messages_messages_gen.go#L994: 		return fmt.Errorf("can't decode messages.channelMessages#c776ba4e to nil")
		tl_messages_messages_gen.go#L997: 		return fmt.Errorf("unable to decode messages.channelMessages#c776ba4e: %w", err)
		tl_messages_messages_gen.go#L1005: 		return fmt.Errorf("can't decode messages.channelMessages#c776ba4e to nil")
		tl_messages_messages_gen.go#L1009: 			return fmt.Errorf("unable to decode messages.channelMessages#c776ba4e: field flags: %w", err)
		tl_messages_messages_gen.go#L1016: 			return fmt.Errorf("unable to decode messages.channelMessages#c776ba4e: field pts: %w", err)
		tl_messages_messages_gen.go#L1023: 			return fmt.Errorf("unable to decode messages.channelMessages#c776ba4e: field count: %w", err)
		tl_messages_messages_gen.go#L1030: 			return fmt.Errorf("unable to decode messages.channelMessages#c776ba4e: field offset_id_offset: %w", err)
		tl_messages_messages_gen.go#L1037: 			return fmt.Errorf("unable to decode messages.channelMessages#c776ba4e: field messages: %w", err)
		tl_messages_messages_gen.go#L1046: 				return fmt.Errorf("unable to decode messages.channelMessages#c776ba4e: field messages: %w", err)
		tl_messages_messages_gen.go#L1054: 			return fmt.Errorf("unable to decode messages.channelMessages#c776ba4e: field topics: %w", err)
		tl_messages_messages_gen.go#L1063: 				return fmt.Errorf("unable to decode messages.channelMessages#c776ba4e: field topics: %w", err)
		tl_messages_messages_gen.go#L1071: 			return fmt.Errorf("unable to decode messages.channelMessages#c776ba4e: field chats: %w", err)
		tl_messages_messages_gen.go#L1080: 				return fmt.Errorf("unable to decode messages.channelMessages#c776ba4e: field chats: %w", err)
		tl_messages_messages_gen.go#L1088: 			return fmt.Errorf("unable to decode messages.channelMessages#c776ba4e: field users: %w", err)
		tl_messages_messages_gen.go#L1097: 				return fmt.Errorf("unable to decode messages.channelMessages#c776ba4e: field users: %w", err)
		tl_messages_messages_gen.go#L1296: 		return fmt.Errorf("can't encode messages.messagesNotModified#74535f21 as nil")
		tl_messages_messages_gen.go#L1305: 		return fmt.Errorf("can't encode messages.messagesNotModified#74535f21 as nil")
		tl_messages_messages_gen.go#L1314: 		return fmt.Errorf("can't decode messages.messagesNotModified#74535f21 to nil")
		tl_messages_messages_gen.go#L1317: 		return fmt.Errorf("unable to decode messages.messagesNotModified#74535f21: %w", err)
		tl_messages_messages_gen.go#L1325: 		return fmt.Errorf("can't decode messages.messagesNotModified#74535f21 to nil")
		tl_messages_messages_gen.go#L1330: 			return fmt.Errorf("unable to decode messages.messagesNotModified#74535f21: field count: %w", err)
		tl_messages_messages_gen.go#L1451: 			return nil, fmt.Errorf("unable to decode MessagesMessagesClass: %w", err)
		tl_messages_messages_gen.go#L1458: 			return nil, fmt.Errorf("unable to decode MessagesMessagesClass: %w", err)
		tl_messages_messages_gen.go#L1465: 			return nil, fmt.Errorf("unable to decode MessagesMessagesClass: %w", err)
		tl_messages_messages_gen.go#L1472: 			return nil, fmt.Errorf("unable to decode MessagesMessagesClass: %w", err)
		tl_messages_messages_gen.go#L1476: 		return nil, fmt.Errorf("unable to decode MessagesMessagesClass: %w", bin.NewUnexpectedID(id))
		tl_messages_messages_gen.go#L1488: 		return fmt.Errorf("unable to decode MessagesMessagesBox to nil")
		tl_messages_messages_gen.go#L1492: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_messages_messages_gen.go#L1501: 		return fmt.Errorf("unable to encode MessagesMessagesClass as nil")
		tl_messages_migrate_chat_gen.go#L121: 		return fmt.Errorf("can't encode messages.migrateChat#a2875319 as nil")
		tl_messages_migrate_chat_gen.go#L130: 		return fmt.Errorf("can't encode messages.migrateChat#a2875319 as nil")
		tl_messages_migrate_chat_gen.go#L139: 		return fmt.Errorf("can't decode messages.migrateChat#a2875319 to nil")
		tl_messages_migrate_chat_gen.go#L142: 		return fmt.Errorf("unable to decode messages.migrateChat#a2875319: %w", err)
		tl_messages_migrate_chat_gen.go#L150: 		return fmt.Errorf("can't decode messages.migrateChat#a2875319 to nil")
		tl_messages_migrate_chat_gen.go#L155: 			return fmt.Errorf("unable to decode messages.migrateChat#a2875319: field chat_id: %w", err)
		tl_messages_peer_dialogs_gen.go#L162: 		return fmt.Errorf("can't encode messages.peerDialogs#3371c354 as nil")
		tl_messages_peer_dialogs_gen.go#L171: 		return fmt.Errorf("can't encode messages.peerDialogs#3371c354 as nil")
		tl_messages_peer_dialogs_gen.go#L176: 			return fmt.Errorf("unable to encode messages.peerDialogs#3371c354: field dialogs element with index %d is nil", idx)
		tl_messages_peer_dialogs_gen.go#L179: 			return fmt.Errorf("unable to encode messages.peerDialogs#3371c354: field dialogs element with index %d: %w", idx, err)
		tl_messages_peer_dialogs_gen.go#L185: 			return fmt.Errorf("unable to encode messages.peerDialogs#3371c354: field messages element with index %d is nil", idx)
		tl_messages_peer_dialogs_gen.go#L188: 			return fmt.Errorf("unable to encode messages.peerDialogs#3371c354: field messages element with index %d: %w", idx, err)
		tl_messages_peer_dialogs_gen.go#L194: 			return fmt.Errorf("unable to encode messages.peerDialogs#3371c354: field chats element with index %d is nil", idx)
		tl_messages_peer_dialogs_gen.go#L197: 			return fmt.Errorf("unable to encode messages.peerDialogs#3371c354: field chats element with index %d: %w", idx, err)
		tl_messages_peer_dialogs_gen.go#L203: 			return fmt.Errorf("unable to encode messages.peerDialogs#3371c354: field users element with index %d is nil", idx)
		tl_messages_peer_dialogs_gen.go#L206: 			return fmt.Errorf("unable to encode messages.peerDialogs#3371c354: field users element with index %d: %w", idx, err)
		tl_messages_peer_dialogs_gen.go#L210: 		return fmt.Errorf("unable to encode messages.peerDialogs#3371c354: field state: %w", err)
		tl_messages_peer_dialogs_gen.go#L218: 		return fmt.Errorf("can't decode messages.peerDialogs#3371c354 to nil")
		tl_messages_peer_dialogs_gen.go#L221: 		return fmt.Errorf("unable to decode messages.peerDialogs#3371c354: %w", err)
		tl_messages_peer_dialogs_gen.go#L229: 		return fmt.Errorf("can't decode messages.peerDialogs#3371c354 to nil")
		tl_messages_peer_dialogs_gen.go#L234: 			return fmt.Errorf("unable to decode messages.peerDialogs#3371c354: field dialogs: %w", err)
		tl_messages_peer_dialogs_gen.go#L243: 				return fmt.Errorf("unable to decode messages.peerDialogs#3371c354: field dialogs: %w", err)
		tl_messages_peer_dialogs_gen.go#L251: 			return fmt.Errorf("unable to decode messages.peerDialogs#3371c354: field messages: %w", err)
		tl_messages_peer_dialogs_gen.go#L260: 				return fmt.Errorf("unable to decode messages.peerDialogs#3371c354: field messages: %w", err)
		tl_messages_peer_dialogs_gen.go#L268: 			return fmt.Errorf("unable to decode messages.peerDialogs#3371c354: field chats: %w", err)
		tl_messages_peer_dialogs_gen.go#L277: 				return fmt.Errorf("unable to decode messages.peerDialogs#3371c354: field chats: %w", err)
		tl_messages_peer_dialogs_gen.go#L285: 			return fmt.Errorf("unable to decode messages.peerDialogs#3371c354: field users: %w", err)
		tl_messages_peer_dialogs_gen.go#L294: 				return fmt.Errorf("unable to decode messages.peerDialogs#3371c354: field users: %w", err)
		tl_messages_peer_dialogs_gen.go#L301: 			return fmt.Errorf("unable to decode messages.peerDialogs#3371c354: field state: %w", err)
		tl_messages_peer_settings_gen.go#L137: 		return fmt.Errorf("can't encode messages.peerSettings#6880b94d as nil")
		tl_messages_peer_settings_gen.go#L146: 		return fmt.Errorf("can't encode messages.peerSettings#6880b94d as nil")
		tl_messages_peer_settings_gen.go#L149: 		return fmt.Errorf("unable to encode messages.peerSettings#6880b94d: field settings: %w", err)
		tl_messages_peer_settings_gen.go#L154: 			return fmt.Errorf("unable to encode messages.peerSettings#6880b94d: field chats element with index %d is nil", idx)
		tl_messages_peer_settings_gen.go#L157: 			return fmt.Errorf("unable to encode messages.peerSettings#6880b94d: field chats element with index %d: %w", idx, err)
		tl_messages_peer_settings_gen.go#L163: 			return fmt.Errorf("unable to encode messages.peerSettings#6880b94d: field users element with index %d is nil", idx)
		tl_messages_peer_settings_gen.go#L166: 			return fmt.Errorf("unable to encode messages.peerSettings#6880b94d: field users element with index %d: %w", idx, err)
		tl_messages_peer_settings_gen.go#L175: 		return fmt.Errorf("can't decode messages.peerSettings#6880b94d to nil")
		tl_messages_peer_settings_gen.go#L178: 		return fmt.Errorf("unable to decode messages.peerSettings#6880b94d: %w", err)
		tl_messages_peer_settings_gen.go#L186: 		return fmt.Errorf("can't decode messages.peerSettings#6880b94d to nil")
		tl_messages_peer_settings_gen.go#L190: 			return fmt.Errorf("unable to decode messages.peerSettings#6880b94d: field settings: %w", err)
		tl_messages_peer_settings_gen.go#L196: 			return fmt.Errorf("unable to decode messages.peerSettings#6880b94d: field chats: %w", err)
		tl_messages_peer_settings_gen.go#L205: 				return fmt.Errorf("unable to decode messages.peerSettings#6880b94d: field chats: %w", err)
		tl_messages_peer_settings_gen.go#L213: 			return fmt.Errorf("unable to decode messages.peerSettings#6880b94d: field users: %w", err)
		tl_messages_peer_settings_gen.go#L222: 				return fmt.Errorf("unable to decode messages.peerSettings#6880b94d: field users: %w", err)
		tl_messages_prolong_web_view_gen.go#L221: 		return fmt.Errorf("can't encode messages.prolongWebView#b0d81a83 as nil")
		tl_messages_prolong_web_view_gen.go#L230: 		return fmt.Errorf("can't encode messages.prolongWebView#b0d81a83 as nil")
		tl_messages_prolong_web_view_gen.go#L234: 		return fmt.Errorf("unable to encode messages.prolongWebView#b0d81a83: field flags: %w", err)
		tl_messages_prolong_web_view_gen.go#L237: 		return fmt.Errorf("unable to encode messages.prolongWebView#b0d81a83: field peer is nil")
		tl_messages_prolong_web_view_gen.go#L240: 		return fmt.Errorf("unable to encode messages.prolongWebView#b0d81a83: field peer: %w", err)
		tl_messages_prolong_web_view_gen.go#L243: 		return fmt.Errorf("unable to encode messages.prolongWebView#b0d81a83: field bot is nil")
		tl_messages_prolong_web_view_gen.go#L246: 		return fmt.Errorf("unable to encode messages.prolongWebView#b0d81a83: field bot: %w", err)
		tl_messages_prolong_web_view_gen.go#L251: 			return fmt.Errorf("unable to encode messages.prolongWebView#b0d81a83: field reply_to is nil")
		tl_messages_prolong_web_view_gen.go#L254: 			return fmt.Errorf("unable to encode messages.prolongWebView#b0d81a83: field reply_to: %w", err)
		tl_messages_prolong_web_view_gen.go#L259: 			return fmt.Errorf("unable to encode messages.prolongWebView#b0d81a83: field send_as is nil")
		tl_messages_prolong_web_view_gen.go#L262: 			return fmt.Errorf("unable to encode messages.prolongWebView#b0d81a83: field send_as: %w", err)
		tl_messages_prolong_web_view_gen.go#L271: 		return fmt.Errorf("can't decode messages.prolongWebView#b0d81a83 to nil")
		tl_messages_prolong_web_view_gen.go#L274: 		return fmt.Errorf("unable to decode messages.prolongWebView#b0d81a83: %w", err)
		tl_messages_prolong_web_view_gen.go#L282: 		return fmt.Errorf("can't decode messages.prolongWebView#b0d81a83 to nil")
		tl_messages_prolong_web_view_gen.go#L286: 			return fmt.Errorf("unable to decode messages.prolongWebView#b0d81a83: field flags: %w", err)
		tl_messages_prolong_web_view_gen.go#L293: 			return fmt.Errorf("unable to decode messages.prolongWebView#b0d81a83: field peer: %w", err)
		tl_messages_prolong_web_view_gen.go#L300: 			return fmt.Errorf("unable to decode messages.prolongWebView#b0d81a83: field bot: %w", err)
		tl_messages_prolong_web_view_gen.go#L307: 			return fmt.Errorf("unable to decode messages.prolongWebView#b0d81a83: field query_id: %w", err)
		tl_messages_prolong_web_view_gen.go#L314: 			return fmt.Errorf("unable to decode messages.prolongWebView#b0d81a83: field reply_to: %w", err)
		tl_messages_prolong_web_view_gen.go#L321: 			return fmt.Errorf("unable to decode messages.prolongWebView#b0d81a83: field send_as: %w", err)
		tl_messages_rate_transcribed_audio_gen.go#L151: 		return fmt.Errorf("can't encode messages.rateTranscribedAudio#7f1d072f as nil")
		tl_messages_rate_transcribed_audio_gen.go#L160: 		return fmt.Errorf("can't encode messages.rateTranscribedAudio#7f1d072f as nil")
		tl_messages_rate_transcribed_audio_gen.go#L163: 		return fmt.Errorf("unable to encode messages.rateTranscribedAudio#7f1d072f: field peer is nil")
		tl_messages_rate_transcribed_audio_gen.go#L166: 		return fmt.Errorf("unable to encode messages.rateTranscribedAudio#7f1d072f: field peer: %w", err)
		tl_messages_rate_transcribed_audio_gen.go#L177: 		return fmt.Errorf("can't decode messages.rateTranscribedAudio#7f1d072f to nil")
		tl_messages_rate_transcribed_audio_gen.go#L180: 		return fmt.Errorf("unable to decode messages.rateTranscribedAudio#7f1d072f: %w", err)
		tl_messages_rate_transcribed_audio_gen.go#L188: 		return fmt.Errorf("can't decode messages.rateTranscribedAudio#7f1d072f to nil")
		tl_messages_rate_transcribed_audio_gen.go#L193: 			return fmt.Errorf("unable to decode messages.rateTranscribedAudio#7f1d072f: field peer: %w", err)
		tl_messages_rate_transcribed_audio_gen.go#L200: 			return fmt.Errorf("unable to decode messages.rateTranscribedAudio#7f1d072f: field msg_id: %w", err)
		tl_messages_rate_transcribed_audio_gen.go#L207: 			return fmt.Errorf("unable to decode messages.rateTranscribedAudio#7f1d072f: field transcription_id: %w", err)
		tl_messages_rate_transcribed_audio_gen.go#L214: 			return fmt.Errorf("unable to decode messages.rateTranscribedAudio#7f1d072f: field good: %w", err)
		tl_messages_reactions_gen.go#L106: 		return fmt.Errorf("can't encode messages.reactionsNotModified#b06fdbdf as nil")
		tl_messages_reactions_gen.go#L115: 		return fmt.Errorf("can't encode messages.reactionsNotModified#b06fdbdf as nil")
		tl_messages_reactions_gen.go#L123: 		return fmt.Errorf("can't decode messages.reactionsNotModified#b06fdbdf to nil")
		tl_messages_reactions_gen.go#L126: 		return fmt.Errorf("unable to decode messages.reactionsNotModified#b06fdbdf: %w", err)
		tl_messages_reactions_gen.go#L134: 		return fmt.Errorf("can't decode messages.reactionsNotModified#b06fdbdf to nil")
		tl_messages_reactions_gen.go#L242: 		return fmt.Errorf("can't encode messages.reactions#eafdf716 as nil")
		tl_messages_reactions_gen.go#L251: 		return fmt.Errorf("can't encode messages.reactions#eafdf716 as nil")
		tl_messages_reactions_gen.go#L257: 			return fmt.Errorf("unable to encode messages.reactions#eafdf716: field reactions element with index %d is nil", idx)
		tl_messages_reactions_gen.go#L260: 			return fmt.Errorf("unable to encode messages.reactions#eafdf716: field reactions element with index %d: %w", idx, err)
		tl_messages_reactions_gen.go#L269: 		return fmt.Errorf("can't decode messages.reactions#eafdf716 to nil")
		tl_messages_reactions_gen.go#L272: 		return fmt.Errorf("unable to decode messages.reactions#eafdf716: %w", err)
		tl_messages_reactions_gen.go#L280: 		return fmt.Errorf("can't decode messages.reactions#eafdf716 to nil")
		tl_messages_reactions_gen.go#L285: 			return fmt.Errorf("unable to decode messages.reactions#eafdf716: field hash: %w", err)
		tl_messages_reactions_gen.go#L292: 			return fmt.Errorf("unable to decode messages.reactions#eafdf716: field reactions: %w", err)
		tl_messages_reactions_gen.go#L301: 				return fmt.Errorf("unable to decode messages.reactions#eafdf716: field reactions: %w", err)
		tl_messages_reactions_gen.go#L391: 			return nil, fmt.Errorf("unable to decode MessagesReactionsClass: %w", err)
		tl_messages_reactions_gen.go#L398: 			return nil, fmt.Errorf("unable to decode MessagesReactionsClass: %w", err)
		tl_messages_reactions_gen.go#L402: 		return nil, fmt.Errorf("unable to decode MessagesReactionsClass: %w", bin.NewUnexpectedID(id))
		tl_messages_reactions_gen.go#L414: 		return fmt.Errorf("unable to decode MessagesReactionsBox to nil")
		tl_messages_reactions_gen.go#L418: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_messages_reactions_gen.go#L427: 		return fmt.Errorf("unable to encode MessagesReactionsClass as nil")
		tl_messages_read_discussion_gen.go#L140: 		return fmt.Errorf("can't encode messages.readDiscussion#f731a9f4 as nil")
		tl_messages_read_discussion_gen.go#L149: 		return fmt.Errorf("can't encode messages.readDiscussion#f731a9f4 as nil")
		tl_messages_read_discussion_gen.go#L152: 		return fmt.Errorf("unable to encode messages.readDiscussion#f731a9f4: field peer is nil")
		tl_messages_read_discussion_gen.go#L155: 		return fmt.Errorf("unable to encode messages.readDiscussion#f731a9f4: field peer: %w", err)
		tl_messages_read_discussion_gen.go#L165: 		return fmt.Errorf("can't decode messages.readDiscussion#f731a9f4 to nil")
		tl_messages_read_discussion_gen.go#L168: 		return fmt.Errorf("unable to decode messages.readDiscussion#f731a9f4: %w", err)
		tl_messages_read_discussion_gen.go#L176: 		return fmt.Errorf("can't decode messages.readDiscussion#f731a9f4 to nil")
		tl_messages_read_discussion_gen.go#L181: 			return fmt.Errorf("unable to decode messages.readDiscussion#f731a9f4: field peer: %w", err)
		tl_messages_read_discussion_gen.go#L188: 			return fmt.Errorf("unable to decode messages.readDiscussion#f731a9f4: field msg_id: %w", err)
		tl_messages_read_discussion_gen.go#L195: 			return fmt.Errorf("unable to decode messages.readDiscussion#f731a9f4: field read_max_id: %w", err)
		tl_messages_read_encrypted_history_gen.go#L126: 		return fmt.Errorf("can't encode messages.readEncryptedHistory#7f4b690a as nil")
		tl_messages_read_encrypted_history_gen.go#L135: 		return fmt.Errorf("can't encode messages.readEncryptedHistory#7f4b690a as nil")
		tl_messages_read_encrypted_history_gen.go#L138: 		return fmt.Errorf("unable to encode messages.readEncryptedHistory#7f4b690a: field peer: %w", err)
		tl_messages_read_encrypted_history_gen.go#L147: 		return fmt.Errorf("can't decode messages.readEncryptedHistory#7f4b690a to nil")
		tl_messages_read_encrypted_history_gen.go#L150: 		return fmt.Errorf("unable to decode messages.readEncryptedHistory#7f4b690a: %w", err)
		tl_messages_read_encrypted_history_gen.go#L158: 		return fmt.Errorf("can't decode messages.readEncryptedHistory#7f4b690a to nil")
		tl_messages_read_encrypted_history_gen.go#L162: 			return fmt.Errorf("unable to decode messages.readEncryptedHistory#7f4b690a: field peer: %w", err)
		tl_messages_read_encrypted_history_gen.go#L168: 			return fmt.Errorf("unable to decode messages.readEncryptedHistory#7f4b690a: field max_date: %w", err)
		tl_messages_read_featured_stickers_gen.go#L115: 		return fmt.Errorf("can't encode messages.readFeaturedStickers#5b118126 as nil")
		tl_messages_read_featured_stickers_gen.go#L124: 		return fmt.Errorf("can't encode messages.readFeaturedStickers#5b118126 as nil")
		tl_messages_read_featured_stickers_gen.go#L136: 		return fmt.Errorf("can't decode messages.readFeaturedStickers#5b118126 to nil")
		tl_messages_read_featured_stickers_gen.go#L139: 		return fmt.Errorf("unable to decode messages.readFeaturedStickers#5b118126: %w", err)
		tl_messages_read_featured_stickers_gen.go#L147: 		return fmt.Errorf("can't decode messages.readFeaturedStickers#5b118126 to nil")
		tl_messages_read_featured_stickers_gen.go#L152: 			return fmt.Errorf("unable to decode messages.readFeaturedStickers#5b118126: field id: %w", err)
		tl_messages_read_featured_stickers_gen.go#L161: 				return fmt.Errorf("unable to decode messages.readFeaturedStickers#5b118126: field id: %w", err)
		tl_messages_read_history_gen.go#L127: 		return fmt.Errorf("can't encode messages.readHistory#e306d3a as nil")
		tl_messages_read_history_gen.go#L136: 		return fmt.Errorf("can't encode messages.readHistory#e306d3a as nil")
		tl_messages_read_history_gen.go#L139: 		return fmt.Errorf("unable to encode messages.readHistory#e306d3a: field peer is nil")
		tl_messages_read_history_gen.go#L142: 		return fmt.Errorf("unable to encode messages.readHistory#e306d3a: field peer: %w", err)
		tl_messages_read_history_gen.go#L151: 		return fmt.Errorf("can't decode messages.readHistory#e306d3a to nil")
		tl_messages_read_history_gen.go#L154: 		return fmt.Errorf("unable to decode messages.readHistory#e306d3a: %w", err)
		tl_messages_read_history_gen.go#L162: 		return fmt.Errorf("can't decode messages.readHistory#e306d3a to nil")
		tl_messages_read_history_gen.go#L167: 			return fmt.Errorf("unable to decode messages.readHistory#e306d3a: field peer: %w", err)
		tl_messages_read_history_gen.go#L174: 			return fmt.Errorf("unable to decode messages.readHistory#e306d3a: field max_id: %w", err)
		tl_messages_read_mentions_gen.go#L150: 		return fmt.Errorf("can't encode messages.readMentions#36e5bf4d as nil")
		tl_messages_read_mentions_gen.go#L159: 		return fmt.Errorf("can't encode messages.readMentions#36e5bf4d as nil")
		tl_messages_read_mentions_gen.go#L163: 		return fmt.Errorf("unable to encode messages.readMentions#36e5bf4d: field flags: %w", err)
		tl_messages_read_mentions_gen.go#L166: 		return fmt.Errorf("unable to encode messages.readMentions#36e5bf4d: field peer is nil")
		tl_messages_read_mentions_gen.go#L169: 		return fmt.Errorf("unable to encode messages.readMentions#36e5bf4d: field peer: %w", err)
		tl_messages_read_mentions_gen.go#L180: 		return fmt.Errorf("can't decode messages.readMentions#36e5bf4d to nil")
		tl_messages_read_mentions_gen.go#L183: 		return fmt.Errorf("unable to decode messages.readMentions#36e5bf4d: %w", err)
		tl_messages_read_mentions_gen.go#L191: 		return fmt.Errorf("can't decode messages.readMentions#36e5bf4d to nil")
		tl_messages_read_mentions_gen.go#L195: 			return fmt.Errorf("unable to decode messages.readMentions#36e5bf4d: field flags: %w", err)
		tl_messages_read_mentions_gen.go#L201: 			return fmt.Errorf("unable to decode messages.readMentions#36e5bf4d: field peer: %w", err)
		tl_messages_read_mentions_gen.go#L208: 			return fmt.Errorf("unable to decode messages.readMentions#36e5bf4d: field top_msg_id: %w", err)
		tl_messages_read_message_contents_gen.go#L116: 		return fmt.Errorf("can't encode messages.readMessageContents#36a73f77 as nil")
		tl_messages_read_message_contents_gen.go#L125: 		return fmt.Errorf("can't encode messages.readMessageContents#36a73f77 as nil")
		tl_messages_read_message_contents_gen.go#L137: 		return fmt.Errorf("can't decode messages.readMessageContents#36a73f77 to nil")
		tl_messages_read_message_contents_gen.go#L140: 		return fmt.Errorf("unable to decode messages.readMessageContents#36a73f77: %w", err)
		tl_messages_read_message_contents_gen.go#L148: 		return fmt.Errorf("can't decode messages.readMessageContents#36a73f77 to nil")
		tl_messages_read_message_contents_gen.go#L153: 			return fmt.Errorf("unable to decode messages.readMessageContents#36a73f77: field id: %w", err)
		tl_messages_read_message_contents_gen.go#L162: 				return fmt.Errorf("unable to decode messages.readMessageContents#36a73f77: field id: %w", err)
		tl_messages_read_reactions_gen.go#L153: 		return fmt.Errorf("can't encode messages.readReactions#54aa7f8e as nil")
		tl_messages_read_reactions_gen.go#L162: 		return fmt.Errorf("can't encode messages.readReactions#54aa7f8e as nil")
		tl_messages_read_reactions_gen.go#L166: 		return fmt.Errorf("unable to encode messages.readReactions#54aa7f8e: field flags: %w", err)
		tl_messages_read_reactions_gen.go#L169: 		return fmt.Errorf("unable to encode messages.readReactions#54aa7f8e: field peer is nil")
		tl_messages_read_reactions_gen.go#L172: 		return fmt.Errorf("unable to encode messages.readReactions#54aa7f8e: field peer: %w", err)
		tl_messages_read_reactions_gen.go#L183: 		return fmt.Errorf("can't decode messages.readReactions#54aa7f8e to nil")
		tl_messages_read_reactions_gen.go#L186: 		return fmt.Errorf("unable to decode messages.readReactions#54aa7f8e: %w", err)
		tl_messages_read_reactions_gen.go#L194: 		return fmt.Errorf("can't decode messages.readReactions#54aa7f8e to nil")
		tl_messages_read_reactions_gen.go#L198: 			return fmt.Errorf("unable to decode messages.readReactions#54aa7f8e: field flags: %w", err)
		tl_messages_read_reactions_gen.go#L204: 			return fmt.Errorf("unable to decode messages.readReactions#54aa7f8e: field peer: %w", err)
		tl_messages_read_reactions_gen.go#L211: 			return fmt.Errorf("unable to decode messages.readReactions#54aa7f8e: field top_msg_id: %w", err)
		tl_messages_received_messages_gen.go#L115: 		return fmt.Errorf("can't encode messages.receivedMessages#5a954c0 as nil")
		tl_messages_received_messages_gen.go#L124: 		return fmt.Errorf("can't encode messages.receivedMessages#5a954c0 as nil")
		tl_messages_received_messages_gen.go#L133: 		return fmt.Errorf("can't decode messages.receivedMessages#5a954c0 to nil")
		tl_messages_received_messages_gen.go#L136: 		return fmt.Errorf("unable to decode messages.receivedMessages#5a954c0: %w", err)
		tl_messages_received_messages_gen.go#L144: 		return fmt.Errorf("can't decode messages.receivedMessages#5a954c0 to nil")
		tl_messages_received_messages_gen.go#L149: 			return fmt.Errorf("unable to decode messages.receivedMessages#5a954c0: field max_id: %w", err)
		tl_messages_received_queue_gen.go#L117: 		return fmt.Errorf("can't encode messages.receivedQueue#55a5bb66 as nil")
		tl_messages_received_queue_gen.go#L126: 		return fmt.Errorf("can't encode messages.receivedQueue#55a5bb66 as nil")
		tl_messages_received_queue_gen.go#L135: 		return fmt.Errorf("can't decode messages.receivedQueue#55a5bb66 to nil")
		tl_messages_received_queue_gen.go#L138: 		return fmt.Errorf("unable to decode messages.receivedQueue#55a5bb66: %w", err)
		tl_messages_received_queue_gen.go#L146: 		return fmt.Errorf("can't decode messages.receivedQueue#55a5bb66 to nil")
		tl_messages_received_queue_gen.go#L151: 			return fmt.Errorf("unable to decode messages.receivedQueue#55a5bb66: field max_qts: %w", err)
		tl_messages_recent_stickers_gen.go#L103: 		return fmt.Errorf("can't encode messages.recentStickersNotModified#b17f890 as nil")
		tl_messages_recent_stickers_gen.go#L112: 		return fmt.Errorf("can't encode messages.recentStickersNotModified#b17f890 as nil")
		tl_messages_recent_stickers_gen.go#L120: 		return fmt.Errorf("can't decode messages.recentStickersNotModified#b17f890 to nil")
		tl_messages_recent_stickers_gen.go#L123: 		return fmt.Errorf("unable to decode messages.recentStickersNotModified#b17f890: %w", err)
		tl_messages_recent_stickers_gen.go#L131: 		return fmt.Errorf("can't decode messages.recentStickersNotModified#b17f890 to nil")
		tl_messages_recent_stickers_gen.go#L258: 		return fmt.Errorf("can't encode messages.recentStickers#88d37c56 as nil")
		tl_messages_recent_stickers_gen.go#L267: 		return fmt.Errorf("can't encode messages.recentStickers#88d37c56 as nil")
		tl_messages_recent_stickers_gen.go#L273: 			return fmt.Errorf("unable to encode messages.recentStickers#88d37c56: field packs element with index %d: %w", idx, err)
		tl_messages_recent_stickers_gen.go#L279: 			return fmt.Errorf("unable to encode messages.recentStickers#88d37c56: field stickers element with index %d is nil", idx)
		tl_messages_recent_stickers_gen.go#L282: 			return fmt.Errorf("unable to encode messages.recentStickers#88d37c56: field stickers element with index %d: %w", idx, err)
		tl_messages_recent_stickers_gen.go#L295: 		return fmt.Errorf("can't decode messages.recentStickers#88d37c56 to nil")
		tl_messages_recent_stickers_gen.go#L298: 		return fmt.Errorf("unable to decode messages.recentStickers#88d37c56: %w", err)
		tl_messages_recent_stickers_gen.go#L306: 		return fmt.Errorf("can't decode messages.recentStickers#88d37c56 to nil")
		tl_messages_recent_stickers_gen.go#L311: 			return fmt.Errorf("unable to decode messages.recentStickers#88d37c56: field hash: %w", err)
		tl_messages_recent_stickers_gen.go#L318: 			return fmt.Errorf("unable to decode messages.recentStickers#88d37c56: field packs: %w", err)
		tl_messages_recent_stickers_gen.go#L327: 				return fmt.Errorf("unable to decode messages.recentStickers#88d37c56: field packs: %w", err)
		tl_messages_recent_stickers_gen.go#L335: 			return fmt.Errorf("unable to decode messages.recentStickers#88d37c56: field stickers: %w", err)
		tl_messages_recent_stickers_gen.go#L344: 				return fmt.Errorf("unable to decode messages.recentStickers#88d37c56: field stickers: %w", err)
		tl_messages_recent_stickers_gen.go#L352: 			return fmt.Errorf("unable to decode messages.recentStickers#88d37c56: field dates: %w", err)
		tl_messages_recent_stickers_gen.go#L361: 				return fmt.Errorf("unable to decode messages.recentStickers#88d37c56: field dates: %w", err)
		tl_messages_recent_stickers_gen.go#L467: 			return nil, fmt.Errorf("unable to decode MessagesRecentStickersClass: %w", err)
		tl_messages_recent_stickers_gen.go#L474: 			return nil, fmt.Errorf("unable to decode MessagesRecentStickersClass: %w", err)
		tl_messages_recent_stickers_gen.go#L478: 		return nil, fmt.Errorf("unable to decode MessagesRecentStickersClass: %w", bin.NewUnexpectedID(id))
		tl_messages_recent_stickers_gen.go#L490: 		return fmt.Errorf("unable to decode MessagesRecentStickersBox to nil")
		tl_messages_recent_stickers_gen.go#L494: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_messages_recent_stickers_gen.go#L503: 		return fmt.Errorf("unable to encode MessagesRecentStickersClass as nil")
		tl_messages_reorder_pinned_dialogs_gen.go#L156: 		return fmt.Errorf("can't encode messages.reorderPinnedDialogs#3b1adf37 as nil")
		tl_messages_reorder_pinned_dialogs_gen.go#L165: 		return fmt.Errorf("can't encode messages.reorderPinnedDialogs#3b1adf37 as nil")
		tl_messages_reorder_pinned_dialogs_gen.go#L169: 		return fmt.Errorf("unable to encode messages.reorderPinnedDialogs#3b1adf37: field flags: %w", err)
		tl_messages_reorder_pinned_dialogs_gen.go#L175: 			return fmt.Errorf("unable to encode messages.reorderPinnedDialogs#3b1adf37: field order element with index %d is nil", idx)
		tl_messages_reorder_pinned_dialogs_gen.go#L178: 			return fmt.Errorf("unable to encode messages.reorderPinnedDialogs#3b1adf37: field order element with index %d: %w", idx, err)
		tl_messages_reorder_pinned_dialogs_gen.go#L187: 		return fmt.Errorf("can't decode messages.reorderPinnedDialogs#3b1adf37 to nil")
		tl_messages_reorder_pinned_dialogs_gen.go#L190: 		return fmt.Errorf("unable to decode messages.reorderPinnedDialogs#3b1adf37: %w", err)
		tl_messages_reorder_pinned_dialogs_gen.go#L198: 		return fmt.Errorf("can't decode messages.reorderPinnedDialogs#3b1adf37 to nil")
		tl_messages_reorder_pinned_dialogs_gen.go#L202: 			return fmt.Errorf("unable to decode messages.reorderPinnedDialogs#3b1adf37: field flags: %w", err)
		tl_messages_reorder_pinned_dialogs_gen.go#L209: 			return fmt.Errorf("unable to decode messages.reorderPinnedDialogs#3b1adf37: field folder_id: %w", err)
		tl_messages_reorder_pinned_dialogs_gen.go#L216: 			return fmt.Errorf("unable to decode messages.reorderPinnedDialogs#3b1adf37: field order: %w", err)
		tl_messages_reorder_pinned_dialogs_gen.go#L225: 				return fmt.Errorf("unable to decode messages.reorderPinnedDialogs#3b1adf37: field order: %w", err)
		tl_messages_reorder_sticker_sets_gen.go#L160: 		return fmt.Errorf("can't encode messages.reorderStickerSets#78337739 as nil")
		tl_messages_reorder_sticker_sets_gen.go#L169: 		return fmt.Errorf("can't encode messages.reorderStickerSets#78337739 as nil")
		tl_messages_reorder_sticker_sets_gen.go#L173: 		return fmt.Errorf("unable to encode messages.reorderStickerSets#78337739: field flags: %w", err)
		tl_messages_reorder_sticker_sets_gen.go#L185: 		return fmt.Errorf("can't decode messages.reorderStickerSets#78337739 to nil")
		tl_messages_reorder_sticker_sets_gen.go#L188: 		return fmt.Errorf("unable to decode messages.reorderStickerSets#78337739: %w", err)
		tl_messages_reorder_sticker_sets_gen.go#L196: 		return fmt.Errorf("can't decode messages.reorderStickerSets#78337739 to nil")
		tl_messages_reorder_sticker_sets_gen.go#L200: 			return fmt.Errorf("unable to decode messages.reorderStickerSets#78337739: field flags: %w", err)
		tl_messages_reorder_sticker_sets_gen.go#L208: 			return fmt.Errorf("unable to decode messages.reorderStickerSets#78337739: field order: %w", err)
		tl_messages_reorder_sticker_sets_gen.go#L217: 				return fmt.Errorf("unable to decode messages.reorderStickerSets#78337739: field order: %w", err)
		tl_messages_report_encrypted_spam_gen.go#L115: 		return fmt.Errorf("can't encode messages.reportEncryptedSpam#4b0c8c0f as nil")
		tl_messages_report_encrypted_spam_gen.go#L124: 		return fmt.Errorf("can't encode messages.reportEncryptedSpam#4b0c8c0f as nil")
		tl_messages_report_encrypted_spam_gen.go#L127: 		return fmt.Errorf("unable to encode messages.reportEncryptedSpam#4b0c8c0f: field peer: %w", err)
		tl_messages_report_encrypted_spam_gen.go#L135: 		return fmt.Errorf("can't decode messages.reportEncryptedSpam#4b0c8c0f to nil")
		tl_messages_report_encrypted_spam_gen.go#L138: 		return fmt.Errorf("unable to decode messages.reportEncryptedSpam#4b0c8c0f: %w", err)
		tl_messages_report_encrypted_spam_gen.go#L146: 		return fmt.Errorf("can't decode messages.reportEncryptedSpam#4b0c8c0f to nil")
		tl_messages_report_encrypted_spam_gen.go#L150: 			return fmt.Errorf("unable to decode messages.reportEncryptedSpam#4b0c8c0f: field peer: %w", err)
		tl_messages_report_gen.go#L148: 		return fmt.Errorf("can't encode messages.report#8953ab4e as nil")
		tl_messages_report_gen.go#L157: 		return fmt.Errorf("can't encode messages.report#8953ab4e as nil")
		tl_messages_report_gen.go#L160: 		return fmt.Errorf("unable to encode messages.report#8953ab4e: field peer is nil")
		tl_messages_report_gen.go#L163: 		return fmt.Errorf("unable to encode messages.report#8953ab4e: field peer: %w", err)
		tl_messages_report_gen.go#L170: 		return fmt.Errorf("unable to encode messages.report#8953ab4e: field reason is nil")
		tl_messages_report_gen.go#L173: 		return fmt.Errorf("unable to encode messages.report#8953ab4e: field reason: %w", err)
		tl_messages_report_gen.go#L182: 		return fmt.Errorf("can't decode messages.report#8953ab4e to nil")
		tl_messages_report_gen.go#L185: 		return fmt.Errorf("unable to decode messages.report#8953ab4e: %w", err)
		tl_messages_report_gen.go#L193: 		return fmt.Errorf("can't decode messages.report#8953ab4e to nil")
		tl_messages_report_gen.go#L198: 			return fmt.Errorf("unable to decode messages.report#8953ab4e: field peer: %w", err)
		tl_messages_report_gen.go#L205: 			return fmt.Errorf("unable to decode messages.report#8953ab4e: field id: %w", err)
		tl_messages_report_gen.go#L214: 				return fmt.Errorf("unable to decode messages.report#8953ab4e: field id: %w", err)
		tl_messages_report_gen.go#L222: 			return fmt.Errorf("unable to decode messages.report#8953ab4e: field reason: %w", err)
		tl_messages_report_gen.go#L229: 			return fmt.Errorf("unable to decode messages.report#8953ab4e: field message: %w", err)
		tl_messages_report_reaction_gen.go#L140: 		return fmt.Errorf("can't encode messages.reportReaction#3f64c076 as nil")
		tl_messages_report_reaction_gen.go#L149: 		return fmt.Errorf("can't encode messages.reportReaction#3f64c076 as nil")
		tl_messages_report_reaction_gen.go#L152: 		return fmt.Errorf("unable to encode messages.reportReaction#3f64c076: field peer is nil")
		tl_messages_report_reaction_gen.go#L155: 		return fmt.Errorf("unable to encode messages.reportReaction#3f64c076: field peer: %w", err)
		tl_messages_report_reaction_gen.go#L159: 		return fmt.Errorf("unable to encode messages.reportReaction#3f64c076: field reaction_peer is nil")
		tl_messages_report_reaction_gen.go#L162: 		return fmt.Errorf("unable to encode messages.reportReaction#3f64c076: field reaction_peer: %w", err)
		tl_messages_report_reaction_gen.go#L170: 		return fmt.Errorf("can't decode messages.reportReaction#3f64c076 to nil")
		tl_messages_report_reaction_gen.go#L173: 		return fmt.Errorf("unable to decode messages.reportReaction#3f64c076: %w", err)
		tl_messages_report_reaction_gen.go#L181: 		return fmt.Errorf("can't decode messages.reportReaction#3f64c076 to nil")
		tl_messages_report_reaction_gen.go#L186: 			return fmt.Errorf("unable to decode messages.reportReaction#3f64c076: field peer: %w", err)
		tl_messages_report_reaction_gen.go#L193: 			return fmt.Errorf("unable to decode messages.reportReaction#3f64c076: field id: %w", err)
		tl_messages_report_reaction_gen.go#L200: 			return fmt.Errorf("unable to decode messages.reportReaction#3f64c076: field reaction_peer: %w", err)
		tl_messages_report_spam_gen.go#L119: 		return fmt.Errorf("can't encode messages.reportSpam#cf1592db as nil")
		tl_messages_report_spam_gen.go#L128: 		return fmt.Errorf("can't encode messages.reportSpam#cf1592db as nil")
		tl_messages_report_spam_gen.go#L131: 		return fmt.Errorf("unable to encode messages.reportSpam#cf1592db: field peer is nil")
		tl_messages_report_spam_gen.go#L134: 		return fmt.Errorf("unable to encode messages.reportSpam#cf1592db: field peer: %w", err)
		tl_messages_report_spam_gen.go#L142: 		return fmt.Errorf("can't decode messages.reportSpam#cf1592db to nil")
		tl_messages_report_spam_gen.go#L145: 		return fmt.Errorf("unable to decode messages.reportSpam#cf1592db: %w", err)
		tl_messages_report_spam_gen.go#L153: 		return fmt.Errorf("can't decode messages.reportSpam#cf1592db to nil")
		tl_messages_report_spam_gen.go#L158: 			return fmt.Errorf("unable to decode messages.reportSpam#cf1592db: field peer: %w", err)
		tl_messages_request_app_web_view_gen.go#L229: 		return fmt.Errorf("can't encode messages.requestAppWebView#8c5a3b3c as nil")
		tl_messages_request_app_web_view_gen.go#L238: 		return fmt.Errorf("can't encode messages.requestAppWebView#8c5a3b3c as nil")
		tl_messages_request_app_web_view_gen.go#L242: 		return fmt.Errorf("unable to encode messages.requestAppWebView#8c5a3b3c: field flags: %w", err)
		tl_messages_request_app_web_view_gen.go#L245: 		return fmt.Errorf("unable to encode messages.requestAppWebView#8c5a3b3c: field peer is nil")
		tl_messages_request_app_web_view_gen.go#L248: 		return fmt.Errorf("unable to encode messages.requestAppWebView#8c5a3b3c: field peer: %w", err)
		tl_messages_request_app_web_view_gen.go#L251: 		return fmt.Errorf("unable to encode messages.requestAppWebView#8c5a3b3c: field app is nil")
		tl_messages_request_app_web_view_gen.go#L254: 		return fmt.Errorf("unable to encode messages.requestAppWebView#8c5a3b3c: field app: %w", err)
		tl_messages_request_app_web_view_gen.go#L261: 			return fmt.Errorf("unable to encode messages.requestAppWebView#8c5a3b3c: field theme_params: %w", err)
		tl_messages_request_app_web_view_gen.go#L271: 		return fmt.Errorf("can't decode messages.requestAppWebView#8c5a3b3c to nil")
		tl_messages_request_app_web_view_gen.go#L274: 		return fmt.Errorf("unable to decode messages.requestAppWebView#8c5a3b3c: %w", err)
		tl_messages_request_app_web_view_gen.go#L282: 		return fmt.Errorf("can't decode messages.requestAppWebView#8c5a3b3c to nil")
		tl_messages_request_app_web_view_gen.go#L286: 			return fmt.Errorf("unable to decode messages.requestAppWebView#8c5a3b3c: field flags: %w", err)
		tl_messages_request_app_web_view_gen.go#L293: 			return fmt.Errorf("unable to decode messages.requestAppWebView#8c5a3b3c: field peer: %w", err)
		tl_messages_request_app_web_view_gen.go#L300: 			return fmt.Errorf("unable to decode messages.requestAppWebView#8c5a3b3c: field app: %w", err)
		tl_messages_request_app_web_view_gen.go#L307: 			return fmt.Errorf("unable to decode messages.requestAppWebView#8c5a3b3c: field start_param: %w", err)
		tl_messages_request_app_web_view_gen.go#L313: 			return fmt.Errorf("unable to decode messages.requestAppWebView#8c5a3b3c: field theme_params: %w", err)
		tl_messages_request_app_web_view_gen.go#L319: 			return fmt.Errorf("unable to decode messages.requestAppWebView#8c5a3b3c: field platform: %w", err)
		tl_messages_request_encryption_gen.go#L141: 		return fmt.Errorf("can't encode messages.requestEncryption#f64daf43 as nil")
		tl_messages_request_encryption_gen.go#L150: 		return fmt.Errorf("can't encode messages.requestEncryption#f64daf43 as nil")
		tl_messages_request_encryption_gen.go#L153: 		return fmt.Errorf("unable to encode messages.requestEncryption#f64daf43: field user_id is nil")
		tl_messages_request_encryption_gen.go#L156: 		return fmt.Errorf("unable to encode messages.requestEncryption#f64daf43: field user_id: %w", err)
		tl_messages_request_encryption_gen.go#L166: 		return fmt.Errorf("can't decode messages.requestEncryption#f64daf43 to nil")
		tl_messages_request_encryption_gen.go#L169: 		return fmt.Errorf("unable to decode messages.requestEncryption#f64daf43: %w", err)
		tl_messages_request_encryption_gen.go#L177: 		return fmt.Errorf("can't decode messages.requestEncryption#f64daf43 to nil")
		tl_messages_request_encryption_gen.go#L182: 			return fmt.Errorf("unable to decode messages.requestEncryption#f64daf43: field user_id: %w", err)
		tl_messages_request_encryption_gen.go#L189: 			return fmt.Errorf("unable to decode messages.requestEncryption#f64daf43: field random_id: %w", err)
		tl_messages_request_encryption_gen.go#L196: 			return fmt.Errorf("unable to decode messages.requestEncryption#f64daf43: field g_a: %w", err)
		tl_messages_request_simple_web_view_gen.go#L246: 		return fmt.Errorf("can't encode messages.requestSimpleWebView#1a46500a as nil")
		tl_messages_request_simple_web_view_gen.go#L255: 		return fmt.Errorf("can't encode messages.requestSimpleWebView#1a46500a as nil")
		tl_messages_request_simple_web_view_gen.go#L259: 		return fmt.Errorf("unable to encode messages.requestSimpleWebView#1a46500a: field flags: %w", err)
		tl_messages_request_simple_web_view_gen.go#L262: 		return fmt.Errorf("unable to encode messages.requestSimpleWebView#1a46500a: field bot is nil")
		tl_messages_request_simple_web_view_gen.go#L265: 		return fmt.Errorf("unable to encode messages.requestSimpleWebView#1a46500a: field bot: %w", err)
		tl_messages_request_simple_web_view_gen.go#L275: 			return fmt.Errorf("unable to encode messages.requestSimpleWebView#1a46500a: field theme_params: %w", err)
		tl_messages_request_simple_web_view_gen.go#L285: 		return fmt.Errorf("can't decode messages.requestSimpleWebView#1a46500a to nil")
		tl_messages_request_simple_web_view_gen.go#L288: 		return fmt.Errorf("unable to decode messages.requestSimpleWebView#1a46500a: %w", err)
		tl_messages_request_simple_web_view_gen.go#L296: 		return fmt.Errorf("can't decode messages.requestSimpleWebView#1a46500a to nil")
		tl_messages_request_simple_web_view_gen.go#L300: 			return fmt.Errorf("unable to decode messages.requestSimpleWebView#1a46500a: field flags: %w", err)
		tl_messages_request_simple_web_view_gen.go#L308: 			return fmt.Errorf("unable to decode messages.requestSimpleWebView#1a46500a: field bot: %w", err)
		tl_messages_request_simple_web_view_gen.go#L315: 			return fmt.Errorf("unable to decode messages.requestSimpleWebView#1a46500a: field url: %w", err)
		tl_messages_request_simple_web_view_gen.go#L322: 			return fmt.Errorf("unable to decode messages.requestSimpleWebView#1a46500a: field start_param: %w", err)
		tl_messages_request_simple_web_view_gen.go#L328: 			return fmt.Errorf("unable to decode messages.requestSimpleWebView#1a46500a: field theme_params: %w", err)
		tl_messages_request_simple_web_view_gen.go#L334: 			return fmt.Errorf("unable to decode messages.requestSimpleWebView#1a46500a: field platform: %w", err)
		tl_messages_request_url_auth_gen.go#L203: 		return fmt.Errorf("can't encode messages.requestUrlAuth#198fb446 as nil")
		tl_messages_request_url_auth_gen.go#L212: 		return fmt.Errorf("can't encode messages.requestUrlAuth#198fb446 as nil")
		tl_messages_request_url_auth_gen.go#L216: 		return fmt.Errorf("unable to encode messages.requestUrlAuth#198fb446: field flags: %w", err)
		tl_messages_request_url_auth_gen.go#L220: 			return fmt.Errorf("unable to encode messages.requestUrlAuth#198fb446: field peer is nil")
		tl_messages_request_url_auth_gen.go#L223: 			return fmt.Errorf("unable to encode messages.requestUrlAuth#198fb446: field peer: %w", err)
		tl_messages_request_url_auth_gen.go#L241: 		return fmt.Errorf("can't decode messages.requestUrlAuth#198fb446 to nil")
		tl_messages_request_url_auth_gen.go#L244: 		return fmt.Errorf("unable to decode messages.requestUrlAuth#198fb446: %w", err)
		tl_messages_request_url_auth_gen.go#L252: 		return fmt.Errorf("can't decode messages.requestUrlAuth#198fb446 to nil")
		tl_messages_request_url_auth_gen.go#L256: 			return fmt.Errorf("unable to decode messages.requestUrlAuth#198fb446: field flags: %w", err)
		tl_messages_request_url_auth_gen.go#L262: 			return fmt.Errorf("unable to decode messages.requestUrlAuth#198fb446: field peer: %w", err)
		tl_messages_request_url_auth_gen.go#L269: 			return fmt.Errorf("unable to decode messages.requestUrlAuth#198fb446: field msg_id: %w", err)
		tl_messages_request_url_auth_gen.go#L276: 			return fmt.Errorf("unable to decode messages.requestUrlAuth#198fb446: field button_id: %w", err)
		tl_messages_request_url_auth_gen.go#L283: 			return fmt.Errorf("unable to decode messages.requestUrlAuth#198fb446: field url: %w", err)
		tl_messages_request_web_view_gen.go#L316: 		return fmt.Errorf("can't encode messages.requestWebView#269dc2c1 as nil")
		tl_messages_request_web_view_gen.go#L325: 		return fmt.Errorf("can't encode messages.requestWebView#269dc2c1 as nil")
		tl_messages_request_web_view_gen.go#L329: 		return fmt.Errorf("unable to encode messages.requestWebView#269dc2c1: field flags: %w", err)
		tl_messages_request_web_view_gen.go#L332: 		return fmt.Errorf("unable to encode messages.requestWebView#269dc2c1: field peer is nil")
		tl_messages_request_web_view_gen.go#L335: 		return fmt.Errorf("unable to encode messages.requestWebView#269dc2c1: field peer: %w", err)
		tl_messages_request_web_view_gen.go#L338: 		return fmt.Errorf("unable to encode messages.requestWebView#269dc2c1: field bot is nil")
		tl_messages_request_web_view_gen.go#L341: 		return fmt.Errorf("unable to encode messages.requestWebView#269dc2c1: field bot: %w", err)
		tl_messages_request_web_view_gen.go#L351: 			return fmt.Errorf("unable to encode messages.requestWebView#269dc2c1: field theme_params: %w", err)
		tl_messages_request_web_view_gen.go#L357: 			return fmt.Errorf("unable to encode messages.requestWebView#269dc2c1: field reply_to is nil")
		tl_messages_request_web_view_gen.go#L360: 			return fmt.Errorf("unable to encode messages.requestWebView#269dc2c1: field reply_to: %w", err)
		tl_messages_request_web_view_gen.go#L365: 			return fmt.Errorf("unable to encode messages.requestWebView#269dc2c1: field send_as is nil")
		tl_messages_request_web_view_gen.go#L368: 			return fmt.Errorf("unable to encode messages.requestWebView#269dc2c1: field send_as: %w", err)
		tl_messages_request_web_view_gen.go#L377: 		return fmt.Errorf("can't decode messages.requestWebView#269dc2c1 to nil")
		tl_messages_request_web_view_gen.go#L380: 		return fmt.Errorf("unable to decode messages.requestWebView#269dc2c1: %w", err)
		tl_messages_request_web_view_gen.go#L388: 		return fmt.Errorf("can't decode messages.requestWebView#269dc2c1 to nil")
		tl_messages_request_web_view_gen.go#L392: 			return fmt.Errorf("unable to decode messages.requestWebView#269dc2c1: field flags: %w", err)
		tl_messages_request_web_view_gen.go#L400: 			return fmt.Errorf("unable to decode messages.requestWebView#269dc2c1: field peer: %w", err)
		tl_messages_request_web_view_gen.go#L407: 			return fmt.Errorf("unable to decode messages.requestWebView#269dc2c1: field bot: %w", err)
		tl_messages_request_web_view_gen.go#L414: 			return fmt.Errorf("unable to decode messages.requestWebView#269dc2c1: field url: %w", err)
		tl_messages_request_web_view_gen.go#L421: 			return fmt.Errorf("unable to decode messages.requestWebView#269dc2c1: field start_param: %w", err)
		tl_messages_request_web_view_gen.go#L427: 			return fmt.Errorf("unable to decode messages.requestWebView#269dc2c1: field theme_params: %w", err)
		tl_messages_request_web_view_gen.go#L433: 			return fmt.Errorf("unable to decode messages.requestWebView#269dc2c1: field platform: %w", err)
		tl_messages_request_web_view_gen.go#L440: 			return fmt.Errorf("unable to decode messages.requestWebView#269dc2c1: field reply_to: %w", err)
		tl_messages_request_web_view_gen.go#L447: 			return fmt.Errorf("unable to decode messages.requestWebView#269dc2c1: field send_as: %w", err)
		tl_messages_save_default_send_as_gen.go#L126: 		return fmt.Errorf("can't encode messages.saveDefaultSendAs#ccfddf96 as nil")
		tl_messages_save_default_send_as_gen.go#L135: 		return fmt.Errorf("can't encode messages.saveDefaultSendAs#ccfddf96 as nil")
		tl_messages_save_default_send_as_gen.go#L138: 		return fmt.Errorf("unable to encode messages.saveDefaultSendAs#ccfddf96: field peer is nil")
		tl_messages_save_default_send_as_gen.go#L141: 		return fmt.Errorf("unable to encode messages.saveDefaultSendAs#ccfddf96: field peer: %w", err)
		tl_messages_save_default_send_as_gen.go#L144: 		return fmt.Errorf("unable to encode messages.saveDefaultSendAs#ccfddf96: field send_as is nil")
		tl_messages_save_default_send_as_gen.go#L147: 		return fmt.Errorf("unable to encode messages.saveDefaultSendAs#ccfddf96: field send_as: %w", err)
		tl_messages_save_default_send_as_gen.go#L155: 		return fmt.Errorf("can't decode messages.saveDefaultSendAs#ccfddf96 to nil")
		tl_messages_save_default_send_as_gen.go#L158: 		return fmt.Errorf("unable to decode messages.saveDefaultSendAs#ccfddf96: %w", err)
		tl_messages_save_default_send_as_gen.go#L166: 		return fmt.Errorf("can't decode messages.saveDefaultSendAs#ccfddf96 to nil")
		tl_messages_save_default_send_as_gen.go#L171: 			return fmt.Errorf("unable to decode messages.saveDefaultSendAs#ccfddf96: field peer: %w", err)
		tl_messages_save_default_send_as_gen.go#L178: 			return fmt.Errorf("unable to decode messages.saveDefaultSendAs#ccfddf96: field send_as: %w", err)
		tl_messages_save_draft_gen.go#L236: 		return fmt.Errorf("can't encode messages.saveDraft#7ff3b806 as nil")
		tl_messages_save_draft_gen.go#L245: 		return fmt.Errorf("can't encode messages.saveDraft#7ff3b806 as nil")
		tl_messages_save_draft_gen.go#L249: 		return fmt.Errorf("unable to encode messages.saveDraft#7ff3b806: field flags: %w", err)
		tl_messages_save_draft_gen.go#L253: 			return fmt.Errorf("unable to encode messages.saveDraft#7ff3b806: field reply_to is nil")
		tl_messages_save_draft_gen.go#L256: 			return fmt.Errorf("unable to encode messages.saveDraft#7ff3b806: field reply_to: %w", err)
		tl_messages_save_draft_gen.go#L260: 		return fmt.Errorf("unable to encode messages.saveDraft#7ff3b806: field peer is nil")
		tl_messages_save_draft_gen.go#L263: 		return fmt.Errorf("unable to encode messages.saveDraft#7ff3b806: field peer: %w", err)
		tl_messages_save_draft_gen.go#L270: 				return fmt.Errorf("unable to encode messages.saveDraft#7ff3b806: field entities element with index %d is nil", idx)
		tl_messages_save_draft_gen.go#L273: 				return fmt.Errorf("unable to encode messages.saveDraft#7ff3b806: field entities element with index %d: %w", idx, err)
		tl_messages_save_draft_gen.go#L279: 			return fmt.Errorf("unable to encode messages.saveDraft#7ff3b806: field media is nil")
		tl_messages_save_draft_gen.go#L282: 			return fmt.Errorf("unable to encode messages.saveDraft#7ff3b806: field media: %w", err)
		tl_messages_save_draft_gen.go#L291: 		return fmt.Errorf("can't decode messages.saveDraft#7ff3b806 to nil")
		tl_messages_save_draft_gen.go#L294: 		return fmt.Errorf("unable to decode messages.saveDraft#7ff3b806: %w", err)
		tl_messages_save_draft_gen.go#L302: 		return fmt.Errorf("can't decode messages.saveDraft#7ff3b806 to nil")
		tl_messages_save_draft_gen.go#L306: 			return fmt.Errorf("unable to decode messages.saveDraft#7ff3b806: field flags: %w", err)
		tl_messages_save_draft_gen.go#L314: 			return fmt.Errorf("unable to decode messages.saveDraft#7ff3b806: field reply_to: %w", err)
		tl_messages_save_draft_gen.go#L321: 			return fmt.Errorf("unable to decode messages.saveDraft#7ff3b806: field peer: %w", err)
		tl_messages_save_draft_gen.go#L328: 			return fmt.Errorf("unable to decode messages.saveDraft#7ff3b806: field message: %w", err)
		tl_messages_save_draft_gen.go#L335: 			return fmt.Errorf("unable to decode messages.saveDraft#7ff3b806: field entities: %w", err)
		tl_messages_save_draft_gen.go#L344: 				return fmt.Errorf("unable to decode messages.saveDraft#7ff3b806: field entities: %w", err)
		tl_messages_save_draft_gen.go#L352: 			return fmt.Errorf("unable to decode messages.saveDraft#7ff3b806: field media: %w", err)
		tl_messages_save_gif_gen.go#L126: 		return fmt.Errorf("can't encode messages.saveGif#327a30cb as nil")
		tl_messages_save_gif_gen.go#L135: 		return fmt.Errorf("can't encode messages.saveGif#327a30cb as nil")
		tl_messages_save_gif_gen.go#L138: 		return fmt.Errorf("unable to encode messages.saveGif#327a30cb: field id is nil")
		tl_messages_save_gif_gen.go#L141: 		return fmt.Errorf("unable to encode messages.saveGif#327a30cb: field id: %w", err)
		tl_messages_save_gif_gen.go#L150: 		return fmt.Errorf("can't decode messages.saveGif#327a30cb to nil")
		tl_messages_save_gif_gen.go#L153: 		return fmt.Errorf("unable to decode messages.saveGif#327a30cb: %w", err)
		tl_messages_save_gif_gen.go#L161: 		return fmt.Errorf("can't decode messages.saveGif#327a30cb to nil")
		tl_messages_save_gif_gen.go#L166: 			return fmt.Errorf("unable to decode messages.saveGif#327a30cb: field id: %w", err)
		tl_messages_save_gif_gen.go#L173: 			return fmt.Errorf("unable to decode messages.saveGif#327a30cb: field unsave: %w", err)
		tl_messages_save_recent_sticker_gen.go#L153: 		return fmt.Errorf("can't encode messages.saveRecentSticker#392718f8 as nil")
		tl_messages_save_recent_sticker_gen.go#L162: 		return fmt.Errorf("can't encode messages.saveRecentSticker#392718f8 as nil")
		tl_messages_save_recent_sticker_gen.go#L166: 		return fmt.Errorf("unable to encode messages.saveRecentSticker#392718f8: field flags: %w", err)
		tl_messages_save_recent_sticker_gen.go#L169: 		return fmt.Errorf("unable to encode messages.saveRecentSticker#392718f8: field id is nil")
		tl_messages_save_recent_sticker_gen.go#L172: 		return fmt.Errorf("unable to encode messages.saveRecentSticker#392718f8: field id: %w", err)
		tl_messages_save_recent_sticker_gen.go#L181: 		return fmt.Errorf("can't decode messages.saveRecentSticker#392718f8 to nil")
		tl_messages_save_recent_sticker_gen.go#L184: 		return fmt.Errorf("unable to decode messages.saveRecentSticker#392718f8: %w", err)
		tl_messages_save_recent_sticker_gen.go#L192: 		return fmt.Errorf("can't decode messages.saveRecentSticker#392718f8 to nil")
		tl_messages_save_recent_sticker_gen.go#L196: 			return fmt.Errorf("unable to decode messages.saveRecentSticker#392718f8: field flags: %w", err)
		tl_messages_save_recent_sticker_gen.go#L203: 			return fmt.Errorf("unable to decode messages.saveRecentSticker#392718f8: field id: %w", err)
		tl_messages_save_recent_sticker_gen.go#L210: 			return fmt.Errorf("unable to decode messages.saveRecentSticker#392718f8: field unsave: %w", err)
		tl_messages_saved_gifs_gen.go#L103: 		return fmt.Errorf("can't encode messages.savedGifsNotModified#e8025ca2 as nil")
		tl_messages_saved_gifs_gen.go#L112: 		return fmt.Errorf("can't encode messages.savedGifsNotModified#e8025ca2 as nil")
		tl_messages_saved_gifs_gen.go#L120: 		return fmt.Errorf("can't decode messages.savedGifsNotModified#e8025ca2 to nil")
		tl_messages_saved_gifs_gen.go#L123: 		return fmt.Errorf("unable to decode messages.savedGifsNotModified#e8025ca2: %w", err)
		tl_messages_saved_gifs_gen.go#L131: 		return fmt.Errorf("can't decode messages.savedGifsNotModified#e8025ca2 to nil")
		tl_messages_saved_gifs_gen.go#L236: 		return fmt.Errorf("can't encode messages.savedGifs#84a02a0d as nil")
		tl_messages_saved_gifs_gen.go#L245: 		return fmt.Errorf("can't encode messages.savedGifs#84a02a0d as nil")
		tl_messages_saved_gifs_gen.go#L251: 			return fmt.Errorf("unable to encode messages.savedGifs#84a02a0d: field gifs element with index %d is nil", idx)
		tl_messages_saved_gifs_gen.go#L254: 			return fmt.Errorf("unable to encode messages.savedGifs#84a02a0d: field gifs element with index %d: %w", idx, err)
		tl_messages_saved_gifs_gen.go#L263: 		return fmt.Errorf("can't decode messages.savedGifs#84a02a0d to nil")
		tl_messages_saved_gifs_gen.go#L266: 		return fmt.Errorf("unable to decode messages.savedGifs#84a02a0d: %w", err)
		tl_messages_saved_gifs_gen.go#L274: 		return fmt.Errorf("can't decode messages.savedGifs#84a02a0d to nil")
		tl_messages_saved_gifs_gen.go#L279: 			return fmt.Errorf("unable to decode messages.savedGifs#84a02a0d: field hash: %w", err)
		tl_messages_saved_gifs_gen.go#L286: 			return fmt.Errorf("unable to decode messages.savedGifs#84a02a0d: field gifs: %w", err)
		tl_messages_saved_gifs_gen.go#L295: 				return fmt.Errorf("unable to decode messages.savedGifs#84a02a0d: field gifs: %w", err)
		tl_messages_saved_gifs_gen.go#L385: 			return nil, fmt.Errorf("unable to decode MessagesSavedGifsClass: %w", err)
		tl_messages_saved_gifs_gen.go#L392: 			return nil, fmt.Errorf("unable to decode MessagesSavedGifsClass: %w", err)
		tl_messages_saved_gifs_gen.go#L396: 		return nil, fmt.Errorf("unable to decode MessagesSavedGifsClass: %w", bin.NewUnexpectedID(id))
		tl_messages_saved_gifs_gen.go#L408: 		return fmt.Errorf("unable to decode MessagesSavedGifsBox to nil")
		tl_messages_saved_gifs_gen.go#L412: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_messages_saved_gifs_gen.go#L421: 		return fmt.Errorf("unable to encode MessagesSavedGifsClass as nil")
		tl_messages_search_counter_gen.go#L157: 		return fmt.Errorf("can't encode messages.searchCounter#e844ebff as nil")
		tl_messages_search_counter_gen.go#L166: 		return fmt.Errorf("can't encode messages.searchCounter#e844ebff as nil")
		tl_messages_search_counter_gen.go#L170: 		return fmt.Errorf("unable to encode messages.searchCounter#e844ebff: field flags: %w", err)
		tl_messages_search_counter_gen.go#L173: 		return fmt.Errorf("unable to encode messages.searchCounter#e844ebff: field filter is nil")
		tl_messages_search_counter_gen.go#L176: 		return fmt.Errorf("unable to encode messages.searchCounter#e844ebff: field filter: %w", err)
		tl_messages_search_counter_gen.go#L185: 		return fmt.Errorf("can't decode messages.searchCounter#e844ebff to nil")
		tl_messages_search_counter_gen.go#L188: 		return fmt.Errorf("unable to decode messages.searchCounter#e844ebff: %w", err)
		tl_messages_search_counter_gen.go#L196: 		return fmt.Errorf("can't decode messages.searchCounter#e844ebff to nil")
		tl_messages_search_counter_gen.go#L200: 			return fmt.Errorf("unable to decode messages.searchCounter#e844ebff: field flags: %w", err)
		tl_messages_search_counter_gen.go#L207: 			return fmt.Errorf("unable to decode messages.searchCounter#e844ebff: field filter: %w", err)
		tl_messages_search_counter_gen.go#L214: 			return fmt.Errorf("unable to decode messages.searchCounter#e844ebff: field count: %w", err)
		tl_messages_search_counter_vector_gen.go#L112: 		return fmt.Errorf("can't encode Vector<messages.SearchCounter> as nil")
		tl_messages_search_counter_vector_gen.go#L121: 		return fmt.Errorf("can't encode Vector<messages.SearchCounter> as nil")
		tl_messages_search_counter_vector_gen.go#L126: 			return fmt.Errorf("unable to encode Vector<messages.SearchCounter>: field Elems element with index %d: %w", idx, err)
		tl_messages_search_counter_vector_gen.go#L135: 		return fmt.Errorf("can't decode Vector<messages.SearchCounter> to nil")
		tl_messages_search_counter_vector_gen.go#L144: 		return fmt.Errorf("can't decode Vector<messages.SearchCounter> to nil")
		tl_messages_search_counter_vector_gen.go#L149: 			return fmt.Errorf("unable to decode Vector<messages.SearchCounter>: field Elems: %w", err)
		tl_messages_search_counter_vector_gen.go#L158: 				return fmt.Errorf("unable to decode Vector<messages.SearchCounter>: field Elems: %w", err)
		tl_messages_search_custom_emoji_gen.go#L132: 		return fmt.Errorf("can't encode messages.searchCustomEmoji#2c11c0d7 as nil")
		tl_messages_search_custom_emoji_gen.go#L141: 		return fmt.Errorf("can't encode messages.searchCustomEmoji#2c11c0d7 as nil")
		tl_messages_search_custom_emoji_gen.go#L151: 		return fmt.Errorf("can't decode messages.searchCustomEmoji#2c11c0d7 to nil")
		tl_messages_search_custom_emoji_gen.go#L154: 		return fmt.Errorf("unable to decode messages.searchCustomEmoji#2c11c0d7: %w", err)
		tl_messages_search_custom_emoji_gen.go#L162: 		return fmt.Errorf("can't decode messages.searchCustomEmoji#2c11c0d7 to nil")
		tl_messages_search_custom_emoji_gen.go#L167: 			return fmt.Errorf("unable to decode messages.searchCustomEmoji#2c11c0d7: field emoticon: %w", err)
		tl_messages_search_custom_emoji_gen.go#L174: 			return fmt.Errorf("unable to decode messages.searchCustomEmoji#2c11c0d7: field hash: %w", err)
		tl_messages_search_emoji_sticker_sets_gen.go#L159: 		return fmt.Errorf("can't encode messages.searchEmojiStickerSets#92b4494c as nil")
		tl_messages_search_emoji_sticker_sets_gen.go#L168: 		return fmt.Errorf("can't encode messages.searchEmojiStickerSets#92b4494c as nil")
		tl_messages_search_emoji_sticker_sets_gen.go#L172: 		return fmt.Errorf("unable to encode messages.searchEmojiStickerSets#92b4494c: field flags: %w", err)
		tl_messages_search_emoji_sticker_sets_gen.go#L182: 		return fmt.Errorf("can't decode messages.searchEmojiStickerSets#92b4494c to nil")
		tl_messages_search_emoji_sticker_sets_gen.go#L185: 		return fmt.Errorf("unable to decode messages.searchEmojiStickerSets#92b4494c: %w", err)
		tl_messages_search_emoji_sticker_sets_gen.go#L193: 		return fmt.Errorf("can't decode messages.searchEmojiStickerSets#92b4494c to nil")
		tl_messages_search_emoji_sticker_sets_gen.go#L197: 			return fmt.Errorf("unable to decode messages.searchEmojiStickerSets#92b4494c: field flags: %w", err)
		tl_messages_search_emoji_sticker_sets_gen.go#L204: 			return fmt.Errorf("unable to decode messages.searchEmojiStickerSets#92b4494c: field q: %w", err)
		tl_messages_search_emoji_sticker_sets_gen.go#L211: 			return fmt.Errorf("unable to decode messages.searchEmojiStickerSets#92b4494c: field hash: %w", err)
		tl_messages_search_gen.go#L304: 		return fmt.Errorf("can't encode messages.search#a0fda762 as nil")
		tl_messages_search_gen.go#L313: 		return fmt.Errorf("can't encode messages.search#a0fda762 as nil")
		tl_messages_search_gen.go#L317: 		return fmt.Errorf("unable to encode messages.search#a0fda762: field flags: %w", err)
		tl_messages_search_gen.go#L320: 		return fmt.Errorf("unable to encode messages.search#a0fda762: field peer is nil")
		tl_messages_search_gen.go#L323: 		return fmt.Errorf("unable to encode messages.search#a0fda762: field peer: %w", err)
		tl_messages_search_gen.go#L328: 			return fmt.Errorf("unable to encode messages.search#a0fda762: field from_id is nil")
		tl_messages_search_gen.go#L331: 			return fmt.Errorf("unable to encode messages.search#a0fda762: field from_id: %w", err)
		tl_messages_search_gen.go#L338: 		return fmt.Errorf("unable to encode messages.search#a0fda762: field filter is nil")
		tl_messages_search_gen.go#L341: 		return fmt.Errorf("unable to encode messages.search#a0fda762: field filter: %w", err)
		tl_messages_search_gen.go#L357: 		return fmt.Errorf("can't decode messages.search#a0fda762 to nil")
		tl_messages_search_gen.go#L360: 		return fmt.Errorf("unable to decode messages.search#a0fda762: %w", err)
		tl_messages_search_gen.go#L368: 		return fmt.Errorf("can't decode messages.search#a0fda762 to nil")
		tl_messages_search_gen.go#L372: 			return fmt.Errorf("unable to decode messages.search#a0fda762: field flags: %w", err)
		tl_messages_search_gen.go#L378: 			return fmt.Errorf("unable to decode messages.search#a0fda762: field peer: %w", err)
		tl_messages_search_gen.go#L385: 			return fmt.Errorf("unable to decode messages.search#a0fda762: field q: %w", err)
		tl_messages_search_gen.go#L392: 			return fmt.Errorf("unable to decode messages.search#a0fda762: field from_id: %w", err)
		tl_messages_search_gen.go#L399: 			return fmt.Errorf("unable to decode messages.search#a0fda762: field top_msg_id: %w", err)
		tl_messages_search_gen.go#L406: 			return fmt.Errorf("unable to decode messages.search#a0fda762: field filter: %w", err)
		tl_messages_search_gen.go#L413: 			return fmt.Errorf("unable to decode messages.search#a0fda762: field min_date: %w", err)
		tl_messages_search_gen.go#L420: 			return fmt.Errorf("unable to decode messages.search#a0fda762: field max_date: %w", err)
		tl_messages_search_gen.go#L427: 			return fmt.Errorf("unable to decode messages.search#a0fda762: field offset_id: %w", err)
		tl_messages_search_gen.go#L434: 			return fmt.Errorf("unable to decode messages.search#a0fda762: field add_offset: %w", err)
		tl_messages_search_gen.go#L441: 			return fmt.Errorf("unable to decode messages.search#a0fda762: field limit: %w", err)
		tl_messages_search_gen.go#L448: 			return fmt.Errorf("unable to decode messages.search#a0fda762: field max_id: %w", err)
		tl_messages_search_gen.go#L455: 			return fmt.Errorf("unable to decode messages.search#a0fda762: field min_id: %w", err)
		tl_messages_search_gen.go#L462: 			return fmt.Errorf("unable to decode messages.search#a0fda762: field hash: %w", err)
		tl_messages_search_global_gen.go#L241: 		return fmt.Errorf("can't encode messages.searchGlobal#4bc6589a as nil")
		tl_messages_search_global_gen.go#L250: 		return fmt.Errorf("can't encode messages.searchGlobal#4bc6589a as nil")
		tl_messages_search_global_gen.go#L254: 		return fmt.Errorf("unable to encode messages.searchGlobal#4bc6589a: field flags: %w", err)
		tl_messages_search_global_gen.go#L261: 		return fmt.Errorf("unable to encode messages.searchGlobal#4bc6589a: field filter is nil")
		tl_messages_search_global_gen.go#L264: 		return fmt.Errorf("unable to encode messages.searchGlobal#4bc6589a: field filter: %w", err)
		tl_messages_search_global_gen.go#L270: 		return fmt.Errorf("unable to encode messages.searchGlobal#4bc6589a: field offset_peer is nil")
		tl_messages_search_global_gen.go#L273: 		return fmt.Errorf("unable to encode messages.searchGlobal#4bc6589a: field offset_peer: %w", err)
		tl_messages_search_global_gen.go#L283: 		return fmt.Errorf("can't decode messages.searchGlobal#4bc6589a to nil")
		tl_messages_search_global_gen.go#L286: 		return fmt.Errorf("unable to decode messages.searchGlobal#4bc6589a: %w", err)
		tl_messages_search_global_gen.go#L294: 		return fmt.Errorf("can't decode messages.searchGlobal#4bc6589a to nil")
		tl_messages_search_global_gen.go#L298: 			return fmt.Errorf("unable to decode messages.searchGlobal#4bc6589a: field flags: %w", err)
		tl_messages_search_global_gen.go#L304: 			return fmt.Errorf("unable to decode messages.searchGlobal#4bc6589a: field folder_id: %w", err)
		tl_messages_search_global_gen.go#L311: 			return fmt.Errorf("unable to decode messages.searchGlobal#4bc6589a: field q: %w", err)
		tl_messages_search_global_gen.go#L318: 			return fmt.Errorf("unable to decode messages.searchGlobal#4bc6589a: field filter: %w", err)
		tl_messages_search_global_gen.go#L325: 			return fmt.Errorf("unable to decode messages.searchGlobal#4bc6589a: field min_date: %w", err)
		tl_messages_search_global_gen.go#L332: 			return fmt.Errorf("unable to decode messages.searchGlobal#4bc6589a: field max_date: %w", err)
		tl_messages_search_global_gen.go#L339: 			return fmt.Errorf("unable to decode messages.searchGlobal#4bc6589a: field offset_rate: %w", err)
		tl_messages_search_global_gen.go#L346: 			return fmt.Errorf("unable to decode messages.searchGlobal#4bc6589a: field offset_peer: %w", err)
		tl_messages_search_global_gen.go#L353: 			return fmt.Errorf("unable to decode messages.searchGlobal#4bc6589a: field offset_id: %w", err)
		tl_messages_search_global_gen.go#L360: 			return fmt.Errorf("unable to decode messages.searchGlobal#4bc6589a: field limit: %w", err)
		tl_messages_search_results_calendar_gen.go#L237: 		return fmt.Errorf("can't encode messages.searchResultsCalendar#147ee23c as nil")
		tl_messages_search_results_calendar_gen.go#L246: 		return fmt.Errorf("can't encode messages.searchResultsCalendar#147ee23c as nil")
		tl_messages_search_results_calendar_gen.go#L250: 		return fmt.Errorf("unable to encode messages.searchResultsCalendar#147ee23c: field flags: %w", err)
		tl_messages_search_results_calendar_gen.go#L261: 			return fmt.Errorf("unable to encode messages.searchResultsCalendar#147ee23c: field periods element with index %d: %w", idx, err)
		tl_messages_search_results_calendar_gen.go#L267: 			return fmt.Errorf("unable to encode messages.searchResultsCalendar#147ee23c: field messages element with index %d is nil", idx)
		tl_messages_search_results_calendar_gen.go#L270: 			return fmt.Errorf("unable to encode messages.searchResultsCalendar#147ee23c: field messages element with index %d: %w", idx, err)
		tl_messages_search_results_calendar_gen.go#L276: 			return fmt.Errorf("unable to encode messages.searchResultsCalendar#147ee23c: field chats element with index %d is nil", idx)
		tl_messages_search_results_calendar_gen.go#L279: 			return fmt.Errorf("unable to encode messages.searchResultsCalendar#147ee23c: field chats element with index %d: %w", idx, err)
		tl_messages_search_results_calendar_gen.go#L285: 			return fmt.Errorf("unable to encode messages.searchResultsCalendar#147ee23c: field users element with index %d is nil", idx)
		tl_messages_search_results_calendar_gen.go#L288: 			return fmt.Errorf("unable to encode messages.searchResultsCalendar#147ee23c: field users element with index %d: %w", idx, err)
		tl_messages_search_results_calendar_gen.go#L297: 		return fmt.Errorf("can't decode messages.searchResultsCalendar#147ee23c to nil")
		tl_messages_search_results_calendar_gen.go#L300: 		return fmt.Errorf("unable to decode messages.searchResultsCalendar#147ee23c: %w", err)
		tl_messages_search_results_calendar_gen.go#L308: 		return fmt.Errorf("can't decode messages.searchResultsCalendar#147ee23c to nil")
		tl_messages_search_results_calendar_gen.go#L312: 			return fmt.Errorf("unable to decode messages.searchResultsCalendar#147ee23c: field flags: %w", err)
		tl_messages_search_results_calendar_gen.go#L319: 			return fmt.Errorf("unable to decode messages.searchResultsCalendar#147ee23c: field count: %w", err)
		tl_messages_search_results_calendar_gen.go#L326: 			return fmt.Errorf("unable to decode messages.searchResultsCalendar#147ee23c: field min_date: %w", err)
		tl_messages_search_results_calendar_gen.go#L333: 			return fmt.Errorf("unable to decode messages.searchResultsCalendar#147ee23c: field min_msg_id: %w", err)
		tl_messages_search_results_calendar_gen.go#L340: 			return fmt.Errorf("unable to decode messages.searchResultsCalendar#147ee23c: field offset_id_offset: %w", err)
		tl_messages_search_results_calendar_gen.go#L347: 			return fmt.Errorf("unable to decode messages.searchResultsCalendar#147ee23c: field periods: %w", err)
		tl_messages_search_results_calendar_gen.go#L356: 				return fmt.Errorf("unable to decode messages.searchResultsCalendar#147ee23c: field periods: %w", err)
		tl_messages_search_results_calendar_gen.go#L364: 			return fmt.Errorf("unable to decode messages.searchResultsCalendar#147ee23c: field messages: %w", err)
		tl_messages_search_results_calendar_gen.go#L373: 				return fmt.Errorf("unable to decode messages.searchResultsCalendar#147ee23c: field messages: %w", err)
		tl_messages_search_results_calendar_gen.go#L381: 			return fmt.Errorf("unable to decode messages.searchResultsCalendar#147ee23c: field chats: %w", err)
		tl_messages_search_results_calendar_gen.go#L390: 				return fmt.Errorf("unable to decode messages.searchResultsCalendar#147ee23c: field chats: %w", err)
		tl_messages_search_results_calendar_gen.go#L398: 			return fmt.Errorf("unable to decode messages.searchResultsCalendar#147ee23c: field users: %w", err)
		tl_messages_search_results_calendar_gen.go#L407: 				return fmt.Errorf("unable to decode messages.searchResultsCalendar#147ee23c: field users: %w", err)
		tl_messages_search_results_positions_gen.go#L126: 		return fmt.Errorf("can't encode messages.searchResultsPositions#53b22baf as nil")
		tl_messages_search_results_positions_gen.go#L135: 		return fmt.Errorf("can't encode messages.searchResultsPositions#53b22baf as nil")
		tl_messages_search_results_positions_gen.go#L141: 			return fmt.Errorf("unable to encode messages.searchResultsPositions#53b22baf: field positions element with index %d: %w", idx, err)
		tl_messages_search_results_positions_gen.go#L150: 		return fmt.Errorf("can't decode messages.searchResultsPositions#53b22baf to nil")
		tl_messages_search_results_positions_gen.go#L153: 		return fmt.Errorf("unable to decode messages.searchResultsPositions#53b22baf: %w", err)
		tl_messages_search_results_positions_gen.go#L161: 		return fmt.Errorf("can't decode messages.searchResultsPositions#53b22baf to nil")
		tl_messages_search_results_positions_gen.go#L166: 			return fmt.Errorf("unable to decode messages.searchResultsPositions#53b22baf: field count: %w", err)
		tl_messages_search_results_positions_gen.go#L173: 			return fmt.Errorf("unable to decode messages.searchResultsPositions#53b22baf: field positions: %w", err)
		tl_messages_search_results_positions_gen.go#L182: 				return fmt.Errorf("unable to decode messages.searchResultsPositions#53b22baf: field positions: %w", err)
		tl_messages_search_sent_media_gen.go#L138: 		return fmt.Errorf("can't encode messages.searchSentMedia#107e31a0 as nil")
		tl_messages_search_sent_media_gen.go#L147: 		return fmt.Errorf("can't encode messages.searchSentMedia#107e31a0 as nil")
		tl_messages_search_sent_media_gen.go#L151: 		return fmt.Errorf("unable to encode messages.searchSentMedia#107e31a0: field filter is nil")
		tl_messages_search_sent_media_gen.go#L154: 		return fmt.Errorf("unable to encode messages.searchSentMedia#107e31a0: field filter: %w", err)
		tl_messages_search_sent_media_gen.go#L163: 		return fmt.Errorf("can't decode messages.searchSentMedia#107e31a0 to nil")
		tl_messages_search_sent_media_gen.go#L166: 		return fmt.Errorf("unable to decode messages.searchSentMedia#107e31a0: %w", err)
		tl_messages_search_sent_media_gen.go#L174: 		return fmt.Errorf("can't decode messages.searchSentMedia#107e31a0 to nil")
		tl_messages_search_sent_media_gen.go#L179: 			return fmt.Errorf("unable to decode messages.searchSentMedia#107e31a0: field q: %w", err)
		tl_messages_search_sent_media_gen.go#L186: 			return fmt.Errorf("unable to decode messages.searchSentMedia#107e31a0: field filter: %w", err)
		tl_messages_search_sent_media_gen.go#L193: 			return fmt.Errorf("unable to decode messages.searchSentMedia#107e31a0: field limit: %w", err)
		tl_messages_search_sticker_sets_gen.go#L156: 		return fmt.Errorf("can't encode messages.searchStickerSets#35705b8a as nil")
		tl_messages_search_sticker_sets_gen.go#L165: 		return fmt.Errorf("can't encode messages.searchStickerSets#35705b8a as nil")
		tl_messages_search_sticker_sets_gen.go#L169: 		return fmt.Errorf("unable to encode messages.searchStickerSets#35705b8a: field flags: %w", err)
		tl_messages_search_sticker_sets_gen.go#L179: 		return fmt.Errorf("can't decode messages.searchStickerSets#35705b8a to nil")
		tl_messages_search_sticker_sets_gen.go#L182: 		return fmt.Errorf("unable to decode messages.searchStickerSets#35705b8a: %w", err)
		tl_messages_search_sticker_sets_gen.go#L190: 		return fmt.Errorf("can't decode messages.searchStickerSets#35705b8a to nil")
		tl_messages_search_sticker_sets_gen.go#L194: 			return fmt.Errorf("unable to decode messages.searchStickerSets#35705b8a: field flags: %w", err)
		tl_messages_search_sticker_sets_gen.go#L201: 			return fmt.Errorf("unable to decode messages.searchStickerSets#35705b8a: field q: %w", err)
		tl_messages_search_sticker_sets_gen.go#L208: 			return fmt.Errorf("unable to decode messages.searchStickerSets#35705b8a: field hash: %w", err)
		tl_messages_send_bot_requested_peer_gen.go#L161: 		return fmt.Errorf("can't encode messages.sendBotRequestedPeer#91b2d060 as nil")
		tl_messages_send_bot_requested_peer_gen.go#L170: 		return fmt.Errorf("can't encode messages.sendBotRequestedPeer#91b2d060 as nil")
		tl_messages_send_bot_requested_peer_gen.go#L173: 		return fmt.Errorf("unable to encode messages.sendBotRequestedPeer#91b2d060: field peer is nil")
		tl_messages_send_bot_requested_peer_gen.go#L176: 		return fmt.Errorf("unable to encode messages.sendBotRequestedPeer#91b2d060: field peer: %w", err)
		tl_messages_send_bot_requested_peer_gen.go#L183: 			return fmt.Errorf("unable to encode messages.sendBotRequestedPeer#91b2d060: field requested_peers element with index %d is nil", idx)
		tl_messages_send_bot_requested_peer_gen.go#L186: 			return fmt.Errorf("unable to encode messages.sendBotRequestedPeer#91b2d060: field requested_peers element with index %d: %w", idx, err)
		tl_messages_send_bot_requested_peer_gen.go#L195: 		return fmt.Errorf("can't decode messages.sendBotRequestedPeer#91b2d060 to nil")
		tl_messages_send_bot_requested_peer_gen.go#L198: 		return fmt.Errorf("unable to decode messages.sendBotRequestedPeer#91b2d060: %w", err)
		tl_messages_send_bot_requested_peer_gen.go#L206: 		return fmt.Errorf("can't decode messages.sendBotRequestedPeer#91b2d060 to nil")
		tl_messages_send_bot_requested_peer_gen.go#L211: 			return fmt.Errorf("unable to decode messages.sendBotRequestedPeer#91b2d060: field peer: %w", err)
		tl_messages_send_bot_requested_peer_gen.go#L218: 			return fmt.Errorf("unable to decode messages.sendBotRequestedPeer#91b2d060: field msg_id: %w", err)
		tl_messages_send_bot_requested_peer_gen.go#L225: 			return fmt.Errorf("unable to decode messages.sendBotRequestedPeer#91b2d060: field button_id: %w", err)
		tl_messages_send_bot_requested_peer_gen.go#L232: 			return fmt.Errorf("unable to decode messages.sendBotRequestedPeer#91b2d060: field requested_peers: %w", err)
		tl_messages_send_bot_requested_peer_gen.go#L241: 				return fmt.Errorf("unable to decode messages.sendBotRequestedPeer#91b2d060: field requested_peers: %w", err)
		tl_messages_send_encrypted_file_gen.go#L179: 		return fmt.Errorf("can't encode messages.sendEncryptedFile#5559481d as nil")
		tl_messages_send_encrypted_file_gen.go#L188: 		return fmt.Errorf("can't encode messages.sendEncryptedFile#5559481d as nil")
		tl_messages_send_encrypted_file_gen.go#L192: 		return fmt.Errorf("unable to encode messages.sendEncryptedFile#5559481d: field flags: %w", err)
		tl_messages_send_encrypted_file_gen.go#L195: 		return fmt.Errorf("unable to encode messages.sendEncryptedFile#5559481d: field peer: %w", err)
		tl_messages_send_encrypted_file_gen.go#L200: 		return fmt.Errorf("unable to encode messages.sendEncryptedFile#5559481d: field file is nil")
		tl_messages_send_encrypted_file_gen.go#L203: 		return fmt.Errorf("unable to encode messages.sendEncryptedFile#5559481d: field file: %w", err)
		tl_messages_send_encrypted_file_gen.go#L211: 		return fmt.Errorf("can't decode messages.sendEncryptedFile#5559481d to nil")
		tl_messages_send_encrypted_file_gen.go#L214: 		return fmt.Errorf("unable to decode messages.sendEncryptedFile#5559481d: %w", err)
		tl_messages_send_encrypted_file_gen.go#L222: 		return fmt.Errorf("can't decode messages.sendEncryptedFile#5559481d to nil")
		tl_messages_send_encrypted_file_gen.go#L226: 			return fmt.Errorf("unable to decode messages.sendEncryptedFile#5559481d: field flags: %w", err)
		tl_messages_send_encrypted_file_gen.go#L232: 			return fmt.Errorf("unable to decode messages.sendEncryptedFile#5559481d: field peer: %w", err)
		tl_messages_send_encrypted_file_gen.go#L238: 			return fmt.Errorf("unable to decode messages.sendEncryptedFile#5559481d: field random_id: %w", err)
		tl_messages_send_encrypted_file_gen.go#L245: 			return fmt.Errorf("unable to decode messages.sendEncryptedFile#5559481d: field data: %w", err)
		tl_messages_send_encrypted_file_gen.go#L252: 			return fmt.Errorf("unable to decode messages.sendEncryptedFile#5559481d: field file: %w", err)
		tl_messages_send_encrypted_gen.go#L168: 		return fmt.Errorf("can't encode messages.sendEncrypted#44fa7a15 as nil")
		tl_messages_send_encrypted_gen.go#L177: 		return fmt.Errorf("can't encode messages.sendEncrypted#44fa7a15 as nil")
		tl_messages_send_encrypted_gen.go#L181: 		return fmt.Errorf("unable to encode messages.sendEncrypted#44fa7a15: field flags: %w", err)
		tl_messages_send_encrypted_gen.go#L184: 		return fmt.Errorf("unable to encode messages.sendEncrypted#44fa7a15: field peer: %w", err)
		tl_messages_send_encrypted_gen.go#L194: 		return fmt.Errorf("can't decode messages.sendEncrypted#44fa7a15 to nil")
		tl_messages_send_encrypted_gen.go#L197: 		return fmt.Errorf("unable to decode messages.sendEncrypted#44fa7a15: %w", err)
		tl_messages_send_encrypted_gen.go#L205: 		return fmt.Errorf("can't decode messages.sendEncrypted#44fa7a15 to nil")
		tl_messages_send_encrypted_gen.go#L209: 			return fmt.Errorf("unable to decode messages.sendEncrypted#44fa7a15: field flags: %w", err)
		tl_messages_send_encrypted_gen.go#L215: 			return fmt.Errorf("unable to decode messages.sendEncrypted#44fa7a15: field peer: %w", err)
		tl_messages_send_encrypted_gen.go#L221: 			return fmt.Errorf("unable to decode messages.sendEncrypted#44fa7a15: field random_id: %w", err)
		tl_messages_send_encrypted_gen.go#L228: 			return fmt.Errorf("unable to decode messages.sendEncrypted#44fa7a15: field data: %w", err)
		tl_messages_send_encrypted_service_gen.go#L141: 		return fmt.Errorf("can't encode messages.sendEncryptedService#32d439a4 as nil")
		tl_messages_send_encrypted_service_gen.go#L150: 		return fmt.Errorf("can't encode messages.sendEncryptedService#32d439a4 as nil")
		tl_messages_send_encrypted_service_gen.go#L153: 		return fmt.Errorf("unable to encode messages.sendEncryptedService#32d439a4: field peer: %w", err)
		tl_messages_send_encrypted_service_gen.go#L163: 		return fmt.Errorf("can't decode messages.sendEncryptedService#32d439a4 to nil")
		tl_messages_send_encrypted_service_gen.go#L166: 		return fmt.Errorf("unable to decode messages.sendEncryptedService#32d439a4: %w", err)
		tl_messages_send_encrypted_service_gen.go#L174: 		return fmt.Errorf("can't decode messages.sendEncryptedService#32d439a4 to nil")
		tl_messages_send_encrypted_service_gen.go#L178: 			return fmt.Errorf("unable to decode messages.sendEncryptedService#32d439a4: field peer: %w", err)
		tl_messages_send_encrypted_service_gen.go#L184: 			return fmt.Errorf("unable to decode messages.sendEncryptedService#32d439a4: field random_id: %w", err)
		tl_messages_send_encrypted_service_gen.go#L191: 			return fmt.Errorf("unable to decode messages.sendEncryptedService#32d439a4: field data: %w", err)
		tl_messages_send_inline_bot_result_gen.go#L298: 		return fmt.Errorf("can't encode messages.sendInlineBotResult#f7bc68ba as nil")
		tl_messages_send_inline_bot_result_gen.go#L307: 		return fmt.Errorf("can't encode messages.sendInlineBotResult#f7bc68ba as nil")
		tl_messages_send_inline_bot_result_gen.go#L311: 		return fmt.Errorf("unable to encode messages.sendInlineBotResult#f7bc68ba: field flags: %w", err)
		tl_messages_send_inline_bot_result_gen.go#L314: 		return fmt.Errorf("unable to encode messages.sendInlineBotResult#f7bc68ba: field peer is nil")
		tl_messages_send_inline_bot_result_gen.go#L317: 		return fmt.Errorf("unable to encode messages.sendInlineBotResult#f7bc68ba: field peer: %w", err)
		tl_messages_send_inline_bot_result_gen.go#L321: 			return fmt.Errorf("unable to encode messages.sendInlineBotResult#f7bc68ba: field reply_to is nil")
		tl_messages_send_inline_bot_result_gen.go#L324: 			return fmt.Errorf("unable to encode messages.sendInlineBotResult#f7bc68ba: field reply_to: %w", err)
		tl_messages_send_inline_bot_result_gen.go#L335: 			return fmt.Errorf("unable to encode messages.sendInlineBotResult#f7bc68ba: field send_as is nil")
		tl_messages_send_inline_bot_result_gen.go#L338: 			return fmt.Errorf("unable to encode messages.sendInlineBotResult#f7bc68ba: field send_as: %w", err)
		tl_messages_send_inline_bot_result_gen.go#L347: 		return fmt.Errorf("can't decode messages.sendInlineBotResult#f7bc68ba to nil")
		tl_messages_send_inline_bot_result_gen.go#L350: 		return fmt.Errorf("unable to decode messages.sendInlineBotResult#f7bc68ba: %w", err)
		tl_messages_send_inline_bot_result_gen.go#L358: 		return fmt.Errorf("can't decode messages.sendInlineBotResult#f7bc68ba to nil")
		tl_messages_send_inline_bot_result_gen.go#L362: 			return fmt.Errorf("unable to decode messages.sendInlineBotResult#f7bc68ba: field flags: %w", err)
		tl_messages_send_inline_bot_result_gen.go#L372: 			return fmt.Errorf("unable to decode messages.sendInlineBotResult#f7bc68ba: field peer: %w", err)
		tl_messages_send_inline_bot_result_gen.go#L379: 			return fmt.Errorf("unable to decode messages.sendInlineBotResult#f7bc68ba: field reply_to: %w", err)
		tl_messages_send_inline_bot_result_gen.go#L386: 			return fmt.Errorf("unable to decode messages.sendInlineBotResult#f7bc68ba: field random_id: %w", err)
		tl_messages_send_inline_bot_result_gen.go#L393: 			return fmt.Errorf("unable to decode messages.sendInlineBotResult#f7bc68ba: field query_id: %w", err)
		tl_messages_send_inline_bot_result_gen.go#L400: 			return fmt.Errorf("unable to decode messages.sendInlineBotResult#f7bc68ba: field id: %w", err)
		tl_messages_send_inline_bot_result_gen.go#L407: 			return fmt.Errorf("unable to decode messages.sendInlineBotResult#f7bc68ba: field schedule_date: %w", err)
		tl_messages_send_inline_bot_result_gen.go#L414: 			return fmt.Errorf("unable to decode messages.sendInlineBotResult#f7bc68ba: field send_as: %w", err)
		tl_messages_send_media_gen.go#L365: 		return fmt.Errorf("can't encode messages.sendMedia#72ccc23d as nil")
		tl_messages_send_media_gen.go#L374: 		return fmt.Errorf("can't encode messages.sendMedia#72ccc23d as nil")
		tl_messages_send_media_gen.go#L378: 		return fmt.Errorf("unable to encode messages.sendMedia#72ccc23d: field flags: %w", err)
		tl_messages_send_media_gen.go#L381: 		return fmt.Errorf("unable to encode messages.sendMedia#72ccc23d: field peer is nil")
		tl_messages_send_media_gen.go#L384: 		return fmt.Errorf("unable to encode messages.sendMedia#72ccc23d: field peer: %w", err)
		tl_messages_send_media_gen.go#L388: 			return fmt.Errorf("unable to encode messages.sendMedia#72ccc23d: field reply_to is nil")
		tl_messages_send_media_gen.go#L391: 			return fmt.Errorf("unable to encode messages.sendMedia#72ccc23d: field reply_to: %w", err)
		tl_messages_send_media_gen.go#L395: 		return fmt.Errorf("unable to encode messages.sendMedia#72ccc23d: field media is nil")
		tl_messages_send_media_gen.go#L398: 		return fmt.Errorf("unable to encode messages.sendMedia#72ccc23d: field media: %w", err)
		tl_messages_send_media_gen.go#L404: 			return fmt.Errorf("unable to encode messages.sendMedia#72ccc23d: field reply_markup is nil")
		tl_messages_send_media_gen.go#L407: 			return fmt.Errorf("unable to encode messages.sendMedia#72ccc23d: field reply_markup: %w", err)
		tl_messages_send_media_gen.go#L414: 				return fmt.Errorf("unable to encode messages.sendMedia#72ccc23d: field entities element with index %d is nil", idx)
		tl_messages_send_media_gen.go#L417: 				return fmt.Errorf("unable to encode messages.sendMedia#72ccc23d: field entities element with index %d: %w", idx, err)
		tl_messages_send_media_gen.go#L426: 			return fmt.Errorf("unable to encode messages.sendMedia#72ccc23d: field send_as is nil")
		tl_messages_send_media_gen.go#L429: 			return fmt.Errorf("unable to encode messages.sendMedia#72ccc23d: field send_as: %w", err)
		tl_messages_send_media_gen.go#L438: 		return fmt.Errorf("can't decode messages.sendMedia#72ccc23d to nil")
		tl_messages_send_media_gen.go#L441: 		return fmt.Errorf("unable to decode messages.sendMedia#72ccc23d: %w", err)
		tl_messages_send_media_gen.go#L449: 		return fmt.Errorf("can't decode messages.sendMedia#72ccc23d to nil")
		tl_messages_send_media_gen.go#L453: 			return fmt.Errorf("unable to decode messages.sendMedia#72ccc23d: field flags: %w", err)
		tl_messages_send_media_gen.go#L465: 			return fmt.Errorf("unable to decode messages.sendMedia#72ccc23d: field peer: %w", err)
		tl_messages_send_media_gen.go#L472: 			return fmt.Errorf("unable to decode messages.sendMedia#72ccc23d: field reply_to: %w", err)
		tl_messages_send_media_gen.go#L479: 			return fmt.Errorf("unable to decode messages.sendMedia#72ccc23d: field media: %w", err)
		tl_messages_send_media_gen.go#L486: 			return fmt.Errorf("unable to decode messages.sendMedia#72ccc23d: field message: %w", err)
		tl_messages_send_media_gen.go#L493: 			return fmt.Errorf("unable to decode messages.sendMedia#72ccc23d: field random_id: %w", err)
		tl_messages_send_media_gen.go#L500: 			return fmt.Errorf("unable to decode messages.sendMedia#72ccc23d: field reply_markup: %w", err)
		tl_messages_send_media_gen.go#L507: 			return fmt.Errorf("unable to decode messages.sendMedia#72ccc23d: field entities: %w", err)
		tl_messages_send_media_gen.go#L516: 				return fmt.Errorf("unable to decode messages.sendMedia#72ccc23d: field entities: %w", err)
		tl_messages_send_media_gen.go#L524: 			return fmt.Errorf("unable to decode messages.sendMedia#72ccc23d: field schedule_date: %w", err)
		tl_messages_send_media_gen.go#L531: 			return fmt.Errorf("unable to decode messages.sendMedia#72ccc23d: field send_as: %w", err)
		tl_messages_send_message_gen.go#L369: 		return fmt.Errorf("can't encode messages.sendMessage#280d096f as nil")
		tl_messages_send_message_gen.go#L378: 		return fmt.Errorf("can't encode messages.sendMessage#280d096f as nil")
		tl_messages_send_message_gen.go#L382: 		return fmt.Errorf("unable to encode messages.sendMessage#280d096f: field flags: %w", err)
		tl_messages_send_message_gen.go#L385: 		return fmt.Errorf("unable to encode messages.sendMessage#280d096f: field peer is nil")
		tl_messages_send_message_gen.go#L388: 		return fmt.Errorf("unable to encode messages.sendMessage#280d096f: field peer: %w", err)
		tl_messages_send_message_gen.go#L392: 			return fmt.Errorf("unable to encode messages.sendMessage#280d096f: field reply_to is nil")
		tl_messages_send_message_gen.go#L395: 			return fmt.Errorf("unable to encode messages.sendMessage#280d096f: field reply_to: %w", err)
		tl_messages_send_message_gen.go#L402: 			return fmt.Errorf("unable to encode messages.sendMessage#280d096f: field reply_markup is nil")
		tl_messages_send_message_gen.go#L405: 			return fmt.Errorf("unable to encode messages.sendMessage#280d096f: field reply_markup: %w", err)
		tl_messages_send_message_gen.go#L412: 				return fmt.Errorf("unable to encode messages.sendMessage#280d096f: field entities element with index %d is nil", idx)
		tl_messages_send_message_gen.go#L415: 				return fmt.Errorf("unable to encode messages.sendMessage#280d096f: field entities element with index %d: %w", idx, err)
		tl_messages_send_message_gen.go#L424: 			return fmt.Errorf("unable to encode messages.sendMessage#280d096f: field send_as is nil")
		tl_messages_send_message_gen.go#L427: 			return fmt.Errorf("unable to encode messages.sendMessage#280d096f: field send_as: %w", err)
		tl_messages_send_message_gen.go#L436: 		return fmt.Errorf("can't decode messages.sendMessage#280d096f to nil")
		tl_messages_send_message_gen.go#L439: 		return fmt.Errorf("unable to decode messages.sendMessage#280d096f: %w", err)
		tl_messages_send_message_gen.go#L447: 		return fmt.Errorf("can't decode messages.sendMessage#280d096f to nil")
		tl_messages_send_message_gen.go#L451: 			return fmt.Errorf("unable to decode messages.sendMessage#280d096f: field flags: %w", err)
		tl_messages_send_message_gen.go#L464: 			return fmt.Errorf("unable to decode messages.sendMessage#280d096f: field peer: %w", err)
		tl_messages_send_message_gen.go#L471: 			return fmt.Errorf("unable to decode messages.sendMessage#280d096f: field reply_to: %w", err)
		tl_messages_send_message_gen.go#L478: 			return fmt.Errorf("unable to decode messages.sendMessage#280d096f: field message: %w", err)
		tl_messages_send_message_gen.go#L485: 			return fmt.Errorf("unable to decode messages.sendMessage#280d096f: field random_id: %w", err)
		tl_messages_send_message_gen.go#L492: 			return fmt.Errorf("unable to decode messages.sendMessage#280d096f: field reply_markup: %w", err)
		tl_messages_send_message_gen.go#L499: 			return fmt.Errorf("unable to decode messages.sendMessage#280d096f: field entities: %w", err)
		tl_messages_send_message_gen.go#L508: 				return fmt.Errorf("unable to decode messages.sendMessage#280d096f: field entities: %w", err)
		tl_messages_send_message_gen.go#L516: 			return fmt.Errorf("unable to decode messages.sendMessage#280d096f: field schedule_date: %w", err)
		tl_messages_send_message_gen.go#L523: 			return fmt.Errorf("unable to decode messages.sendMessage#280d096f: field send_as: %w", err)
		tl_messages_send_multi_media_gen.go#L307: 		return fmt.Errorf("can't encode messages.sendMultiMedia#456e8987 as nil")
		tl_messages_send_multi_media_gen.go#L316: 		return fmt.Errorf("can't encode messages.sendMultiMedia#456e8987 as nil")
		tl_messages_send_multi_media_gen.go#L320: 		return fmt.Errorf("unable to encode messages.sendMultiMedia#456e8987: field flags: %w", err)
		tl_messages_send_multi_media_gen.go#L323: 		return fmt.Errorf("unable to encode messages.sendMultiMedia#456e8987: field peer is nil")
		tl_messages_send_multi_media_gen.go#L326: 		return fmt.Errorf("unable to encode messages.sendMultiMedia#456e8987: field peer: %w", err)
		tl_messages_send_multi_media_gen.go#L330: 			return fmt.Errorf("unable to encode messages.sendMultiMedia#456e8987: field reply_to is nil")
		tl_messages_send_multi_media_gen.go#L333: 			return fmt.Errorf("unable to encode messages.sendMultiMedia#456e8987: field reply_to: %w", err)
		tl_messages_send_multi_media_gen.go#L339: 			return fmt.Errorf("unable to encode messages.sendMultiMedia#456e8987: field multi_media element with index %d: %w", idx, err)
		tl_messages_send_multi_media_gen.go#L347: 			return fmt.Errorf("unable to encode messages.sendMultiMedia#456e8987: field send_as is nil")
		tl_messages_send_multi_media_gen.go#L350: 			return fmt.Errorf("unable to encode messages.sendMultiMedia#456e8987: field send_as: %w", err)
		tl_messages_send_multi_media_gen.go#L359: 		return fmt.Errorf("can't decode messages.sendMultiMedia#456e8987 to nil")
		tl_messages_send_multi_media_gen.go#L362: 		return fmt.Errorf("unable to decode messages.sendMultiMedia#456e8987: %w", err)
		tl_messages_send_multi_media_gen.go#L370: 		return fmt.Errorf("can't decode messages.sendMultiMedia#456e8987 to nil")
		tl_messages_send_multi_media_gen.go#L374: 			return fmt.Errorf("unable to decode messages.sendMultiMedia#456e8987: field flags: %w", err)
		tl_messages_send_multi_media_gen.go#L386: 			return fmt.Errorf("unable to decode messages.sendMultiMedia#456e8987: field peer: %w", err)
		tl_messages_send_multi_media_gen.go#L393: 			return fmt.Errorf("unable to decode messages.sendMultiMedia#456e8987: field reply_to: %w", err)
		tl_messages_send_multi_media_gen.go#L400: 			return fmt.Errorf("unable to decode messages.sendMultiMedia#456e8987: field multi_media: %w", err)
		tl_messages_send_multi_media_gen.go#L409: 				return fmt.Errorf("unable to decode messages.sendMultiMedia#456e8987: field multi_media: %w", err)
		tl_messages_send_multi_media_gen.go#L417: 			return fmt.Errorf("unable to decode messages.sendMultiMedia#456e8987: field schedule_date: %w", err)
		tl_messages_send_multi_media_gen.go#L424: 			return fmt.Errorf("unable to decode messages.sendMultiMedia#456e8987: field send_as: %w", err)
		tl_messages_send_reaction_gen.go#L196: 		return fmt.Errorf("can't encode messages.sendReaction#d30d78d4 as nil")
		tl_messages_send_reaction_gen.go#L205: 		return fmt.Errorf("can't encode messages.sendReaction#d30d78d4 as nil")
		tl_messages_send_reaction_gen.go#L209: 		return fmt.Errorf("unable to encode messages.sendReaction#d30d78d4: field flags: %w", err)
		tl_messages_send_reaction_gen.go#L212: 		return fmt.Errorf("unable to encode messages.sendReaction#d30d78d4: field peer is nil")
		tl_messages_send_reaction_gen.go#L215: 		return fmt.Errorf("unable to encode messages.sendReaction#d30d78d4: field peer: %w", err)
		tl_messages_send_reaction_gen.go#L222: 				return fmt.Errorf("unable to encode messages.sendReaction#d30d78d4: field reaction element with index %d is nil", idx)
		tl_messages_send_reaction_gen.go#L225: 				return fmt.Errorf("unable to encode messages.sendReaction#d30d78d4: field reaction element with index %d: %w", idx, err)
		tl_messages_send_reaction_gen.go#L235: 		return fmt.Errorf("can't decode messages.sendReaction#d30d78d4 to nil")
		tl_messages_send_reaction_gen.go#L238: 		return fmt.Errorf("unable to decode messages.sendReaction#d30d78d4: %w", err)
		tl_messages_send_reaction_gen.go#L246: 		return fmt.Errorf("can't decode messages.sendReaction#d30d78d4 to nil")
		tl_messages_send_reaction_gen.go#L250: 			return fmt.Errorf("unable to decode messages.sendReaction#d30d78d4: field flags: %w", err)
		tl_messages_send_reaction_gen.go#L258: 			return fmt.Errorf("unable to decode messages.sendReaction#d30d78d4: field peer: %w", err)
		tl_messages_send_reaction_gen.go#L265: 			return fmt.Errorf("unable to decode messages.sendReaction#d30d78d4: field msg_id: %w", err)
		tl_messages_send_reaction_gen.go#L272: 			return fmt.Errorf("unable to decode messages.sendReaction#d30d78d4: field reaction: %w", err)
		tl_messages_send_reaction_gen.go#L281: 				return fmt.Errorf("unable to decode messages.sendReaction#d30d78d4: field reaction: %w", err)
		tl_messages_send_scheduled_messages_gen.go#L126: 		return fmt.Errorf("can't encode messages.sendScheduledMessages#bd38850a as nil")
		tl_messages_send_scheduled_messages_gen.go#L135: 		return fmt.Errorf("can't encode messages.sendScheduledMessages#bd38850a as nil")
		tl_messages_send_scheduled_messages_gen.go#L138: 		return fmt.Errorf("unable to encode messages.sendScheduledMessages#bd38850a: field peer is nil")
		tl_messages_send_scheduled_messages_gen.go#L141: 		return fmt.Errorf("unable to encode messages.sendScheduledMessages#bd38850a: field peer: %w", err)
		tl_messages_send_scheduled_messages_gen.go#L153: 		return fmt.Errorf("can't decode messages.sendScheduledMessages#bd38850a to nil")
		tl_messages_send_scheduled_messages_gen.go#L156: 		return fmt.Errorf("unable to decode messages.sendScheduledMessages#bd38850a: %w", err)
		tl_messages_send_scheduled_messages_gen.go#L164: 		return fmt.Errorf("can't decode messages.sendScheduledMessages#bd38850a to nil")
		tl_messages_send_scheduled_messages_gen.go#L169: 			return fmt.Errorf("unable to decode messages.sendScheduledMessages#bd38850a: field peer: %w", err)
		tl_messages_send_scheduled_messages_gen.go#L176: 			return fmt.Errorf("unable to decode messages.sendScheduledMessages#bd38850a: field id: %w", err)
		tl_messages_send_scheduled_messages_gen.go#L185: 				return fmt.Errorf("unable to decode messages.sendScheduledMessages#bd38850a: field id: %w", err)
		tl_messages_send_screenshot_notification_gen.go#L138: 		return fmt.Errorf("can't encode messages.sendScreenshotNotification#a1405817 as nil")
		tl_messages_send_screenshot_notification_gen.go#L147: 		return fmt.Errorf("can't encode messages.sendScreenshotNotification#a1405817 as nil")
		tl_messages_send_screenshot_notification_gen.go#L150: 		return fmt.Errorf("unable to encode messages.sendScreenshotNotification#a1405817: field peer is nil")
		tl_messages_send_screenshot_notification_gen.go#L153: 		return fmt.Errorf("unable to encode messages.sendScreenshotNotification#a1405817: field peer: %w", err)
		tl_messages_send_screenshot_notification_gen.go#L156: 		return fmt.Errorf("unable to encode messages.sendScreenshotNotification#a1405817: field reply_to is nil")
		tl_messages_send_screenshot_notification_gen.go#L159: 		return fmt.Errorf("unable to encode messages.sendScreenshotNotification#a1405817: field reply_to: %w", err)
		tl_messages_send_screenshot_notification_gen.go#L168: 		return fmt.Errorf("can't decode messages.sendScreenshotNotification#a1405817 to nil")
		tl_messages_send_screenshot_notification_gen.go#L171: 		return fmt.Errorf("unable to decode messages.sendScreenshotNotification#a1405817: %w", err)
		tl_messages_send_screenshot_notification_gen.go#L179: 		return fmt.Errorf("can't decode messages.sendScreenshotNotification#a1405817 to nil")
		tl_messages_send_screenshot_notification_gen.go#L184: 			return fmt.Errorf("unable to decode messages.sendScreenshotNotification#a1405817: field peer: %w", err)
		tl_messages_send_screenshot_notification_gen.go#L191: 			return fmt.Errorf("unable to decode messages.sendScreenshotNotification#a1405817: field reply_to: %w", err)
		tl_messages_send_screenshot_notification_gen.go#L198: 			return fmt.Errorf("unable to decode messages.sendScreenshotNotification#a1405817: field random_id: %w", err)
		tl_messages_send_vote_gen.go#L140: 		return fmt.Errorf("can't encode messages.sendVote#10ea6184 as nil")
		tl_messages_send_vote_gen.go#L149: 		return fmt.Errorf("can't encode messages.sendVote#10ea6184 as nil")
		tl_messages_send_vote_gen.go#L152: 		return fmt.Errorf("unable to encode messages.sendVote#10ea6184: field peer is nil")
		tl_messages_send_vote_gen.go#L155: 		return fmt.Errorf("unable to encode messages.sendVote#10ea6184: field peer: %w", err)
		tl_messages_send_vote_gen.go#L168: 		return fmt.Errorf("can't decode messages.sendVote#10ea6184 to nil")
		tl_messages_send_vote_gen.go#L171: 		return fmt.Errorf("unable to decode messages.sendVote#10ea6184: %w", err)
		tl_messages_send_vote_gen.go#L179: 		return fmt.Errorf("can't decode messages.sendVote#10ea6184 to nil")
		tl_messages_send_vote_gen.go#L184: 			return fmt.Errorf("unable to decode messages.sendVote#10ea6184: field peer: %w", err)
		tl_messages_send_vote_gen.go#L191: 			return fmt.Errorf("unable to decode messages.sendVote#10ea6184: field msg_id: %w", err)
		tl_messages_send_vote_gen.go#L198: 			return fmt.Errorf("unable to decode messages.sendVote#10ea6184: field options: %w", err)
		tl_messages_send_vote_gen.go#L207: 				return fmt.Errorf("unable to decode messages.sendVote#10ea6184: field options: %w", err)
		tl_messages_send_web_view_data_gen.go#L158: 		return fmt.Errorf("can't encode messages.sendWebViewData#dc0242c8 as nil")
		tl_messages_send_web_view_data_gen.go#L167: 		return fmt.Errorf("can't encode messages.sendWebViewData#dc0242c8 as nil")
		tl_messages_send_web_view_data_gen.go#L170: 		return fmt.Errorf("unable to encode messages.sendWebViewData#dc0242c8: field bot is nil")
		tl_messages_send_web_view_data_gen.go#L173: 		return fmt.Errorf("unable to encode messages.sendWebViewData#dc0242c8: field bot: %w", err)
		tl_messages_send_web_view_data_gen.go#L184: 		return fmt.Errorf("can't decode messages.sendWebViewData#dc0242c8 to nil")
		tl_messages_send_web_view_data_gen.go#L187: 		return fmt.Errorf("unable to decode messages.sendWebViewData#dc0242c8: %w", err)
		tl_messages_send_web_view_data_gen.go#L195: 		return fmt.Errorf("can't decode messages.sendWebViewData#dc0242c8 to nil")
		tl_messages_send_web_view_data_gen.go#L200: 			return fmt.Errorf("unable to decode messages.sendWebViewData#dc0242c8: field bot: %w", err)
		tl_messages_send_web_view_data_gen.go#L207: 			return fmt.Errorf("unable to decode messages.sendWebViewData#dc0242c8: field random_id: %w", err)
		tl_messages_send_web_view_data_gen.go#L214: 			return fmt.Errorf("unable to decode messages.sendWebViewData#dc0242c8: field button_text: %w", err)
		tl_messages_send_web_view_data_gen.go#L221: 			return fmt.Errorf("unable to decode messages.sendWebViewData#dc0242c8: field data: %w", err)
		tl_messages_send_web_view_result_message_gen.go#L133: 		return fmt.Errorf("can't encode messages.sendWebViewResultMessage#a4314f5 as nil")
		tl_messages_send_web_view_result_message_gen.go#L142: 		return fmt.Errorf("can't encode messages.sendWebViewResultMessage#a4314f5 as nil")
		tl_messages_send_web_view_result_message_gen.go#L146: 		return fmt.Errorf("unable to encode messages.sendWebViewResultMessage#a4314f5: field result is nil")
		tl_messages_send_web_view_result_message_gen.go#L149: 		return fmt.Errorf("unable to encode messages.sendWebViewResultMessage#a4314f5: field result: %w", err)
		tl_messages_send_web_view_result_message_gen.go#L157: 		return fmt.Errorf("can't decode messages.sendWebViewResultMessage#a4314f5 to nil")
		tl_messages_send_web_view_result_message_gen.go#L160: 		return fmt.Errorf("unable to decode messages.sendWebViewResultMessage#a4314f5: %w", err)
		tl_messages_send_web_view_result_message_gen.go#L168: 		return fmt.Errorf("can't decode messages.sendWebViewResultMessage#a4314f5 to nil")
		tl_messages_send_web_view_result_message_gen.go#L173: 			return fmt.Errorf("unable to decode messages.sendWebViewResultMessage#a4314f5: field bot_query_id: %w", err)
		tl_messages_send_web_view_result_message_gen.go#L180: 			return fmt.Errorf("unable to decode messages.sendWebViewResultMessage#a4314f5: field result: %w", err)
		tl_messages_sent_encrypted_message_gen.go#L120: 		return fmt.Errorf("can't encode messages.sentEncryptedMessage#560f8935 as nil")
		tl_messages_sent_encrypted_message_gen.go#L129: 		return fmt.Errorf("can't encode messages.sentEncryptedMessage#560f8935 as nil")
		tl_messages_sent_encrypted_message_gen.go#L138: 		return fmt.Errorf("can't decode messages.sentEncryptedMessage#560f8935 to nil")
		tl_messages_sent_encrypted_message_gen.go#L141: 		return fmt.Errorf("unable to decode messages.sentEncryptedMessage#560f8935: %w", err)
		tl_messages_sent_encrypted_message_gen.go#L149: 		return fmt.Errorf("can't decode messages.sentEncryptedMessage#560f8935 to nil")
		tl_messages_sent_encrypted_message_gen.go#L154: 			return fmt.Errorf("unable to decode messages.sentEncryptedMessage#560f8935: field date: %w", err)
		tl_messages_sent_encrypted_message_gen.go#L266: 		return fmt.Errorf("can't encode messages.sentEncryptedFile#9493ff32 as nil")
		tl_messages_sent_encrypted_message_gen.go#L275: 		return fmt.Errorf("can't encode messages.sentEncryptedFile#9493ff32 as nil")
		tl_messages_sent_encrypted_message_gen.go#L279: 		return fmt.Errorf("unable to encode messages.sentEncryptedFile#9493ff32: field file is nil")
		tl_messages_sent_encrypted_message_gen.go#L282: 		return fmt.Errorf("unable to encode messages.sentEncryptedFile#9493ff32: field file: %w", err)
		tl_messages_sent_encrypted_message_gen.go#L290: 		return fmt.Errorf("can't decode messages.sentEncryptedFile#9493ff32 to nil")
		tl_messages_sent_encrypted_message_gen.go#L293: 		return fmt.Errorf("unable to decode messages.sentEncryptedFile#9493ff32: %w", err)
		tl_messages_sent_encrypted_message_gen.go#L301: 		return fmt.Errorf("can't decode messages.sentEncryptedFile#9493ff32 to nil")
		tl_messages_sent_encrypted_message_gen.go#L306: 			return fmt.Errorf("unable to decode messages.sentEncryptedFile#9493ff32: field date: %w", err)
		tl_messages_sent_encrypted_message_gen.go#L313: 			return fmt.Errorf("unable to decode messages.sentEncryptedFile#9493ff32: field file: %w", err)
		tl_messages_sent_encrypted_message_gen.go#L387: 			return nil, fmt.Errorf("unable to decode MessagesSentEncryptedMessageClass: %w", err)
		tl_messages_sent_encrypted_message_gen.go#L394: 			return nil, fmt.Errorf("unable to decode MessagesSentEncryptedMessageClass: %w", err)
		tl_messages_sent_encrypted_message_gen.go#L398: 		return nil, fmt.Errorf("unable to decode MessagesSentEncryptedMessageClass: %w", bin.NewUnexpectedID(id))
		tl_messages_sent_encrypted_message_gen.go#L410: 		return fmt.Errorf("unable to decode MessagesSentEncryptedMessageBox to nil")
		tl_messages_sent_encrypted_message_gen.go#L414: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_messages_sent_encrypted_message_gen.go#L423: 		return fmt.Errorf("unable to encode MessagesSentEncryptedMessageClass as nil")
		tl_messages_set_bot_callback_answer_gen.go#L193: 		return fmt.Errorf("can't encode messages.setBotCallbackAnswer#d58f130a as nil")
		tl_messages_set_bot_callback_answer_gen.go#L202: 		return fmt.Errorf("can't encode messages.setBotCallbackAnswer#d58f130a as nil")
		tl_messages_set_bot_callback_answer_gen.go#L206: 		return fmt.Errorf("unable to encode messages.setBotCallbackAnswer#d58f130a: field flags: %w", err)
		tl_messages_set_bot_callback_answer_gen.go#L222: 		return fmt.Errorf("can't decode messages.setBotCallbackAnswer#d58f130a to nil")
		tl_messages_set_bot_callback_answer_gen.go#L225: 		return fmt.Errorf("unable to decode messages.setBotCallbackAnswer#d58f130a: %w", err)
		tl_messages_set_bot_callback_answer_gen.go#L233: 		return fmt.Errorf("can't decode messages.setBotCallbackAnswer#d58f130a to nil")
		tl_messages_set_bot_callback_answer_gen.go#L237: 			return fmt.Errorf("unable to decode messages.setBotCallbackAnswer#d58f130a: field flags: %w", err)
		tl_messages_set_bot_callback_answer_gen.go#L244: 			return fmt.Errorf("unable to decode messages.setBotCallbackAnswer#d58f130a: field query_id: %w", err)
		tl_messages_set_bot_callback_answer_gen.go#L251: 			return fmt.Errorf("unable to decode messages.setBotCallbackAnswer#d58f130a: field message: %w", err)
		tl_messages_set_bot_callback_answer_gen.go#L258: 			return fmt.Errorf("unable to decode messages.setBotCallbackAnswer#d58f130a: field url: %w", err)
		tl_messages_set_bot_callback_answer_gen.go#L265: 			return fmt.Errorf("unable to decode messages.setBotCallbackAnswer#d58f130a: field cache_time: %w", err)
		tl_messages_set_bot_precheckout_results_gen.go#L175: 		return fmt.Errorf("can't encode messages.setBotPrecheckoutResults#9c2dd95 as nil")
		tl_messages_set_bot_precheckout_results_gen.go#L184: 		return fmt.Errorf("can't encode messages.setBotPrecheckoutResults#9c2dd95 as nil")
		tl_messages_set_bot_precheckout_results_gen.go#L188: 		return fmt.Errorf("unable to encode messages.setBotPrecheckoutResults#9c2dd95: field flags: %w", err)
		tl_messages_set_bot_precheckout_results_gen.go#L200: 		return fmt.Errorf("can't decode messages.setBotPrecheckoutResults#9c2dd95 to nil")
		tl_messages_set_bot_precheckout_results_gen.go#L203: 		return fmt.Errorf("unable to decode messages.setBotPrecheckoutResults#9c2dd95: %w", err)
		tl_messages_set_bot_precheckout_results_gen.go#L211: 		return fmt.Errorf("can't decode messages.setBotPrecheckoutResults#9c2dd95 to nil")
		tl_messages_set_bot_precheckout_results_gen.go#L215: 			return fmt.Errorf("unable to decode messages.setBotPrecheckoutResults#9c2dd95: field flags: %w", err)
		tl_messages_set_bot_precheckout_results_gen.go#L222: 			return fmt.Errorf("unable to decode messages.setBotPrecheckoutResults#9c2dd95: field query_id: %w", err)
		tl_messages_set_bot_precheckout_results_gen.go#L229: 			return fmt.Errorf("unable to decode messages.setBotPrecheckoutResults#9c2dd95: field error: %w", err)
		tl_messages_set_bot_shipping_results_gen.go#L174: 		return fmt.Errorf("can't encode messages.setBotShippingResults#e5f672fa as nil")
		tl_messages_set_bot_shipping_results_gen.go#L183: 		return fmt.Errorf("can't encode messages.setBotShippingResults#e5f672fa as nil")
		tl_messages_set_bot_shipping_results_gen.go#L187: 		return fmt.Errorf("unable to encode messages.setBotShippingResults#e5f672fa: field flags: %w", err)
		tl_messages_set_bot_shipping_results_gen.go#L197: 				return fmt.Errorf("unable to encode messages.setBotShippingResults#e5f672fa: field shipping_options element with index %d: %w", idx, err)
		tl_messages_set_bot_shipping_results_gen.go#L207: 		return fmt.Errorf("can't decode messages.setBotShippingResults#e5f672fa to nil")
		tl_messages_set_bot_shipping_results_gen.go#L210: 		return fmt.Errorf("unable to decode messages.setBotShippingResults#e5f672fa: %w", err)
		tl_messages_set_bot_shipping_results_gen.go#L218: 		return fmt.Errorf("can't decode messages.setBotShippingResults#e5f672fa to nil")
		tl_messages_set_bot_shipping_results_gen.go#L222: 			return fmt.Errorf("unable to decode messages.setBotShippingResults#e5f672fa: field flags: %w", err)
		tl_messages_set_bot_shipping_results_gen.go#L228: 			return fmt.Errorf("unable to decode messages.setBotShippingResults#e5f672fa: field query_id: %w", err)
		tl_messages_set_bot_shipping_results_gen.go#L235: 			return fmt.Errorf("unable to decode messages.setBotShippingResults#e5f672fa: field error: %w", err)
		tl_messages_set_bot_shipping_results_gen.go#L242: 			return fmt.Errorf("unable to decode messages.setBotShippingResults#e5f672fa: field shipping_options: %w", err)
		tl_messages_set_bot_shipping_results_gen.go#L251: 				return fmt.Errorf("unable to decode messages.setBotShippingResults#e5f672fa: field shipping_options: %w", err)
		tl_messages_set_chat_available_reactions_gen.go#L130: 		return fmt.Errorf("can't encode messages.setChatAvailableReactions#feb16771 as nil")
		tl_messages_set_chat_available_reactions_gen.go#L139: 		return fmt.Errorf("can't encode messages.setChatAvailableReactions#feb16771 as nil")
		tl_messages_set_chat_available_reactions_gen.go#L142: 		return fmt.Errorf("unable to encode messages.setChatAvailableReactions#feb16771: field peer is nil")
		tl_messages_set_chat_available_reactions_gen.go#L145: 		return fmt.Errorf("unable to encode messages.setChatAvailableReactions#feb16771: field peer: %w", err)
		tl_messages_set_chat_available_reactions_gen.go#L148: 		return fmt.Errorf("unable to encode messages.setChatAvailableReactions#feb16771: field available_reactions is nil")
		tl_messages_set_chat_available_reactions_gen.go#L151: 		return fmt.Errorf("unable to encode messages.setChatAvailableReactions#feb16771: field available_reactions: %w", err)
		tl_messages_set_chat_available_reactions_gen.go#L159: 		return fmt.Errorf("can't decode messages.setChatAvailableReactions#feb16771 to nil")
		tl_messages_set_chat_available_reactions_gen.go#L162: 		return fmt.Errorf("unable to decode messages.setChatAvailableReactions#feb16771: %w", err)
		tl_messages_set_chat_available_reactions_gen.go#L170: 		return fmt.Errorf("can't decode messages.setChatAvailableReactions#feb16771 to nil")
		tl_messages_set_chat_available_reactions_gen.go#L175: 			return fmt.Errorf("unable to decode messages.setChatAvailableReactions#feb16771: field peer: %w", err)
		tl_messages_set_chat_available_reactions_gen.go#L182: 			return fmt.Errorf("unable to decode messages.setChatAvailableReactions#feb16771: field available_reactions: %w", err)
		tl_messages_set_chat_theme_gen.go#L130: 		return fmt.Errorf("can't encode messages.setChatTheme#e63be13f as nil")
		tl_messages_set_chat_theme_gen.go#L139: 		return fmt.Errorf("can't encode messages.setChatTheme#e63be13f as nil")
		tl_messages_set_chat_theme_gen.go#L142: 		return fmt.Errorf("unable to encode messages.setChatTheme#e63be13f: field peer is nil")
		tl_messages_set_chat_theme_gen.go#L145: 		return fmt.Errorf("unable to encode messages.setChatTheme#e63be13f: field peer: %w", err)
		tl_messages_set_chat_theme_gen.go#L154: 		return fmt.Errorf("can't decode messages.setChatTheme#e63be13f to nil")
		tl_messages_set_chat_theme_gen.go#L157: 		return fmt.Errorf("unable to decode messages.setChatTheme#e63be13f: %w", err)
		tl_messages_set_chat_theme_gen.go#L165: 		return fmt.Errorf("can't decode messages.setChatTheme#e63be13f to nil")
		tl_messages_set_chat_theme_gen.go#L170: 			return fmt.Errorf("unable to decode messages.setChatTheme#e63be13f: field peer: %w", err)
		tl_messages_set_chat_theme_gen.go#L177: 			return fmt.Errorf("unable to decode messages.setChatTheme#e63be13f: field emoticon: %w", err)
		tl_messages_set_chat_wall_paper_gen.go#L242: 		return fmt.Errorf("can't encode messages.setChatWallPaper#8ffacae1 as nil")
		tl_messages_set_chat_wall_paper_gen.go#L251: 		return fmt.Errorf("can't encode messages.setChatWallPaper#8ffacae1 as nil")
		tl_messages_set_chat_wall_paper_gen.go#L255: 		return fmt.Errorf("unable to encode messages.setChatWallPaper#8ffacae1: field flags: %w", err)
		tl_messages_set_chat_wall_paper_gen.go#L258: 		return fmt.Errorf("unable to encode messages.setChatWallPaper#8ffacae1: field peer is nil")
		tl_messages_set_chat_wall_paper_gen.go#L261: 		return fmt.Errorf("unable to encode messages.setChatWallPaper#8ffacae1: field peer: %w", err)
		tl_messages_set_chat_wall_paper_gen.go#L265: 			return fmt.Errorf("unable to encode messages.setChatWallPaper#8ffacae1: field wallpaper is nil")
		tl_messages_set_chat_wall_paper_gen.go#L268: 			return fmt.Errorf("unable to encode messages.setChatWallPaper#8ffacae1: field wallpaper: %w", err)
		tl_messages_set_chat_wall_paper_gen.go#L273: 			return fmt.Errorf("unable to encode messages.setChatWallPaper#8ffacae1: field settings: %w", err)
		tl_messages_set_chat_wall_paper_gen.go#L285: 		return fmt.Errorf("can't decode messages.setChatWallPaper#8ffacae1 to nil")
		tl_messages_set_chat_wall_paper_gen.go#L288: 		return fmt.Errorf("unable to decode messages.setChatWallPaper#8ffacae1: %w", err)
		tl_messages_set_chat_wall_paper_gen.go#L296: 		return fmt.Errorf("can't decode messages.setChatWallPaper#8ffacae1 to nil")
		tl_messages_set_chat_wall_paper_gen.go#L300: 			return fmt.Errorf("unable to decode messages.setChatWallPaper#8ffacae1: field flags: %w", err)
		tl_messages_set_chat_wall_paper_gen.go#L308: 			return fmt.Errorf("unable to decode messages.setChatWallPaper#8ffacae1: field peer: %w", err)
		tl_messages_set_chat_wall_paper_gen.go#L315: 			return fmt.Errorf("unable to decode messages.setChatWallPaper#8ffacae1: field wallpaper: %w", err)
		tl_messages_set_chat_wall_paper_gen.go#L321: 			return fmt.Errorf("unable to decode messages.setChatWallPaper#8ffacae1: field settings: %w", err)
		tl_messages_set_chat_wall_paper_gen.go#L327: 			return fmt.Errorf("unable to decode messages.setChatWallPaper#8ffacae1: field id: %w", err)
		tl_messages_set_default_history_ttl_gen.go#L115: 		return fmt.Errorf("can't encode messages.setDefaultHistoryTTL#9eb51445 as nil")
		tl_messages_set_default_history_ttl_gen.go#L124: 		return fmt.Errorf("can't encode messages.setDefaultHistoryTTL#9eb51445 as nil")
		tl_messages_set_default_history_ttl_gen.go#L133: 		return fmt.Errorf("can't decode messages.setDefaultHistoryTTL#9eb51445 to nil")
		tl_messages_set_default_history_ttl_gen.go#L136: 		return fmt.Errorf("unable to decode messages.setDefaultHistoryTTL#9eb51445: %w", err)
		tl_messages_set_default_history_ttl_gen.go#L144: 		return fmt.Errorf("can't decode messages.setDefaultHistoryTTL#9eb51445 to nil")
		tl_messages_set_default_history_ttl_gen.go#L149: 			return fmt.Errorf("unable to decode messages.setDefaultHistoryTTL#9eb51445: field period: %w", err)
		tl_messages_set_default_reaction_gen.go#L119: 		return fmt.Errorf("can't encode messages.setDefaultReaction#4f47a016 as nil")
		tl_messages_set_default_reaction_gen.go#L128: 		return fmt.Errorf("can't encode messages.setDefaultReaction#4f47a016 as nil")
		tl_messages_set_default_reaction_gen.go#L131: 		return fmt.Errorf("unable to encode messages.setDefaultReaction#4f47a016: field reaction is nil")
		tl_messages_set_default_reaction_gen.go#L134: 		return fmt.Errorf("unable to encode messages.setDefaultReaction#4f47a016: field reaction: %w", err)
		tl_messages_set_default_reaction_gen.go#L142: 		return fmt.Errorf("can't decode messages.setDefaultReaction#4f47a016 to nil")
		tl_messages_set_default_reaction_gen.go#L145: 		return fmt.Errorf("unable to decode messages.setDefaultReaction#4f47a016: %w", err)
		tl_messages_set_default_reaction_gen.go#L153: 		return fmt.Errorf("can't decode messages.setDefaultReaction#4f47a016 to nil")
		tl_messages_set_default_reaction_gen.go#L158: 			return fmt.Errorf("unable to decode messages.setDefaultReaction#4f47a016: field reaction: %w", err)
		tl_messages_set_encrypted_typing_gen.go#L131: 		return fmt.Errorf("can't encode messages.setEncryptedTyping#791451ed as nil")
		tl_messages_set_encrypted_typing_gen.go#L140: 		return fmt.Errorf("can't encode messages.setEncryptedTyping#791451ed as nil")
		tl_messages_set_encrypted_typing_gen.go#L143: 		return fmt.Errorf("unable to encode messages.setEncryptedTyping#791451ed: field peer: %w", err)
		tl_messages_set_encrypted_typing_gen.go#L152: 		return fmt.Errorf("can't decode messages.setEncryptedTyping#791451ed to nil")
		tl_messages_set_encrypted_typing_gen.go#L155: 		return fmt.Errorf("unable to decode messages.setEncryptedTyping#791451ed: %w", err)
		tl_messages_set_encrypted_typing_gen.go#L163: 		return fmt.Errorf("can't decode messages.setEncryptedTyping#791451ed to nil")
		tl_messages_set_encrypted_typing_gen.go#L167: 			return fmt.Errorf("unable to decode messages.setEncryptedTyping#791451ed: field peer: %w", err)
		tl_messages_set_encrypted_typing_gen.go#L173: 			return fmt.Errorf("unable to decode messages.setEncryptedTyping#791451ed: field typing: %w", err)
		tl_messages_set_game_score_gen.go#L193: 		return fmt.Errorf("can't encode messages.setGameScore#8ef8ecc0 as nil")
		tl_messages_set_game_score_gen.go#L202: 		return fmt.Errorf("can't encode messages.setGameScore#8ef8ecc0 as nil")
		tl_messages_set_game_score_gen.go#L206: 		return fmt.Errorf("unable to encode messages.setGameScore#8ef8ecc0: field flags: %w", err)
		tl_messages_set_game_score_gen.go#L209: 		return fmt.Errorf("unable to encode messages.setGameScore#8ef8ecc0: field peer is nil")
		tl_messages_set_game_score_gen.go#L212: 		return fmt.Errorf("unable to encode messages.setGameScore#8ef8ecc0: field peer: %w", err)
		tl_messages_set_game_score_gen.go#L216: 		return fmt.Errorf("unable to encode messages.setGameScore#8ef8ecc0: field user_id is nil")
		tl_messages_set_game_score_gen.go#L219: 		return fmt.Errorf("unable to encode messages.setGameScore#8ef8ecc0: field user_id: %w", err)
		tl_messages_set_game_score_gen.go#L228: 		return fmt.Errorf("can't decode messages.setGameScore#8ef8ecc0 to nil")
		tl_messages_set_game_score_gen.go#L231: 		return fmt.Errorf("unable to decode messages.setGameScore#8ef8ecc0: %w", err)
		tl_messages_set_game_score_gen.go#L239: 		return fmt.Errorf("can't decode messages.setGameScore#8ef8ecc0 to nil")
		tl_messages_set_game_score_gen.go#L243: 			return fmt.Errorf("unable to decode messages.setGameScore#8ef8ecc0: field flags: %w", err)
		tl_messages_set_game_score_gen.go#L251: 			return fmt.Errorf("unable to decode messages.setGameScore#8ef8ecc0: field peer: %w", err)
		tl_messages_set_game_score_gen.go#L258: 			return fmt.Errorf("unable to decode messages.setGameScore#8ef8ecc0: field id: %w", err)
		tl_messages_set_game_score_gen.go#L265: 			return fmt.Errorf("unable to decode messages.setGameScore#8ef8ecc0: field user_id: %w", err)
		tl_messages_set_game_score_gen.go#L272: 			return fmt.Errorf("unable to decode messages.setGameScore#8ef8ecc0: field score: %w", err)
		tl_messages_set_history_ttl_gen.go#L126: 		return fmt.Errorf("can't encode messages.setHistoryTTL#b80e5fe4 as nil")
		tl_messages_set_history_ttl_gen.go#L135: 		return fmt.Errorf("can't encode messages.setHistoryTTL#b80e5fe4 as nil")
		tl_messages_set_history_ttl_gen.go#L138: 		return fmt.Errorf("unable to encode messages.setHistoryTTL#b80e5fe4: field peer is nil")
		tl_messages_set_history_ttl_gen.go#L141: 		return fmt.Errorf("unable to encode messages.setHistoryTTL#b80e5fe4: field peer: %w", err)
		tl_messages_set_history_ttl_gen.go#L150: 		return fmt.Errorf("can't decode messages.setHistoryTTL#b80e5fe4 to nil")
		tl_messages_set_history_ttl_gen.go#L153: 		return fmt.Errorf("unable to decode messages.setHistoryTTL#b80e5fe4: %w", err)
		tl_messages_set_history_ttl_gen.go#L161: 		return fmt.Errorf("can't decode messages.setHistoryTTL#b80e5fe4 to nil")
		tl_messages_set_history_ttl_gen.go#L166: 			return fmt.Errorf("unable to decode messages.setHistoryTTL#b80e5fe4: field peer: %w", err)
		tl_messages_set_history_ttl_gen.go#L173: 			return fmt.Errorf("unable to decode messages.setHistoryTTL#b80e5fe4: field period: %w", err)
		tl_messages_set_inline_bot_results_gen.go#L250: 		return fmt.Errorf("can't encode messages.setInlineBotResults#bb12a419 as nil")
		tl_messages_set_inline_bot_results_gen.go#L259: 		return fmt.Errorf("can't encode messages.setInlineBotResults#bb12a419 as nil")
		tl_messages_set_inline_bot_results_gen.go#L263: 		return fmt.Errorf("unable to encode messages.setInlineBotResults#bb12a419: field flags: %w", err)
		tl_messages_set_inline_bot_results_gen.go#L269: 			return fmt.Errorf("unable to encode messages.setInlineBotResults#bb12a419: field results element with index %d is nil", idx)
		tl_messages_set_inline_bot_results_gen.go#L272: 			return fmt.Errorf("unable to encode messages.setInlineBotResults#bb12a419: field results element with index %d: %w", idx, err)
		tl_messages_set_inline_bot_results_gen.go#L281: 			return fmt.Errorf("unable to encode messages.setInlineBotResults#bb12a419: field switch_pm: %w", err)
		tl_messages_set_inline_bot_results_gen.go#L286: 			return fmt.Errorf("unable to encode messages.setInlineBotResults#bb12a419: field switch_webview: %w", err)
		tl_messages_set_inline_bot_results_gen.go#L295: 		return fmt.Errorf("can't decode messages.setInlineBotResults#bb12a419 to nil")
		tl_messages_set_inline_bot_results_gen.go#L298: 		return fmt.Errorf("unable to decode messages.setInlineBotResults#bb12a419: %w", err)
		tl_messages_set_inline_bot_results_gen.go#L306: 		return fmt.Errorf("can't decode messages.setInlineBotResults#bb12a419 to nil")
		tl_messages_set_inline_bot_results_gen.go#L310: 			return fmt.Errorf("unable to decode messages.setInlineBotResults#bb12a419: field flags: %w", err)
		tl_messages_set_inline_bot_results_gen.go#L318: 			return fmt.Errorf("unable to decode messages.setInlineBotResults#bb12a419: field query_id: %w", err)
		tl_messages_set_inline_bot_results_gen.go#L325: 			return fmt.Errorf("unable to decode messages.setInlineBotResults#bb12a419: field results: %w", err)
		tl_messages_set_inline_bot_results_gen.go#L334: 				return fmt.Errorf("unable to decode messages.setInlineBotResults#bb12a419: field results: %w", err)
		tl_messages_set_inline_bot_results_gen.go#L342: 			return fmt.Errorf("unable to decode messages.setInlineBotResults#bb12a419: field cache_time: %w", err)
		tl_messages_set_inline_bot_results_gen.go#L349: 			return fmt.Errorf("unable to decode messages.setInlineBotResults#bb12a419: field next_offset: %w", err)
		tl_messages_set_inline_bot_results_gen.go#L355: 			return fmt.Errorf("unable to decode messages.setInlineBotResults#bb12a419: field switch_pm: %w", err)
		tl_messages_set_inline_bot_results_gen.go#L360: 			return fmt.Errorf("unable to decode messages.setInlineBotResults#bb12a419: field switch_webview: %w", err)
		tl_messages_set_inline_game_score_gen.go#L182: 		return fmt.Errorf("can't encode messages.setInlineGameScore#15ad9f64 as nil")
		tl_messages_set_inline_game_score_gen.go#L191: 		return fmt.Errorf("can't encode messages.setInlineGameScore#15ad9f64 as nil")
		tl_messages_set_inline_game_score_gen.go#L195: 		return fmt.Errorf("unable to encode messages.setInlineGameScore#15ad9f64: field flags: %w", err)
		tl_messages_set_inline_game_score_gen.go#L198: 		return fmt.Errorf("unable to encode messages.setInlineGameScore#15ad9f64: field id is nil")
		tl_messages_set_inline_game_score_gen.go#L201: 		return fmt.Errorf("unable to encode messages.setInlineGameScore#15ad9f64: field id: %w", err)
		tl_messages_set_inline_game_score_gen.go#L204: 		return fmt.Errorf("unable to encode messages.setInlineGameScore#15ad9f64: field user_id is nil")
		tl_messages_set_inline_game_score_gen.go#L207: 		return fmt.Errorf("unable to encode messages.setInlineGameScore#15ad9f64: field user_id: %w", err)
		tl_messages_set_inline_game_score_gen.go#L216: 		return fmt.Errorf("can't decode messages.setInlineGameScore#15ad9f64 to nil")
		tl_messages_set_inline_game_score_gen.go#L219: 		return fmt.Errorf("unable to decode messages.setInlineGameScore#15ad9f64: %w", err)
		tl_messages_set_inline_game_score_gen.go#L227: 		return fmt.Errorf("can't decode messages.setInlineGameScore#15ad9f64 to nil")
		tl_messages_set_inline_game_score_gen.go#L231: 			return fmt.Errorf("unable to decode messages.setInlineGameScore#15ad9f64: field flags: %w", err)
		tl_messages_set_inline_game_score_gen.go#L239: 			return fmt.Errorf("unable to decode messages.setInlineGameScore#15ad9f64: field id: %w", err)
		tl_messages_set_inline_game_score_gen.go#L246: 			return fmt.Errorf("unable to decode messages.setInlineGameScore#15ad9f64: field user_id: %w", err)
		tl_messages_set_inline_game_score_gen.go#L253: 			return fmt.Errorf("unable to decode messages.setInlineGameScore#15ad9f64: field score: %w", err)
		tl_messages_set_typing_gen.go#L165: 		return fmt.Errorf("can't encode messages.setTyping#58943ee2 as nil")
		tl_messages_set_typing_gen.go#L174: 		return fmt.Errorf("can't encode messages.setTyping#58943ee2 as nil")
		tl_messages_set_typing_gen.go#L178: 		return fmt.Errorf("unable to encode messages.setTyping#58943ee2: field flags: %w", err)
		tl_messages_set_typing_gen.go#L181: 		return fmt.Errorf("unable to encode messages.setTyping#58943ee2: field peer is nil")
		tl_messages_set_typing_gen.go#L184: 		return fmt.Errorf("unable to encode messages.setTyping#58943ee2: field peer: %w", err)
		tl_messages_set_typing_gen.go#L190: 		return fmt.Errorf("unable to encode messages.setTyping#58943ee2: field action is nil")
		tl_messages_set_typing_gen.go#L193: 		return fmt.Errorf("unable to encode messages.setTyping#58943ee2: field action: %w", err)
		tl_messages_set_typing_gen.go#L201: 		return fmt.Errorf("can't decode messages.setTyping#58943ee2 to nil")
		tl_messages_set_typing_gen.go#L204: 		return fmt.Errorf("unable to decode messages.setTyping#58943ee2: %w", err)
		tl_messages_set_typing_gen.go#L212: 		return fmt.Errorf("can't decode messages.setTyping#58943ee2 to nil")
		tl_messages_set_typing_gen.go#L216: 			return fmt.Errorf("unable to decode messages.setTyping#58943ee2: field flags: %w", err)
		tl_messages_set_typing_gen.go#L222: 			return fmt.Errorf("unable to decode messages.setTyping#58943ee2: field peer: %w", err)
		tl_messages_set_typing_gen.go#L229: 			return fmt.Errorf("unable to decode messages.setTyping#58943ee2: field top_msg_id: %w", err)
		tl_messages_set_typing_gen.go#L236: 			return fmt.Errorf("unable to decode messages.setTyping#58943ee2: field action: %w", err)
		tl_messages_sponsored_messages_gen.go#L175: 		return fmt.Errorf("can't encode messages.sponsoredMessages#c9ee1d87 as nil")
		tl_messages_sponsored_messages_gen.go#L184: 		return fmt.Errorf("can't encode messages.sponsoredMessages#c9ee1d87 as nil")
		tl_messages_sponsored_messages_gen.go#L188: 		return fmt.Errorf("unable to encode messages.sponsoredMessages#c9ee1d87: field flags: %w", err)
		tl_messages_sponsored_messages_gen.go#L196: 			return fmt.Errorf("unable to encode messages.sponsoredMessages#c9ee1d87: field messages element with index %d: %w", idx, err)
		tl_messages_sponsored_messages_gen.go#L202: 			return fmt.Errorf("unable to encode messages.sponsoredMessages#c9ee1d87: field chats element with index %d is nil", idx)
		tl_messages_sponsored_messages_gen.go#L205: 			return fmt.Errorf("unable to encode messages.sponsoredMessages#c9ee1d87: field chats element with index %d: %w", idx, err)
		tl_messages_sponsored_messages_gen.go#L211: 			return fmt.Errorf("unable to encode messages.sponsoredMessages#c9ee1d87: field users element with index %d is nil", idx)
		tl_messages_sponsored_messages_gen.go#L214: 			return fmt.Errorf("unable to encode messages.sponsoredMessages#c9ee1d87: field users element with index %d: %w", idx, err)
		tl_messages_sponsored_messages_gen.go#L223: 		return fmt.Errorf("can't decode messages.sponsoredMessages#c9ee1d87 to nil")
		tl_messages_sponsored_messages_gen.go#L226: 		return fmt.Errorf("unable to decode messages.sponsoredMessages#c9ee1d87: %w", err)
		tl_messages_sponsored_messages_gen.go#L234: 		return fmt.Errorf("can't decode messages.sponsoredMessages#c9ee1d87 to nil")
		tl_messages_sponsored_messages_gen.go#L238: 			return fmt.Errorf("unable to decode messages.sponsoredMessages#c9ee1d87: field flags: %w", err)
		tl_messages_sponsored_messages_gen.go#L244: 			return fmt.Errorf("unable to decode messages.sponsoredMessages#c9ee1d87: field posts_between: %w", err)
		tl_messages_sponsored_messages_gen.go#L251: 			return fmt.Errorf("unable to decode messages.sponsoredMessages#c9ee1d87: field messages: %w", err)
		tl_messages_sponsored_messages_gen.go#L260: 				return fmt.Errorf("unable to decode messages.sponsoredMessages#c9ee1d87: field messages: %w", err)
		tl_messages_sponsored_messages_gen.go#L268: 			return fmt.Errorf("unable to decode messages.sponsoredMessages#c9ee1d87: field chats: %w", err)
		tl_messages_sponsored_messages_gen.go#L277: 				return fmt.Errorf("unable to decode messages.sponsoredMessages#c9ee1d87: field chats: %w", err)
		tl_messages_sponsored_messages_gen.go#L285: 			return fmt.Errorf("unable to decode messages.sponsoredMessages#c9ee1d87: field users: %w", err)
		tl_messages_sponsored_messages_gen.go#L294: 				return fmt.Errorf("unable to decode messages.sponsoredMessages#c9ee1d87: field users: %w", err)
		tl_messages_sponsored_messages_gen.go#L423: 		return fmt.Errorf("can't encode messages.sponsoredMessagesEmpty#1839490f as nil")
		tl_messages_sponsored_messages_gen.go#L432: 		return fmt.Errorf("can't encode messages.sponsoredMessagesEmpty#1839490f as nil")
		tl_messages_sponsored_messages_gen.go#L440: 		return fmt.Errorf("can't decode messages.sponsoredMessagesEmpty#1839490f to nil")
		tl_messages_sponsored_messages_gen.go#L443: 		return fmt.Errorf("unable to decode messages.sponsoredMessagesEmpty#1839490f: %w", err)
		tl_messages_sponsored_messages_gen.go#L451: 		return fmt.Errorf("can't decode messages.sponsoredMessagesEmpty#1839490f to nil")
		tl_messages_sponsored_messages_gen.go#L517: 			return nil, fmt.Errorf("unable to decode MessagesSponsoredMessagesClass: %w", err)
		tl_messages_sponsored_messages_gen.go#L524: 			return nil, fmt.Errorf("unable to decode MessagesSponsoredMessagesClass: %w", err)
		tl_messages_sponsored_messages_gen.go#L528: 		return nil, fmt.Errorf("unable to decode MessagesSponsoredMessagesClass: %w", bin.NewUnexpectedID(id))
		tl_messages_sponsored_messages_gen.go#L540: 		return fmt.Errorf("unable to decode MessagesSponsoredMessagesBox to nil")
		tl_messages_sponsored_messages_gen.go#L544: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_messages_sponsored_messages_gen.go#L553: 		return fmt.Errorf("unable to encode MessagesSponsoredMessagesClass as nil")
		tl_messages_start_bot_gen.go#L154: 		return fmt.Errorf("can't encode messages.startBot#e6df7378 as nil")
		tl_messages_start_bot_gen.go#L163: 		return fmt.Errorf("can't encode messages.startBot#e6df7378 as nil")
		tl_messages_start_bot_gen.go#L166: 		return fmt.Errorf("unable to encode messages.startBot#e6df7378: field bot is nil")
		tl_messages_start_bot_gen.go#L169: 		return fmt.Errorf("unable to encode messages.startBot#e6df7378: field bot: %w", err)
		tl_messages_start_bot_gen.go#L172: 		return fmt.Errorf("unable to encode messages.startBot#e6df7378: field peer is nil")
		tl_messages_start_bot_gen.go#L175: 		return fmt.Errorf("unable to encode messages.startBot#e6df7378: field peer: %w", err)
		tl_messages_start_bot_gen.go#L185: 		return fmt.Errorf("can't decode messages.startBot#e6df7378 to nil")
		tl_messages_start_bot_gen.go#L188: 		return fmt.Errorf("unable to decode messages.startBot#e6df7378: %w", err)
		tl_messages_start_bot_gen.go#L196: 		return fmt.Errorf("can't decode messages.startBot#e6df7378 to nil")
		tl_messages_start_bot_gen.go#L201: 			return fmt.Errorf("unable to decode messages.startBot#e6df7378: field bot: %w", err)
		tl_messages_start_bot_gen.go#L208: 			return fmt.Errorf("unable to decode messages.startBot#e6df7378: field peer: %w", err)
		tl_messages_start_bot_gen.go#L215: 			return fmt.Errorf("unable to decode messages.startBot#e6df7378: field random_id: %w", err)
		tl_messages_start_bot_gen.go#L222: 			return fmt.Errorf("unable to decode messages.startBot#e6df7378: field start_param: %w", err)
		tl_messages_start_history_import_gen.go#L139: 		return fmt.Errorf("can't encode messages.startHistoryImport#b43df344 as nil")
		tl_messages_start_history_import_gen.go#L148: 		return fmt.Errorf("can't encode messages.startHistoryImport#b43df344 as nil")
		tl_messages_start_history_import_gen.go#L151: 		return fmt.Errorf("unable to encode messages.startHistoryImport#b43df344: field peer is nil")
		tl_messages_start_history_import_gen.go#L154: 		return fmt.Errorf("unable to encode messages.startHistoryImport#b43df344: field peer: %w", err)
		tl_messages_start_history_import_gen.go#L163: 		return fmt.Errorf("can't decode messages.startHistoryImport#b43df344 to nil")
		tl_messages_start_history_import_gen.go#L166: 		return fmt.Errorf("unable to decode messages.startHistoryImport#b43df344: %w", err)
		tl_messages_start_history_import_gen.go#L174: 		return fmt.Errorf("can't decode messages.startHistoryImport#b43df344 to nil")
		tl_messages_start_history_import_gen.go#L179: 			return fmt.Errorf("unable to decode messages.startHistoryImport#b43df344: field peer: %w", err)
		tl_messages_start_history_import_gen.go#L186: 			return fmt.Errorf("unable to decode messages.startHistoryImport#b43df344: field import_id: %w", err)
		tl_messages_sticker_set_gen.go#L153: 		return fmt.Errorf("can't encode messages.stickerSet#6e153f16 as nil")
		tl_messages_sticker_set_gen.go#L162: 		return fmt.Errorf("can't encode messages.stickerSet#6e153f16 as nil")
		tl_messages_sticker_set_gen.go#L165: 		return fmt.Errorf("unable to encode messages.stickerSet#6e153f16: field set: %w", err)
		tl_messages_sticker_set_gen.go#L170: 			return fmt.Errorf("unable to encode messages.stickerSet#6e153f16: field packs element with index %d: %w", idx, err)
		tl_messages_sticker_set_gen.go#L176: 			return fmt.Errorf("unable to encode messages.stickerSet#6e153f16: field keywords element with index %d: %w", idx, err)
		tl_messages_sticker_set_gen.go#L182: 			return fmt.Errorf("unable to encode messages.stickerSet#6e153f16: field documents element with index %d is nil", idx)
		tl_messages_sticker_set_gen.go#L185: 			return fmt.Errorf("unable to encode messages.stickerSet#6e153f16: field documents element with index %d: %w", idx, err)
		tl_messages_sticker_set_gen.go#L194: 		return fmt.Errorf("can't decode messages.stickerSet#6e153f16 to nil")
		tl_messages_sticker_set_gen.go#L197: 		return fmt.Errorf("unable to decode messages.stickerSet#6e153f16: %w", err)
		tl_messages_sticker_set_gen.go#L205: 		return fmt.Errorf("can't decode messages.stickerSet#6e153f16 to nil")
		tl_messages_sticker_set_gen.go#L209: 			return fmt.Errorf("unable to decode messages.stickerSet#6e153f16: field set: %w", err)
		tl_messages_sticker_set_gen.go#L215: 			return fmt.Errorf("unable to decode messages.stickerSet#6e153f16: field packs: %w", err)
		tl_messages_sticker_set_gen.go#L224: 				return fmt.Errorf("unable to decode messages.stickerSet#6e153f16: field packs: %w", err)
		tl_messages_sticker_set_gen.go#L232: 			return fmt.Errorf("unable to decode messages.stickerSet#6e153f16: field keywords: %w", err)
		tl_messages_sticker_set_gen.go#L241: 				return fmt.Errorf("unable to decode messages.stickerSet#6e153f16: field keywords: %w", err)
		tl_messages_sticker_set_gen.go#L249: 			return fmt.Errorf("unable to decode messages.stickerSet#6e153f16: field documents: %w", err)
		tl_messages_sticker_set_gen.go#L258: 				return fmt.Errorf("unable to decode messages.stickerSet#6e153f16: field documents: %w", err)
		tl_messages_sticker_set_gen.go#L372: 		return fmt.Errorf("can't encode messages.stickerSetNotModified#d3f924eb as nil")
		tl_messages_sticker_set_gen.go#L381: 		return fmt.Errorf("can't encode messages.stickerSetNotModified#d3f924eb as nil")
		tl_messages_sticker_set_gen.go#L389: 		return fmt.Errorf("can't decode messages.stickerSetNotModified#d3f924eb to nil")
		tl_messages_sticker_set_gen.go#L392: 		return fmt.Errorf("unable to decode messages.stickerSetNotModified#d3f924eb: %w", err)
		tl_messages_sticker_set_gen.go#L400: 		return fmt.Errorf("can't decode messages.stickerSetNotModified#d3f924eb to nil")
		tl_messages_sticker_set_gen.go#L466: 			return nil, fmt.Errorf("unable to decode MessagesStickerSetClass: %w", err)
		tl_messages_sticker_set_gen.go#L473: 			return nil, fmt.Errorf("unable to decode MessagesStickerSetClass: %w", err)
		tl_messages_sticker_set_gen.go#L477: 		return nil, fmt.Errorf("unable to decode MessagesStickerSetClass: %w", bin.NewUnexpectedID(id))
		tl_messages_sticker_set_gen.go#L489: 		return fmt.Errorf("unable to decode MessagesStickerSetBox to nil")
		tl_messages_sticker_set_gen.go#L493: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_messages_sticker_set_gen.go#L502: 		return fmt.Errorf("unable to encode MessagesStickerSetClass as nil")
		tl_messages_sticker_set_install_result_gen.go#L105: 		return fmt.Errorf("can't encode messages.stickerSetInstallResultSuccess#38641628 as nil")
		tl_messages_sticker_set_install_result_gen.go#L114: 		return fmt.Errorf("can't encode messages.stickerSetInstallResultSuccess#38641628 as nil")
		tl_messages_sticker_set_install_result_gen.go#L122: 		return fmt.Errorf("can't decode messages.stickerSetInstallResultSuccess#38641628 to nil")
		tl_messages_sticker_set_install_result_gen.go#L125: 		return fmt.Errorf("unable to decode messages.stickerSetInstallResultSuccess#38641628: %w", err)
		tl_messages_sticker_set_install_result_gen.go#L133: 		return fmt.Errorf("can't decode messages.stickerSetInstallResultSuccess#38641628 to nil")
		tl_messages_sticker_set_install_result_gen.go#L227: 		return fmt.Errorf("can't encode messages.stickerSetInstallResultArchive#35e410a8 as nil")
		tl_messages_sticker_set_install_result_gen.go#L236: 		return fmt.Errorf("can't encode messages.stickerSetInstallResultArchive#35e410a8 as nil")
		tl_messages_sticker_set_install_result_gen.go#L241: 			return fmt.Errorf("unable to encode messages.stickerSetInstallResultArchive#35e410a8: field sets element with index %d is nil", idx)
		tl_messages_sticker_set_install_result_gen.go#L244: 			return fmt.Errorf("unable to encode messages.stickerSetInstallResultArchive#35e410a8: field sets element with index %d: %w", idx, err)
		tl_messages_sticker_set_install_result_gen.go#L253: 		return fmt.Errorf("can't decode messages.stickerSetInstallResultArchive#35e410a8 to nil")
		tl_messages_sticker_set_install_result_gen.go#L256: 		return fmt.Errorf("unable to decode messages.stickerSetInstallResultArchive#35e410a8: %w", err)
		tl_messages_sticker_set_install_result_gen.go#L264: 		return fmt.Errorf("can't decode messages.stickerSetInstallResultArchive#35e410a8 to nil")
		tl_messages_sticker_set_install_result_gen.go#L269: 			return fmt.Errorf("unable to decode messages.stickerSetInstallResultArchive#35e410a8: field sets: %w", err)
		tl_messages_sticker_set_install_result_gen.go#L278: 				return fmt.Errorf("unable to decode messages.stickerSetInstallResultArchive#35e410a8: field sets: %w", err)
		tl_messages_sticker_set_install_result_gen.go#L347: 			return nil, fmt.Errorf("unable to decode MessagesStickerSetInstallResultClass: %w", err)
		tl_messages_sticker_set_install_result_gen.go#L354: 			return nil, fmt.Errorf("unable to decode MessagesStickerSetInstallResultClass: %w", err)
		tl_messages_sticker_set_install_result_gen.go#L358: 		return nil, fmt.Errorf("unable to decode MessagesStickerSetInstallResultClass: %w", bin.NewUnexpectedID(id))
		tl_messages_sticker_set_install_result_gen.go#L370: 		return fmt.Errorf("unable to decode MessagesStickerSetInstallResultBox to nil")
		tl_messages_sticker_set_install_result_gen.go#L374: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_messages_sticker_set_install_result_gen.go#L383: 		return fmt.Errorf("unable to encode MessagesStickerSetInstallResultClass as nil")
		tl_messages_stickers_gen.go#L103: 		return fmt.Errorf("can't encode messages.stickersNotModified#f1749a22 as nil")
		tl_messages_stickers_gen.go#L112: 		return fmt.Errorf("can't encode messages.stickersNotModified#f1749a22 as nil")
		tl_messages_stickers_gen.go#L120: 		return fmt.Errorf("can't decode messages.stickersNotModified#f1749a22 to nil")
		tl_messages_stickers_gen.go#L123: 		return fmt.Errorf("unable to decode messages.stickersNotModified#f1749a22: %w", err)
		tl_messages_stickers_gen.go#L131: 		return fmt.Errorf("can't decode messages.stickersNotModified#f1749a22 to nil")
		tl_messages_stickers_gen.go#L236: 		return fmt.Errorf("can't encode messages.stickers#30a6ec7e as nil")
		tl_messages_stickers_gen.go#L245: 		return fmt.Errorf("can't encode messages.stickers#30a6ec7e as nil")
		tl_messages_stickers_gen.go#L251: 			return fmt.Errorf("unable to encode messages.stickers#30a6ec7e: field stickers element with index %d is nil", idx)
		tl_messages_stickers_gen.go#L254: 			return fmt.Errorf("unable to encode messages.stickers#30a6ec7e: field stickers element with index %d: %w", idx, err)
		tl_messages_stickers_gen.go#L263: 		return fmt.Errorf("can't decode messages.stickers#30a6ec7e to nil")
		tl_messages_stickers_gen.go#L266: 		return fmt.Errorf("unable to decode messages.stickers#30a6ec7e: %w", err)
		tl_messages_stickers_gen.go#L274: 		return fmt.Errorf("can't decode messages.stickers#30a6ec7e to nil")
		tl_messages_stickers_gen.go#L279: 			return fmt.Errorf("unable to decode messages.stickers#30a6ec7e: field hash: %w", err)
		tl_messages_stickers_gen.go#L286: 			return fmt.Errorf("unable to decode messages.stickers#30a6ec7e: field stickers: %w", err)
		tl_messages_stickers_gen.go#L295: 				return fmt.Errorf("unable to decode messages.stickers#30a6ec7e: field stickers: %w", err)
		tl_messages_stickers_gen.go#L385: 			return nil, fmt.Errorf("unable to decode MessagesStickersClass: %w", err)
		tl_messages_stickers_gen.go#L392: 			return nil, fmt.Errorf("unable to decode MessagesStickersClass: %w", err)
		tl_messages_stickers_gen.go#L396: 		return nil, fmt.Errorf("unable to decode MessagesStickersClass: %w", bin.NewUnexpectedID(id))
		tl_messages_stickers_gen.go#L408: 		return fmt.Errorf("unable to decode MessagesStickersBox to nil")
		tl_messages_stickers_gen.go#L412: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_messages_stickers_gen.go#L421: 		return fmt.Errorf("unable to encode MessagesStickersClass as nil")
		tl_messages_toggle_bot_in_attach_menu_gen.go#L160: 		return fmt.Errorf("can't encode messages.toggleBotInAttachMenu#69f59d69 as nil")
		tl_messages_toggle_bot_in_attach_menu_gen.go#L169: 		return fmt.Errorf("can't encode messages.toggleBotInAttachMenu#69f59d69 as nil")
		tl_messages_toggle_bot_in_attach_menu_gen.go#L173: 		return fmt.Errorf("unable to encode messages.toggleBotInAttachMenu#69f59d69: field flags: %w", err)
		tl_messages_toggle_bot_in_attach_menu_gen.go#L176: 		return fmt.Errorf("unable to encode messages.toggleBotInAttachMenu#69f59d69: field bot is nil")
		tl_messages_toggle_bot_in_attach_menu_gen.go#L179: 		return fmt.Errorf("unable to encode messages.toggleBotInAttachMenu#69f59d69: field bot: %w", err)
		tl_messages_toggle_bot_in_attach_menu_gen.go#L188: 		return fmt.Errorf("can't decode messages.toggleBotInAttachMenu#69f59d69 to nil")
		tl_messages_toggle_bot_in_attach_menu_gen.go#L191: 		return fmt.Errorf("unable to decode messages.toggleBotInAttachMenu#69f59d69: %w", err)
		tl_messages_toggle_bot_in_attach_menu_gen.go#L199: 		return fmt.Errorf("can't decode messages.toggleBotInAttachMenu#69f59d69 to nil")
		tl_messages_toggle_bot_in_attach_menu_gen.go#L203: 			return fmt.Errorf("unable to decode messages.toggleBotInAttachMenu#69f59d69: field flags: %w", err)
		tl_messages_toggle_bot_in_attach_menu_gen.go#L210: 			return fmt.Errorf("unable to decode messages.toggleBotInAttachMenu#69f59d69: field bot: %w", err)
		tl_messages_toggle_bot_in_attach_menu_gen.go#L217: 			return fmt.Errorf("unable to decode messages.toggleBotInAttachMenu#69f59d69: field enabled: %w", err)
		tl_messages_toggle_dialog_pin_gen.go#L142: 		return fmt.Errorf("can't encode messages.toggleDialogPin#a731e257 as nil")
		tl_messages_toggle_dialog_pin_gen.go#L151: 		return fmt.Errorf("can't encode messages.toggleDialogPin#a731e257 as nil")
		tl_messages_toggle_dialog_pin_gen.go#L155: 		return fmt.Errorf("unable to encode messages.toggleDialogPin#a731e257: field flags: %w", err)
		tl_messages_toggle_dialog_pin_gen.go#L158: 		return fmt.Errorf("unable to encode messages.toggleDialogPin#a731e257: field peer is nil")
		tl_messages_toggle_dialog_pin_gen.go#L161: 		return fmt.Errorf("unable to encode messages.toggleDialogPin#a731e257: field peer: %w", err)
		tl_messages_toggle_dialog_pin_gen.go#L169: 		return fmt.Errorf("can't decode messages.toggleDialogPin#a731e257 to nil")
		tl_messages_toggle_dialog_pin_gen.go#L172: 		return fmt.Errorf("unable to decode messages.toggleDialogPin#a731e257: %w", err)
		tl_messages_toggle_dialog_pin_gen.go#L180: 		return fmt.Errorf("can't decode messages.toggleDialogPin#a731e257 to nil")
		tl_messages_toggle_dialog_pin_gen.go#L184: 			return fmt.Errorf("unable to decode messages.toggleDialogPin#a731e257: field flags: %w", err)
		tl_messages_toggle_dialog_pin_gen.go#L191: 			return fmt.Errorf("unable to decode messages.toggleDialogPin#a731e257: field peer: %w", err)
		tl_messages_toggle_no_forwards_gen.go#L129: 		return fmt.Errorf("can't encode messages.toggleNoForwards#b11eafa2 as nil")
		tl_messages_toggle_no_forwards_gen.go#L138: 		return fmt.Errorf("can't encode messages.toggleNoForwards#b11eafa2 as nil")
		tl_messages_toggle_no_forwards_gen.go#L141: 		return fmt.Errorf("unable to encode messages.toggleNoForwards#b11eafa2: field peer is nil")
		tl_messages_toggle_no_forwards_gen.go#L144: 		return fmt.Errorf("unable to encode messages.toggleNoForwards#b11eafa2: field peer: %w", err)
		tl_messages_toggle_no_forwards_gen.go#L153: 		return fmt.Errorf("can't decode messages.toggleNoForwards#b11eafa2 to nil")
		tl_messages_toggle_no_forwards_gen.go#L156: 		return fmt.Errorf("unable to decode messages.toggleNoForwards#b11eafa2: %w", err)
		tl_messages_toggle_no_forwards_gen.go#L164: 		return fmt.Errorf("can't decode messages.toggleNoForwards#b11eafa2 to nil")
		tl_messages_toggle_no_forwards_gen.go#L169: 			return fmt.Errorf("unable to decode messages.toggleNoForwards#b11eafa2: field peer: %w", err)
		tl_messages_toggle_no_forwards_gen.go#L176: 			return fmt.Errorf("unable to decode messages.toggleNoForwards#b11eafa2: field enabled: %w", err)
		tl_messages_toggle_peer_translations_gen.go#L145: 		return fmt.Errorf("can't encode messages.togglePeerTranslations#e47cb579 as nil")
		tl_messages_toggle_peer_translations_gen.go#L154: 		return fmt.Errorf("can't encode messages.togglePeerTranslations#e47cb579 as nil")
		tl_messages_toggle_peer_translations_gen.go#L158: 		return fmt.Errorf("unable to encode messages.togglePeerTranslations#e47cb579: field flags: %w", err)
		tl_messages_toggle_peer_translations_gen.go#L161: 		return fmt.Errorf("unable to encode messages.togglePeerTranslations#e47cb579: field peer is nil")
		tl_messages_toggle_peer_translations_gen.go#L164: 		return fmt.Errorf("unable to encode messages.togglePeerTranslations#e47cb579: field peer: %w", err)
		tl_messages_toggle_peer_translations_gen.go#L172: 		return fmt.Errorf("can't decode messages.togglePeerTranslations#e47cb579 to nil")
		tl_messages_toggle_peer_translations_gen.go#L175: 		return fmt.Errorf("unable to decode messages.togglePeerTranslations#e47cb579: %w", err)
		tl_messages_toggle_peer_translations_gen.go#L183: 		return fmt.Errorf("can't decode messages.togglePeerTranslations#e47cb579 to nil")
		tl_messages_toggle_peer_translations_gen.go#L187: 			return fmt.Errorf("unable to decode messages.togglePeerTranslations#e47cb579: field flags: %w", err)
		tl_messages_toggle_peer_translations_gen.go#L194: 			return fmt.Errorf("unable to decode messages.togglePeerTranslations#e47cb579: field peer: %w", err)
		tl_messages_toggle_sticker_sets_gen.go#L172: 		return fmt.Errorf("can't encode messages.toggleStickerSets#b5052fea as nil")
		tl_messages_toggle_sticker_sets_gen.go#L181: 		return fmt.Errorf("can't encode messages.toggleStickerSets#b5052fea as nil")
		tl_messages_toggle_sticker_sets_gen.go#L185: 		return fmt.Errorf("unable to encode messages.toggleStickerSets#b5052fea: field flags: %w", err)
		tl_messages_toggle_sticker_sets_gen.go#L190: 			return fmt.Errorf("unable to encode messages.toggleStickerSets#b5052fea: field stickersets element with index %d is nil", idx)
		tl_messages_toggle_sticker_sets_gen.go#L193: 			return fmt.Errorf("unable to encode messages.toggleStickerSets#b5052fea: field stickersets element with index %d: %w", idx, err)
		tl_messages_toggle_sticker_sets_gen.go#L202: 		return fmt.Errorf("can't decode messages.toggleStickerSets#b5052fea to nil")
		tl_messages_toggle_sticker_sets_gen.go#L205: 		return fmt.Errorf("unable to decode messages.toggleStickerSets#b5052fea: %w", err)
		tl_messages_toggle_sticker_sets_gen.go#L213: 		return fmt.Errorf("can't decode messages.toggleStickerSets#b5052fea to nil")
		tl_messages_toggle_sticker_sets_gen.go#L217: 			return fmt.Errorf("unable to decode messages.toggleStickerSets#b5052fea: field flags: %w", err)
		tl_messages_toggle_sticker_sets_gen.go#L226: 			return fmt.Errorf("unable to decode messages.toggleStickerSets#b5052fea: field stickersets: %w", err)
		tl_messages_toggle_sticker_sets_gen.go#L235: 				return fmt.Errorf("unable to decode messages.toggleStickerSets#b5052fea: field stickersets: %w", err)
		tl_messages_transcribe_audio_gen.go#L129: 		return fmt.Errorf("can't encode messages.transcribeAudio#269e9a49 as nil")
		tl_messages_transcribe_audio_gen.go#L138: 		return fmt.Errorf("can't encode messages.transcribeAudio#269e9a49 as nil")
		tl_messages_transcribe_audio_gen.go#L141: 		return fmt.Errorf("unable to encode messages.transcribeAudio#269e9a49: field peer is nil")
		tl_messages_transcribe_audio_gen.go#L144: 		return fmt.Errorf("unable to encode messages.transcribeAudio#269e9a49: field peer: %w", err)
		tl_messages_transcribe_audio_gen.go#L153: 		return fmt.Errorf("can't decode messages.transcribeAudio#269e9a49 to nil")
		tl_messages_transcribe_audio_gen.go#L156: 		return fmt.Errorf("unable to decode messages.transcribeAudio#269e9a49: %w", err)
		tl_messages_transcribe_audio_gen.go#L164: 		return fmt.Errorf("can't decode messages.transcribeAudio#269e9a49 to nil")
		tl_messages_transcribe_audio_gen.go#L169: 			return fmt.Errorf("unable to decode messages.transcribeAudio#269e9a49: field peer: %w", err)
		tl_messages_transcribe_audio_gen.go#L176: 			return fmt.Errorf("unable to decode messages.transcribeAudio#269e9a49: field msg_id: %w", err)
		tl_messages_transcribed_audio_gen.go#L211: 		return fmt.Errorf("can't encode messages.transcribedAudio#cfb9d957 as nil")
		tl_messages_transcribed_audio_gen.go#L220: 		return fmt.Errorf("can't encode messages.transcribedAudio#cfb9d957 as nil")
		tl_messages_transcribed_audio_gen.go#L224: 		return fmt.Errorf("unable to encode messages.transcribedAudio#cfb9d957: field flags: %w", err)
		tl_messages_transcribed_audio_gen.go#L240: 		return fmt.Errorf("can't decode messages.transcribedAudio#cfb9d957 to nil")
		tl_messages_transcribed_audio_gen.go#L243: 		return fmt.Errorf("unable to decode messages.transcribedAudio#cfb9d957: %w", err)
		tl_messages_transcribed_audio_gen.go#L251: 		return fmt.Errorf("can't decode messages.transcribedAudio#cfb9d957 to nil")
		tl_messages_transcribed_audio_gen.go#L255: 			return fmt.Errorf("unable to decode messages.transcribedAudio#cfb9d957: field flags: %w", err)
		tl_messages_transcribed_audio_gen.go#L262: 			return fmt.Errorf("unable to decode messages.transcribedAudio#cfb9d957: field transcription_id: %w", err)
		tl_messages_transcribed_audio_gen.go#L269: 			return fmt.Errorf("unable to decode messages.transcribedAudio#cfb9d957: field text: %w", err)
		tl_messages_transcribed_audio_gen.go#L276: 			return fmt.Errorf("unable to decode messages.transcribedAudio#cfb9d957: field trial_remains_num: %w", err)
		tl_messages_transcribed_audio_gen.go#L283: 			return fmt.Errorf("unable to decode messages.transcribedAudio#cfb9d957: field trial_remains_until_date: %w", err)
		tl_messages_translate_result_gen.go#L121: 		return fmt.Errorf("can't encode messages.translateResult#33db32f8 as nil")
		tl_messages_translate_result_gen.go#L130: 		return fmt.Errorf("can't encode messages.translateResult#33db32f8 as nil")
		tl_messages_translate_result_gen.go#L135: 			return fmt.Errorf("unable to encode messages.translateResult#33db32f8: field result element with index %d: %w", idx, err)
		tl_messages_translate_result_gen.go#L144: 		return fmt.Errorf("can't decode messages.translateResult#33db32f8 to nil")
		tl_messages_translate_result_gen.go#L147: 		return fmt.Errorf("unable to decode messages.translateResult#33db32f8: %w", err)
		tl_messages_translate_result_gen.go#L155: 		return fmt.Errorf("can't decode messages.translateResult#33db32f8 to nil")
		tl_messages_translate_result_gen.go#L160: 			return fmt.Errorf("unable to decode messages.translateResult#33db32f8: field result: %w", err)
		tl_messages_translate_result_gen.go#L169: 				return fmt.Errorf("unable to decode messages.translateResult#33db32f8: field result: %w", err)
		tl_messages_translate_text_gen.go#L192: 		return fmt.Errorf("can't encode messages.translateText#63183030 as nil")
		tl_messages_translate_text_gen.go#L201: 		return fmt.Errorf("can't encode messages.translateText#63183030 as nil")
		tl_messages_translate_text_gen.go#L205: 		return fmt.Errorf("unable to encode messages.translateText#63183030: field flags: %w", err)
		tl_messages_translate_text_gen.go#L209: 			return fmt.Errorf("unable to encode messages.translateText#63183030: field peer is nil")
		tl_messages_translate_text_gen.go#L212: 			return fmt.Errorf("unable to encode messages.translateText#63183030: field peer: %w", err)
		tl_messages_translate_text_gen.go#L225: 				return fmt.Errorf("unable to encode messages.translateText#63183030: field text element with index %d: %w", idx, err)
		tl_messages_translate_text_gen.go#L236: 		return fmt.Errorf("can't decode messages.translateText#63183030 to nil")
		tl_messages_translate_text_gen.go#L239: 		return fmt.Errorf("unable to decode messages.translateText#63183030: %w", err)
		tl_messages_translate_text_gen.go#L247: 		return fmt.Errorf("can't decode messages.translateText#63183030 to nil")
		tl_messages_translate_text_gen.go#L251: 			return fmt.Errorf("unable to decode messages.translateText#63183030: field flags: %w", err)
		tl_messages_translate_text_gen.go#L257: 			return fmt.Errorf("unable to decode messages.translateText#63183030: field peer: %w", err)
		tl_messages_translate_text_gen.go#L264: 			return fmt.Errorf("unable to decode messages.translateText#63183030: field id: %w", err)
		tl_messages_translate_text_gen.go#L273: 				return fmt.Errorf("unable to decode messages.translateText#63183030: field id: %w", err)
		tl_messages_translate_text_gen.go#L281: 			return fmt.Errorf("unable to decode messages.translateText#63183030: field text: %w", err)
		tl_messages_translate_text_gen.go#L290: 				return fmt.Errorf("unable to decode messages.translateText#63183030: field text: %w", err)
		tl_messages_translate_text_gen.go#L298: 			return fmt.Errorf("unable to decode messages.translateText#63183030: field to_lang: %w", err)
		tl_messages_uninstall_sticker_set_gen.go#L115: 		return fmt.Errorf("can't encode messages.uninstallStickerSet#f96e55de as nil")
		tl_messages_uninstall_sticker_set_gen.go#L124: 		return fmt.Errorf("can't encode messages.uninstallStickerSet#f96e55de as nil")
		tl_messages_uninstall_sticker_set_gen.go#L127: 		return fmt.Errorf("unable to encode messages.uninstallStickerSet#f96e55de: field stickerset is nil")
		tl_messages_uninstall_sticker_set_gen.go#L130: 		return fmt.Errorf("unable to encode messages.uninstallStickerSet#f96e55de: field stickerset: %w", err)
		tl_messages_uninstall_sticker_set_gen.go#L138: 		return fmt.Errorf("can't decode messages.uninstallStickerSet#f96e55de to nil")
		tl_messages_uninstall_sticker_set_gen.go#L141: 		return fmt.Errorf("unable to decode messages.uninstallStickerSet#f96e55de: %w", err)
		tl_messages_uninstall_sticker_set_gen.go#L149: 		return fmt.Errorf("can't decode messages.uninstallStickerSet#f96e55de to nil")
		tl_messages_uninstall_sticker_set_gen.go#L154: 			return fmt.Errorf("unable to decode messages.uninstallStickerSet#f96e55de: field stickerset: %w", err)
		tl_messages_unpin_all_messages_gen.go#L153: 		return fmt.Errorf("can't encode messages.unpinAllMessages#ee22b9a8 as nil")
		tl_messages_unpin_all_messages_gen.go#L162: 		return fmt.Errorf("can't encode messages.unpinAllMessages#ee22b9a8 as nil")
		tl_messages_unpin_all_messages_gen.go#L166: 		return fmt.Errorf("unable to encode messages.unpinAllMessages#ee22b9a8: field flags: %w", err)
		tl_messages_unpin_all_messages_gen.go#L169: 		return fmt.Errorf("unable to encode messages.unpinAllMessages#ee22b9a8: field peer is nil")
		tl_messages_unpin_all_messages_gen.go#L172: 		return fmt.Errorf("unable to encode messages.unpinAllMessages#ee22b9a8: field peer: %w", err)
		tl_messages_unpin_all_messages_gen.go#L183: 		return fmt.Errorf("can't decode messages.unpinAllMessages#ee22b9a8 to nil")
		tl_messages_unpin_all_messages_gen.go#L186: 		return fmt.Errorf("unable to decode messages.unpinAllMessages#ee22b9a8: %w", err)
		tl_messages_unpin_all_messages_gen.go#L194: 		return fmt.Errorf("can't decode messages.unpinAllMessages#ee22b9a8 to nil")
		tl_messages_unpin_all_messages_gen.go#L198: 			return fmt.Errorf("unable to decode messages.unpinAllMessages#ee22b9a8: field flags: %w", err)
		tl_messages_unpin_all_messages_gen.go#L204: 			return fmt.Errorf("unable to decode messages.unpinAllMessages#ee22b9a8: field peer: %w", err)
		tl_messages_unpin_all_messages_gen.go#L211: 			return fmt.Errorf("unable to decode messages.unpinAllMessages#ee22b9a8: field top_msg_id: %w", err)
		tl_messages_update_dialog_filter_gen.go#L156: 		return fmt.Errorf("can't encode messages.updateDialogFilter#1ad4a04a as nil")
		tl_messages_update_dialog_filter_gen.go#L165: 		return fmt.Errorf("can't encode messages.updateDialogFilter#1ad4a04a as nil")
		tl_messages_update_dialog_filter_gen.go#L169: 		return fmt.Errorf("unable to encode messages.updateDialogFilter#1ad4a04a: field flags: %w", err)
		tl_messages_update_dialog_filter_gen.go#L174: 			return fmt.Errorf("unable to encode messages.updateDialogFilter#1ad4a04a: field filter is nil")
		tl_messages_update_dialog_filter_gen.go#L177: 			return fmt.Errorf("unable to encode messages.updateDialogFilter#1ad4a04a: field filter: %w", err)
		tl_messages_update_dialog_filter_gen.go#L186: 		return fmt.Errorf("can't decode messages.updateDialogFilter#1ad4a04a to nil")
		tl_messages_update_dialog_filter_gen.go#L189: 		return fmt.Errorf("unable to decode messages.updateDialogFilter#1ad4a04a: %w", err)
		tl_messages_update_dialog_filter_gen.go#L197: 		return fmt.Errorf("can't decode messages.updateDialogFilter#1ad4a04a to nil")
		tl_messages_update_dialog_filter_gen.go#L201: 			return fmt.Errorf("unable to decode messages.updateDialogFilter#1ad4a04a: field flags: %w", err)
		tl_messages_update_dialog_filter_gen.go#L207: 			return fmt.Errorf("unable to decode messages.updateDialogFilter#1ad4a04a: field id: %w", err)
		tl_messages_update_dialog_filter_gen.go#L214: 			return fmt.Errorf("unable to decode messages.updateDialogFilter#1ad4a04a: field filter: %w", err)
		tl_messages_update_dialog_filters_order_gen.go#L121: 		return fmt.Errorf("can't encode messages.updateDialogFiltersOrder#c563c1e4 as nil")
		tl_messages_update_dialog_filters_order_gen.go#L130: 		return fmt.Errorf("can't encode messages.updateDialogFiltersOrder#c563c1e4 as nil")
		tl_messages_update_dialog_filters_order_gen.go#L142: 		return fmt.Errorf("can't decode messages.updateDialogFiltersOrder#c563c1e4 to nil")
		tl_messages_update_dialog_filters_order_gen.go#L145: 		return fmt.Errorf("unable to decode messages.updateDialogFiltersOrder#c563c1e4: %w", err)
		tl_messages_update_dialog_filters_order_gen.go#L153: 		return fmt.Errorf("can't decode messages.updateDialogFiltersOrder#c563c1e4 to nil")
		tl_messages_update_dialog_filters_order_gen.go#L158: 			return fmt.Errorf("unable to decode messages.updateDialogFiltersOrder#c563c1e4: field order: %w", err)
		tl_messages_update_dialog_filters_order_gen.go#L167: 				return fmt.Errorf("unable to decode messages.updateDialogFiltersOrder#c563c1e4: field order: %w", err)
		tl_messages_update_pinned_message_gen.go#L183: 		return fmt.Errorf("can't encode messages.updatePinnedMessage#d2aaf7ec as nil")
		tl_messages_update_pinned_message_gen.go#L192: 		return fmt.Errorf("can't encode messages.updatePinnedMessage#d2aaf7ec as nil")
		tl_messages_update_pinned_message_gen.go#L196: 		return fmt.Errorf("unable to encode messages.updatePinnedMessage#d2aaf7ec: field flags: %w", err)
		tl_messages_update_pinned_message_gen.go#L199: 		return fmt.Errorf("unable to encode messages.updatePinnedMessage#d2aaf7ec: field peer is nil")
		tl_messages_update_pinned_message_gen.go#L202: 		return fmt.Errorf("unable to encode messages.updatePinnedMessage#d2aaf7ec: field peer: %w", err)
		tl_messages_update_pinned_message_gen.go#L211: 		return fmt.Errorf("can't decode messages.updatePinnedMessage#d2aaf7ec to nil")
		tl_messages_update_pinned_message_gen.go#L214: 		return fmt.Errorf("unable to decode messages.updatePinnedMessage#d2aaf7ec: %w", err)
		tl_messages_update_pinned_message_gen.go#L222: 		return fmt.Errorf("can't decode messages.updatePinnedMessage#d2aaf7ec to nil")
		tl_messages_update_pinned_message_gen.go#L226: 			return fmt.Errorf("unable to decode messages.updatePinnedMessage#d2aaf7ec: field flags: %w", err)
		tl_messages_update_pinned_message_gen.go#L235: 			return fmt.Errorf("unable to decode messages.updatePinnedMessage#d2aaf7ec: field peer: %w", err)
		tl_messages_update_pinned_message_gen.go#L242: 			return fmt.Errorf("unable to decode messages.updatePinnedMessage#d2aaf7ec: field id: %w", err)
		tl_messages_upload_encrypted_file_gen.go#L126: 		return fmt.Errorf("can't encode messages.uploadEncryptedFile#5057c497 as nil")
		tl_messages_upload_encrypted_file_gen.go#L135: 		return fmt.Errorf("can't encode messages.uploadEncryptedFile#5057c497 as nil")
		tl_messages_upload_encrypted_file_gen.go#L138: 		return fmt.Errorf("unable to encode messages.uploadEncryptedFile#5057c497: field peer: %w", err)
		tl_messages_upload_encrypted_file_gen.go#L141: 		return fmt.Errorf("unable to encode messages.uploadEncryptedFile#5057c497: field file is nil")
		tl_messages_upload_encrypted_file_gen.go#L144: 		return fmt.Errorf("unable to encode messages.uploadEncryptedFile#5057c497: field file: %w", err)
		tl_messages_upload_encrypted_file_gen.go#L152: 		return fmt.Errorf("can't decode messages.uploadEncryptedFile#5057c497 to nil")
		tl_messages_upload_encrypted_file_gen.go#L155: 		return fmt.Errorf("unable to decode messages.uploadEncryptedFile#5057c497: %w", err)
		tl_messages_upload_encrypted_file_gen.go#L163: 		return fmt.Errorf("can't decode messages.uploadEncryptedFile#5057c497 to nil")
		tl_messages_upload_encrypted_file_gen.go#L167: 			return fmt.Errorf("unable to decode messages.uploadEncryptedFile#5057c497: field peer: %w", err)
		tl_messages_upload_encrypted_file_gen.go#L173: 			return fmt.Errorf("unable to decode messages.uploadEncryptedFile#5057c497: field file: %w", err)
		tl_messages_upload_imported_media_gen.go#L155: 		return fmt.Errorf("can't encode messages.uploadImportedMedia#2a862092 as nil")
		tl_messages_upload_imported_media_gen.go#L164: 		return fmt.Errorf("can't encode messages.uploadImportedMedia#2a862092 as nil")
		tl_messages_upload_imported_media_gen.go#L167: 		return fmt.Errorf("unable to encode messages.uploadImportedMedia#2a862092: field peer is nil")
		tl_messages_upload_imported_media_gen.go#L170: 		return fmt.Errorf("unable to encode messages.uploadImportedMedia#2a862092: field peer: %w", err)
		tl_messages_upload_imported_media_gen.go#L175: 		return fmt.Errorf("unable to encode messages.uploadImportedMedia#2a862092: field media is nil")
		tl_messages_upload_imported_media_gen.go#L178: 		return fmt.Errorf("unable to encode messages.uploadImportedMedia#2a862092: field media: %w", err)
		tl_messages_upload_imported_media_gen.go#L186: 		return fmt.Errorf("can't decode messages.uploadImportedMedia#2a862092 to nil")
		tl_messages_upload_imported_media_gen.go#L189: 		return fmt.Errorf("unable to decode messages.uploadImportedMedia#2a862092: %w", err)
		tl_messages_upload_imported_media_gen.go#L197: 		return fmt.Errorf("can't decode messages.uploadImportedMedia#2a862092 to nil")
		tl_messages_upload_imported_media_gen.go#L202: 			return fmt.Errorf("unable to decode messages.uploadImportedMedia#2a862092: field peer: %w", err)
		tl_messages_upload_imported_media_gen.go#L209: 			return fmt.Errorf("unable to decode messages.uploadImportedMedia#2a862092: field import_id: %w", err)
		tl_messages_upload_imported_media_gen.go#L216: 			return fmt.Errorf("unable to decode messages.uploadImportedMedia#2a862092: field file_name: %w", err)
		tl_messages_upload_imported_media_gen.go#L223: 			return fmt.Errorf("unable to decode messages.uploadImportedMedia#2a862092: field media: %w", err)
		tl_messages_upload_media_gen.go#L133: 		return fmt.Errorf("can't encode messages.uploadMedia#519bc2b1 as nil")
		tl_messages_upload_media_gen.go#L142: 		return fmt.Errorf("can't encode messages.uploadMedia#519bc2b1 as nil")
		tl_messages_upload_media_gen.go#L145: 		return fmt.Errorf("unable to encode messages.uploadMedia#519bc2b1: field peer is nil")
		tl_messages_upload_media_gen.go#L148: 		return fmt.Errorf("unable to encode messages.uploadMedia#519bc2b1: field peer: %w", err)
		tl_messages_upload_media_gen.go#L151: 		return fmt.Errorf("unable to encode messages.uploadMedia#519bc2b1: field media is nil")
		tl_messages_upload_media_gen.go#L154: 		return fmt.Errorf("unable to encode messages.uploadMedia#519bc2b1: field media: %w", err)
		tl_messages_upload_media_gen.go#L162: 		return fmt.Errorf("can't decode messages.uploadMedia#519bc2b1 to nil")
		tl_messages_upload_media_gen.go#L165: 		return fmt.Errorf("unable to decode messages.uploadMedia#519bc2b1: %w", err)
		tl_messages_upload_media_gen.go#L173: 		return fmt.Errorf("can't decode messages.uploadMedia#519bc2b1 to nil")
		tl_messages_upload_media_gen.go#L178: 			return fmt.Errorf("unable to decode messages.uploadMedia#519bc2b1: field peer: %w", err)
		tl_messages_upload_media_gen.go#L185: 			return fmt.Errorf("unable to decode messages.uploadMedia#519bc2b1: field media: %w", err)
		tl_messages_votes_list_gen.go#L188: 		return fmt.Errorf("can't encode messages.votesList#4899484e as nil")
		tl_messages_votes_list_gen.go#L197: 		return fmt.Errorf("can't encode messages.votesList#4899484e as nil")
		tl_messages_votes_list_gen.go#L201: 		return fmt.Errorf("unable to encode messages.votesList#4899484e: field flags: %w", err)
		tl_messages_votes_list_gen.go#L207: 			return fmt.Errorf("unable to encode messages.votesList#4899484e: field votes element with index %d is nil", idx)
		tl_messages_votes_list_gen.go#L210: 			return fmt.Errorf("unable to encode messages.votesList#4899484e: field votes element with index %d: %w", idx, err)
		tl_messages_votes_list_gen.go#L216: 			return fmt.Errorf("unable to encode messages.votesList#4899484e: field chats element with index %d is nil", idx)
		tl_messages_votes_list_gen.go#L219: 			return fmt.Errorf("unable to encode messages.votesList#4899484e: field chats element with index %d: %w", idx, err)
		tl_messages_votes_list_gen.go#L225: 			return fmt.Errorf("unable to encode messages.votesList#4899484e: field users element with index %d is nil", idx)
		tl_messages_votes_list_gen.go#L228: 			return fmt.Errorf("unable to encode messages.votesList#4899484e: field users element with index %d: %w", idx, err)
		tl_messages_votes_list_gen.go#L240: 		return fmt.Errorf("can't decode messages.votesList#4899484e to nil")
		tl_messages_votes_list_gen.go#L243: 		return fmt.Errorf("unable to decode messages.votesList#4899484e: %w", err)
		tl_messages_votes_list_gen.go#L251: 		return fmt.Errorf("can't decode messages.votesList#4899484e to nil")
		tl_messages_votes_list_gen.go#L255: 			return fmt.Errorf("unable to decode messages.votesList#4899484e: field flags: %w", err)
		tl_messages_votes_list_gen.go#L261: 			return fmt.Errorf("unable to decode messages.votesList#4899484e: field count: %w", err)
		tl_messages_votes_list_gen.go#L268: 			return fmt.Errorf("unable to decode messages.votesList#4899484e: field votes: %w", err)
		tl_messages_votes_list_gen.go#L277: 				return fmt.Errorf("unable to decode messages.votesList#4899484e: field votes: %w", err)
		tl_messages_votes_list_gen.go#L285: 			return fmt.Errorf("unable to decode messages.votesList#4899484e: field chats: %w", err)
		tl_messages_votes_list_gen.go#L294: 				return fmt.Errorf("unable to decode messages.votesList#4899484e: field chats: %w", err)
		tl_messages_votes_list_gen.go#L302: 			return fmt.Errorf("unable to decode messages.votesList#4899484e: field users: %w", err)
		tl_messages_votes_list_gen.go#L311: 				return fmt.Errorf("unable to decode messages.votesList#4899484e: field users: %w", err)
		tl_messages_votes_list_gen.go#L319: 			return fmt.Errorf("unable to decode messages.votesList#4899484e: field next_offset: %w", err)
		tl_messages_web_page_gen.go#L137: 		return fmt.Errorf("can't encode messages.webPage#fd5e12bd as nil")
		tl_messages_web_page_gen.go#L146: 		return fmt.Errorf("can't encode messages.webPage#fd5e12bd as nil")
		tl_messages_web_page_gen.go#L149: 		return fmt.Errorf("unable to encode messages.webPage#fd5e12bd: field webpage is nil")
		tl_messages_web_page_gen.go#L152: 		return fmt.Errorf("unable to encode messages.webPage#fd5e12bd: field webpage: %w", err)
		tl_messages_web_page_gen.go#L157: 			return fmt.Errorf("unable to encode messages.webPage#fd5e12bd: field chats element with index %d is nil", idx)
		tl_messages_web_page_gen.go#L160: 			return fmt.Errorf("unable to encode messages.webPage#fd5e12bd: field chats element with index %d: %w", idx, err)
		tl_messages_web_page_gen.go#L166: 			return fmt.Errorf("unable to encode messages.webPage#fd5e12bd: field users element with index %d is nil", idx)
		tl_messages_web_page_gen.go#L169: 			return fmt.Errorf("unable to encode messages.webPage#fd5e12bd: field users element with index %d: %w", idx, err)
		tl_messages_web_page_gen.go#L178: 		return fmt.Errorf("can't decode messages.webPage#fd5e12bd to nil")
		tl_messages_web_page_gen.go#L181: 		return fmt.Errorf("unable to decode messages.webPage#fd5e12bd: %w", err)
		tl_messages_web_page_gen.go#L189: 		return fmt.Errorf("can't decode messages.webPage#fd5e12bd to nil")
		tl_messages_web_page_gen.go#L194: 			return fmt.Errorf("unable to decode messages.webPage#fd5e12bd: field webpage: %w", err)
		tl_messages_web_page_gen.go#L201: 			return fmt.Errorf("unable to decode messages.webPage#fd5e12bd: field chats: %w", err)
		tl_messages_web_page_gen.go#L210: 				return fmt.Errorf("unable to decode messages.webPage#fd5e12bd: field chats: %w", err)
		tl_messages_web_page_gen.go#L218: 			return fmt.Errorf("unable to decode messages.webPage#fd5e12bd: field users: %w", err)
		tl_messages_web_page_gen.go#L227: 				return fmt.Errorf("unable to decode messages.webPage#fd5e12bd: field users: %w", err)
		tl_my_boost_gen.go#L200: 		return fmt.Errorf("can't encode myBoost#c448415c as nil")
		tl_my_boost_gen.go#L209: 		return fmt.Errorf("can't encode myBoost#c448415c as nil")
		tl_my_boost_gen.go#L213: 		return fmt.Errorf("unable to encode myBoost#c448415c: field flags: %w", err)
		tl_my_boost_gen.go#L218: 			return fmt.Errorf("unable to encode myBoost#c448415c: field peer is nil")
		tl_my_boost_gen.go#L221: 			return fmt.Errorf("unable to encode myBoost#c448415c: field peer: %w", err)
		tl_my_boost_gen.go#L235: 		return fmt.Errorf("can't decode myBoost#c448415c to nil")
		tl_my_boost_gen.go#L238: 		return fmt.Errorf("unable to decode myBoost#c448415c: %w", err)
		tl_my_boost_gen.go#L246: 		return fmt.Errorf("can't decode myBoost#c448415c to nil")
		tl_my_boost_gen.go#L250: 			return fmt.Errorf("unable to decode myBoost#c448415c: field flags: %w", err)
		tl_my_boost_gen.go#L256: 			return fmt.Errorf("unable to decode myBoost#c448415c: field slot: %w", err)
		tl_my_boost_gen.go#L263: 			return fmt.Errorf("unable to decode myBoost#c448415c: field peer: %w", err)
		tl_my_boost_gen.go#L270: 			return fmt.Errorf("unable to decode myBoost#c448415c: field date: %w", err)
		tl_my_boost_gen.go#L277: 			return fmt.Errorf("unable to decode myBoost#c448415c: field expires: %w", err)
		tl_my_boost_gen.go#L284: 			return fmt.Errorf("unable to decode myBoost#c448415c: field cooldown_until_date: %w", err)
		tl_nearest_dc_gen.go#L137: 		return fmt.Errorf("can't encode nearestDc#8e1a1775 as nil")
		tl_nearest_dc_gen.go#L146: 		return fmt.Errorf("can't encode nearestDc#8e1a1775 as nil")
		tl_nearest_dc_gen.go#L157: 		return fmt.Errorf("can't decode nearestDc#8e1a1775 to nil")
		tl_nearest_dc_gen.go#L160: 		return fmt.Errorf("unable to decode nearestDc#8e1a1775: %w", err)
		tl_nearest_dc_gen.go#L168: 		return fmt.Errorf("can't decode nearestDc#8e1a1775 to nil")
		tl_nearest_dc_gen.go#L173: 			return fmt.Errorf("unable to decode nearestDc#8e1a1775: field country: %w", err)
		tl_nearest_dc_gen.go#L180: 			return fmt.Errorf("unable to decode nearestDc#8e1a1775: field this_dc: %w", err)
		tl_nearest_dc_gen.go#L187: 			return fmt.Errorf("unable to decode nearestDc#8e1a1775: field nearest_dc: %w", err)
		tl_notification_sound_gen.go#L103: 		return fmt.Errorf("can't encode notificationSoundDefault#97e8bebe as nil")
		tl_notification_sound_gen.go#L112: 		return fmt.Errorf("can't encode notificationSoundDefault#97e8bebe as nil")
		tl_notification_sound_gen.go#L120: 		return fmt.Errorf("can't decode notificationSoundDefault#97e8bebe to nil")
		tl_notification_sound_gen.go#L123: 		return fmt.Errorf("unable to decode notificationSoundDefault#97e8bebe: %w", err)
		tl_notification_sound_gen.go#L131: 		return fmt.Errorf("can't decode notificationSoundDefault#97e8bebe to nil")
		tl_notification_sound_gen.go#L205: 		return fmt.Errorf("can't encode notificationSoundNone#6f0c34df as nil")
		tl_notification_sound_gen.go#L214: 		return fmt.Errorf("can't encode notificationSoundNone#6f0c34df as nil")
		tl_notification_sound_gen.go#L222: 		return fmt.Errorf("can't decode notificationSoundNone#6f0c34df to nil")
		tl_notification_sound_gen.go#L225: 		return fmt.Errorf("unable to decode notificationSoundNone#6f0c34df: %w", err)
		tl_notification_sound_gen.go#L233: 		return fmt.Errorf("can't decode notificationSoundNone#6f0c34df to nil")
		tl_notification_sound_gen.go#L336: 		return fmt.Errorf("can't encode notificationSoundLocal#830b9ae4 as nil")
		tl_notification_sound_gen.go#L345: 		return fmt.Errorf("can't encode notificationSoundLocal#830b9ae4 as nil")
		tl_notification_sound_gen.go#L355: 		return fmt.Errorf("can't decode notificationSoundLocal#830b9ae4 to nil")
		tl_notification_sound_gen.go#L358: 		return fmt.Errorf("unable to decode notificationSoundLocal#830b9ae4: %w", err)
		tl_notification_sound_gen.go#L366: 		return fmt.Errorf("can't decode notificationSoundLocal#830b9ae4 to nil")
		tl_notification_sound_gen.go#L371: 			return fmt.Errorf("unable to decode notificationSoundLocal#830b9ae4: field title: %w", err)
		tl_notification_sound_gen.go#L378: 			return fmt.Errorf("unable to decode notificationSoundLocal#830b9ae4: field data: %w", err)
		tl_notification_sound_gen.go#L490: 		return fmt.Errorf("can't encode notificationSoundRingtone#ff6c8049 as nil")
		tl_notification_sound_gen.go#L499: 		return fmt.Errorf("can't encode notificationSoundRingtone#ff6c8049 as nil")
		tl_notification_sound_gen.go#L508: 		return fmt.Errorf("can't decode notificationSoundRingtone#ff6c8049 to nil")
		tl_notification_sound_gen.go#L511: 		return fmt.Errorf("unable to decode notificationSoundRingtone#ff6c8049: %w", err)
		tl_notification_sound_gen.go#L519: 		return fmt.Errorf("can't decode notificationSoundRingtone#ff6c8049 to nil")
		tl_notification_sound_gen.go#L524: 			return fmt.Errorf("unable to decode notificationSoundRingtone#ff6c8049: field id: %w", err)
		tl_notification_sound_gen.go#L589: 			return nil, fmt.Errorf("unable to decode NotificationSoundClass: %w", err)
		tl_notification_sound_gen.go#L596: 			return nil, fmt.Errorf("unable to decode NotificationSoundClass: %w", err)
		tl_notification_sound_gen.go#L603: 			return nil, fmt.Errorf("unable to decode NotificationSoundClass: %w", err)
		tl_notification_sound_gen.go#L610: 			return nil, fmt.Errorf("unable to decode NotificationSoundClass: %w", err)
		tl_notification_sound_gen.go#L614: 		return nil, fmt.Errorf("unable to decode NotificationSoundClass: %w", bin.NewUnexpectedID(id))
		tl_notification_sound_gen.go#L626: 		return fmt.Errorf("unable to decode NotificationSoundBox to nil")
		tl_notification_sound_gen.go#L630: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_notification_sound_gen.go#L639: 		return fmt.Errorf("unable to encode NotificationSoundClass as nil")
		tl_notify_peer_gen.go#L120: 		return fmt.Errorf("can't encode notifyPeer#9fd40bd8 as nil")
		tl_notify_peer_gen.go#L129: 		return fmt.Errorf("can't encode notifyPeer#9fd40bd8 as nil")
		tl_notify_peer_gen.go#L132: 		return fmt.Errorf("unable to encode notifyPeer#9fd40bd8: field peer is nil")
		tl_notify_peer_gen.go#L135: 		return fmt.Errorf("unable to encode notifyPeer#9fd40bd8: field peer: %w", err)
		tl_notify_peer_gen.go#L143: 		return fmt.Errorf("can't decode notifyPeer#9fd40bd8 to nil")
		tl_notify_peer_gen.go#L146: 		return fmt.Errorf("unable to decode notifyPeer#9fd40bd8: %w", err)
		tl_notify_peer_gen.go#L154: 		return fmt.Errorf("can't decode notifyPeer#9fd40bd8 to nil")
		tl_notify_peer_gen.go#L159: 			return fmt.Errorf("unable to decode notifyPeer#9fd40bd8: field peer: %w", err)
		tl_notify_peer_gen.go#L243: 		return fmt.Errorf("can't encode notifyUsers#b4c83b4c as nil")
		tl_notify_peer_gen.go#L252: 		return fmt.Errorf("can't encode notifyUsers#b4c83b4c as nil")
		tl_notify_peer_gen.go#L260: 		return fmt.Errorf("can't decode notifyUsers#b4c83b4c to nil")
		tl_notify_peer_gen.go#L263: 		return fmt.Errorf("unable to decode notifyUsers#b4c83b4c: %w", err)
		tl_notify_peer_gen.go#L271: 		return fmt.Errorf("can't decode notifyUsers#b4c83b4c to nil")
		tl_notify_peer_gen.go#L345: 		return fmt.Errorf("can't encode notifyChats#c007cec3 as nil")
		tl_notify_peer_gen.go#L354: 		return fmt.Errorf("can't encode notifyChats#c007cec3 as nil")
		tl_notify_peer_gen.go#L362: 		return fmt.Errorf("can't decode notifyChats#c007cec3 to nil")
		tl_notify_peer_gen.go#L365: 		return fmt.Errorf("unable to decode notifyChats#c007cec3: %w", err)
		tl_notify_peer_gen.go#L373: 		return fmt.Errorf("can't decode notifyChats#c007cec3 to nil")
		tl_notify_peer_gen.go#L447: 		return fmt.Errorf("can't encode notifyBroadcasts#d612e8ef as nil")
		tl_notify_peer_gen.go#L456: 		return fmt.Errorf("can't encode notifyBroadcasts#d612e8ef as nil")
		tl_notify_peer_gen.go#L464: 		return fmt.Errorf("can't decode notifyBroadcasts#d612e8ef to nil")
		tl_notify_peer_gen.go#L467: 		return fmt.Errorf("unable to decode notifyBroadcasts#d612e8ef: %w", err)
		tl_notify_peer_gen.go#L475: 		return fmt.Errorf("can't decode notifyBroadcasts#d612e8ef to nil")
		tl_notify_peer_gen.go#L584: 		return fmt.Errorf("can't encode notifyForumTopic#226e6308 as nil")
		tl_notify_peer_gen.go#L593: 		return fmt.Errorf("can't encode notifyForumTopic#226e6308 as nil")
		tl_notify_peer_gen.go#L596: 		return fmt.Errorf("unable to encode notifyForumTopic#226e6308: field peer is nil")
		tl_notify_peer_gen.go#L599: 		return fmt.Errorf("unable to encode notifyForumTopic#226e6308: field peer: %w", err)
		tl_notify_peer_gen.go#L608: 		return fmt.Errorf("can't decode notifyForumTopic#226e6308 to nil")
		tl_notify_peer_gen.go#L611: 		return fmt.Errorf("unable to decode notifyForumTopic#226e6308: %w", err)
		tl_notify_peer_gen.go#L619: 		return fmt.Errorf("can't decode notifyForumTopic#226e6308 to nil")
		tl_notify_peer_gen.go#L624: 			return fmt.Errorf("unable to decode notifyForumTopic#226e6308: field peer: %w", err)
		tl_notify_peer_gen.go#L631: 			return fmt.Errorf("unable to decode notifyForumTopic#226e6308: field top_msg_id: %w", err)
		tl_notify_peer_gen.go#L705: 			return nil, fmt.Errorf("unable to decode NotifyPeerClass: %w", err)
		tl_notify_peer_gen.go#L712: 			return nil, fmt.Errorf("unable to decode NotifyPeerClass: %w", err)
		tl_notify_peer_gen.go#L719: 			return nil, fmt.Errorf("unable to decode NotifyPeerClass: %w", err)
		tl_notify_peer_gen.go#L726: 			return nil, fmt.Errorf("unable to decode NotifyPeerClass: %w", err)
		tl_notify_peer_gen.go#L733: 			return nil, fmt.Errorf("unable to decode NotifyPeerClass: %w", err)
		tl_notify_peer_gen.go#L737: 		return nil, fmt.Errorf("unable to decode NotifyPeerClass: %w", bin.NewUnexpectedID(id))
		tl_notify_peer_gen.go#L749: 		return fmt.Errorf("unable to decode NotifyPeerBox to nil")
		tl_notify_peer_gen.go#L753: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_notify_peer_gen.go#L762: 		return fmt.Errorf("unable to encode NotifyPeerClass as nil")
		tl_null_gen.go#L98: 		return fmt.Errorf("can't encode null#56730bcc as nil")
		tl_null_gen.go#L107: 		return fmt.Errorf("can't encode null#56730bcc as nil")
		tl_null_gen.go#L115: 		return fmt.Errorf("can't decode null#56730bcc to nil")
		tl_null_gen.go#L118: 		return fmt.Errorf("unable to decode null#56730bcc: %w", err)
		tl_null_gen.go#L126: 		return fmt.Errorf("can't decode null#56730bcc to nil")
		tl_page_block_gen.go#L103: 		return fmt.Errorf("can't encode pageBlockUnsupported#13567e8a as nil")
		tl_page_block_gen.go#L112: 		return fmt.Errorf("can't encode pageBlockUnsupported#13567e8a as nil")
		tl_page_block_gen.go#L120: 		return fmt.Errorf("can't decode pageBlockUnsupported#13567e8a to nil")
		tl_page_block_gen.go#L123: 		return fmt.Errorf("unable to decode pageBlockUnsupported#13567e8a: %w", err)
		tl_page_block_gen.go#L131: 		return fmt.Errorf("can't decode pageBlockUnsupported#13567e8a to nil")
		tl_page_block_gen.go#L222: 		return fmt.Errorf("can't encode pageBlockTitle#70abc3fd as nil")
		tl_page_block_gen.go#L231: 		return fmt.Errorf("can't encode pageBlockTitle#70abc3fd as nil")
		tl_page_block_gen.go#L234: 		return fmt.Errorf("unable to encode pageBlockTitle#70abc3fd: field text is nil")
		tl_page_block_gen.go#L237: 		return fmt.Errorf("unable to encode pageBlockTitle#70abc3fd: field text: %w", err)
		tl_page_block_gen.go#L245: 		return fmt.Errorf("can't decode pageBlockTitle#70abc3fd to nil")
		tl_page_block_gen.go#L248: 		return fmt.Errorf("unable to decode pageBlockTitle#70abc3fd: %w", err)
		tl_page_block_gen.go#L256: 		return fmt.Errorf("can't decode pageBlockTitle#70abc3fd to nil")
		tl_page_block_gen.go#L261: 			return fmt.Errorf("unable to decode pageBlockTitle#70abc3fd: field text: %w", err)
		tl_page_block_gen.go#L362: 		return fmt.Errorf("can't encode pageBlockSubtitle#8ffa9a1f as nil")
		tl_page_block_gen.go#L371: 		return fmt.Errorf("can't encode pageBlockSubtitle#8ffa9a1f as nil")
		tl_page_block_gen.go#L374: 		return fmt.Errorf("unable to encode pageBlockSubtitle#8ffa9a1f: field text is nil")
		tl_page_block_gen.go#L377: 		return fmt.Errorf("unable to encode pageBlockSubtitle#8ffa9a1f: field text: %w", err)
		tl_page_block_gen.go#L385: 		return fmt.Errorf("can't decode pageBlockSubtitle#8ffa9a1f to nil")
		tl_page_block_gen.go#L388: 		return fmt.Errorf("unable to decode pageBlockSubtitle#8ffa9a1f: %w", err)
		tl_page_block_gen.go#L396: 		return fmt.Errorf("can't decode pageBlockSubtitle#8ffa9a1f to nil")
		tl_page_block_gen.go#L401: 			return fmt.Errorf("unable to decode pageBlockSubtitle#8ffa9a1f: field text: %w", err)
		tl_page_block_gen.go#L513: 		return fmt.Errorf("can't encode pageBlockAuthorDate#baafe5e0 as nil")
		tl_page_block_gen.go#L522: 		return fmt.Errorf("can't encode pageBlockAuthorDate#baafe5e0 as nil")
		tl_page_block_gen.go#L525: 		return fmt.Errorf("unable to encode pageBlockAuthorDate#baafe5e0: field author is nil")
		tl_page_block_gen.go#L528: 		return fmt.Errorf("unable to encode pageBlockAuthorDate#baafe5e0: field author: %w", err)
		tl_page_block_gen.go#L537: 		return fmt.Errorf("can't decode pageBlockAuthorDate#baafe5e0 to nil")
		tl_page_block_gen.go#L540: 		return fmt.Errorf("unable to decode pageBlockAuthorDate#baafe5e0: %w", err)
		tl_page_block_gen.go#L548: 		return fmt.Errorf("can't decode pageBlockAuthorDate#baafe5e0 to nil")
		tl_page_block_gen.go#L553: 			return fmt.Errorf("unable to decode pageBlockAuthorDate#baafe5e0: field author: %w", err)
		tl_page_block_gen.go#L560: 			return fmt.Errorf("unable to decode pageBlockAuthorDate#baafe5e0: field published_date: %w", err)
		tl_page_block_gen.go#L669: 		return fmt.Errorf("can't encode pageBlockHeader#bfd064ec as nil")
		tl_page_block_gen.go#L678: 		return fmt.Errorf("can't encode pageBlockHeader#bfd064ec as nil")
		tl_page_block_gen.go#L681: 		return fmt.Errorf("unable to encode pageBlockHeader#bfd064ec: field text is nil")
		tl_page_block_gen.go#L684: 		return fmt.Errorf("unable to encode pageBlockHeader#bfd064ec: field text: %w", err)
		tl_page_block_gen.go#L692: 		return fmt.Errorf("can't decode pageBlockHeader#bfd064ec to nil")
		tl_page_block_gen.go#L695: 		return fmt.Errorf("unable to decode pageBlockHeader#bfd064ec: %w", err)
		tl_page_block_gen.go#L703: 		return fmt.Errorf("can't decode pageBlockHeader#bfd064ec to nil")
		tl_page_block_gen.go#L708: 			return fmt.Errorf("unable to decode pageBlockHeader#bfd064ec: field text: %w", err)
		tl_page_block_gen.go#L809: 		return fmt.Errorf("can't encode pageBlockSubheader#f12bb6e1 as nil")
		tl_page_block_gen.go#L818: 		return fmt.Errorf("can't encode pageBlockSubheader#f12bb6e1 as nil")
		tl_page_block_gen.go#L821: 		return fmt.Errorf("unable to encode pageBlockSubheader#f12bb6e1: field text is nil")
		tl_page_block_gen.go#L824: 		return fmt.Errorf("unable to encode pageBlockSubheader#f12bb6e1: field text: %w", err)
		tl_page_block_gen.go#L832: 		return fmt.Errorf("can't decode pageBlockSubheader#f12bb6e1 to nil")
		tl_page_block_gen.go#L835: 		return fmt.Errorf("unable to decode pageBlockSubheader#f12bb6e1: %w", err)
		tl_page_block_gen.go#L843: 		return fmt.Errorf("can't decode pageBlockSubheader#f12bb6e1 to nil")
		tl_page_block_gen.go#L848: 			return fmt.Errorf("unable to decode pageBlockSubheader#f12bb6e1: field text: %w", err)
		tl_page_block_gen.go#L949: 		return fmt.Errorf("can't encode pageBlockParagraph#467a0766 as nil")
		tl_page_block_gen.go#L958: 		return fmt.Errorf("can't encode pageBlockParagraph#467a0766 as nil")
		tl_page_block_gen.go#L961: 		return fmt.Errorf("unable to encode pageBlockParagraph#467a0766: field text is nil")
		tl_page_block_gen.go#L964: 		return fmt.Errorf("unable to encode pageBlockParagraph#467a0766: field text: %w", err)
		tl_page_block_gen.go#L972: 		return fmt.Errorf("can't decode pageBlockParagraph#467a0766 to nil")
		tl_page_block_gen.go#L975: 		return fmt.Errorf("unable to decode pageBlockParagraph#467a0766: %w", err)
		tl_page_block_gen.go#L983: 		return fmt.Errorf("can't decode pageBlockParagraph#467a0766 to nil")
		tl_page_block_gen.go#L988: 			return fmt.Errorf("unable to decode pageBlockParagraph#467a0766: field text: %w", err)
		tl_page_block_gen.go#L1100: 		return fmt.Errorf("can't encode pageBlockPreformatted#c070d93e as nil")
		tl_page_block_gen.go#L1109: 		return fmt.Errorf("can't encode pageBlockPreformatted#c070d93e as nil")
		tl_page_block_gen.go#L1112: 		return fmt.Errorf("unable to encode pageBlockPreformatted#c070d93e: field text is nil")
		tl_page_block_gen.go#L1115: 		return fmt.Errorf("unable to encode pageBlockPreformatted#c070d93e: field text: %w", err)
		tl_page_block_gen.go#L1124: 		return fmt.Errorf("can't decode pageBlockPreformatted#c070d93e to nil")
		tl_page_block_gen.go#L1127: 		return fmt.Errorf("unable to decode pageBlockPreformatted#c070d93e: %w", err)
		tl_page_block_gen.go#L1135: 		return fmt.Errorf("can't decode pageBlockPreformatted#c070d93e to nil")
		tl_page_block_gen.go#L1140: 			return fmt.Errorf("unable to decode pageBlockPreformatted#c070d93e: field text: %w", err)
		tl_page_block_gen.go#L1147: 			return fmt.Errorf("unable to decode pageBlockPreformatted#c070d93e: field language: %w", err)
		tl_page_block_gen.go#L1256: 		return fmt.Errorf("can't encode pageBlockFooter#48870999 as nil")
		tl_page_block_gen.go#L1265: 		return fmt.Errorf("can't encode pageBlockFooter#48870999 as nil")
		tl_page_block_gen.go#L1268: 		return fmt.Errorf("unable to encode pageBlockFooter#48870999: field text is nil")
		tl_page_block_gen.go#L1271: 		return fmt.Errorf("unable to encode pageBlockFooter#48870999: field text: %w", err)
		tl_page_block_gen.go#L1279: 		return fmt.Errorf("can't decode pageBlockFooter#48870999 to nil")
		tl_page_block_gen.go#L1282: 		return fmt.Errorf("unable to decode pageBlockFooter#48870999: %w", err)
		tl_page_block_gen.go#L1290: 		return fmt.Errorf("can't decode pageBlockFooter#48870999 to nil")
		tl_page_block_gen.go#L1295: 			return fmt.Errorf("unable to decode pageBlockFooter#48870999: field text: %w", err)
		tl_page_block_gen.go#L1379: 		return fmt.Errorf("can't encode pageBlockDivider#db20b188 as nil")
		tl_page_block_gen.go#L1388: 		return fmt.Errorf("can't encode pageBlockDivider#db20b188 as nil")
		tl_page_block_gen.go#L1396: 		return fmt.Errorf("can't decode pageBlockDivider#db20b188 to nil")
		tl_page_block_gen.go#L1399: 		return fmt.Errorf("unable to decode pageBlockDivider#db20b188: %w", err)
		tl_page_block_gen.go#L1407: 		return fmt.Errorf("can't decode pageBlockDivider#db20b188 to nil")
		tl_page_block_gen.go#L1498: 		return fmt.Errorf("can't encode pageBlockAnchor#ce0d37b0 as nil")
		tl_page_block_gen.go#L1507: 		return fmt.Errorf("can't encode pageBlockAnchor#ce0d37b0 as nil")
		tl_page_block_gen.go#L1516: 		return fmt.Errorf("can't decode pageBlockAnchor#ce0d37b0 to nil")
		tl_page_block_gen.go#L1519: 		return fmt.Errorf("unable to decode pageBlockAnchor#ce0d37b0: %w", err)
		tl_page_block_gen.go#L1527: 		return fmt.Errorf("can't decode pageBlockAnchor#ce0d37b0 to nil")
		tl_page_block_gen.go#L1532: 			return fmt.Errorf("unable to decode pageBlockAnchor#ce0d37b0: field name: %w", err)
		tl_page_block_gen.go#L1633: 		return fmt.Errorf("can't encode pageBlockList#e4e88011 as nil")
		tl_page_block_gen.go#L1642: 		return fmt.Errorf("can't encode pageBlockList#e4e88011 as nil")
		tl_page_block_gen.go#L1647: 			return fmt.Errorf("unable to encode pageBlockList#e4e88011: field items element with index %d is nil", idx)
		tl_page_block_gen.go#L1650: 			return fmt.Errorf("unable to encode pageBlockList#e4e88011: field items element with index %d: %w", idx, err)
		tl_page_block_gen.go#L1659: 		return fmt.Errorf("can't decode pageBlockList#e4e88011 to nil")
		tl_page_block_gen.go#L1662: 		return fmt.Errorf("unable to decode pageBlockList#e4e88011: %w", err)
		tl_page_block_gen.go#L1670: 		return fmt.Errorf("can't decode pageBlockList#e4e88011 to nil")
		tl_page_block_gen.go#L1675: 			return fmt.Errorf("unable to decode pageBlockList#e4e88011: field items: %w", err)
		tl_page_block_gen.go#L1684: 				return fmt.Errorf("unable to decode pageBlockList#e4e88011: field items: %w", err)
		tl_page_block_gen.go#L1802: 		return fmt.Errorf("can't encode pageBlockBlockquote#263d7c26 as nil")
		tl_page_block_gen.go#L1811: 		return fmt.Errorf("can't encode pageBlockBlockquote#263d7c26 as nil")
		tl_page_block_gen.go#L1814: 		return fmt.Errorf("unable to encode pageBlockBlockquote#263d7c26: field text is nil")
		tl_page_block_gen.go#L1817: 		return fmt.Errorf("unable to encode pageBlockBlockquote#263d7c26: field text: %w", err)
		tl_page_block_gen.go#L1820: 		return fmt.Errorf("unable to encode pageBlockBlockquote#263d7c26: field caption is nil")
		tl_page_block_gen.go#L1823: 		return fmt.Errorf("unable to encode pageBlockBlockquote#263d7c26: field caption: %w", err)
		tl_page_block_gen.go#L1831: 		return fmt.Errorf("can't decode pageBlockBlockquote#263d7c26 to nil")
		tl_page_block_gen.go#L1834: 		return fmt.Errorf("unable to decode pageBlockBlockquote#263d7c26: %w", err)
		tl_page_block_gen.go#L1842: 		return fmt.Errorf("can't decode pageBlockBlockquote#263d7c26 to nil")
		tl_page_block_gen.go#L1847: 			return fmt.Errorf("unable to decode pageBlockBlockquote#263d7c26: field text: %w", err)
		tl_page_block_gen.go#L1854: 			return fmt.Errorf("unable to decode pageBlockBlockquote#263d7c26: field caption: %w", err)
		tl_page_block_gen.go#L1974: 		return fmt.Errorf("can't encode pageBlockPullquote#4f4456d3 as nil")
		tl_page_block_gen.go#L1983: 		return fmt.Errorf("can't encode pageBlockPullquote#4f4456d3 as nil")
		tl_page_block_gen.go#L1986: 		return fmt.Errorf("unable to encode pageBlockPullquote#4f4456d3: field text is nil")
		tl_page_block_gen.go#L1989: 		return fmt.Errorf("unable to encode pageBlockPullquote#4f4456d3: field text: %w", err)
		tl_page_block_gen.go#L1992: 		return fmt.Errorf("unable to encode pageBlockPullquote#4f4456d3: field caption is nil")
		tl_page_block_gen.go#L1995: 		return fmt.Errorf("unable to encode pageBlockPullquote#4f4456d3: field caption: %w", err)
		tl_page_block_gen.go#L2003: 		return fmt.Errorf("can't decode pageBlockPullquote#4f4456d3 to nil")
		tl_page_block_gen.go#L2006: 		return fmt.Errorf("unable to decode pageBlockPullquote#4f4456d3: %w", err)
		tl_page_block_gen.go#L2014: 		return fmt.Errorf("can't decode pageBlockPullquote#4f4456d3 to nil")
		tl_page_block_gen.go#L2019: 			return fmt.Errorf("unable to decode pageBlockPullquote#4f4456d3: field text: %w", err)
		tl_page_block_gen.go#L2026: 			return fmt.Errorf("unable to decode pageBlockPullquote#4f4456d3: field caption: %w", err)
		tl_page_block_gen.go#L2198: 		return fmt.Errorf("can't encode pageBlockPhoto#1759c560 as nil")
		tl_page_block_gen.go#L2207: 		return fmt.Errorf("can't encode pageBlockPhoto#1759c560 as nil")
		tl_page_block_gen.go#L2211: 		return fmt.Errorf("unable to encode pageBlockPhoto#1759c560: field flags: %w", err)
		tl_page_block_gen.go#L2215: 		return fmt.Errorf("unable to encode pageBlockPhoto#1759c560: field caption: %w", err)
		tl_page_block_gen.go#L2229: 		return fmt.Errorf("can't decode pageBlockPhoto#1759c560 to nil")
		tl_page_block_gen.go#L2232: 		return fmt.Errorf("unable to decode pageBlockPhoto#1759c560: %w", err)
		tl_page_block_gen.go#L2240: 		return fmt.Errorf("can't decode pageBlockPhoto#1759c560 to nil")
		tl_page_block_gen.go#L2244: 			return fmt.Errorf("unable to decode pageBlockPhoto#1759c560: field flags: %w", err)
		tl_page_block_gen.go#L2250: 			return fmt.Errorf("unable to decode pageBlockPhoto#1759c560: field photo_id: %w", err)
		tl_page_block_gen.go#L2256: 			return fmt.Errorf("unable to decode pageBlockPhoto#1759c560: field caption: %w", err)
		tl_page_block_gen.go#L2262: 			return fmt.Errorf("unable to decode pageBlockPhoto#1759c560: field url: %w", err)
		tl_page_block_gen.go#L2269: 			return fmt.Errorf("unable to decode pageBlockPhoto#1759c560: field webpage_id: %w", err)
		tl_page_block_gen.go#L2467: 		return fmt.Errorf("can't encode pageBlockVideo#7c8fe7b6 as nil")
		tl_page_block_gen.go#L2476: 		return fmt.Errorf("can't encode pageBlockVideo#7c8fe7b6 as nil")
		tl_page_block_gen.go#L2480: 		return fmt.Errorf("unable to encode pageBlockVideo#7c8fe7b6: field flags: %w", err)
		tl_page_block_gen.go#L2484: 		return fmt.Errorf("unable to encode pageBlockVideo#7c8fe7b6: field caption: %w", err)
		tl_page_block_gen.go#L2492: 		return fmt.Errorf("can't decode pageBlockVideo#7c8fe7b6 to nil")
		tl_page_block_gen.go#L2495: 		return fmt.Errorf("unable to decode pageBlockVideo#7c8fe7b6: %w", err)
		tl_page_block_gen.go#L2503: 		return fmt.Errorf("can't decode pageBlockVideo#7c8fe7b6 to nil")
		tl_page_block_gen.go#L2507: 			return fmt.Errorf("unable to decode pageBlockVideo#7c8fe7b6: field flags: %w", err)
		tl_page_block_gen.go#L2515: 			return fmt.Errorf("unable to decode pageBlockVideo#7c8fe7b6: field video_id: %w", err)
		tl_page_block_gen.go#L2521: 			return fmt.Errorf("unable to decode pageBlockVideo#7c8fe7b6: field caption: %w", err)
		tl_page_block_gen.go#L2667: 		return fmt.Errorf("can't encode pageBlockCover#39f23300 as nil")
		tl_page_block_gen.go#L2676: 		return fmt.Errorf("can't encode pageBlockCover#39f23300 as nil")
		tl_page_block_gen.go#L2679: 		return fmt.Errorf("unable to encode pageBlockCover#39f23300: field cover is nil")
		tl_page_block_gen.go#L2682: 		return fmt.Errorf("unable to encode pageBlockCover#39f23300: field cover: %w", err)
		tl_page_block_gen.go#L2690: 		return fmt.Errorf("can't decode pageBlockCover#39f23300 to nil")
		tl_page_block_gen.go#L2693: 		return fmt.Errorf("unable to decode pageBlockCover#39f23300: %w", err)
		tl_page_block_gen.go#L2701: 		return fmt.Errorf("can't decode pageBlockCover#39f23300 to nil")
		tl_page_block_gen.go#L2706: 			return fmt.Errorf("unable to decode pageBlockCover#39f23300: field cover: %w", err)
		tl_page_block_gen.go#L2949: 		return fmt.Errorf("can't encode pageBlockEmbed#a8718dc5 as nil")
		tl_page_block_gen.go#L2958: 		return fmt.Errorf("can't encode pageBlockEmbed#a8718dc5 as nil")
		tl_page_block_gen.go#L2962: 		return fmt.Errorf("unable to encode pageBlockEmbed#a8718dc5: field flags: %w", err)
		tl_page_block_gen.go#L2980: 		return fmt.Errorf("unable to encode pageBlockEmbed#a8718dc5: field caption: %w", err)
		tl_page_block_gen.go#L2988: 		return fmt.Errorf("can't decode pageBlockEmbed#a8718dc5 to nil")
		tl_page_block_gen.go#L2991: 		return fmt.Errorf("unable to decode pageBlockEmbed#a8718dc5: %w", err)
		tl_page_block_gen.go#L2999: 		return fmt.Errorf("can't decode pageBlockEmbed#a8718dc5 to nil")
		tl_page_block_gen.go#L3003: 			return fmt.Errorf("unable to decode pageBlockEmbed#a8718dc5: field flags: %w", err)
		tl_page_block_gen.go#L3011: 			return fmt.Errorf("unable to decode pageBlockEmbed#a8718dc5: field url: %w", err)
		tl_page_block_gen.go#L3018: 			return fmt.Errorf("unable to decode pageBlockEmbed#a8718dc5: field html: %w", err)
		tl_page_block_gen.go#L3025: 			return fmt.Errorf("unable to decode pageBlockEmbed#a8718dc5: field poster_photo_id: %w", err)
		tl_page_block_gen.go#L3032: 			return fmt.Errorf("unable to decode pageBlockEmbed#a8718dc5: field w: %w", err)
		tl_page_block_gen.go#L3039: 			return fmt.Errorf("unable to decode pageBlockEmbed#a8718dc5: field h: %w", err)
		tl_page_block_gen.go#L3045: 			return fmt.Errorf("unable to decode pageBlockEmbed#a8718dc5: field caption: %w", err)
		tl_page_block_gen.go#L3339: 		return fmt.Errorf("can't encode pageBlockEmbedPost#f259a80b as nil")
		tl_page_block_gen.go#L3348: 		return fmt.Errorf("can't encode pageBlockEmbedPost#f259a80b as nil")
		tl_page_block_gen.go#L3358: 			return fmt.Errorf("unable to encode pageBlockEmbedPost#f259a80b: field blocks element with index %d is nil", idx)
		tl_page_block_gen.go#L3361: 			return fmt.Errorf("unable to encode pageBlockEmbedPost#f259a80b: field blocks element with index %d: %w", idx, err)
		tl_page_block_gen.go#L3365: 		return fmt.Errorf("unable to encode pageBlockEmbedPost#f259a80b: field caption: %w", err)
		tl_page_block_gen.go#L3373: 		return fmt.Errorf("can't decode pageBlockEmbedPost#f259a80b to nil")
		tl_page_block_gen.go#L3376: 		return fmt.Errorf("unable to decode pageBlockEmbedPost#f259a80b: %w", err)
		tl_page_block_gen.go#L3384: 		return fmt.Errorf("can't decode pageBlockEmbedPost#f259a80b to nil")
		tl_page_block_gen.go#L3389: 			return fmt.Errorf("unable to decode pageBlockEmbedPost#f259a80b: field url: %w", err)
		tl_page_block_gen.go#L3396: 			return fmt.Errorf("unable to decode pageBlockEmbedPost#f259a80b: field webpage_id: %w", err)
		tl_page_block_gen.go#L3403: 			return fmt.Errorf("unable to decode pageBlockEmbedPost#f259a80b: field author_photo_id: %w", err)
		tl_page_block_gen.go#L3410: 			return fmt.Errorf("unable to decode pageBlockEmbedPost#f259a80b: field author: %w", err)
		tl_page_block_gen.go#L3417: 			return fmt.Errorf("unable to decode pageBlockEmbedPost#f259a80b: field date: %w", err)
		tl_page_block_gen.go#L3424: 			return fmt.Errorf("unable to decode pageBlockEmbedPost#f259a80b: field blocks: %w", err)
		tl_page_block_gen.go#L3433: 				return fmt.Errorf("unable to decode pageBlockEmbedPost#f259a80b: field blocks: %w", err)
		tl_page_block_gen.go#L3440: 			return fmt.Errorf("unable to decode pageBlockEmbedPost#f259a80b: field caption: %w", err)
		tl_page_block_gen.go#L3604: 		return fmt.Errorf("can't encode pageBlockCollage#65a0fa4d as nil")
		tl_page_block_gen.go#L3613: 		return fmt.Errorf("can't encode pageBlockCollage#65a0fa4d as nil")
		tl_page_block_gen.go#L3618: 			return fmt.Errorf("unable to encode pageBlockCollage#65a0fa4d: field items element with index %d is nil", idx)
		tl_page_block_gen.go#L3621: 			return fmt.Errorf("unable to encode pageBlockCollage#65a0fa4d: field items element with index %d: %w", idx, err)
		tl_page_block_gen.go#L3625: 		return fmt.Errorf("unable to encode pageBlockCollage#65a0fa4d: field caption: %w", err)
		tl_page_block_gen.go#L3633: 		return fmt.Errorf("can't decode pageBlockCollage#65a0fa4d to nil")
		tl_page_block_gen.go#L3636: 		return fmt.Errorf("unable to decode pageBlockCollage#65a0fa4d: %w", err)
		tl_page_block_gen.go#L3644: 		return fmt.Errorf("can't decode pageBlockCollage#65a0fa4d to nil")
		tl_page_block_gen.go#L3649: 			return fmt.Errorf("unable to decode pageBlockCollage#65a0fa4d: field items: %w", err)
		tl_page_block_gen.go#L3658: 				return fmt.Errorf("unable to decode pageBlockCollage#65a0fa4d: field items: %w", err)
		tl_page_block_gen.go#L3665: 			return fmt.Errorf("unable to decode pageBlockCollage#65a0fa4d: field caption: %w", err)
		tl_page_block_gen.go#L3789: 		return fmt.Errorf("can't encode pageBlockSlideshow#31f9590 as nil")
		tl_page_block_gen.go#L3798: 		return fmt.Errorf("can't encode pageBlockSlideshow#31f9590 as nil")
		tl_page_block_gen.go#L3803: 			return fmt.Errorf("unable to encode pageBlockSlideshow#31f9590: field items element with index %d is nil", idx)
		tl_page_block_gen.go#L3806: 			return fmt.Errorf("unable to encode pageBlockSlideshow#31f9590: field items element with index %d: %w", idx, err)
		tl_page_block_gen.go#L3810: 		return fmt.Errorf("unable to encode pageBlockSlideshow#31f9590: field caption: %w", err)
		tl_page_block_gen.go#L3818: 		return fmt.Errorf("can't decode pageBlockSlideshow#31f9590 to nil")
		tl_page_block_gen.go#L3821: 		return fmt.Errorf("unable to decode pageBlockSlideshow#31f9590: %w", err)
		tl_page_block_gen.go#L3829: 		return fmt.Errorf("can't decode pageBlockSlideshow#31f9590 to nil")
		tl_page_block_gen.go#L3834: 			return fmt.Errorf("unable to decode pageBlockSlideshow#31f9590: field items: %w", err)
		tl_page_block_gen.go#L3843: 				return fmt.Errorf("unable to decode pageBlockSlideshow#31f9590: field items: %w", err)
		tl_page_block_gen.go#L3850: 			return fmt.Errorf("unable to decode pageBlockSlideshow#31f9590: field caption: %w", err)
		tl_page_block_gen.go#L3963: 		return fmt.Errorf("can't encode pageBlockChannel#ef1751b5 as nil")
		tl_page_block_gen.go#L3972: 		return fmt.Errorf("can't encode pageBlockChannel#ef1751b5 as nil")
		tl_page_block_gen.go#L3975: 		return fmt.Errorf("unable to encode pageBlockChannel#ef1751b5: field channel is nil")
		tl_page_block_gen.go#L3978: 		return fmt.Errorf("unable to encode pageBlockChannel#ef1751b5: field channel: %w", err)
		tl_page_block_gen.go#L3986: 		return fmt.Errorf("can't decode pageBlockChannel#ef1751b5 to nil")
		tl_page_block_gen.go#L3989: 		return fmt.Errorf("unable to decode pageBlockChannel#ef1751b5: %w", err)
		tl_page_block_gen.go#L3997: 		return fmt.Errorf("can't decode pageBlockChannel#ef1751b5 to nil")
		tl_page_block_gen.go#L4002: 			return fmt.Errorf("unable to decode pageBlockChannel#ef1751b5: field channel: %w", err)
		tl_page_block_gen.go#L4117: 		return fmt.Errorf("can't encode pageBlockAudio#804361ea as nil")
		tl_page_block_gen.go#L4126: 		return fmt.Errorf("can't encode pageBlockAudio#804361ea as nil")
		tl_page_block_gen.go#L4130: 		return fmt.Errorf("unable to encode pageBlockAudio#804361ea: field caption: %w", err)
		tl_page_block_gen.go#L4138: 		return fmt.Errorf("can't decode pageBlockAudio#804361ea to nil")
		tl_page_block_gen.go#L4141: 		return fmt.Errorf("unable to decode pageBlockAudio#804361ea: %w", err)
		tl_page_block_gen.go#L4149: 		return fmt.Errorf("can't decode pageBlockAudio#804361ea to nil")
		tl_page_block_gen.go#L4154: 			return fmt.Errorf("unable to decode pageBlockAudio#804361ea: field audio_id: %w", err)
		tl_page_block_gen.go#L4160: 			return fmt.Errorf("unable to decode pageBlockAudio#804361ea: field caption: %w", err)
		tl_page_block_gen.go#L4268: 		return fmt.Errorf("can't encode pageBlockKicker#1e148390 as nil")
		tl_page_block_gen.go#L4277: 		return fmt.Errorf("can't encode pageBlockKicker#1e148390 as nil")
		tl_page_block_gen.go#L4280: 		return fmt.Errorf("unable to encode pageBlockKicker#1e148390: field text is nil")
		tl_page_block_gen.go#L4283: 		return fmt.Errorf("unable to encode pageBlockKicker#1e148390: field text: %w", err)
		tl_page_block_gen.go#L4291: 		return fmt.Errorf("can't decode pageBlockKicker#1e148390 to nil")
		tl_page_block_gen.go#L4294: 		return fmt.Errorf("unable to decode pageBlockKicker#1e148390: %w", err)
		tl_page_block_gen.go#L4302: 		return fmt.Errorf("can't decode pageBlockKicker#1e148390 to nil")
		tl_page_block_gen.go#L4307: 			return fmt.Errorf("unable to decode pageBlockKicker#1e148390: field text: %w", err)
		tl_page_block_gen.go#L4461: 		return fmt.Errorf("can't encode pageBlockTable#bf4dea82 as nil")
		tl_page_block_gen.go#L4470: 		return fmt.Errorf("can't encode pageBlockTable#bf4dea82 as nil")
		tl_page_block_gen.go#L4474: 		return fmt.Errorf("unable to encode pageBlockTable#bf4dea82: field flags: %w", err)
		tl_page_block_gen.go#L4477: 		return fmt.Errorf("unable to encode pageBlockTable#bf4dea82: field title is nil")
		tl_page_block_gen.go#L4480: 		return fmt.Errorf("unable to encode pageBlockTable#bf4dea82: field title: %w", err)
		tl_page_block_gen.go#L4485: 			return fmt.Errorf("unable to encode pageBlockTable#bf4dea82: field rows element with index %d: %w", idx, err)
		tl_page_block_gen.go#L4494: 		return fmt.Errorf("can't decode pageBlockTable#bf4dea82 to nil")
		tl_page_block_gen.go#L4497: 		return fmt.Errorf("unable to decode pageBlockTable#bf4dea82: %w", err)
		tl_page_block_gen.go#L4505: 		return fmt.Errorf("can't decode pageBlockTable#bf4dea82 to nil")
		tl_page_block_gen.go#L4509: 			return fmt.Errorf("unable to decode pageBlockTable#bf4dea82: field flags: %w", err)
		tl_page_block_gen.go#L4517: 			return fmt.Errorf("unable to decode pageBlockTable#bf4dea82: field title: %w", err)
		tl_page_block_gen.go#L4524: 			return fmt.Errorf("unable to decode pageBlockTable#bf4dea82: field rows: %w", err)
		tl_page_block_gen.go#L4533: 				return fmt.Errorf("unable to decode pageBlockTable#bf4dea82: field rows: %w", err)
		tl_page_block_gen.go#L4681: 		return fmt.Errorf("can't encode pageBlockOrderedList#9a8ae1e1 as nil")
		tl_page_block_gen.go#L4690: 		return fmt.Errorf("can't encode pageBlockOrderedList#9a8ae1e1 as nil")
		tl_page_block_gen.go#L4695: 			return fmt.Errorf("unable to encode pageBlockOrderedList#9a8ae1e1: field items element with index %d is nil", idx)
		tl_page_block_gen.go#L4698: 			return fmt.Errorf("unable to encode pageBlockOrderedList#9a8ae1e1: field items element with index %d: %w", idx, err)
		tl_page_block_gen.go#L4707: 		return fmt.Errorf("can't decode pageBlockOrderedList#9a8ae1e1 to nil")
		tl_page_block_gen.go#L4710: 		return fmt.Errorf("unable to decode pageBlockOrderedList#9a8ae1e1: %w", err)
		tl_page_block_gen.go#L4718: 		return fmt.Errorf("can't decode pageBlockOrderedList#9a8ae1e1 to nil")
		tl_page_block_gen.go#L4723: 			return fmt.Errorf("unable to decode pageBlockOrderedList#9a8ae1e1: field items: %w", err)
		tl_page_block_gen.go#L4732: 				return fmt.Errorf("unable to decode pageBlockOrderedList#9a8ae1e1: field items: %w", err)
		tl_page_block_gen.go#L4877: 		return fmt.Errorf("can't encode pageBlockDetails#76768bed as nil")
		tl_page_block_gen.go#L4886: 		return fmt.Errorf("can't encode pageBlockDetails#76768bed as nil")
		tl_page_block_gen.go#L4890: 		return fmt.Errorf("unable to encode pageBlockDetails#76768bed: field flags: %w", err)
		tl_page_block_gen.go#L4895: 			return fmt.Errorf("unable to encode pageBlockDetails#76768bed: field blocks element with index %d is nil", idx)
		tl_page_block_gen.go#L4898: 			return fmt.Errorf("unable to encode pageBlockDetails#76768bed: field blocks element with index %d: %w", idx, err)
		tl_page_block_gen.go#L4902: 		return fmt.Errorf("unable to encode pageBlockDetails#76768bed: field title is nil")
		tl_page_block_gen.go#L4905: 		return fmt.Errorf("unable to encode pageBlockDetails#76768bed: field title: %w", err)
		tl_page_block_gen.go#L4913: 		return fmt.Errorf("can't decode pageBlockDetails#76768bed to nil")
		tl_page_block_gen.go#L4916: 		return fmt.Errorf("unable to decode pageBlockDetails#76768bed: %w", err)
		tl_page_block_gen.go#L4924: 		return fmt.Errorf("can't decode pageBlockDetails#76768bed to nil")
		tl_page_block_gen.go#L4928: 			return fmt.Errorf("unable to decode pageBlockDetails#76768bed: field flags: %w", err)
		tl_page_block_gen.go#L4935: 			return fmt.Errorf("unable to decode pageBlockDetails#76768bed: field blocks: %w", err)
		tl_page_block_gen.go#L4944: 				return fmt.Errorf("unable to decode pageBlockDetails#76768bed: field blocks: %w", err)
		tl_page_block_gen.go#L4952: 			return fmt.Errorf("unable to decode pageBlockDetails#76768bed: field title: %w", err)
		tl_page_block_gen.go#L5096: 		return fmt.Errorf("can't encode pageBlockRelatedArticles#16115a96 as nil")
		tl_page_block_gen.go#L5105: 		return fmt.Errorf("can't encode pageBlockRelatedArticles#16115a96 as nil")
		tl_page_block_gen.go#L5108: 		return fmt.Errorf("unable to encode pageBlockRelatedArticles#16115a96: field title is nil")
		tl_page_block_gen.go#L5111: 		return fmt.Errorf("unable to encode pageBlockRelatedArticles#16115a96: field title: %w", err)
		tl_page_block_gen.go#L5116: 			return fmt.Errorf("unable to encode pageBlockRelatedArticles#16115a96: field articles element with index %d: %w", idx, err)
		tl_page_block_gen.go#L5125: 		return fmt.Errorf("can't decode pageBlockRelatedArticles#16115a96 to nil")
		tl_page_block_gen.go#L5128: 		return fmt.Errorf("unable to decode pageBlockRelatedArticles#16115a96: %w", err)
		tl_page_block_gen.go#L5136: 		return fmt.Errorf("can't decode pageBlockRelatedArticles#16115a96 to nil")
		tl_page_block_gen.go#L5141: 			return fmt.Errorf("unable to decode pageBlockRelatedArticles#16115a96: field title: %w", err)
		tl_page_block_gen.go#L5148: 			return fmt.Errorf("unable to decode pageBlockRelatedArticles#16115a96: field articles: %w", err)
		tl_page_block_gen.go#L5157: 				return fmt.Errorf("unable to decode pageBlockRelatedArticles#16115a96: field articles: %w", err)
		tl_page_block_gen.go#L5311: 		return fmt.Errorf("can't encode pageBlockMap#a44f3ef6 as nil")
		tl_page_block_gen.go#L5320: 		return fmt.Errorf("can't encode pageBlockMap#a44f3ef6 as nil")
		tl_page_block_gen.go#L5323: 		return fmt.Errorf("unable to encode pageBlockMap#a44f3ef6: field geo is nil")
		tl_page_block_gen.go#L5326: 		return fmt.Errorf("unable to encode pageBlockMap#a44f3ef6: field geo: %w", err)
		tl_page_block_gen.go#L5332: 		return fmt.Errorf("unable to encode pageBlockMap#a44f3ef6: field caption: %w", err)
		tl_page_block_gen.go#L5340: 		return fmt.Errorf("can't decode pageBlockMap#a44f3ef6 to nil")
		tl_page_block_gen.go#L5343: 		return fmt.Errorf("unable to decode pageBlockMap#a44f3ef6: %w", err)
		tl_page_block_gen.go#L5351: 		return fmt.Errorf("can't decode pageBlockMap#a44f3ef6 to nil")
		tl_page_block_gen.go#L5356: 			return fmt.Errorf("unable to decode pageBlockMap#a44f3ef6: field geo: %w", err)
		tl_page_block_gen.go#L5363: 			return fmt.Errorf("unable to decode pageBlockMap#a44f3ef6: field zoom: %w", err)
		tl_page_block_gen.go#L5370: 			return fmt.Errorf("unable to decode pageBlockMap#a44f3ef6: field w: %w", err)
		tl_page_block_gen.go#L5377: 			return fmt.Errorf("unable to decode pageBlockMap#a44f3ef6: field h: %w", err)
		tl_page_block_gen.go#L5383: 			return fmt.Errorf("unable to decode pageBlockMap#a44f3ef6: field caption: %w", err)
		tl_page_block_gen.go#L5504: 			return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
		tl_page_block_gen.go#L5511: 			return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
		tl_page_block_gen.go#L5518: 			return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
		tl_page_block_gen.go#L5525: 			return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
		tl_page_block_gen.go#L5532: 			return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
		tl_page_block_gen.go#L5539: 			return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
		tl_page_block_gen.go#L5546: 			return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
		tl_page_block_gen.go#L5553: 			return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
		tl_page_block_gen.go#L5560: 			return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
		tl_page_block_gen.go#L5567: 			return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
		tl_page_block_gen.go#L5574: 			return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
		tl_page_block_gen.go#L5581: 			return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
		tl_page_block_gen.go#L5588: 			return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
		tl_page_block_gen.go#L5595: 			return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
		tl_page_block_gen.go#L5602: 			return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
		tl_page_block_gen.go#L5609: 			return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
		tl_page_block_gen.go#L5616: 			return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
		tl_page_block_gen.go#L5623: 			return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
		tl_page_block_gen.go#L5630: 			return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
		tl_page_block_gen.go#L5637: 			return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
		tl_page_block_gen.go#L5644: 			return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
		tl_page_block_gen.go#L5651: 			return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
		tl_page_block_gen.go#L5658: 			return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
		tl_page_block_gen.go#L5665: 			return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
		tl_page_block_gen.go#L5672: 			return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
		tl_page_block_gen.go#L5679: 			return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
		tl_page_block_gen.go#L5686: 			return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
		tl_page_block_gen.go#L5693: 			return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
		tl_page_block_gen.go#L5700: 			return nil, fmt.Errorf("unable to decode PageBlockClass: %w", err)
		tl_page_block_gen.go#L5704: 		return nil, fmt.Errorf("unable to decode PageBlockClass: %w", bin.NewUnexpectedID(id))
		tl_page_block_gen.go#L5716: 		return fmt.Errorf("unable to decode PageBlockBox to nil")
		tl_page_block_gen.go#L5720: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_page_block_gen.go#L5729: 		return fmt.Errorf("unable to encode PageBlockClass as nil")
		tl_page_caption_gen.go#L126: 		return fmt.Errorf("can't encode pageCaption#6f747657 as nil")
		tl_page_caption_gen.go#L135: 		return fmt.Errorf("can't encode pageCaption#6f747657 as nil")
		tl_page_caption_gen.go#L138: 		return fmt.Errorf("unable to encode pageCaption#6f747657: field text is nil")
		tl_page_caption_gen.go#L141: 		return fmt.Errorf("unable to encode pageCaption#6f747657: field text: %w", err)
		tl_page_caption_gen.go#L144: 		return fmt.Errorf("unable to encode pageCaption#6f747657: field credit is nil")
		tl_page_caption_gen.go#L147: 		return fmt.Errorf("unable to encode pageCaption#6f747657: field credit: %w", err)
		tl_page_caption_gen.go#L155: 		return fmt.Errorf("can't decode pageCaption#6f747657 to nil")
		tl_page_caption_gen.go#L158: 		return fmt.Errorf("unable to decode pageCaption#6f747657: %w", err)
		tl_page_caption_gen.go#L166: 		return fmt.Errorf("can't decode pageCaption#6f747657 to nil")
		tl_page_caption_gen.go#L171: 			return fmt.Errorf("unable to decode pageCaption#6f747657: field text: %w", err)
		tl_page_caption_gen.go#L178: 			return fmt.Errorf("unable to decode pageCaption#6f747657: field credit: %w", err)
		tl_page_gen.go#L235: 		return fmt.Errorf("can't encode page#98657f0d as nil")
		tl_page_gen.go#L244: 		return fmt.Errorf("can't encode page#98657f0d as nil")
		tl_page_gen.go#L248: 		return fmt.Errorf("unable to encode page#98657f0d: field flags: %w", err)
		tl_page_gen.go#L254: 			return fmt.Errorf("unable to encode page#98657f0d: field blocks element with index %d is nil", idx)
		tl_page_gen.go#L257: 			return fmt.Errorf("unable to encode page#98657f0d: field blocks element with index %d: %w", idx, err)
		tl_page_gen.go#L263: 			return fmt.Errorf("unable to encode page#98657f0d: field photos element with index %d is nil", idx)
		tl_page_gen.go#L266: 			return fmt.Errorf("unable to encode page#98657f0d: field photos element with index %d: %w", idx, err)
		tl_page_gen.go#L272: 			return fmt.Errorf("unable to encode page#98657f0d: field documents element with index %d is nil", idx)
		tl_page_gen.go#L275: 			return fmt.Errorf("unable to encode page#98657f0d: field documents element with index %d: %w", idx, err)
		tl_page_gen.go#L287: 		return fmt.Errorf("can't decode page#98657f0d to nil")
		tl_page_gen.go#L290: 		return fmt.Errorf("unable to decode page#98657f0d: %w", err)
		tl_page_gen.go#L298: 		return fmt.Errorf("can't decode page#98657f0d to nil")
		tl_page_gen.go#L302: 			return fmt.Errorf("unable to decode page#98657f0d: field flags: %w", err)
		tl_page_gen.go#L311: 			return fmt.Errorf("unable to decode page#98657f0d: field url: %w", err)
		tl_page_gen.go#L318: 			return fmt.Errorf("unable to decode page#98657f0d: field blocks: %w", err)
		tl_page_gen.go#L327: 				return fmt.Errorf("unable to decode page#98657f0d: field blocks: %w", err)
		tl_page_gen.go#L335: 			return fmt.Errorf("unable to decode page#98657f0d: field photos: %w", err)
		tl_page_gen.go#L344: 				return fmt.Errorf("unable to decode page#98657f0d: field photos: %w", err)
		tl_page_gen.go#L352: 			return fmt.Errorf("unable to decode page#98657f0d: field documents: %w", err)
		tl_page_gen.go#L361: 				return fmt.Errorf("unable to decode page#98657f0d: field documents: %w", err)
		tl_page_gen.go#L369: 			return fmt.Errorf("unable to decode page#98657f0d: field views: %w", err)
		tl_page_list_item_gen.go#L120: 		return fmt.Errorf("can't encode pageListItemText#b92fb6cd as nil")
		tl_page_list_item_gen.go#L129: 		return fmt.Errorf("can't encode pageListItemText#b92fb6cd as nil")
		tl_page_list_item_gen.go#L132: 		return fmt.Errorf("unable to encode pageListItemText#b92fb6cd: field text is nil")
		tl_page_list_item_gen.go#L135: 		return fmt.Errorf("unable to encode pageListItemText#b92fb6cd: field text: %w", err)
		tl_page_list_item_gen.go#L143: 		return fmt.Errorf("can't decode pageListItemText#b92fb6cd to nil")
		tl_page_list_item_gen.go#L146: 		return fmt.Errorf("unable to decode pageListItemText#b92fb6cd: %w", err)
		tl_page_list_item_gen.go#L154: 		return fmt.Errorf("can't decode pageListItemText#b92fb6cd to nil")
		tl_page_list_item_gen.go#L159: 			return fmt.Errorf("unable to decode pageListItemText#b92fb6cd: field text: %w", err)
		tl_page_list_item_gen.go#L260: 		return fmt.Errorf("can't encode pageListItemBlocks#25e073fc as nil")
		tl_page_list_item_gen.go#L269: 		return fmt.Errorf("can't encode pageListItemBlocks#25e073fc as nil")
		tl_page_list_item_gen.go#L274: 			return fmt.Errorf("unable to encode pageListItemBlocks#25e073fc: field blocks element with index %d is nil", idx)
		tl_page_list_item_gen.go#L277: 			return fmt.Errorf("unable to encode pageListItemBlocks#25e073fc: field blocks element with index %d: %w", idx, err)
		tl_page_list_item_gen.go#L286: 		return fmt.Errorf("can't decode pageListItemBlocks#25e073fc to nil")
		tl_page_list_item_gen.go#L289: 		return fmt.Errorf("unable to decode pageListItemBlocks#25e073fc: %w", err)
		tl_page_list_item_gen.go#L297: 		return fmt.Errorf("can't decode pageListItemBlocks#25e073fc to nil")
		tl_page_list_item_gen.go#L302: 			return fmt.Errorf("unable to decode pageListItemBlocks#25e073fc: field blocks: %w", err)
		tl_page_list_item_gen.go#L311: 				return fmt.Errorf("unable to decode pageListItemBlocks#25e073fc: field blocks: %w", err)
		tl_page_list_item_gen.go#L380: 			return nil, fmt.Errorf("unable to decode PageListItemClass: %w", err)
		tl_page_list_item_gen.go#L387: 			return nil, fmt.Errorf("unable to decode PageListItemClass: %w", err)
		tl_page_list_item_gen.go#L391: 		return nil, fmt.Errorf("unable to decode PageListItemClass: %w", bin.NewUnexpectedID(id))
		tl_page_list_item_gen.go#L403: 		return fmt.Errorf("unable to decode PageListItemBox to nil")
		tl_page_list_item_gen.go#L407: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_page_list_item_gen.go#L416: 		return fmt.Errorf("unable to encode PageListItemClass as nil")
		tl_page_list_ordered_item_gen.go#L131: 		return fmt.Errorf("can't encode pageListOrderedItemText#5e068047 as nil")
		tl_page_list_ordered_item_gen.go#L140: 		return fmt.Errorf("can't encode pageListOrderedItemText#5e068047 as nil")
		tl_page_list_ordered_item_gen.go#L144: 		return fmt.Errorf("unable to encode pageListOrderedItemText#5e068047: field text is nil")
		tl_page_list_ordered_item_gen.go#L147: 		return fmt.Errorf("unable to encode pageListOrderedItemText#5e068047: field text: %w", err)
		tl_page_list_ordered_item_gen.go#L155: 		return fmt.Errorf("can't decode pageListOrderedItemText#5e068047 to nil")
		tl_page_list_ordered_item_gen.go#L158: 		return fmt.Errorf("unable to decode pageListOrderedItemText#5e068047: %w", err)
		tl_page_list_ordered_item_gen.go#L166: 		return fmt.Errorf("can't decode pageListOrderedItemText#5e068047 to nil")
		tl_page_list_ordered_item_gen.go#L171: 			return fmt.Errorf("unable to decode pageListOrderedItemText#5e068047: field num: %w", err)
		tl_page_list_ordered_item_gen.go#L178: 			return fmt.Errorf("unable to decode pageListOrderedItemText#5e068047: field text: %w", err)
		tl_page_list_ordered_item_gen.go#L301: 		return fmt.Errorf("can't encode pageListOrderedItemBlocks#98dd8936 as nil")
		tl_page_list_ordered_item_gen.go#L310: 		return fmt.Errorf("can't encode pageListOrderedItemBlocks#98dd8936 as nil")
		tl_page_list_ordered_item_gen.go#L316: 			return fmt.Errorf("unable to encode pageListOrderedItemBlocks#98dd8936: field blocks element with index %d is nil", idx)
		tl_page_list_ordered_item_gen.go#L319: 			return fmt.Errorf("unable to encode pageListOrderedItemBlocks#98dd8936: field blocks element with index %d: %w", idx, err)
		tl_page_list_ordered_item_gen.go#L328: 		return fmt.Errorf("can't decode pageListOrderedItemBlocks#98dd8936 to nil")
		tl_page_list_ordered_item_gen.go#L331: 		return fmt.Errorf("unable to decode pageListOrderedItemBlocks#98dd8936: %w", err)
		tl_page_list_ordered_item_gen.go#L339: 		return fmt.Errorf("can't decode pageListOrderedItemBlocks#98dd8936 to nil")
		tl_page_list_ordered_item_gen.go#L344: 			return fmt.Errorf("unable to decode pageListOrderedItemBlocks#98dd8936: field num: %w", err)
		tl_page_list_ordered_item_gen.go#L351: 			return fmt.Errorf("unable to decode pageListOrderedItemBlocks#98dd8936: field blocks: %w", err)
		tl_page_list_ordered_item_gen.go#L360: 				return fmt.Errorf("unable to decode pageListOrderedItemBlocks#98dd8936: field blocks: %w", err)
		tl_page_list_ordered_item_gen.go#L440: 			return nil, fmt.Errorf("unable to decode PageListOrderedItemClass: %w", err)
		tl_page_list_ordered_item_gen.go#L447: 			return nil, fmt.Errorf("unable to decode PageListOrderedItemClass: %w", err)
		tl_page_list_ordered_item_gen.go#L451: 		return nil, fmt.Errorf("unable to decode PageListOrderedItemClass: %w", bin.NewUnexpectedID(id))
		tl_page_list_ordered_item_gen.go#L463: 		return fmt.Errorf("unable to decode PageListOrderedItemBox to nil")
		tl_page_list_ordered_item_gen.go#L467: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_page_list_ordered_item_gen.go#L476: 		return fmt.Errorf("unable to encode PageListOrderedItemClass as nil")
		tl_page_related_article_gen.go#L238: 		return fmt.Errorf("can't encode pageRelatedArticle#b390dc08 as nil")
		tl_page_related_article_gen.go#L247: 		return fmt.Errorf("can't encode pageRelatedArticle#b390dc08 as nil")
		tl_page_related_article_gen.go#L251: 		return fmt.Errorf("unable to encode pageRelatedArticle#b390dc08: field flags: %w", err)
		tl_page_related_article_gen.go#L276: 		return fmt.Errorf("can't decode pageRelatedArticle#b390dc08 to nil")
		tl_page_related_article_gen.go#L279: 		return fmt.Errorf("unable to decode pageRelatedArticle#b390dc08: %w", err)
		tl_page_related_article_gen.go#L287: 		return fmt.Errorf("can't decode pageRelatedArticle#b390dc08 to nil")
		tl_page_related_article_gen.go#L291: 			return fmt.Errorf("unable to decode pageRelatedArticle#b390dc08: field flags: %w", err)
		tl_page_related_article_gen.go#L297: 			return fmt.Errorf("unable to decode pageRelatedArticle#b390dc08: field url: %w", err)
		tl_page_related_article_gen.go#L304: 			return fmt.Errorf("unable to decode pageRelatedArticle#b390dc08: field webpage_id: %w", err)
		tl_page_related_article_gen.go#L311: 			return fmt.Errorf("unable to decode pageRelatedArticle#b390dc08: field title: %w", err)
		tl_page_related_article_gen.go#L318: 			return fmt.Errorf("unable to decode pageRelatedArticle#b390dc08: field description: %w", err)
		tl_page_related_article_gen.go#L325: 			return fmt.Errorf("unable to decode pageRelatedArticle#b390dc08: field photo_id: %w", err)
		tl_page_related_article_gen.go#L332: 			return fmt.Errorf("unable to decode pageRelatedArticle#b390dc08: field author: %w", err)
		tl_page_related_article_gen.go#L339: 			return fmt.Errorf("unable to decode pageRelatedArticle#b390dc08: field published_date: %w", err)
		tl_page_table_cell_gen.go#L251: 		return fmt.Errorf("can't encode pageTableCell#34566b6a as nil")
		tl_page_table_cell_gen.go#L260: 		return fmt.Errorf("can't encode pageTableCell#34566b6a as nil")
		tl_page_table_cell_gen.go#L264: 		return fmt.Errorf("unable to encode pageTableCell#34566b6a: field flags: %w", err)
		tl_page_table_cell_gen.go#L268: 			return fmt.Errorf("unable to encode pageTableCell#34566b6a: field text is nil")
		tl_page_table_cell_gen.go#L271: 			return fmt.Errorf("unable to encode pageTableCell#34566b6a: field text: %w", err)
		tl_page_table_cell_gen.go#L286: 		return fmt.Errorf("can't decode pageTableCell#34566b6a to nil")
		tl_page_table_cell_gen.go#L289: 		return fmt.Errorf("unable to decode pageTableCell#34566b6a: %w", err)
		tl_page_table_cell_gen.go#L297: 		return fmt.Errorf("can't decode pageTableCell#34566b6a to nil")
		tl_page_table_cell_gen.go#L301: 			return fmt.Errorf("unable to decode pageTableCell#34566b6a: field flags: %w", err)
		tl_page_table_cell_gen.go#L312: 			return fmt.Errorf("unable to decode pageTableCell#34566b6a: field text: %w", err)
		tl_page_table_cell_gen.go#L319: 			return fmt.Errorf("unable to decode pageTableCell#34566b6a: field colspan: %w", err)
		tl_page_table_cell_gen.go#L326: 			return fmt.Errorf("unable to decode pageTableCell#34566b6a: field rowspan: %w", err)
		tl_page_table_row_gen.go#L115: 		return fmt.Errorf("can't encode pageTableRow#e0c0c5e5 as nil")
		tl_page_table_row_gen.go#L124: 		return fmt.Errorf("can't encode pageTableRow#e0c0c5e5 as nil")
		tl_page_table_row_gen.go#L129: 			return fmt.Errorf("unable to encode pageTableRow#e0c0c5e5: field cells element with index %d: %w", idx, err)
		tl_page_table_row_gen.go#L138: 		return fmt.Errorf("can't decode pageTableRow#e0c0c5e5 to nil")
		tl_page_table_row_gen.go#L141: 		return fmt.Errorf("unable to decode pageTableRow#e0c0c5e5: %w", err)
		tl_page_table_row_gen.go#L149: 		return fmt.Errorf("can't decode pageTableRow#e0c0c5e5 to nil")
		tl_page_table_row_gen.go#L154: 			return fmt.Errorf("unable to decode pageTableRow#e0c0c5e5: field cells: %w", err)
		tl_page_table_row_gen.go#L163: 				return fmt.Errorf("unable to decode pageTableRow#e0c0c5e5: field cells: %w", err)
		tl_password_kdf_algo_gen.go#L104: 		return fmt.Errorf("can't encode passwordKdfAlgoUnknown#d45ab096 as nil")
		tl_password_kdf_algo_gen.go#L113: 		return fmt.Errorf("can't encode passwordKdfAlgoUnknown#d45ab096 as nil")
		tl_password_kdf_algo_gen.go#L121: 		return fmt.Errorf("can't decode passwordKdfAlgoUnknown#d45ab096 to nil")
		tl_password_kdf_algo_gen.go#L124: 		return fmt.Errorf("unable to decode passwordKdfAlgoUnknown#d45ab096: %w", err)
		tl_password_kdf_algo_gen.go#L132: 		return fmt.Errorf("can't decode passwordKdfAlgoUnknown#d45ab096 to nil")
		tl_password_kdf_algo_gen.go#L273: 		return fmt.Errorf("can't encode passwordKdfAlgoSHA256SHA256PBKDF2HMACSHA512iter100000SHA256ModPow#3a912d4a as nil")
		tl_password_kdf_algo_gen.go#L282: 		return fmt.Errorf("can't encode passwordKdfAlgoSHA256SHA256PBKDF2HMACSHA512iter100000SHA256ModPow#3a912d4a as nil")
		tl_password_kdf_algo_gen.go#L294: 		return fmt.Errorf("can't decode passwordKdfAlgoSHA256SHA256PBKDF2HMACSHA512iter100000SHA256ModPow#3a912d4a to nil")
		tl_password_kdf_algo_gen.go#L297: 		return fmt.Errorf("unable to decode passwordKdfAlgoSHA256SHA256PBKDF2HMACSHA512iter100000SHA256ModPow#3a912d4a: %w", err)
		tl_password_kdf_algo_gen.go#L305: 		return fmt.Errorf("can't decode passwordKdfAlgoSHA256SHA256PBKDF2HMACSHA512iter100000SHA256ModPow#3a912d4a to nil")
		tl_password_kdf_algo_gen.go#L310: 			return fmt.Errorf("unable to decode passwordKdfAlgoSHA256SHA256PBKDF2HMACSHA512iter100000SHA256ModPow#3a912d4a: field salt1: %w", err)
		tl_password_kdf_algo_gen.go#L317: 			return fmt.Errorf("unable to decode passwordKdfAlgoSHA256SHA256PBKDF2HMACSHA512iter100000SHA256ModPow#3a912d4a: field salt2: %w", err)
		tl_password_kdf_algo_gen.go#L324: 			return fmt.Errorf("unable to decode passwordKdfAlgoSHA256SHA256PBKDF2HMACSHA512iter100000SHA256ModPow#3a912d4a: field g: %w", err)
		tl_password_kdf_algo_gen.go#L331: 			return fmt.Errorf("unable to decode passwordKdfAlgoSHA256SHA256PBKDF2HMACSHA512iter100000SHA256ModPow#3a912d4a: field p: %w", err)
		tl_password_kdf_algo_gen.go#L418: 			return nil, fmt.Errorf("unable to decode PasswordKdfAlgoClass: %w", err)
		tl_password_kdf_algo_gen.go#L425: 			return nil, fmt.Errorf("unable to decode PasswordKdfAlgoClass: %w", err)
		tl_password_kdf_algo_gen.go#L429: 		return nil, fmt.Errorf("unable to decode PasswordKdfAlgoClass: %w", bin.NewUnexpectedID(id))
		tl_password_kdf_algo_gen.go#L441: 		return fmt.Errorf("unable to decode PasswordKdfAlgoBox to nil")
		tl_password_kdf_algo_gen.go#L445: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_password_kdf_algo_gen.go#L454: 		return fmt.Errorf("unable to encode PasswordKdfAlgoClass as nil")
		tl_payment_charge_gen.go#L126: 		return fmt.Errorf("can't encode paymentCharge#ea02c27e as nil")
		tl_payment_charge_gen.go#L135: 		return fmt.Errorf("can't encode paymentCharge#ea02c27e as nil")
		tl_payment_charge_gen.go#L145: 		return fmt.Errorf("can't decode paymentCharge#ea02c27e to nil")
		tl_payment_charge_gen.go#L148: 		return fmt.Errorf("unable to decode paymentCharge#ea02c27e: %w", err)
		tl_payment_charge_gen.go#L156: 		return fmt.Errorf("can't decode paymentCharge#ea02c27e to nil")
		tl_payment_charge_gen.go#L161: 			return fmt.Errorf("unable to decode paymentCharge#ea02c27e: field id: %w", err)
		tl_payment_charge_gen.go#L168: 			return fmt.Errorf("unable to decode paymentCharge#ea02c27e: field provider_charge_id: %w", err)
		tl_payment_form_method_gen.go#L126: 		return fmt.Errorf("can't encode paymentFormMethod#88f8f21b as nil")
		tl_payment_form_method_gen.go#L135: 		return fmt.Errorf("can't encode paymentFormMethod#88f8f21b as nil")
		tl_payment_form_method_gen.go#L145: 		return fmt.Errorf("can't decode paymentFormMethod#88f8f21b to nil")
		tl_payment_form_method_gen.go#L148: 		return fmt.Errorf("unable to decode paymentFormMethod#88f8f21b: %w", err)
		tl_payment_form_method_gen.go#L156: 		return fmt.Errorf("can't decode paymentFormMethod#88f8f21b to nil")
		tl_payment_form_method_gen.go#L161: 			return fmt.Errorf("unable to decode paymentFormMethod#88f8f21b: field url: %w", err)
		tl_payment_form_method_gen.go#L168: 			return fmt.Errorf("unable to decode paymentFormMethod#88f8f21b: field title: %w", err)
		tl_payment_requested_info_gen.go#L196: 		return fmt.Errorf("can't encode paymentRequestedInfo#909c3f94 as nil")
		tl_payment_requested_info_gen.go#L205: 		return fmt.Errorf("can't encode paymentRequestedInfo#909c3f94 as nil")
		tl_payment_requested_info_gen.go#L209: 		return fmt.Errorf("unable to encode paymentRequestedInfo#909c3f94: field flags: %w", err)
		tl_payment_requested_info_gen.go#L222: 			return fmt.Errorf("unable to encode paymentRequestedInfo#909c3f94: field shipping_address: %w", err)
		tl_payment_requested_info_gen.go#L231: 		return fmt.Errorf("can't decode paymentRequestedInfo#909c3f94 to nil")
		tl_payment_requested_info_gen.go#L234: 		return fmt.Errorf("unable to decode paymentRequestedInfo#909c3f94: %w", err)
		tl_payment_requested_info_gen.go#L242: 		return fmt.Errorf("can't decode paymentRequestedInfo#909c3f94 to nil")
		tl_payment_requested_info_gen.go#L246: 			return fmt.Errorf("unable to decode paymentRequestedInfo#909c3f94: field flags: %w", err)
		tl_payment_requested_info_gen.go#L252: 			return fmt.Errorf("unable to decode paymentRequestedInfo#909c3f94: field name: %w", err)
		tl_payment_requested_info_gen.go#L259: 			return fmt.Errorf("unable to decode paymentRequestedInfo#909c3f94: field phone: %w", err)
		tl_payment_requested_info_gen.go#L266: 			return fmt.Errorf("unable to decode paymentRequestedInfo#909c3f94: field email: %w", err)
		tl_payment_requested_info_gen.go#L272: 			return fmt.Errorf("unable to decode paymentRequestedInfo#909c3f94: field shipping_address: %w", err)
		tl_payment_saved_credentials_card_gen.go#L126: 		return fmt.Errorf("can't encode paymentSavedCredentialsCard#cdc27a1f as nil")
		tl_payment_saved_credentials_card_gen.go#L135: 		return fmt.Errorf("can't encode paymentSavedCredentialsCard#cdc27a1f as nil")
		tl_payment_saved_credentials_card_gen.go#L145: 		return fmt.Errorf("can't decode paymentSavedCredentialsCard#cdc27a1f to nil")
		tl_payment_saved_credentials_card_gen.go#L148: 		return fmt.Errorf("unable to decode paymentSavedCredentialsCard#cdc27a1f: %w", err)
		tl_payment_saved_credentials_card_gen.go#L156: 		return fmt.Errorf("can't decode paymentSavedCredentialsCard#cdc27a1f to nil")
		tl_payment_saved_credentials_card_gen.go#L161: 			return fmt.Errorf("unable to decode paymentSavedCredentialsCard#cdc27a1f: field id: %w", err)
		tl_payment_saved_credentials_card_gen.go#L168: 			return fmt.Errorf("unable to decode paymentSavedCredentialsCard#cdc27a1f: field title: %w", err)
		tl_payments_apply_gift_code_gen.go#L118: 		return fmt.Errorf("can't encode payments.applyGiftCode#f6e26854 as nil")
		tl_payments_apply_gift_code_gen.go#L127: 		return fmt.Errorf("can't encode payments.applyGiftCode#f6e26854 as nil")
		tl_payments_apply_gift_code_gen.go#L136: 		return fmt.Errorf("can't decode payments.applyGiftCode#f6e26854 to nil")
		tl_payments_apply_gift_code_gen.go#L139: 		return fmt.Errorf("unable to decode payments.applyGiftCode#f6e26854: %w", err)
		tl_payments_apply_gift_code_gen.go#L147: 		return fmt.Errorf("can't decode payments.applyGiftCode#f6e26854 to nil")
		tl_payments_apply_gift_code_gen.go#L152: 			return fmt.Errorf("unable to decode payments.applyGiftCode#f6e26854: field slug: %w", err)
		tl_payments_assign_app_store_transaction_gen.go#L127: 		return fmt.Errorf("can't encode payments.assignAppStoreTransaction#80ed747d as nil")
		tl_payments_assign_app_store_transaction_gen.go#L136: 		return fmt.Errorf("can't encode payments.assignAppStoreTransaction#80ed747d as nil")
		tl_payments_assign_app_store_transaction_gen.go#L140: 		return fmt.Errorf("unable to encode payments.assignAppStoreTransaction#80ed747d: field purpose is nil")
		tl_payments_assign_app_store_transaction_gen.go#L143: 		return fmt.Errorf("unable to encode payments.assignAppStoreTransaction#80ed747d: field purpose: %w", err)
		tl_payments_assign_app_store_transaction_gen.go#L151: 		return fmt.Errorf("can't decode payments.assignAppStoreTransaction#80ed747d to nil")
		tl_payments_assign_app_store_transaction_gen.go#L154: 		return fmt.Errorf("unable to decode payments.assignAppStoreTransaction#80ed747d: %w", err)
		tl_payments_assign_app_store_transaction_gen.go#L162: 		return fmt.Errorf("can't decode payments.assignAppStoreTransaction#80ed747d to nil")
		tl_payments_assign_app_store_transaction_gen.go#L167: 			return fmt.Errorf("unable to decode payments.assignAppStoreTransaction#80ed747d: field receipt: %w", err)
		tl_payments_assign_app_store_transaction_gen.go#L174: 			return fmt.Errorf("unable to decode payments.assignAppStoreTransaction#80ed747d: field purpose: %w", err)
		tl_payments_assign_play_market_transaction_gen.go#L127: 		return fmt.Errorf("can't encode payments.assignPlayMarketTransaction#dffd50d3 as nil")
		tl_payments_assign_play_market_transaction_gen.go#L136: 		return fmt.Errorf("can't encode payments.assignPlayMarketTransaction#dffd50d3 as nil")
		tl_payments_assign_play_market_transaction_gen.go#L139: 		return fmt.Errorf("unable to encode payments.assignPlayMarketTransaction#dffd50d3: field receipt: %w", err)
		tl_payments_assign_play_market_transaction_gen.go#L142: 		return fmt.Errorf("unable to encode payments.assignPlayMarketTransaction#dffd50d3: field purpose is nil")
		tl_payments_assign_play_market_transaction_gen.go#L145: 		return fmt.Errorf("unable to encode payments.assignPlayMarketTransaction#dffd50d3: field purpose: %w", err)
		tl_payments_assign_play_market_transaction_gen.go#L153: 		return fmt.Errorf("can't decode payments.assignPlayMarketTransaction#dffd50d3 to nil")
		tl_payments_assign_play_market_transaction_gen.go#L156: 		return fmt.Errorf("unable to decode payments.assignPlayMarketTransaction#dffd50d3: %w", err)
		tl_payments_assign_play_market_transaction_gen.go#L164: 		return fmt.Errorf("can't decode payments.assignPlayMarketTransaction#dffd50d3 to nil")
		tl_payments_assign_play_market_transaction_gen.go#L168: 			return fmt.Errorf("unable to decode payments.assignPlayMarketTransaction#dffd50d3: field receipt: %w", err)
		tl_payments_assign_play_market_transaction_gen.go#L174: 			return fmt.Errorf("unable to decode payments.assignPlayMarketTransaction#dffd50d3: field purpose: %w", err)
		tl_payments_bank_card_data_gen.go#L126: 		return fmt.Errorf("can't encode payments.bankCardData#3e24e573 as nil")
		tl_payments_bank_card_data_gen.go#L135: 		return fmt.Errorf("can't encode payments.bankCardData#3e24e573 as nil")
		tl_payments_bank_card_data_gen.go#L141: 			return fmt.Errorf("unable to encode payments.bankCardData#3e24e573: field open_urls element with index %d: %w", idx, err)
		tl_payments_bank_card_data_gen.go#L150: 		return fmt.Errorf("can't decode payments.bankCardData#3e24e573 to nil")
		tl_payments_bank_card_data_gen.go#L153: 		return fmt.Errorf("unable to decode payments.bankCardData#3e24e573: %w", err)
		tl_payments_bank_card_data_gen.go#L161: 		return fmt.Errorf("can't decode payments.bankCardData#3e24e573 to nil")
		tl_payments_bank_card_data_gen.go#L166: 			return fmt.Errorf("unable to decode payments.bankCardData#3e24e573: field title: %w", err)
		tl_payments_bank_card_data_gen.go#L173: 			return fmt.Errorf("unable to decode payments.bankCardData#3e24e573: field open_urls: %w", err)
		tl_payments_bank_card_data_gen.go#L182: 				return fmt.Errorf("unable to decode payments.bankCardData#3e24e573: field open_urls: %w", err)
		tl_payments_can_purchase_premium_gen.go#L116: 		return fmt.Errorf("can't encode payments.canPurchasePremium#9fc19eb6 as nil")
		tl_payments_can_purchase_premium_gen.go#L125: 		return fmt.Errorf("can't encode payments.canPurchasePremium#9fc19eb6 as nil")
		tl_payments_can_purchase_premium_gen.go#L128: 		return fmt.Errorf("unable to encode payments.canPurchasePremium#9fc19eb6: field purpose is nil")
		tl_payments_can_purchase_premium_gen.go#L131: 		return fmt.Errorf("unable to encode payments.canPurchasePremium#9fc19eb6: field purpose: %w", err)
		tl_payments_can_purchase_premium_gen.go#L139: 		return fmt.Errorf("can't decode payments.canPurchasePremium#9fc19eb6 to nil")
		tl_payments_can_purchase_premium_gen.go#L142: 		return fmt.Errorf("unable to decode payments.canPurchasePremium#9fc19eb6: %w", err)
		tl_payments_can_purchase_premium_gen.go#L150: 		return fmt.Errorf("can't decode payments.canPurchasePremium#9fc19eb6 to nil")
		tl_payments_can_purchase_premium_gen.go#L155: 			return fmt.Errorf("unable to decode payments.canPurchasePremium#9fc19eb6: field purpose: %w", err)
		tl_payments_check_gift_code_gen.go#L118: 		return fmt.Errorf("can't encode payments.checkGiftCode#8e51b4c1 as nil")
		tl_payments_check_gift_code_gen.go#L127: 		return fmt.Errorf("can't encode payments.checkGiftCode#8e51b4c1 as nil")
		tl_payments_check_gift_code_gen.go#L136: 		return fmt.Errorf("can't decode payments.checkGiftCode#8e51b4c1 to nil")
		tl_payments_check_gift_code_gen.go#L139: 		return fmt.Errorf("unable to decode payments.checkGiftCode#8e51b4c1: %w", err)
		tl_payments_check_gift_code_gen.go#L147: 		return fmt.Errorf("can't decode payments.checkGiftCode#8e51b4c1 to nil")
		tl_payments_check_gift_code_gen.go#L152: 			return fmt.Errorf("unable to decode payments.checkGiftCode#8e51b4c1: field slug: %w", err)
		tl_payments_checked_gift_code_gen.go#L264: 		return fmt.Errorf("can't encode payments.checkedGiftCode#284a1096 as nil")
		tl_payments_checked_gift_code_gen.go#L273: 		return fmt.Errorf("can't encode payments.checkedGiftCode#284a1096 as nil")
		tl_payments_checked_gift_code_gen.go#L277: 		return fmt.Errorf("unable to encode payments.checkedGiftCode#284a1096: field flags: %w", err)
		tl_payments_checked_gift_code_gen.go#L281: 			return fmt.Errorf("unable to encode payments.checkedGiftCode#284a1096: field from_id is nil")
		tl_payments_checked_gift_code_gen.go#L284: 			return fmt.Errorf("unable to encode payments.checkedGiftCode#284a1096: field from_id: %w", err)
		tl_payments_checked_gift_code_gen.go#L301: 			return fmt.Errorf("unable to encode payments.checkedGiftCode#284a1096: field chats element with index %d is nil", idx)
		tl_payments_checked_gift_code_gen.go#L304: 			return fmt.Errorf("unable to encode payments.checkedGiftCode#284a1096: field chats element with index %d: %w", idx, err)
		tl_payments_checked_gift_code_gen.go#L310: 			return fmt.Errorf("unable to encode payments.checkedGiftCode#284a1096: field users element with index %d is nil", idx)
		tl_payments_checked_gift_code_gen.go#L313: 			return fmt.Errorf("unable to encode payments.checkedGiftCode#284a1096: field users element with index %d: %w", idx, err)
		tl_payments_checked_gift_code_gen.go#L322: 		return fmt.Errorf("can't decode payments.checkedGiftCode#284a1096 to nil")
		tl_payments_checked_gift_code_gen.go#L325: 		return fmt.Errorf("unable to decode payments.checkedGiftCode#284a1096: %w", err)
		tl_payments_checked_gift_code_gen.go#L333: 		return fmt.Errorf("can't decode payments.checkedGiftCode#284a1096 to nil")
		tl_payments_checked_gift_code_gen.go#L337: 			return fmt.Errorf("unable to decode payments.checkedGiftCode#284a1096: field flags: %w", err)
		tl_payments_checked_gift_code_gen.go#L344: 			return fmt.Errorf("unable to decode payments.checkedGiftCode#284a1096: field from_id: %w", err)
		tl_payments_checked_gift_code_gen.go#L351: 			return fmt.Errorf("unable to decode payments.checkedGiftCode#284a1096: field giveaway_msg_id: %w", err)
		tl_payments_checked_gift_code_gen.go#L358: 			return fmt.Errorf("unable to decode payments.checkedGiftCode#284a1096: field to_id: %w", err)
		tl_payments_checked_gift_code_gen.go#L365: 			return fmt.Errorf("unable to decode payments.checkedGiftCode#284a1096: field date: %w", err)
		tl_payments_checked_gift_code_gen.go#L372: 			return fmt.Errorf("unable to decode payments.checkedGiftCode#284a1096: field months: %w", err)
		tl_payments_checked_gift_code_gen.go#L379: 			return fmt.Errorf("unable to decode payments.checkedGiftCode#284a1096: field used_date: %w", err)
		tl_payments_checked_gift_code_gen.go#L386: 			return fmt.Errorf("unable to decode payments.checkedGiftCode#284a1096: field chats: %w", err)
		tl_payments_checked_gift_code_gen.go#L395: 				return fmt.Errorf("unable to decode payments.checkedGiftCode#284a1096: field chats: %w", err)
		tl_payments_checked_gift_code_gen.go#L403: 			return fmt.Errorf("unable to decode payments.checkedGiftCode#284a1096: field users: %w", err)
		tl_payments_checked_gift_code_gen.go#L412: 				return fmt.Errorf("unable to decode payments.checkedGiftCode#284a1096: field users: %w", err)
		tl_payments_clear_saved_info_gen.go#L146: 		return fmt.Errorf("can't encode payments.clearSavedInfo#d83d70c1 as nil")
		tl_payments_clear_saved_info_gen.go#L155: 		return fmt.Errorf("can't encode payments.clearSavedInfo#d83d70c1 as nil")
		tl_payments_clear_saved_info_gen.go#L159: 		return fmt.Errorf("unable to encode payments.clearSavedInfo#d83d70c1: field flags: %w", err)
		tl_payments_clear_saved_info_gen.go#L167: 		return fmt.Errorf("can't decode payments.clearSavedInfo#d83d70c1 to nil")
		tl_payments_clear_saved_info_gen.go#L170: 		return fmt.Errorf("unable to decode payments.clearSavedInfo#d83d70c1: %w", err)
		tl_payments_clear_saved_info_gen.go#L178: 		return fmt.Errorf("can't decode payments.clearSavedInfo#d83d70c1 to nil")
		tl_payments_clear_saved_info_gen.go#L182: 			return fmt.Errorf("unable to decode payments.clearSavedInfo#d83d70c1: field flags: %w", err)
		tl_payments_export_invoice_gen.go#L118: 		return fmt.Errorf("can't encode payments.exportInvoice#f91b065 as nil")
		tl_payments_export_invoice_gen.go#L127: 		return fmt.Errorf("can't encode payments.exportInvoice#f91b065 as nil")
		tl_payments_export_invoice_gen.go#L130: 		return fmt.Errorf("unable to encode payments.exportInvoice#f91b065: field invoice_media is nil")
		tl_payments_export_invoice_gen.go#L133: 		return fmt.Errorf("unable to encode payments.exportInvoice#f91b065: field invoice_media: %w", err)
		tl_payments_export_invoice_gen.go#L141: 		return fmt.Errorf("can't decode payments.exportInvoice#f91b065 to nil")
		tl_payments_export_invoice_gen.go#L144: 		return fmt.Errorf("unable to decode payments.exportInvoice#f91b065: %w", err)
		tl_payments_export_invoice_gen.go#L152: 		return fmt.Errorf("can't decode payments.exportInvoice#f91b065 to nil")
		tl_payments_export_invoice_gen.go#L157: 			return fmt.Errorf("unable to decode payments.exportInvoice#f91b065: field invoice_media: %w", err)
		tl_payments_exported_invoice_gen.go#L121: 		return fmt.Errorf("can't encode payments.exportedInvoice#aed0cbd9 as nil")
		tl_payments_exported_invoice_gen.go#L130: 		return fmt.Errorf("can't encode payments.exportedInvoice#aed0cbd9 as nil")
		tl_payments_exported_invoice_gen.go#L139: 		return fmt.Errorf("can't decode payments.exportedInvoice#aed0cbd9 to nil")
		tl_payments_exported_invoice_gen.go#L142: 		return fmt.Errorf("unable to decode payments.exportedInvoice#aed0cbd9: %w", err)
		tl_payments_exported_invoice_gen.go#L150: 		return fmt.Errorf("can't decode payments.exportedInvoice#aed0cbd9 to nil")
		tl_payments_exported_invoice_gen.go#L155: 			return fmt.Errorf("unable to decode payments.exportedInvoice#aed0cbd9: field url: %w", err)
		tl_payments_get_bank_card_data_gen.go#L115: 		return fmt.Errorf("can't encode payments.getBankCardData#2e79d779 as nil")
		tl_payments_get_bank_card_data_gen.go#L124: 		return fmt.Errorf("can't encode payments.getBankCardData#2e79d779 as nil")
		tl_payments_get_bank_card_data_gen.go#L133: 		return fmt.Errorf("can't decode payments.getBankCardData#2e79d779 to nil")
		tl_payments_get_bank_card_data_gen.go#L136: 		return fmt.Errorf("unable to decode payments.getBankCardData#2e79d779: %w", err)
		tl_payments_get_bank_card_data_gen.go#L144: 		return fmt.Errorf("can't decode payments.getBankCardData#2e79d779 to nil")
		tl_payments_get_bank_card_data_gen.go#L149: 			return fmt.Errorf("unable to decode payments.getBankCardData#2e79d779: field number: %w", err)
		tl_payments_get_giveaway_info_gen.go#L132: 		return fmt.Errorf("can't encode payments.getGiveawayInfo#f4239425 as nil")
		tl_payments_get_giveaway_info_gen.go#L141: 		return fmt.Errorf("can't encode payments.getGiveawayInfo#f4239425 as nil")
		tl_payments_get_giveaway_info_gen.go#L144: 		return fmt.Errorf("unable to encode payments.getGiveawayInfo#f4239425: field peer is nil")
		tl_payments_get_giveaway_info_gen.go#L147: 		return fmt.Errorf("unable to encode payments.getGiveawayInfo#f4239425: field peer: %w", err)
		tl_payments_get_giveaway_info_gen.go#L156: 		return fmt.Errorf("can't decode payments.getGiveawayInfo#f4239425 to nil")
		tl_payments_get_giveaway_info_gen.go#L159: 		return fmt.Errorf("unable to decode payments.getGiveawayInfo#f4239425: %w", err)
		tl_payments_get_giveaway_info_gen.go#L167: 		return fmt.Errorf("can't decode payments.getGiveawayInfo#f4239425 to nil")
		tl_payments_get_giveaway_info_gen.go#L172: 			return fmt.Errorf("unable to decode payments.getGiveawayInfo#f4239425: field peer: %w", err)
		tl_payments_get_giveaway_info_gen.go#L179: 			return fmt.Errorf("unable to decode payments.getGiveawayInfo#f4239425: field msg_id: %w", err)
		tl_payments_get_payment_form_gen.go#L151: 		return fmt.Errorf("can't encode payments.getPaymentForm#37148dbb as nil")
		tl_payments_get_payment_form_gen.go#L160: 		return fmt.Errorf("can't encode payments.getPaymentForm#37148dbb as nil")
		tl_payments_get_payment_form_gen.go#L164: 		return fmt.Errorf("unable to encode payments.getPaymentForm#37148dbb: field flags: %w", err)
		tl_payments_get_payment_form_gen.go#L167: 		return fmt.Errorf("unable to encode payments.getPaymentForm#37148dbb: field invoice is nil")
		tl_payments_get_payment_form_gen.go#L170: 		return fmt.Errorf("unable to encode payments.getPaymentForm#37148dbb: field invoice: %w", err)
		tl_payments_get_payment_form_gen.go#L174: 			return fmt.Errorf("unable to encode payments.getPaymentForm#37148dbb: field theme_params: %w", err)
		tl_payments_get_payment_form_gen.go#L183: 		return fmt.Errorf("can't decode payments.getPaymentForm#37148dbb to nil")
		tl_payments_get_payment_form_gen.go#L186: 		return fmt.Errorf("unable to decode payments.getPaymentForm#37148dbb: %w", err)
		tl_payments_get_payment_form_gen.go#L194: 		return fmt.Errorf("can't decode payments.getPaymentForm#37148dbb to nil")
		tl_payments_get_payment_form_gen.go#L198: 			return fmt.Errorf("unable to decode payments.getPaymentForm#37148dbb: field flags: %w", err)
		tl_payments_get_payment_form_gen.go#L204: 			return fmt.Errorf("unable to decode payments.getPaymentForm#37148dbb: field invoice: %w", err)
		tl_payments_get_payment_form_gen.go#L210: 			return fmt.Errorf("unable to decode payments.getPaymentForm#37148dbb: field theme_params: %w", err)
		tl_payments_get_payment_receipt_gen.go#L126: 		return fmt.Errorf("can't encode payments.getPaymentReceipt#2478d1cc as nil")
		tl_payments_get_payment_receipt_gen.go#L135: 		return fmt.Errorf("can't encode payments.getPaymentReceipt#2478d1cc as nil")
		tl_payments_get_payment_receipt_gen.go#L138: 		return fmt.Errorf("unable to encode payments.getPaymentReceipt#2478d1cc: field peer is nil")
		tl_payments_get_payment_receipt_gen.go#L141: 		return fmt.Errorf("unable to encode payments.getPaymentReceipt#2478d1cc: field peer: %w", err)
		tl_payments_get_payment_receipt_gen.go#L150: 		return fmt.Errorf("can't decode payments.getPaymentReceipt#2478d1cc to nil")
		tl_payments_get_payment_receipt_gen.go#L153: 		return fmt.Errorf("unable to decode payments.getPaymentReceipt#2478d1cc: %w", err)
		tl_payments_get_payment_receipt_gen.go#L161: 		return fmt.Errorf("can't decode payments.getPaymentReceipt#2478d1cc to nil")
		tl_payments_get_payment_receipt_gen.go#L166: 			return fmt.Errorf("unable to decode payments.getPaymentReceipt#2478d1cc: field peer: %w", err)
		tl_payments_get_payment_receipt_gen.go#L173: 			return fmt.Errorf("unable to decode payments.getPaymentReceipt#2478d1cc: field msg_id: %w", err)
		tl_payments_get_premium_gift_code_options_gen.go#L139: 		return fmt.Errorf("can't encode payments.getPremiumGiftCodeOptions#2757ba54 as nil")
		tl_payments_get_premium_gift_code_options_gen.go#L148: 		return fmt.Errorf("can't encode payments.getPremiumGiftCodeOptions#2757ba54 as nil")
		tl_payments_get_premium_gift_code_options_gen.go#L152: 		return fmt.Errorf("unable to encode payments.getPremiumGiftCodeOptions#2757ba54: field flags: %w", err)
		tl_payments_get_premium_gift_code_options_gen.go#L156: 			return fmt.Errorf("unable to encode payments.getPremiumGiftCodeOptions#2757ba54: field boost_peer is nil")
		tl_payments_get_premium_gift_code_options_gen.go#L159: 			return fmt.Errorf("unable to encode payments.getPremiumGiftCodeOptions#2757ba54: field boost_peer: %w", err)
		tl_payments_get_premium_gift_code_options_gen.go#L168: 		return fmt.Errorf("can't decode payments.getPremiumGiftCodeOptions#2757ba54 to nil")
		tl_payments_get_premium_gift_code_options_gen.go#L171: 		return fmt.Errorf("unable to decode payments.getPremiumGiftCodeOptions#2757ba54: %w", err)
		tl_payments_get_premium_gift_code_options_gen.go#L179: 		return fmt.Errorf("can't decode payments.getPremiumGiftCodeOptions#2757ba54 to nil")
		tl_payments_get_premium_gift_code_options_gen.go#L183: 			return fmt.Errorf("unable to decode payments.getPremiumGiftCodeOptions#2757ba54: field flags: %w", err)
		tl_payments_get_premium_gift_code_options_gen.go#L189: 			return fmt.Errorf("unable to decode payments.getPremiumGiftCodeOptions#2757ba54: field boost_peer: %w", err)
		tl_payments_get_saved_info_gen.go#L98: 		return fmt.Errorf("can't encode payments.getSavedInfo#227d824b as nil")
		tl_payments_get_saved_info_gen.go#L107: 		return fmt.Errorf("can't encode payments.getSavedInfo#227d824b as nil")
		tl_payments_get_saved_info_gen.go#L115: 		return fmt.Errorf("can't decode payments.getSavedInfo#227d824b to nil")
		tl_payments_get_saved_info_gen.go#L118: 		return fmt.Errorf("unable to decode payments.getSavedInfo#227d824b: %w", err)
		tl_payments_get_saved_info_gen.go#L126: 		return fmt.Errorf("can't decode payments.getSavedInfo#227d824b to nil")
		tl_payments_giveaway_info_gen.go#L236: 		return fmt.Errorf("can't encode payments.giveawayInfo#4367daa0 as nil")
		tl_payments_giveaway_info_gen.go#L245: 		return fmt.Errorf("can't encode payments.giveawayInfo#4367daa0 as nil")
		tl_payments_giveaway_info_gen.go#L249: 		return fmt.Errorf("unable to encode payments.giveawayInfo#4367daa0: field flags: %w", err)
		tl_payments_giveaway_info_gen.go#L267: 		return fmt.Errorf("can't decode payments.giveawayInfo#4367daa0 to nil")
		tl_payments_giveaway_info_gen.go#L270: 		return fmt.Errorf("unable to decode payments.giveawayInfo#4367daa0: %w", err)
		tl_payments_giveaway_info_gen.go#L278: 		return fmt.Errorf("can't decode payments.giveawayInfo#4367daa0 to nil")
		tl_payments_giveaway_info_gen.go#L282: 			return fmt.Errorf("unable to decode payments.giveawayInfo#4367daa0: field flags: %w", err)
		tl_payments_giveaway_info_gen.go#L290: 			return fmt.Errorf("unable to decode payments.giveawayInfo#4367daa0: field start_date: %w", err)
		tl_payments_giveaway_info_gen.go#L297: 			return fmt.Errorf("unable to decode payments.giveawayInfo#4367daa0: field joined_too_early_date: %w", err)
		tl_payments_giveaway_info_gen.go#L304: 			return fmt.Errorf("unable to decode payments.giveawayInfo#4367daa0: field admin_disallowed_chat_id: %w", err)
		tl_payments_giveaway_info_gen.go#L311: 			return fmt.Errorf("unable to decode payments.giveawayInfo#4367daa0: field disallowed_country: %w", err)
		tl_payments_giveaway_info_gen.go#L611: 		return fmt.Errorf("can't encode payments.giveawayInfoResults#cd5570 as nil")
		tl_payments_giveaway_info_gen.go#L620: 		return fmt.Errorf("can't encode payments.giveawayInfoResults#cd5570 as nil")
		tl_payments_giveaway_info_gen.go#L624: 		return fmt.Errorf("unable to encode payments.giveawayInfoResults#cd5570: field flags: %w", err)
		tl_payments_giveaway_info_gen.go#L639: 		return fmt.Errorf("can't decode payments.giveawayInfoResults#cd5570 to nil")
		tl_payments_giveaway_info_gen.go#L642: 		return fmt.Errorf("unable to decode payments.giveawayInfoResults#cd5570: %w", err)
		tl_payments_giveaway_info_gen.go#L650: 		return fmt.Errorf("can't decode payments.giveawayInfoResults#cd5570 to nil")
		tl_payments_giveaway_info_gen.go#L654: 			return fmt.Errorf("unable to decode payments.giveawayInfoResults#cd5570: field flags: %w", err)
		tl_payments_giveaway_info_gen.go#L662: 			return fmt.Errorf("unable to decode payments.giveawayInfoResults#cd5570: field start_date: %w", err)
		tl_payments_giveaway_info_gen.go#L669: 			return fmt.Errorf("unable to decode payments.giveawayInfoResults#cd5570: field gift_code_slug: %w", err)
		tl_payments_giveaway_info_gen.go#L676: 			return fmt.Errorf("unable to decode payments.giveawayInfoResults#cd5570: field finish_date: %w", err)
		tl_payments_giveaway_info_gen.go#L683: 			return fmt.Errorf("unable to decode payments.giveawayInfoResults#cd5570: field winners_count: %w", err)
		tl_payments_giveaway_info_gen.go#L690: 			return fmt.Errorf("unable to decode payments.giveawayInfoResults#cd5570: field activated_count: %w", err)
		tl_payments_giveaway_info_gen.go#L836: 			return nil, fmt.Errorf("unable to decode PaymentsGiveawayInfoClass: %w", err)
		tl_payments_giveaway_info_gen.go#L843: 			return nil, fmt.Errorf("unable to decode PaymentsGiveawayInfoClass: %w", err)
		tl_payments_giveaway_info_gen.go#L847: 		return nil, fmt.Errorf("unable to decode PaymentsGiveawayInfoClass: %w", bin.NewUnexpectedID(id))
		tl_payments_giveaway_info_gen.go#L859: 		return fmt.Errorf("unable to decode PaymentsGiveawayInfoBox to nil")
		tl_payments_giveaway_info_gen.go#L863: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_payments_giveaway_info_gen.go#L872: 		return fmt.Errorf("unable to encode PaymentsGiveawayInfoClass as nil")
		tl_payments_launch_prepaid_giveaway_gen.go#L140: 		return fmt.Errorf("can't encode payments.launchPrepaidGiveaway#5ff58f20 as nil")
		tl_payments_launch_prepaid_giveaway_gen.go#L149: 		return fmt.Errorf("can't encode payments.launchPrepaidGiveaway#5ff58f20 as nil")
		tl_payments_launch_prepaid_giveaway_gen.go#L152: 		return fmt.Errorf("unable to encode payments.launchPrepaidGiveaway#5ff58f20: field peer is nil")
		tl_payments_launch_prepaid_giveaway_gen.go#L155: 		return fmt.Errorf("unable to encode payments.launchPrepaidGiveaway#5ff58f20: field peer: %w", err)
		tl_payments_launch_prepaid_giveaway_gen.go#L159: 		return fmt.Errorf("unable to encode payments.launchPrepaidGiveaway#5ff58f20: field purpose is nil")
		tl_payments_launch_prepaid_giveaway_gen.go#L162: 		return fmt.Errorf("unable to encode payments.launchPrepaidGiveaway#5ff58f20: field purpose: %w", err)
		tl_payments_launch_prepaid_giveaway_gen.go#L170: 		return fmt.Errorf("can't decode payments.launchPrepaidGiveaway#5ff58f20 to nil")
		tl_payments_launch_prepaid_giveaway_gen.go#L173: 		return fmt.Errorf("unable to decode payments.launchPrepaidGiveaway#5ff58f20: %w", err)
		tl_payments_launch_prepaid_giveaway_gen.go#L181: 		return fmt.Errorf("can't decode payments.launchPrepaidGiveaway#5ff58f20 to nil")
		tl_payments_launch_prepaid_giveaway_gen.go#L186: 			return fmt.Errorf("unable to decode payments.launchPrepaidGiveaway#5ff58f20: field peer: %w", err)
		tl_payments_launch_prepaid_giveaway_gen.go#L193: 			return fmt.Errorf("unable to decode payments.launchPrepaidGiveaway#5ff58f20: field giveaway_id: %w", err)
		tl_payments_launch_prepaid_giveaway_gen.go#L200: 			return fmt.Errorf("unable to decode payments.launchPrepaidGiveaway#5ff58f20: field purpose: %w", err)
		tl_payments_payment_form_gen.go#L364: 		return fmt.Errorf("can't encode payments.paymentForm#a0058751 as nil")
		tl_payments_payment_form_gen.go#L373: 		return fmt.Errorf("can't encode payments.paymentForm#a0058751 as nil")
		tl_payments_payment_form_gen.go#L377: 		return fmt.Errorf("unable to encode payments.paymentForm#a0058751: field flags: %w", err)
		tl_payments_payment_form_gen.go#L385: 			return fmt.Errorf("unable to encode payments.paymentForm#a0058751: field photo is nil")
		tl_payments_payment_form_gen.go#L388: 			return fmt.Errorf("unable to encode payments.paymentForm#a0058751: field photo: %w", err)
		tl_payments_payment_form_gen.go#L392: 		return fmt.Errorf("unable to encode payments.paymentForm#a0058751: field invoice: %w", err)
		tl_payments_payment_form_gen.go#L401: 			return fmt.Errorf("unable to encode payments.paymentForm#a0058751: field native_params: %w", err)
		tl_payments_payment_form_gen.go#L408: 				return fmt.Errorf("unable to encode payments.paymentForm#a0058751: field additional_methods element with index %d: %w", idx, err)
		tl_payments_payment_form_gen.go#L414: 			return fmt.Errorf("unable to encode payments.paymentForm#a0058751: field saved_info: %w", err)
		tl_payments_payment_form_gen.go#L421: 				return fmt.Errorf("unable to encode payments.paymentForm#a0058751: field saved_credentials element with index %d: %w", idx, err)
		tl_payments_payment_form_gen.go#L428: 			return fmt.Errorf("unable to encode payments.paymentForm#a0058751: field users element with index %d is nil", idx)
		tl_payments_payment_form_gen.go#L431: 			return fmt.Errorf("unable to encode payments.paymentForm#a0058751: field users element with index %d: %w", idx, err)
		tl_payments_payment_form_gen.go#L440: 		return fmt.Errorf("can't decode payments.paymentForm#a0058751 to nil")
		tl_payments_payment_form_gen.go#L443: 		return fmt.Errorf("unable to decode payments.paymentForm#a0058751: %w", err)
		tl_payments_payment_form_gen.go#L451: 		return fmt.Errorf("can't decode payments.paymentForm#a0058751 to nil")
		tl_payments_payment_form_gen.go#L455: 			return fmt.Errorf("unable to decode payments.paymentForm#a0058751: field flags: %w", err)
		tl_payments_payment_form_gen.go#L463: 			return fmt.Errorf("unable to decode payments.paymentForm#a0058751: field form_id: %w", err)
		tl_payments_payment_form_gen.go#L470: 			return fmt.Errorf("unable to decode payments.paymentForm#a0058751: field bot_id: %w", err)
		tl_payments_payment_form_gen.go#L477: 			return fmt.Errorf("unable to decode payments.paymentForm#a0058751: field title: %w", err)
		tl_payments_payment_form_gen.go#L484: 			return fmt.Errorf("unable to decode payments.paymentForm#a0058751: field description: %w", err)
		tl_payments_payment_form_gen.go#L491: 			return fmt.Errorf("unable to decode payments.paymentForm#a0058751: field photo: %w", err)
		tl_payments_payment_form_gen.go#L497: 			return fmt.Errorf("unable to decode payments.paymentForm#a0058751: field invoice: %w", err)
		tl_payments_payment_form_gen.go#L503: 			return fmt.Errorf("unable to decode payments.paymentForm#a0058751: field provider_id: %w", err)
		tl_payments_payment_form_gen.go#L510: 			return fmt.Errorf("unable to decode payments.paymentForm#a0058751: field url: %w", err)
		tl_payments_payment_form_gen.go#L517: 			return fmt.Errorf("unable to decode payments.paymentForm#a0058751: field native_provider: %w", err)
		tl_payments_payment_form_gen.go#L523: 			return fmt.Errorf("unable to decode payments.paymentForm#a0058751: field native_params: %w", err)
		tl_payments_payment_form_gen.go#L529: 			return fmt.Errorf("unable to decode payments.paymentForm#a0058751: field additional_methods: %w", err)
		tl_payments_payment_form_gen.go#L538: 				return fmt.Errorf("unable to decode payments.paymentForm#a0058751: field additional_methods: %w", err)
		tl_payments_payment_form_gen.go#L545: 			return fmt.Errorf("unable to decode payments.paymentForm#a0058751: field saved_info: %w", err)
		tl_payments_payment_form_gen.go#L551: 			return fmt.Errorf("unable to decode payments.paymentForm#a0058751: field saved_credentials: %w", err)
		tl_payments_payment_form_gen.go#L560: 				return fmt.Errorf("unable to decode payments.paymentForm#a0058751: field saved_credentials: %w", err)
		tl_payments_payment_form_gen.go#L568: 			return fmt.Errorf("unable to decode payments.paymentForm#a0058751: field users: %w", err)
		tl_payments_payment_form_gen.go#L577: 				return fmt.Errorf("unable to decode payments.paymentForm#a0058751: field users: %w", err)
		tl_payments_payment_receipt_gen.go#L315: 		return fmt.Errorf("can't encode payments.paymentReceipt#70c4fe03 as nil")
		tl_payments_payment_receipt_gen.go#L324: 		return fmt.Errorf("can't encode payments.paymentReceipt#70c4fe03 as nil")
		tl_payments_payment_receipt_gen.go#L328: 		return fmt.Errorf("unable to encode payments.paymentReceipt#70c4fe03: field flags: %w", err)
		tl_payments_payment_receipt_gen.go#L337: 			return fmt.Errorf("unable to encode payments.paymentReceipt#70c4fe03: field photo is nil")
		tl_payments_payment_receipt_gen.go#L340: 			return fmt.Errorf("unable to encode payments.paymentReceipt#70c4fe03: field photo: %w", err)
		tl_payments_payment_receipt_gen.go#L344: 		return fmt.Errorf("unable to encode payments.paymentReceipt#70c4fe03: field invoice: %w", err)
		tl_payments_payment_receipt_gen.go#L348: 			return fmt.Errorf("unable to encode payments.paymentReceipt#70c4fe03: field info: %w", err)
		tl_payments_payment_receipt_gen.go#L353: 			return fmt.Errorf("unable to encode payments.paymentReceipt#70c4fe03: field shipping: %w", err)
		tl_payments_payment_receipt_gen.go#L365: 			return fmt.Errorf("unable to encode payments.paymentReceipt#70c4fe03: field users element with index %d is nil", idx)
		tl_payments_payment_receipt_gen.go#L368: 			return fmt.Errorf("unable to encode payments.paymentReceipt#70c4fe03: field users element with index %d: %w", idx, err)
		tl_payments_payment_receipt_gen.go#L377: 		return fmt.Errorf("can't decode payments.paymentReceipt#70c4fe03 to nil")
		tl_payments_payment_receipt_gen.go#L380: 		return fmt.Errorf("unable to decode payments.paymentReceipt#70c4fe03: %w", err)
		tl_payments_payment_receipt_gen.go#L388: 		return fmt.Errorf("can't decode payments.paymentReceipt#70c4fe03 to nil")
		tl_payments_payment_receipt_gen.go#L392: 			return fmt.Errorf("unable to decode payments.paymentReceipt#70c4fe03: field flags: %w", err)
		tl_payments_payment_receipt_gen.go#L398: 			return fmt.Errorf("unable to decode payments.paymentReceipt#70c4fe03: field date: %w", err)
		tl_payments_payment_receipt_gen.go#L405: 			return fmt.Errorf("unable to decode payments.paymentReceipt#70c4fe03: field bot_id: %w", err)
		tl_payments_payment_receipt_gen.go#L412: 			return fmt.Errorf("unable to decode payments.paymentReceipt#70c4fe03: field provider_id: %w", err)
		tl_payments_payment_receipt_gen.go#L419: 			return fmt.Errorf("unable to decode payments.paymentReceipt#70c4fe03: field title: %w", err)
		tl_payments_payment_receipt_gen.go#L426: 			return fmt.Errorf("unable to decode payments.paymentReceipt#70c4fe03: field description: %w", err)
		tl_payments_payment_receipt_gen.go#L433: 			return fmt.Errorf("unable to decode payments.paymentReceipt#70c4fe03: field photo: %w", err)
		tl_payments_payment_receipt_gen.go#L439: 			return fmt.Errorf("unable to decode payments.paymentReceipt#70c4fe03: field invoice: %w", err)
		tl_payments_payment_receipt_gen.go#L444: 			return fmt.Errorf("unable to decode payments.paymentReceipt#70c4fe03: field info: %w", err)
		tl_payments_payment_receipt_gen.go#L449: 			return fmt.Errorf("unable to decode payments.paymentReceipt#70c4fe03: field shipping: %w", err)
		tl_payments_payment_receipt_gen.go#L455: 			return fmt.Errorf("unable to decode payments.paymentReceipt#70c4fe03: field tip_amount: %w", err)
		tl_payments_payment_receipt_gen.go#L462: 			return fmt.Errorf("unable to decode payments.paymentReceipt#70c4fe03: field currency: %w", err)
		tl_payments_payment_receipt_gen.go#L469: 			return fmt.Errorf("unable to decode payments.paymentReceipt#70c4fe03: field total_amount: %w", err)
		tl_payments_payment_receipt_gen.go#L476: 			return fmt.Errorf("unable to decode payments.paymentReceipt#70c4fe03: field credentials_title: %w", err)
		tl_payments_payment_receipt_gen.go#L483: 			return fmt.Errorf("unable to decode payments.paymentReceipt#70c4fe03: field users: %w", err)
		tl_payments_payment_receipt_gen.go#L492: 				return fmt.Errorf("unable to decode payments.paymentReceipt#70c4fe03: field users: %w", err)
		tl_payments_payment_result_gen.go#L120: 		return fmt.Errorf("can't encode payments.paymentResult#4e5f810d as nil")
		tl_payments_payment_result_gen.go#L129: 		return fmt.Errorf("can't encode payments.paymentResult#4e5f810d as nil")
		tl_payments_payment_result_gen.go#L132: 		return fmt.Errorf("unable to encode payments.paymentResult#4e5f810d: field updates is nil")
		tl_payments_payment_result_gen.go#L135: 		return fmt.Errorf("unable to encode payments.paymentResult#4e5f810d: field updates: %w", err)
		tl_payments_payment_result_gen.go#L143: 		return fmt.Errorf("can't decode payments.paymentResult#4e5f810d to nil")
		tl_payments_payment_result_gen.go#L146: 		return fmt.Errorf("unable to decode payments.paymentResult#4e5f810d: %w", err)
		tl_payments_payment_result_gen.go#L154: 		return fmt.Errorf("can't decode payments.paymentResult#4e5f810d to nil")
		tl_payments_payment_result_gen.go#L159: 			return fmt.Errorf("unable to decode payments.paymentResult#4e5f810d: field updates: %w", err)
		tl_payments_payment_result_gen.go#L260: 		return fmt.Errorf("can't encode payments.paymentVerificationNeeded#d8411139 as nil")
		tl_payments_payment_result_gen.go#L269: 		return fmt.Errorf("can't encode payments.paymentVerificationNeeded#d8411139 as nil")
		tl_payments_payment_result_gen.go#L278: 		return fmt.Errorf("can't decode payments.paymentVerificationNeeded#d8411139 to nil")
		tl_payments_payment_result_gen.go#L281: 		return fmt.Errorf("unable to decode payments.paymentVerificationNeeded#d8411139: %w", err)
		tl_payments_payment_result_gen.go#L289: 		return fmt.Errorf("can't decode payments.paymentVerificationNeeded#d8411139 to nil")
		tl_payments_payment_result_gen.go#L294: 			return fmt.Errorf("unable to decode payments.paymentVerificationNeeded#d8411139: field url: %w", err)
		tl_payments_payment_result_gen.go#L357: 			return nil, fmt.Errorf("unable to decode PaymentsPaymentResultClass: %w", err)
		tl_payments_payment_result_gen.go#L364: 			return nil, fmt.Errorf("unable to decode PaymentsPaymentResultClass: %w", err)
		tl_payments_payment_result_gen.go#L368: 		return nil, fmt.Errorf("unable to decode PaymentsPaymentResultClass: %w", bin.NewUnexpectedID(id))
		tl_payments_payment_result_gen.go#L380: 		return fmt.Errorf("unable to decode PaymentsPaymentResultBox to nil")
		tl_payments_payment_result_gen.go#L384: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_payments_payment_result_gen.go#L393: 		return fmt.Errorf("unable to encode PaymentsPaymentResultClass as nil")
		tl_payments_saved_info_gen.go#L151: 		return fmt.Errorf("can't encode payments.savedInfo#fb8fe43c as nil")
		tl_payments_saved_info_gen.go#L160: 		return fmt.Errorf("can't encode payments.savedInfo#fb8fe43c as nil")
		tl_payments_saved_info_gen.go#L164: 		return fmt.Errorf("unable to encode payments.savedInfo#fb8fe43c: field flags: %w", err)
		tl_payments_saved_info_gen.go#L168: 			return fmt.Errorf("unable to encode payments.savedInfo#fb8fe43c: field saved_info: %w", err)
		tl_payments_saved_info_gen.go#L177: 		return fmt.Errorf("can't decode payments.savedInfo#fb8fe43c to nil")
		tl_payments_saved_info_gen.go#L180: 		return fmt.Errorf("unable to decode payments.savedInfo#fb8fe43c: %w", err)
		tl_payments_saved_info_gen.go#L188: 		return fmt.Errorf("can't decode payments.savedInfo#fb8fe43c to nil")
		tl_payments_saved_info_gen.go#L192: 			return fmt.Errorf("unable to decode payments.savedInfo#fb8fe43c: field flags: %w", err)
		tl_payments_saved_info_gen.go#L198: 			return fmt.Errorf("unable to decode payments.savedInfo#fb8fe43c: field saved_info: %w", err)
		tl_payments_send_payment_form_gen.go#L218: 		return fmt.Errorf("can't encode payments.sendPaymentForm#2d03522f as nil")
		tl_payments_send_payment_form_gen.go#L227: 		return fmt.Errorf("can't encode payments.sendPaymentForm#2d03522f as nil")
		tl_payments_send_payment_form_gen.go#L231: 		return fmt.Errorf("unable to encode payments.sendPaymentForm#2d03522f: field flags: %w", err)
		tl_payments_send_payment_form_gen.go#L235: 		return fmt.Errorf("unable to encode payments.sendPaymentForm#2d03522f: field invoice is nil")
		tl_payments_send_payment_form_gen.go#L238: 		return fmt.Errorf("unable to encode payments.sendPaymentForm#2d03522f: field invoice: %w", err)
		tl_payments_send_payment_form_gen.go#L247: 		return fmt.Errorf("unable to encode payments.sendPaymentForm#2d03522f: field credentials is nil")
		tl_payments_send_payment_form_gen.go#L250: 		return fmt.Errorf("unable to encode payments.sendPaymentForm#2d03522f: field credentials: %w", err)
		tl_payments_send_payment_form_gen.go#L261: 		return fmt.Errorf("can't decode payments.sendPaymentForm#2d03522f to nil")
		tl_payments_send_payment_form_gen.go#L264: 		return fmt.Errorf("unable to decode payments.sendPaymentForm#2d03522f: %w", err)
		tl_payments_send_payment_form_gen.go#L272: 		return fmt.Errorf("can't decode payments.sendPaymentForm#2d03522f to nil")
		tl_payments_send_payment_form_gen.go#L276: 			return fmt.Errorf("unable to decode payments.sendPaymentForm#2d03522f: field flags: %w", err)
		tl_payments_send_payment_form_gen.go#L282: 			return fmt.Errorf("unable to decode payments.sendPaymentForm#2d03522f: field form_id: %w", err)
		tl_payments_send_payment_form_gen.go#L289: 			return fmt.Errorf("unable to decode payments.sendPaymentForm#2d03522f: field invoice: %w", err)
		tl_payments_send_payment_form_gen.go#L296: 			return fmt.Errorf("unable to decode payments.sendPaymentForm#2d03522f: field requested_info_id: %w", err)
		tl_payments_send_payment_form_gen.go#L303: 			return fmt.Errorf("unable to decode payments.sendPaymentForm#2d03522f: field shipping_option_id: %w", err)
		tl_payments_send_payment_form_gen.go#L310: 			return fmt.Errorf("unable to decode payments.sendPaymentForm#2d03522f: field credentials: %w", err)
		tl_payments_send_payment_form_gen.go#L317: 			return fmt.Errorf("unable to decode payments.sendPaymentForm#2d03522f: field tip_amount: %w", err)
		tl_payments_validate_requested_info_gen.go#L153: 		return fmt.Errorf("can't encode payments.validateRequestedInfo#b6c8f12b as nil")
		tl_payments_validate_requested_info_gen.go#L162: 		return fmt.Errorf("can't encode payments.validateRequestedInfo#b6c8f12b as nil")
		tl_payments_validate_requested_info_gen.go#L166: 		return fmt.Errorf("unable to encode payments.validateRequestedInfo#b6c8f12b: field flags: %w", err)
		tl_payments_validate_requested_info_gen.go#L169: 		return fmt.Errorf("unable to encode payments.validateRequestedInfo#b6c8f12b: field invoice is nil")
		tl_payments_validate_requested_info_gen.go#L172: 		return fmt.Errorf("unable to encode payments.validateRequestedInfo#b6c8f12b: field invoice: %w", err)
		tl_payments_validate_requested_info_gen.go#L175: 		return fmt.Errorf("unable to encode payments.validateRequestedInfo#b6c8f12b: field info: %w", err)
		tl_payments_validate_requested_info_gen.go#L183: 		return fmt.Errorf("can't decode payments.validateRequestedInfo#b6c8f12b to nil")
		tl_payments_validate_requested_info_gen.go#L186: 		return fmt.Errorf("unable to decode payments.validateRequestedInfo#b6c8f12b: %w", err)
		tl_payments_validate_requested_info_gen.go#L194: 		return fmt.Errorf("can't decode payments.validateRequestedInfo#b6c8f12b to nil")
		tl_payments_validate_requested_info_gen.go#L198: 			return fmt.Errorf("unable to decode payments.validateRequestedInfo#b6c8f12b: field flags: %w", err)
		tl_payments_validate_requested_info_gen.go#L205: 			return fmt.Errorf("unable to decode payments.validateRequestedInfo#b6c8f12b: field invoice: %w", err)
		tl_payments_validate_requested_info_gen.go#L211: 			return fmt.Errorf("unable to decode payments.validateRequestedInfo#b6c8f12b: field info: %w", err)
		tl_payments_validated_requested_info_gen.go#L152: 		return fmt.Errorf("can't encode payments.validatedRequestedInfo#d1451883 as nil")
		tl_payments_validated_requested_info_gen.go#L161: 		return fmt.Errorf("can't encode payments.validatedRequestedInfo#d1451883 as nil")
		tl_payments_validated_requested_info_gen.go#L165: 		return fmt.Errorf("unable to encode payments.validatedRequestedInfo#d1451883: field flags: %w", err)
		tl_payments_validated_requested_info_gen.go#L174: 				return fmt.Errorf("unable to encode payments.validatedRequestedInfo#d1451883: field shipping_options element with index %d: %w", idx, err)
		tl_payments_validated_requested_info_gen.go#L184: 		return fmt.Errorf("can't decode payments.validatedRequestedInfo#d1451883 to nil")
		tl_payments_validated_requested_info_gen.go#L187: 		return fmt.Errorf("unable to decode payments.validatedRequestedInfo#d1451883: %w", err)
		tl_payments_validated_requested_info_gen.go#L195: 		return fmt.Errorf("can't decode payments.validatedRequestedInfo#d1451883 to nil")
		tl_payments_validated_requested_info_gen.go#L199: 			return fmt.Errorf("unable to decode payments.validatedRequestedInfo#d1451883: field flags: %w", err)
		tl_payments_validated_requested_info_gen.go#L205: 			return fmt.Errorf("unable to decode payments.validatedRequestedInfo#d1451883: field id: %w", err)
		tl_payments_validated_requested_info_gen.go#L212: 			return fmt.Errorf("unable to decode payments.validatedRequestedInfo#d1451883: field shipping_options: %w", err)
		tl_payments_validated_requested_info_gen.go#L221: 				return fmt.Errorf("unable to decode payments.validatedRequestedInfo#d1451883: field shipping_options: %w", err)
		tl_peer_blocked_gen.go#L126: 		return fmt.Errorf("can't encode peerBlocked#e8fd8014 as nil")
		tl_peer_blocked_gen.go#L135: 		return fmt.Errorf("can't encode peerBlocked#e8fd8014 as nil")
		tl_peer_blocked_gen.go#L138: 		return fmt.Errorf("unable to encode peerBlocked#e8fd8014: field peer_id is nil")
		tl_peer_blocked_gen.go#L141: 		return fmt.Errorf("unable to encode peerBlocked#e8fd8014: field peer_id: %w", err)
		tl_peer_blocked_gen.go#L150: 		return fmt.Errorf("can't decode peerBlocked#e8fd8014 to nil")
		tl_peer_blocked_gen.go#L153: 		return fmt.Errorf("unable to decode peerBlocked#e8fd8014: %w", err)
		tl_peer_blocked_gen.go#L161: 		return fmt.Errorf("can't decode peerBlocked#e8fd8014 to nil")
		tl_peer_blocked_gen.go#L166: 			return fmt.Errorf("unable to decode peerBlocked#e8fd8014: field peer_id: %w", err)
		tl_peer_blocked_gen.go#L173: 			return fmt.Errorf("unable to decode peerBlocked#e8fd8014: field date: %w", err)
		tl_peer_class_vector_gen.go#L112: 		return fmt.Errorf("can't encode Vector<Peer> as nil")
		tl_peer_class_vector_gen.go#L121: 		return fmt.Errorf("can't encode Vector<Peer> as nil")
		tl_peer_class_vector_gen.go#L126: 			return fmt.Errorf("unable to encode Vector<Peer>: field Elems element with index %d is nil", idx)
		tl_peer_class_vector_gen.go#L129: 			return fmt.Errorf("unable to encode Vector<Peer>: field Elems element with index %d: %w", idx, err)
		tl_peer_class_vector_gen.go#L138: 		return fmt.Errorf("can't decode Vector<Peer> to nil")
		tl_peer_class_vector_gen.go#L147: 		return fmt.Errorf("can't decode Vector<Peer> to nil")
		tl_peer_class_vector_gen.go#L152: 			return fmt.Errorf("unable to decode Vector<Peer>: field Elems: %w", err)
		tl_peer_class_vector_gen.go#L161: 				return fmt.Errorf("unable to decode Vector<Peer>: field Elems: %w", err)
		tl_peer_color_gen.go#L165: 		return fmt.Errorf("can't encode peerColor#b54b5acf as nil")
		tl_peer_color_gen.go#L174: 		return fmt.Errorf("can't encode peerColor#b54b5acf as nil")
		tl_peer_color_gen.go#L178: 		return fmt.Errorf("unable to encode peerColor#b54b5acf: field flags: %w", err)
		tl_peer_color_gen.go#L192: 		return fmt.Errorf("can't decode peerColor#b54b5acf to nil")
		tl_peer_color_gen.go#L195: 		return fmt.Errorf("unable to decode peerColor#b54b5acf: %w", err)
		tl_peer_color_gen.go#L203: 		return fmt.Errorf("can't decode peerColor#b54b5acf to nil")
		tl_peer_color_gen.go#L207: 			return fmt.Errorf("unable to decode peerColor#b54b5acf: field flags: %w", err)
		tl_peer_color_gen.go#L213: 			return fmt.Errorf("unable to decode peerColor#b54b5acf: field color: %w", err)
		tl_peer_color_gen.go#L220: 			return fmt.Errorf("unable to decode peerColor#b54b5acf: field background_emoji_id: %w", err)
		tl_peer_gen.go#L120: 		return fmt.Errorf("can't encode peerUser#59511722 as nil")
		tl_peer_gen.go#L129: 		return fmt.Errorf("can't encode peerUser#59511722 as nil")
		tl_peer_gen.go#L138: 		return fmt.Errorf("can't decode peerUser#59511722 to nil")
		tl_peer_gen.go#L141: 		return fmt.Errorf("unable to decode peerUser#59511722: %w", err)
		tl_peer_gen.go#L149: 		return fmt.Errorf("can't decode peerUser#59511722 to nil")
		tl_peer_gen.go#L154: 			return fmt.Errorf("unable to decode peerUser#59511722: field user_id: %w", err)
		tl_peer_gen.go#L255: 		return fmt.Errorf("can't encode peerChat#36c6019a as nil")
		tl_peer_gen.go#L264: 		return fmt.Errorf("can't encode peerChat#36c6019a as nil")
		tl_peer_gen.go#L273: 		return fmt.Errorf("can't decode peerChat#36c6019a to nil")
		tl_peer_gen.go#L276: 		return fmt.Errorf("unable to decode peerChat#36c6019a: %w", err)
		tl_peer_gen.go#L284: 		return fmt.Errorf("can't decode peerChat#36c6019a to nil")
		tl_peer_gen.go#L289: 			return fmt.Errorf("unable to decode peerChat#36c6019a: field chat_id: %w", err)
		tl_peer_gen.go#L390: 		return fmt.Errorf("can't encode peerChannel#a2a5371e as nil")
		tl_peer_gen.go#L399: 		return fmt.Errorf("can't encode peerChannel#a2a5371e as nil")
		tl_peer_gen.go#L408: 		return fmt.Errorf("can't decode peerChannel#a2a5371e to nil")
		tl_peer_gen.go#L411: 		return fmt.Errorf("unable to decode peerChannel#a2a5371e: %w", err)
		tl_peer_gen.go#L419: 		return fmt.Errorf("can't decode peerChannel#a2a5371e to nil")
		tl_peer_gen.go#L424: 			return fmt.Errorf("unable to decode peerChannel#a2a5371e: field channel_id: %w", err)
		tl_peer_gen.go#L496: 			return nil, fmt.Errorf("unable to decode PeerClass: %w", err)
		tl_peer_gen.go#L503: 			return nil, fmt.Errorf("unable to decode PeerClass: %w", err)
		tl_peer_gen.go#L510: 			return nil, fmt.Errorf("unable to decode PeerClass: %w", err)
		tl_peer_gen.go#L514: 		return nil, fmt.Errorf("unable to decode PeerClass: %w", bin.NewUnexpectedID(id))
		tl_peer_gen.go#L526: 		return fmt.Errorf("unable to decode PeerBox to nil")
		tl_peer_gen.go#L530: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_peer_gen.go#L539: 		return fmt.Errorf("unable to encode PeerClass as nil")
		tl_peer_located_gen.go#L142: 		return fmt.Errorf("can't encode peerLocated#ca461b5d as nil")
		tl_peer_located_gen.go#L151: 		return fmt.Errorf("can't encode peerLocated#ca461b5d as nil")
		tl_peer_located_gen.go#L154: 		return fmt.Errorf("unable to encode peerLocated#ca461b5d: field peer is nil")
		tl_peer_located_gen.go#L157: 		return fmt.Errorf("unable to encode peerLocated#ca461b5d: field peer: %w", err)
		tl_peer_located_gen.go#L167: 		return fmt.Errorf("can't decode peerLocated#ca461b5d to nil")
		tl_peer_located_gen.go#L170: 		return fmt.Errorf("unable to decode peerLocated#ca461b5d: %w", err)
		tl_peer_located_gen.go#L178: 		return fmt.Errorf("can't decode peerLocated#ca461b5d to nil")
		tl_peer_located_gen.go#L183: 			return fmt.Errorf("unable to decode peerLocated#ca461b5d: field peer: %w", err)
		tl_peer_located_gen.go#L190: 			return fmt.Errorf("unable to decode peerLocated#ca461b5d: field expires: %w", err)
		tl_peer_located_gen.go#L197: 			return fmt.Errorf("unable to decode peerLocated#ca461b5d: field distance: %w", err)
		tl_peer_located_gen.go#L314: 		return fmt.Errorf("can't encode peerSelfLocated#f8ec284b as nil")
		tl_peer_located_gen.go#L323: 		return fmt.Errorf("can't encode peerSelfLocated#f8ec284b as nil")
		tl_peer_located_gen.go#L332: 		return fmt.Errorf("can't decode peerSelfLocated#f8ec284b to nil")
		tl_peer_located_gen.go#L335: 		return fmt.Errorf("unable to decode peerSelfLocated#f8ec284b: %w", err)
		tl_peer_located_gen.go#L343: 		return fmt.Errorf("can't decode peerSelfLocated#f8ec284b to nil")
		tl_peer_located_gen.go#L348: 			return fmt.Errorf("unable to decode peerSelfLocated#f8ec284b: field expires: %w", err)
		tl_peer_located_gen.go#L414: 			return nil, fmt.Errorf("unable to decode PeerLocatedClass: %w", err)
		tl_peer_located_gen.go#L421: 			return nil, fmt.Errorf("unable to decode PeerLocatedClass: %w", err)
		tl_peer_located_gen.go#L425: 		return nil, fmt.Errorf("unable to decode PeerLocatedClass: %w", bin.NewUnexpectedID(id))
		tl_peer_located_gen.go#L437: 		return fmt.Errorf("unable to decode PeerLocatedBox to nil")
		tl_peer_located_gen.go#L441: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_peer_located_gen.go#L450: 		return fmt.Errorf("unable to encode PeerLocatedClass as nil")
		tl_peer_notify_settings_gen.go#L338: 		return fmt.Errorf("can't encode peerNotifySettings#99622c0c as nil")
		tl_peer_notify_settings_gen.go#L347: 		return fmt.Errorf("can't encode peerNotifySettings#99622c0c as nil")
		tl_peer_notify_settings_gen.go#L351: 		return fmt.Errorf("unable to encode peerNotifySettings#99622c0c: field flags: %w", err)
		tl_peer_notify_settings_gen.go#L364: 			return fmt.Errorf("unable to encode peerNotifySettings#99622c0c: field ios_sound is nil")
		tl_peer_notify_settings_gen.go#L367: 			return fmt.Errorf("unable to encode peerNotifySettings#99622c0c: field ios_sound: %w", err)
		tl_peer_notify_settings_gen.go#L372: 			return fmt.Errorf("unable to encode peerNotifySettings#99622c0c: field android_sound is nil")
		tl_peer_notify_settings_gen.go#L375: 			return fmt.Errorf("unable to encode peerNotifySettings#99622c0c: field android_sound: %w", err)
		tl_peer_notify_settings_gen.go#L380: 			return fmt.Errorf("unable to encode peerNotifySettings#99622c0c: field other_sound is nil")
		tl_peer_notify_settings_gen.go#L383: 			return fmt.Errorf("unable to encode peerNotifySettings#99622c0c: field other_sound: %w", err)
		tl_peer_notify_settings_gen.go#L394: 			return fmt.Errorf("unable to encode peerNotifySettings#99622c0c: field stories_ios_sound is nil")
		tl_peer_notify_settings_gen.go#L397: 			return fmt.Errorf("unable to encode peerNotifySettings#99622c0c: field stories_ios_sound: %w", err)
		tl_peer_notify_settings_gen.go#L402: 			return fmt.Errorf("unable to encode peerNotifySettings#99622c0c: field stories_android_sound is nil")
		tl_peer_notify_settings_gen.go#L405: 			return fmt.Errorf("unable to encode peerNotifySettings#99622c0c: field stories_android_sound: %w", err)
		tl_peer_notify_settings_gen.go#L410: 			return fmt.Errorf("unable to encode peerNotifySettings#99622c0c: field stories_other_sound is nil")
		tl_peer_notify_settings_gen.go#L413: 			return fmt.Errorf("unable to encode peerNotifySettings#99622c0c: field stories_other_sound: %w", err)
		tl_peer_notify_settings_gen.go#L422: 		return fmt.Errorf("can't decode peerNotifySettings#99622c0c to nil")
		tl_peer_notify_settings_gen.go#L425: 		return fmt.Errorf("unable to decode peerNotifySettings#99622c0c: %w", err)
		tl_peer_notify_settings_gen.go#L433: 		return fmt.Errorf("can't decode peerNotifySettings#99622c0c to nil")
		tl_peer_notify_settings_gen.go#L437: 			return fmt.Errorf("unable to decode peerNotifySettings#99622c0c: field flags: %w", err)
		tl_peer_notify_settings_gen.go#L443: 			return fmt.Errorf("unable to decode peerNotifySettings#99622c0c: field show_previews: %w", err)
		tl_peer_notify_settings_gen.go#L450: 			return fmt.Errorf("unable to decode peerNotifySettings#99622c0c: field silent: %w", err)
		tl_peer_notify_settings_gen.go#L457: 			return fmt.Errorf("unable to decode peerNotifySettings#99622c0c: field mute_until: %w", err)
		tl_peer_notify_settings_gen.go#L464: 			return fmt.Errorf("unable to decode peerNotifySettings#99622c0c: field ios_sound: %w", err)
		tl_peer_notify_settings_gen.go#L471: 			return fmt.Errorf("unable to decode peerNotifySettings#99622c0c: field android_sound: %w", err)
		tl_peer_notify_settings_gen.go#L478: 			return fmt.Errorf("unable to decode peerNotifySettings#99622c0c: field other_sound: %w", err)
		tl_peer_notify_settings_gen.go#L485: 			return fmt.Errorf("unable to decode peerNotifySettings#99622c0c: field stories_muted: %w", err)
		tl_peer_notify_settings_gen.go#L492: 			return fmt.Errorf("unable to decode peerNotifySettings#99622c0c: field stories_hide_sender: %w", err)
		tl_peer_notify_settings_gen.go#L499: 			return fmt.Errorf("unable to decode peerNotifySettings#99622c0c: field stories_ios_sound: %w", err)
		tl_peer_notify_settings_gen.go#L506: 			return fmt.Errorf("unable to decode peerNotifySettings#99622c0c: field stories_android_sound: %w", err)
		tl_peer_notify_settings_gen.go#L513: 			return fmt.Errorf("unable to decode peerNotifySettings#99622c0c: field stories_other_sound: %w", err)
		tl_peer_settings_gen.go#L332: 		return fmt.Errorf("can't encode peerSettings#a518110d as nil")
		tl_peer_settings_gen.go#L341: 		return fmt.Errorf("can't encode peerSettings#a518110d as nil")
		tl_peer_settings_gen.go#L345: 		return fmt.Errorf("unable to encode peerSettings#a518110d: field flags: %w", err)
		tl_peer_settings_gen.go#L362: 		return fmt.Errorf("can't decode peerSettings#a518110d to nil")
		tl_peer_settings_gen.go#L365: 		return fmt.Errorf("unable to decode peerSettings#a518110d: %w", err)
		tl_peer_settings_gen.go#L373: 		return fmt.Errorf("can't decode peerSettings#a518110d to nil")
		tl_peer_settings_gen.go#L377: 			return fmt.Errorf("unable to decode peerSettings#a518110d: field flags: %w", err)
		tl_peer_settings_gen.go#L392: 			return fmt.Errorf("unable to decode peerSettings#a518110d: field geo_distance: %w", err)
		tl_peer_settings_gen.go#L399: 			return fmt.Errorf("unable to decode peerSettings#a518110d: field request_chat_title: %w", err)
		tl_peer_settings_gen.go#L406: 			return fmt.Errorf("unable to decode peerSettings#a518110d: field request_chat_date: %w", err)
		tl_peer_stories_gen.go#L161: 		return fmt.Errorf("can't encode peerStories#9a35e999 as nil")
		tl_peer_stories_gen.go#L170: 		return fmt.Errorf("can't encode peerStories#9a35e999 as nil")
		tl_peer_stories_gen.go#L174: 		return fmt.Errorf("unable to encode peerStories#9a35e999: field flags: %w", err)
		tl_peer_stories_gen.go#L177: 		return fmt.Errorf("unable to encode peerStories#9a35e999: field peer is nil")
		tl_peer_stories_gen.go#L180: 		return fmt.Errorf("unable to encode peerStories#9a35e999: field peer: %w", err)
		tl_peer_stories_gen.go#L188: 			return fmt.Errorf("unable to encode peerStories#9a35e999: field stories element with index %d is nil", idx)
		tl_peer_stories_gen.go#L191: 			return fmt.Errorf("unable to encode peerStories#9a35e999: field stories element with index %d: %w", idx, err)
		tl_peer_stories_gen.go#L200: 		return fmt.Errorf("can't decode peerStories#9a35e999 to nil")
		tl_peer_stories_gen.go#L203: 		return fmt.Errorf("unable to decode peerStories#9a35e999: %w", err)
		tl_peer_stories_gen.go#L211: 		return fmt.Errorf("can't decode peerStories#9a35e999 to nil")
		tl_peer_stories_gen.go#L215: 			return fmt.Errorf("unable to decode peerStories#9a35e999: field flags: %w", err)
		tl_peer_stories_gen.go#L221: 			return fmt.Errorf("unable to decode peerStories#9a35e999: field peer: %w", err)
		tl_peer_stories_gen.go#L228: 			return fmt.Errorf("unable to decode peerStories#9a35e999: field max_read_id: %w", err)
		tl_peer_stories_gen.go#L235: 			return fmt.Errorf("unable to decode peerStories#9a35e999: field stories: %w", err)
		tl_peer_stories_gen.go#L244: 				return fmt.Errorf("unable to decode peerStories#9a35e999: field stories: %w", err)
		tl_phone_accept_call_gen.go#L140: 		return fmt.Errorf("can't encode phone.acceptCall#3bd2b4a0 as nil")
		tl_phone_accept_call_gen.go#L149: 		return fmt.Errorf("can't encode phone.acceptCall#3bd2b4a0 as nil")
		tl_phone_accept_call_gen.go#L152: 		return fmt.Errorf("unable to encode phone.acceptCall#3bd2b4a0: field peer: %w", err)
		tl_phone_accept_call_gen.go#L156: 		return fmt.Errorf("unable to encode phone.acceptCall#3bd2b4a0: field protocol: %w", err)
		tl_phone_accept_call_gen.go#L164: 		return fmt.Errorf("can't decode phone.acceptCall#3bd2b4a0 to nil")
		tl_phone_accept_call_gen.go#L167: 		return fmt.Errorf("unable to decode phone.acceptCall#3bd2b4a0: %w", err)
		tl_phone_accept_call_gen.go#L175: 		return fmt.Errorf("can't decode phone.acceptCall#3bd2b4a0 to nil")
		tl_phone_accept_call_gen.go#L179: 			return fmt.Errorf("unable to decode phone.acceptCall#3bd2b4a0: field peer: %w", err)
		tl_phone_accept_call_gen.go#L185: 			return fmt.Errorf("unable to decode phone.acceptCall#3bd2b4a0: field g_b: %w", err)
		tl_phone_accept_call_gen.go#L191: 			return fmt.Errorf("unable to decode phone.acceptCall#3bd2b4a0: field protocol: %w", err)
		tl_phone_call_discard_reason_gen.go#L103: 		return fmt.Errorf("can't encode phoneCallDiscardReasonMissed#85e42301 as nil")
		tl_phone_call_discard_reason_gen.go#L112: 		return fmt.Errorf("can't encode phoneCallDiscardReasonMissed#85e42301 as nil")
		tl_phone_call_discard_reason_gen.go#L120: 		return fmt.Errorf("can't decode phoneCallDiscardReasonMissed#85e42301 to nil")
		tl_phone_call_discard_reason_gen.go#L123: 		return fmt.Errorf("unable to decode phoneCallDiscardReasonMissed#85e42301: %w", err)
		tl_phone_call_discard_reason_gen.go#L131: 		return fmt.Errorf("can't decode phoneCallDiscardReasonMissed#85e42301 to nil")
		tl_phone_call_discard_reason_gen.go#L205: 		return fmt.Errorf("can't encode phoneCallDiscardReasonDisconnect#e095c1a0 as nil")
		tl_phone_call_discard_reason_gen.go#L214: 		return fmt.Errorf("can't encode phoneCallDiscardReasonDisconnect#e095c1a0 as nil")
		tl_phone_call_discard_reason_gen.go#L222: 		return fmt.Errorf("can't decode phoneCallDiscardReasonDisconnect#e095c1a0 to nil")
		tl_phone_call_discard_reason_gen.go#L225: 		return fmt.Errorf("unable to decode phoneCallDiscardReasonDisconnect#e095c1a0: %w", err)
		tl_phone_call_discard_reason_gen.go#L233: 		return fmt.Errorf("can't decode phoneCallDiscardReasonDisconnect#e095c1a0 to nil")
		tl_phone_call_discard_reason_gen.go#L307: 		return fmt.Errorf("can't encode phoneCallDiscardReasonHangup#57adc690 as nil")
		tl_phone_call_discard_reason_gen.go#L316: 		return fmt.Errorf("can't encode phoneCallDiscardReasonHangup#57adc690 as nil")
		tl_phone_call_discard_reason_gen.go#L324: 		return fmt.Errorf("can't decode phoneCallDiscardReasonHangup#57adc690 to nil")
		tl_phone_call_discard_reason_gen.go#L327: 		return fmt.Errorf("unable to decode phoneCallDiscardReasonHangup#57adc690: %w", err)
		tl_phone_call_discard_reason_gen.go#L335: 		return fmt.Errorf("can't decode phoneCallDiscardReasonHangup#57adc690 to nil")
		tl_phone_call_discard_reason_gen.go#L409: 		return fmt.Errorf("can't encode phoneCallDiscardReasonBusy#faf7e8c9 as nil")
		tl_phone_call_discard_reason_gen.go#L418: 		return fmt.Errorf("can't encode phoneCallDiscardReasonBusy#faf7e8c9 as nil")
		tl_phone_call_discard_reason_gen.go#L426: 		return fmt.Errorf("can't decode phoneCallDiscardReasonBusy#faf7e8c9 to nil")
		tl_phone_call_discard_reason_gen.go#L429: 		return fmt.Errorf("unable to decode phoneCallDiscardReasonBusy#faf7e8c9: %w", err)
		tl_phone_call_discard_reason_gen.go#L437: 		return fmt.Errorf("can't decode phoneCallDiscardReasonBusy#faf7e8c9 to nil")
		tl_phone_call_discard_reason_gen.go#L492: 			return nil, fmt.Errorf("unable to decode PhoneCallDiscardReasonClass: %w", err)
		tl_phone_call_discard_reason_gen.go#L499: 			return nil, fmt.Errorf("unable to decode PhoneCallDiscardReasonClass: %w", err)
		tl_phone_call_discard_reason_gen.go#L506: 			return nil, fmt.Errorf("unable to decode PhoneCallDiscardReasonClass: %w", err)
		tl_phone_call_discard_reason_gen.go#L513: 			return nil, fmt.Errorf("unable to decode PhoneCallDiscardReasonClass: %w", err)
		tl_phone_call_discard_reason_gen.go#L517: 		return nil, fmt.Errorf("unable to decode PhoneCallDiscardReasonClass: %w", bin.NewUnexpectedID(id))
		tl_phone_call_discard_reason_gen.go#L529: 		return fmt.Errorf("unable to decode PhoneCallDiscardReasonBox to nil")
		tl_phone_call_discard_reason_gen.go#L533: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_phone_call_discard_reason_gen.go#L542: 		return fmt.Errorf("unable to encode PhoneCallDiscardReasonClass as nil")
		tl_phone_call_gen.go#L120: 		return fmt.Errorf("can't encode phoneCallEmpty#5366c915 as nil")
		tl_phone_call_gen.go#L129: 		return fmt.Errorf("can't encode phoneCallEmpty#5366c915 as nil")
		tl_phone_call_gen.go#L138: 		return fmt.Errorf("can't decode phoneCallEmpty#5366c915 to nil")
		tl_phone_call_gen.go#L141: 		return fmt.Errorf("unable to decode phoneCallEmpty#5366c915: %w", err)
		tl_phone_call_gen.go#L149: 		return fmt.Errorf("can't decode phoneCallEmpty#5366c915 to nil")
		tl_phone_call_gen.go#L154: 			return fmt.Errorf("unable to decode phoneCallEmpty#5366c915: field id: %w", err)
		tl_phone_call_gen.go#L357: 		return fmt.Errorf("can't encode phoneCallWaiting#c5226f17 as nil")
		tl_phone_call_gen.go#L366: 		return fmt.Errorf("can't encode phoneCallWaiting#c5226f17 as nil")
		tl_phone_call_gen.go#L370: 		return fmt.Errorf("unable to encode phoneCallWaiting#c5226f17: field flags: %w", err)
		tl_phone_call_gen.go#L378: 		return fmt.Errorf("unable to encode phoneCallWaiting#c5226f17: field protocol: %w", err)
		tl_phone_call_gen.go#L389: 		return fmt.Errorf("can't decode phoneCallWaiting#c5226f17 to nil")
		tl_phone_call_gen.go#L392: 		return fmt.Errorf("unable to decode phoneCallWaiting#c5226f17: %w", err)
		tl_phone_call_gen.go#L400: 		return fmt.Errorf("can't decode phoneCallWaiting#c5226f17 to nil")
		tl_phone_call_gen.go#L404: 			return fmt.Errorf("unable to decode phoneCallWaiting#c5226f17: field flags: %w", err)
		tl_phone_call_gen.go#L411: 			return fmt.Errorf("unable to decode phoneCallWaiting#c5226f17: field id: %w", err)
		tl_phone_call_gen.go#L418: 			return fmt.Errorf("unable to decode phoneCallWaiting#c5226f17: field access_hash: %w", err)
		tl_phone_call_gen.go#L425: 			return fmt.Errorf("unable to decode phoneCallWaiting#c5226f17: field date: %w", err)
		tl_phone_call_gen.go#L432: 			return fmt.Errorf("unable to decode phoneCallWaiting#c5226f17: field admin_id: %w", err)
		tl_phone_call_gen.go#L439: 			return fmt.Errorf("unable to decode phoneCallWaiting#c5226f17: field participant_id: %w", err)
		tl_phone_call_gen.go#L445: 			return fmt.Errorf("unable to decode phoneCallWaiting#c5226f17: field protocol: %w", err)
		tl_phone_call_gen.go#L451: 			return fmt.Errorf("unable to decode phoneCallWaiting#c5226f17: field receive_date: %w", err)
		tl_phone_call_gen.go#L725: 		return fmt.Errorf("can't encode phoneCallRequested#14b0ed0c as nil")
		tl_phone_call_gen.go#L734: 		return fmt.Errorf("can't encode phoneCallRequested#14b0ed0c as nil")
		tl_phone_call_gen.go#L738: 		return fmt.Errorf("unable to encode phoneCallRequested#14b0ed0c: field flags: %w", err)
		tl_phone_call_gen.go#L747: 		return fmt.Errorf("unable to encode phoneCallRequested#14b0ed0c: field protocol: %w", err)
		tl_phone_call_gen.go#L755: 		return fmt.Errorf("can't decode phoneCallRequested#14b0ed0c to nil")
		tl_phone_call_gen.go#L758: 		return fmt.Errorf("unable to decode phoneCallRequested#14b0ed0c: %w", err)
		tl_phone_call_gen.go#L766: 		return fmt.Errorf("can't decode phoneCallRequested#14b0ed0c to nil")
		tl_phone_call_gen.go#L770: 			return fmt.Errorf("unable to decode phoneCallRequested#14b0ed0c: field flags: %w", err)
		tl_phone_call_gen.go#L777: 			return fmt.Errorf("unable to decode phoneCallRequested#14b0ed0c: field id: %w", err)
		tl_phone_call_gen.go#L784: 			return fmt.Errorf("unable to decode phoneCallRequested#14b0ed0c: field access_hash: %w", err)
		tl_phone_call_gen.go#L791: 			return fmt.Errorf("unable to decode phoneCallRequested#14b0ed0c: field date: %w", err)
		tl_phone_call_gen.go#L798: 			return fmt.Errorf("unable to decode phoneCallRequested#14b0ed0c: field admin_id: %w", err)
		tl_phone_call_gen.go#L805: 			return fmt.Errorf("unable to decode phoneCallRequested#14b0ed0c: field participant_id: %w", err)
		tl_phone_call_gen.go#L812: 			return fmt.Errorf("unable to decode phoneCallRequested#14b0ed0c: field g_a_hash: %w", err)
		tl_phone_call_gen.go#L818: 			return fmt.Errorf("unable to decode phoneCallRequested#14b0ed0c: field protocol: %w", err)
		tl_phone_call_gen.go#L1081: 		return fmt.Errorf("can't encode phoneCallAccepted#3660c311 as nil")
		tl_phone_call_gen.go#L1090: 		return fmt.Errorf("can't encode phoneCallAccepted#3660c311 as nil")
		tl_phone_call_gen.go#L1094: 		return fmt.Errorf("unable to encode phoneCallAccepted#3660c311: field flags: %w", err)
		tl_phone_call_gen.go#L1103: 		return fmt.Errorf("unable to encode phoneCallAccepted#3660c311: field protocol: %w", err)
		tl_phone_call_gen.go#L1111: 		return fmt.Errorf("can't decode phoneCallAccepted#3660c311 to nil")
		tl_phone_call_gen.go#L1114: 		return fmt.Errorf("unable to decode phoneCallAccepted#3660c311: %w", err)
		tl_phone_call_gen.go#L1122: 		return fmt.Errorf("can't decode phoneCallAccepted#3660c311 to nil")
		tl_phone_call_gen.go#L1126: 			return fmt.Errorf("unable to decode phoneCallAccepted#3660c311: field flags: %w", err)
		tl_phone_call_gen.go#L1133: 			return fmt.Errorf("unable to decode phoneCallAccepted#3660c311: field id: %w", err)
		tl_phone_call_gen.go#L1140: 			return fmt.Errorf("unable to decode phoneCallAccepted#3660c311: field access_hash: %w", err)
		tl_phone_call_gen.go#L1147: 			return fmt.Errorf("unable to decode phoneCallAccepted#3660c311: field date: %w", err)
		tl_phone_call_gen.go#L1154: 			return fmt.Errorf("unable to decode phoneCallAccepted#3660c311: field admin_id: %w", err)
		tl_phone_call_gen.go#L1161: 			return fmt.Errorf("unable to decode phoneCallAccepted#3660c311: field participant_id: %w", err)
		tl_phone_call_gen.go#L1168: 			return fmt.Errorf("unable to decode phoneCallAccepted#3660c311: field g_b: %w", err)
		tl_phone_call_gen.go#L1174: 			return fmt.Errorf("unable to decode phoneCallAccepted#3660c311: field protocol: %w", err)
		tl_phone_call_gen.go#L1488: 		return fmt.Errorf("can't encode phoneCall#967f7c67 as nil")
		tl_phone_call_gen.go#L1497: 		return fmt.Errorf("can't encode phoneCall#967f7c67 as nil")
		tl_phone_call_gen.go#L1501: 		return fmt.Errorf("unable to encode phoneCall#967f7c67: field flags: %w", err)
		tl_phone_call_gen.go#L1511: 		return fmt.Errorf("unable to encode phoneCall#967f7c67: field protocol: %w", err)
		tl_phone_call_gen.go#L1516: 			return fmt.Errorf("unable to encode phoneCall#967f7c67: field connections element with index %d is nil", idx)
		tl_phone_call_gen.go#L1519: 			return fmt.Errorf("unable to encode phoneCall#967f7c67: field connections element with index %d: %w", idx, err)
		tl_phone_call_gen.go#L1529: 		return fmt.Errorf("can't decode phoneCall#967f7c67 to nil")
		tl_phone_call_gen.go#L1532: 		return fmt.Errorf("unable to decode phoneCall#967f7c67: %w", err)
		tl_phone_call_gen.go#L1540: 		return fmt.Errorf("can't decode phoneCall#967f7c67 to nil")
		tl_phone_call_gen.go#L1544: 			return fmt.Errorf("unable to decode phoneCall#967f7c67: field flags: %w", err)
		tl_phone_call_gen.go#L1552: 			return fmt.Errorf("unable to decode phoneCall#967f7c67: field id: %w", err)
		tl_phone_call_gen.go#L1559: 			return fmt.Errorf("unable to decode phoneCall#967f7c67: field access_hash: %w", err)
		tl_phone_call_gen.go#L1566: 			return fmt.Errorf("unable to decode phoneCall#967f7c67: field date: %w", err)
		tl_phone_call_gen.go#L1573: 			return fmt.Errorf("unable to decode phoneCall#967f7c67: field admin_id: %w", err)
		tl_phone_call_gen.go#L1580: 			return fmt.Errorf("unable to decode phoneCall#967f7c67: field participant_id: %w", err)
		tl_phone_call_gen.go#L1587: 			return fmt.Errorf("unable to decode phoneCall#967f7c67: field g_a_or_b: %w", err)
		tl_phone_call_gen.go#L1594: 			return fmt.Errorf("unable to decode phoneCall#967f7c67: field key_fingerprint: %w", err)
		tl_phone_call_gen.go#L1600: 			return fmt.Errorf("unable to decode phoneCall#967f7c67: field protocol: %w", err)
		tl_phone_call_gen.go#L1606: 			return fmt.Errorf("unable to decode phoneCall#967f7c67: field connections: %w", err)
		tl_phone_call_gen.go#L1615: 				return fmt.Errorf("unable to decode phoneCall#967f7c67: field connections: %w", err)
		tl_phone_call_gen.go#L1623: 			return fmt.Errorf("unable to decode phoneCall#967f7c67: field start_date: %w", err)
		tl_phone_call_gen.go#L1942: 		return fmt.Errorf("can't encode phoneCallDiscarded#50ca4de1 as nil")
		tl_phone_call_gen.go#L1951: 		return fmt.Errorf("can't encode phoneCallDiscarded#50ca4de1 as nil")
		tl_phone_call_gen.go#L1955: 		return fmt.Errorf("unable to encode phoneCallDiscarded#50ca4de1: field flags: %w", err)
		tl_phone_call_gen.go#L1960: 			return fmt.Errorf("unable to encode phoneCallDiscarded#50ca4de1: field reason is nil")
		tl_phone_call_gen.go#L1963: 			return fmt.Errorf("unable to encode phoneCallDiscarded#50ca4de1: field reason: %w", err)
		tl_phone_call_gen.go#L1975: 		return fmt.Errorf("can't decode phoneCallDiscarded#50ca4de1 to nil")
		tl_phone_call_gen.go#L1978: 		return fmt.Errorf("unable to decode phoneCallDiscarded#50ca4de1: %w", err)
		tl_phone_call_gen.go#L1986: 		return fmt.Errorf("can't decode phoneCallDiscarded#50ca4de1 to nil")
		tl_phone_call_gen.go#L1990: 			return fmt.Errorf("unable to decode phoneCallDiscarded#50ca4de1: field flags: %w", err)
		tl_phone_call_gen.go#L1999: 			return fmt.Errorf("unable to decode phoneCallDiscarded#50ca4de1: field id: %w", err)
		tl_phone_call_gen.go#L2006: 			return fmt.Errorf("unable to decode phoneCallDiscarded#50ca4de1: field reason: %w", err)
		tl_phone_call_gen.go#L2013: 			return fmt.Errorf("unable to decode phoneCallDiscarded#50ca4de1: field duration: %w", err)
		tl_phone_call_gen.go#L2250: 			return nil, fmt.Errorf("unable to decode PhoneCallClass: %w", err)
		tl_phone_call_gen.go#L2257: 			return nil, fmt.Errorf("unable to decode PhoneCallClass: %w", err)
		tl_phone_call_gen.go#L2264: 			return nil, fmt.Errorf("unable to decode PhoneCallClass: %w", err)
		tl_phone_call_gen.go#L2271: 			return nil, fmt.Errorf("unable to decode PhoneCallClass: %w", err)
		tl_phone_call_gen.go#L2278: 			return nil, fmt.Errorf("unable to decode PhoneCallClass: %w", err)
		tl_phone_call_gen.go#L2285: 			return nil, fmt.Errorf("unable to decode PhoneCallClass: %w", err)
		tl_phone_call_gen.go#L2289: 		return nil, fmt.Errorf("unable to decode PhoneCallClass: %w", bin.NewUnexpectedID(id))
		tl_phone_call_gen.go#L2301: 		return fmt.Errorf("unable to decode PhoneCallBox to nil")
		tl_phone_call_gen.go#L2305: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_phone_call_gen.go#L2314: 		return fmt.Errorf("unable to encode PhoneCallClass as nil")
		tl_phone_call_protocol_gen.go#L188: 		return fmt.Errorf("can't encode phoneCallProtocol#fc878fc8 as nil")
		tl_phone_call_protocol_gen.go#L197: 		return fmt.Errorf("can't encode phoneCallProtocol#fc878fc8 as nil")
		tl_phone_call_protocol_gen.go#L201: 		return fmt.Errorf("unable to encode phoneCallProtocol#fc878fc8: field flags: %w", err)
		tl_phone_call_protocol_gen.go#L215: 		return fmt.Errorf("can't decode phoneCallProtocol#fc878fc8 to nil")
		tl_phone_call_protocol_gen.go#L218: 		return fmt.Errorf("unable to decode phoneCallProtocol#fc878fc8: %w", err)
		tl_phone_call_protocol_gen.go#L226: 		return fmt.Errorf("can't decode phoneCallProtocol#fc878fc8 to nil")
		tl_phone_call_protocol_gen.go#L230: 			return fmt.Errorf("unable to decode phoneCallProtocol#fc878fc8: field flags: %w", err)
		tl_phone_call_protocol_gen.go#L238: 			return fmt.Errorf("unable to decode phoneCallProtocol#fc878fc8: field min_layer: %w", err)
		tl_phone_call_protocol_gen.go#L245: 			return fmt.Errorf("unable to decode phoneCallProtocol#fc878fc8: field max_layer: %w", err)
		tl_phone_call_protocol_gen.go#L252: 			return fmt.Errorf("unable to decode phoneCallProtocol#fc878fc8: field library_versions: %w", err)
		tl_phone_call_protocol_gen.go#L261: 				return fmt.Errorf("unable to decode phoneCallProtocol#fc878fc8: field library_versions: %w", err)
		tl_phone_check_group_call_gen.go#L129: 		return fmt.Errorf("can't encode phone.checkGroupCall#b59cf977 as nil")
		tl_phone_check_group_call_gen.go#L138: 		return fmt.Errorf("can't encode phone.checkGroupCall#b59cf977 as nil")
		tl_phone_check_group_call_gen.go#L141: 		return fmt.Errorf("unable to encode phone.checkGroupCall#b59cf977: field call: %w", err)
		tl_phone_check_group_call_gen.go#L153: 		return fmt.Errorf("can't decode phone.checkGroupCall#b59cf977 to nil")
		tl_phone_check_group_call_gen.go#L156: 		return fmt.Errorf("unable to decode phone.checkGroupCall#b59cf977: %w", err)
		tl_phone_check_group_call_gen.go#L164: 		return fmt.Errorf("can't decode phone.checkGroupCall#b59cf977 to nil")
		tl_phone_check_group_call_gen.go#L168: 			return fmt.Errorf("unable to decode phone.checkGroupCall#b59cf977: field call: %w", err)
		tl_phone_check_group_call_gen.go#L174: 			return fmt.Errorf("unable to decode phone.checkGroupCall#b59cf977: field sources: %w", err)
		tl_phone_check_group_call_gen.go#L183: 				return fmt.Errorf("unable to decode phone.checkGroupCall#b59cf977: field sources: %w", err)
		tl_phone_confirm_call_gen.go#L154: 		return fmt.Errorf("can't encode phone.confirmCall#2efe1722 as nil")
		tl_phone_confirm_call_gen.go#L163: 		return fmt.Errorf("can't encode phone.confirmCall#2efe1722 as nil")
		tl_phone_confirm_call_gen.go#L166: 		return fmt.Errorf("unable to encode phone.confirmCall#2efe1722: field peer: %w", err)
		tl_phone_confirm_call_gen.go#L171: 		return fmt.Errorf("unable to encode phone.confirmCall#2efe1722: field protocol: %w", err)
		tl_phone_confirm_call_gen.go#L179: 		return fmt.Errorf("can't decode phone.confirmCall#2efe1722 to nil")
		tl_phone_confirm_call_gen.go#L182: 		return fmt.Errorf("unable to decode phone.confirmCall#2efe1722: %w", err)
		tl_phone_confirm_call_gen.go#L190: 		return fmt.Errorf("can't decode phone.confirmCall#2efe1722 to nil")
		tl_phone_confirm_call_gen.go#L194: 			return fmt.Errorf("unable to decode phone.confirmCall#2efe1722: field peer: %w", err)
		tl_phone_confirm_call_gen.go#L200: 			return fmt.Errorf("unable to decode phone.confirmCall#2efe1722: field g_a: %w", err)
		tl_phone_confirm_call_gen.go#L207: 			return fmt.Errorf("unable to decode phone.confirmCall#2efe1722: field key_fingerprint: %w", err)
		tl_phone_confirm_call_gen.go#L213: 			return fmt.Errorf("unable to decode phone.confirmCall#2efe1722: field protocol: %w", err)
		tl_phone_connection_gen.go#L191: 		return fmt.Errorf("can't encode phoneConnection#9cc123c7 as nil")
		tl_phone_connection_gen.go#L200: 		return fmt.Errorf("can't encode phoneConnection#9cc123c7 as nil")
		tl_phone_connection_gen.go#L204: 		return fmt.Errorf("unable to encode phoneConnection#9cc123c7: field flags: %w", err)
		tl_phone_connection_gen.go#L217: 		return fmt.Errorf("can't decode phoneConnection#9cc123c7 to nil")
		tl_phone_connection_gen.go#L220: 		return fmt.Errorf("unable to decode phoneConnection#9cc123c7: %w", err)
		tl_phone_connection_gen.go#L228: 		return fmt.Errorf("can't decode phoneConnection#9cc123c7 to nil")
		tl_phone_connection_gen.go#L232: 			return fmt.Errorf("unable to decode phoneConnection#9cc123c7: field flags: %w", err)
		tl_phone_connection_gen.go#L239: 			return fmt.Errorf("unable to decode phoneConnection#9cc123c7: field id: %w", err)
		tl_phone_connection_gen.go#L246: 			return fmt.Errorf("unable to decode phoneConnection#9cc123c7: field ip: %w", err)
		tl_phone_connection_gen.go#L253: 			return fmt.Errorf("unable to decode phoneConnection#9cc123c7: field ipv6: %w", err)
		tl_phone_connection_gen.go#L260: 			return fmt.Errorf("unable to decode phoneConnection#9cc123c7: field port: %w", err)
		tl_phone_connection_gen.go#L267: 			return fmt.Errorf("unable to decode phoneConnection#9cc123c7: field peer_tag: %w", err)
		tl_phone_connection_gen.go#L516: 		return fmt.Errorf("can't encode phoneConnectionWebrtc#635fe375 as nil")
		tl_phone_connection_gen.go#L525: 		return fmt.Errorf("can't encode phoneConnectionWebrtc#635fe375 as nil")
		tl_phone_connection_gen.go#L529: 		return fmt.Errorf("unable to encode phoneConnectionWebrtc#635fe375: field flags: %w", err)
		tl_phone_connection_gen.go#L543: 		return fmt.Errorf("can't decode phoneConnectionWebrtc#635fe375 to nil")
		tl_phone_connection_gen.go#L546: 		return fmt.Errorf("unable to decode phoneConnectionWebrtc#635fe375: %w", err)
		tl_phone_connection_gen.go#L554: 		return fmt.Errorf("can't decode phoneConnectionWebrtc#635fe375 to nil")
		tl_phone_connection_gen.go#L558: 			return fmt.Errorf("unable to decode phoneConnectionWebrtc#635fe375: field flags: %w", err)
		tl_phone_connection_gen.go#L566: 			return fmt.Errorf("unable to decode phoneConnectionWebrtc#635fe375: field id: %w", err)
		tl_phone_connection_gen.go#L573: 			return fmt.Errorf("unable to decode phoneConnectionWebrtc#635fe375: field ip: %w", err)
		tl_phone_connection_gen.go#L580: 			return fmt.Errorf("unable to decode phoneConnectionWebrtc#635fe375: field ipv6: %w", err)
		tl_phone_connection_gen.go#L587: 			return fmt.Errorf("unable to decode phoneConnectionWebrtc#635fe375: field port: %w", err)
		tl_phone_connection_gen.go#L594: 			return fmt.Errorf("unable to decode phoneConnectionWebrtc#635fe375: field username: %w", err)
		tl_phone_connection_gen.go#L601: 			return fmt.Errorf("unable to decode phoneConnectionWebrtc#635fe375: field password: %w", err)
		tl_phone_connection_gen.go#L754: 			return nil, fmt.Errorf("unable to decode PhoneConnectionClass: %w", err)
		tl_phone_connection_gen.go#L761: 			return nil, fmt.Errorf("unable to decode PhoneConnectionClass: %w", err)
		tl_phone_connection_gen.go#L765: 		return nil, fmt.Errorf("unable to decode PhoneConnectionClass: %w", bin.NewUnexpectedID(id))
		tl_phone_connection_gen.go#L777: 		return fmt.Errorf("unable to decode PhoneConnectionBox to nil")
		tl_phone_connection_gen.go#L781: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_phone_connection_gen.go#L790: 		return fmt.Errorf("unable to encode PhoneConnectionClass as nil")
		tl_phone_create_group_call_gen.go#L201: 		return fmt.Errorf("can't encode phone.createGroupCall#48cdc6d8 as nil")
		tl_phone_create_group_call_gen.go#L210: 		return fmt.Errorf("can't encode phone.createGroupCall#48cdc6d8 as nil")
		tl_phone_create_group_call_gen.go#L214: 		return fmt.Errorf("unable to encode phone.createGroupCall#48cdc6d8: field flags: %w", err)
		tl_phone_create_group_call_gen.go#L217: 		return fmt.Errorf("unable to encode phone.createGroupCall#48cdc6d8: field peer is nil")
		tl_phone_create_group_call_gen.go#L220: 		return fmt.Errorf("unable to encode phone.createGroupCall#48cdc6d8: field peer: %w", err)
		tl_phone_create_group_call_gen.go#L235: 		return fmt.Errorf("can't decode phone.createGroupCall#48cdc6d8 to nil")
		tl_phone_create_group_call_gen.go#L238: 		return fmt.Errorf("unable to decode phone.createGroupCall#48cdc6d8: %w", err)
		tl_phone_create_group_call_gen.go#L246: 		return fmt.Errorf("can't decode phone.createGroupCall#48cdc6d8 to nil")
		tl_phone_create_group_call_gen.go#L250: 			return fmt.Errorf("unable to decode phone.createGroupCall#48cdc6d8: field flags: %w", err)
		tl_phone_create_group_call_gen.go#L257: 			return fmt.Errorf("unable to decode phone.createGroupCall#48cdc6d8: field peer: %w", err)
		tl_phone_create_group_call_gen.go#L264: 			return fmt.Errorf("unable to decode phone.createGroupCall#48cdc6d8: field random_id: %w", err)
		tl_phone_create_group_call_gen.go#L271: 			return fmt.Errorf("unable to decode phone.createGroupCall#48cdc6d8: field title: %w", err)
		tl_phone_create_group_call_gen.go#L278: 			return fmt.Errorf("unable to decode phone.createGroupCall#48cdc6d8: field schedule_date: %w", err)
		tl_phone_discard_call_gen.go#L175: 		return fmt.Errorf("can't encode phone.discardCall#b2cbc1c0 as nil")
		tl_phone_discard_call_gen.go#L184: 		return fmt.Errorf("can't encode phone.discardCall#b2cbc1c0 as nil")
		tl_phone_discard_call_gen.go#L188: 		return fmt.Errorf("unable to encode phone.discardCall#b2cbc1c0: field flags: %w", err)
		tl_phone_discard_call_gen.go#L191: 		return fmt.Errorf("unable to encode phone.discardCall#b2cbc1c0: field peer: %w", err)
		tl_phone_discard_call_gen.go#L195: 		return fmt.Errorf("unable to encode phone.discardCall#b2cbc1c0: field reason is nil")
		tl_phone_discard_call_gen.go#L198: 		return fmt.Errorf("unable to encode phone.discardCall#b2cbc1c0: field reason: %w", err)
		tl_phone_discard_call_gen.go#L207: 		return fmt.Errorf("can't decode phone.discardCall#b2cbc1c0 to nil")
		tl_phone_discard_call_gen.go#L210: 		return fmt.Errorf("unable to decode phone.discardCall#b2cbc1c0: %w", err)
		tl_phone_discard_call_gen.go#L218: 		return fmt.Errorf("can't decode phone.discardCall#b2cbc1c0 to nil")
		tl_phone_discard_call_gen.go#L222: 			return fmt.Errorf("unable to decode phone.discardCall#b2cbc1c0: field flags: %w", err)
		tl_phone_discard_call_gen.go#L228: 			return fmt.Errorf("unable to decode phone.discardCall#b2cbc1c0: field peer: %w", err)
		tl_phone_discard_call_gen.go#L234: 			return fmt.Errorf("unable to decode phone.discardCall#b2cbc1c0: field duration: %w", err)
		tl_phone_discard_call_gen.go#L241: 			return fmt.Errorf("unable to decode phone.discardCall#b2cbc1c0: field reason: %w", err)
		tl_phone_discard_call_gen.go#L248: 			return fmt.Errorf("unable to decode phone.discardCall#b2cbc1c0: field connection_id: %w", err)
		tl_phone_discard_group_call_gen.go#L115: 		return fmt.Errorf("can't encode phone.discardGroupCall#7a777135 as nil")
		tl_phone_discard_group_call_gen.go#L124: 		return fmt.Errorf("can't encode phone.discardGroupCall#7a777135 as nil")
		tl_phone_discard_group_call_gen.go#L127: 		return fmt.Errorf("unable to encode phone.discardGroupCall#7a777135: field call: %w", err)
		tl_phone_discard_group_call_gen.go#L135: 		return fmt.Errorf("can't decode phone.discardGroupCall#7a777135 to nil")
		tl_phone_discard_group_call_gen.go#L138: 		return fmt.Errorf("unable to decode phone.discardGroupCall#7a777135: %w", err)
		tl_phone_discard_group_call_gen.go#L146: 		return fmt.Errorf("can't decode phone.discardGroupCall#7a777135 to nil")
		tl_phone_discard_group_call_gen.go#L150: 			return fmt.Errorf("unable to decode phone.discardGroupCall#7a777135: field call: %w", err)
		tl_phone_edit_group_call_participant_gen.go#L263: 		return fmt.Errorf("can't encode phone.editGroupCallParticipant#a5273abf as nil")
		tl_phone_edit_group_call_participant_gen.go#L272: 		return fmt.Errorf("can't encode phone.editGroupCallParticipant#a5273abf as nil")
		tl_phone_edit_group_call_participant_gen.go#L276: 		return fmt.Errorf("unable to encode phone.editGroupCallParticipant#a5273abf: field flags: %w", err)
		tl_phone_edit_group_call_participant_gen.go#L279: 		return fmt.Errorf("unable to encode phone.editGroupCallParticipant#a5273abf: field call: %w", err)
		tl_phone_edit_group_call_participant_gen.go#L282: 		return fmt.Errorf("unable to encode phone.editGroupCallParticipant#a5273abf: field participant is nil")
		tl_phone_edit_group_call_participant_gen.go#L285: 		return fmt.Errorf("unable to encode phone.editGroupCallParticipant#a5273abf: field participant: %w", err)
		tl_phone_edit_group_call_participant_gen.go#L311: 		return fmt.Errorf("can't decode phone.editGroupCallParticipant#a5273abf to nil")
		tl_phone_edit_group_call_participant_gen.go#L314: 		return fmt.Errorf("unable to decode phone.editGroupCallParticipant#a5273abf: %w", err)
		tl_phone_edit_group_call_participant_gen.go#L322: 		return fmt.Errorf("can't decode phone.editGroupCallParticipant#a5273abf to nil")
		tl_phone_edit_group_call_participant_gen.go#L326: 			return fmt.Errorf("unable to decode phone.editGroupCallParticipant#a5273abf: field flags: %w", err)
		tl_phone_edit_group_call_participant_gen.go#L331: 			return fmt.Errorf("unable to decode phone.editGroupCallParticipant#a5273abf: field call: %w", err)
		tl_phone_edit_group_call_participant_gen.go#L337: 			return fmt.Errorf("unable to decode phone.editGroupCallParticipant#a5273abf: field participant: %w", err)
		tl_phone_edit_group_call_participant_gen.go#L344: 			return fmt.Errorf("unable to decode phone.editGroupCallParticipant#a5273abf: field muted: %w", err)
		tl_phone_edit_group_call_participant_gen.go#L351: 			return fmt.Errorf("unable to decode phone.editGroupCallParticipant#a5273abf: field volume: %w", err)
		tl_phone_edit_group_call_participant_gen.go#L358: 			return fmt.Errorf("unable to decode phone.editGroupCallParticipant#a5273abf: field raise_hand: %w", err)
		tl_phone_edit_group_call_participant_gen.go#L365: 			return fmt.Errorf("unable to decode phone.editGroupCallParticipant#a5273abf: field video_stopped: %w", err)
		tl_phone_edit_group_call_participant_gen.go#L372: 			return fmt.Errorf("unable to decode phone.editGroupCallParticipant#a5273abf: field video_paused: %w", err)
		tl_phone_edit_group_call_participant_gen.go#L379: 			return fmt.Errorf("unable to decode phone.editGroupCallParticipant#a5273abf: field presentation_paused: %w", err)
		tl_phone_edit_group_call_title_gen.go#L126: 		return fmt.Errorf("can't encode phone.editGroupCallTitle#1ca6ac0a as nil")
		tl_phone_edit_group_call_title_gen.go#L135: 		return fmt.Errorf("can't encode phone.editGroupCallTitle#1ca6ac0a as nil")
		tl_phone_edit_group_call_title_gen.go#L138: 		return fmt.Errorf("unable to encode phone.editGroupCallTitle#1ca6ac0a: field call: %w", err)
		tl_phone_edit_group_call_title_gen.go#L147: 		return fmt.Errorf("can't decode phone.editGroupCallTitle#1ca6ac0a to nil")
		tl_phone_edit_group_call_title_gen.go#L150: 		return fmt.Errorf("unable to decode phone.editGroupCallTitle#1ca6ac0a: %w", err)
		tl_phone_edit_group_call_title_gen.go#L158: 		return fmt.Errorf("can't decode phone.editGroupCallTitle#1ca6ac0a to nil")
		tl_phone_edit_group_call_title_gen.go#L162: 			return fmt.Errorf("unable to decode phone.editGroupCallTitle#1ca6ac0a: field call: %w", err)
		tl_phone_edit_group_call_title_gen.go#L168: 			return fmt.Errorf("unable to decode phone.editGroupCallTitle#1ca6ac0a: field title: %w", err)
		tl_phone_export_group_call_invite_gen.go#L147: 		return fmt.Errorf("can't encode phone.exportGroupCallInvite#e6aa647f as nil")
		tl_phone_export_group_call_invite_gen.go#L156: 		return fmt.Errorf("can't encode phone.exportGroupCallInvite#e6aa647f as nil")
		tl_phone_export_group_call_invite_gen.go#L160: 		return fmt.Errorf("unable to encode phone.exportGroupCallInvite#e6aa647f: field flags: %w", err)
		tl_phone_export_group_call_invite_gen.go#L163: 		return fmt.Errorf("unable to encode phone.exportGroupCallInvite#e6aa647f: field call: %w", err)
		tl_phone_export_group_call_invite_gen.go#L171: 		return fmt.Errorf("can't decode phone.exportGroupCallInvite#e6aa647f to nil")
		tl_phone_export_group_call_invite_gen.go#L174: 		return fmt.Errorf("unable to decode phone.exportGroupCallInvite#e6aa647f: %w", err)
		tl_phone_export_group_call_invite_gen.go#L182: 		return fmt.Errorf("can't decode phone.exportGroupCallInvite#e6aa647f to nil")
		tl_phone_export_group_call_invite_gen.go#L186: 			return fmt.Errorf("unable to decode phone.exportGroupCallInvite#e6aa647f: field flags: %w", err)
		tl_phone_export_group_call_invite_gen.go#L192: 			return fmt.Errorf("unable to decode phone.exportGroupCallInvite#e6aa647f: field call: %w", err)
		tl_phone_exported_group_call_invite_gen.go#L115: 		return fmt.Errorf("can't encode phone.exportedGroupCallInvite#204bd158 as nil")
		tl_phone_exported_group_call_invite_gen.go#L124: 		return fmt.Errorf("can't encode phone.exportedGroupCallInvite#204bd158 as nil")
		tl_phone_exported_group_call_invite_gen.go#L133: 		return fmt.Errorf("can't decode phone.exportedGroupCallInvite#204bd158 to nil")
		tl_phone_exported_group_call_invite_gen.go#L136: 		return fmt.Errorf("unable to decode phone.exportedGroupCallInvite#204bd158: %w", err)
		tl_phone_exported_group_call_invite_gen.go#L144: 		return fmt.Errorf("can't decode phone.exportedGroupCallInvite#204bd158 to nil")
		tl_phone_exported_group_call_invite_gen.go#L149: 			return fmt.Errorf("unable to decode phone.exportedGroupCallInvite#204bd158: field link: %w", err)
		tl_phone_get_call_config_gen.go#L98: 		return fmt.Errorf("can't encode phone.getCallConfig#55451fa9 as nil")
		tl_phone_get_call_config_gen.go#L107: 		return fmt.Errorf("can't encode phone.getCallConfig#55451fa9 as nil")
		tl_phone_get_call_config_gen.go#L115: 		return fmt.Errorf("can't decode phone.getCallConfig#55451fa9 to nil")
		tl_phone_get_call_config_gen.go#L118: 		return fmt.Errorf("unable to decode phone.getCallConfig#55451fa9: %w", err)
		tl_phone_get_call_config_gen.go#L126: 		return fmt.Errorf("can't decode phone.getCallConfig#55451fa9 to nil")
		tl_phone_get_group_call_gen.go#L129: 		return fmt.Errorf("can't encode phone.getGroupCall#41845db as nil")
		tl_phone_get_group_call_gen.go#L138: 		return fmt.Errorf("can't encode phone.getGroupCall#41845db as nil")
		tl_phone_get_group_call_gen.go#L141: 		return fmt.Errorf("unable to encode phone.getGroupCall#41845db: field call: %w", err)
		tl_phone_get_group_call_gen.go#L150: 		return fmt.Errorf("can't decode phone.getGroupCall#41845db to nil")
		tl_phone_get_group_call_gen.go#L153: 		return fmt.Errorf("unable to decode phone.getGroupCall#41845db: %w", err)
		tl_phone_get_group_call_gen.go#L161: 		return fmt.Errorf("can't decode phone.getGroupCall#41845db to nil")
		tl_phone_get_group_call_gen.go#L165: 			return fmt.Errorf("unable to decode phone.getGroupCall#41845db: field call: %w", err)
		tl_phone_get_group_call_gen.go#L171: 			return fmt.Errorf("unable to decode phone.getGroupCall#41845db: field limit: %w", err)
		tl_phone_get_group_call_join_as_gen.go#L116: 		return fmt.Errorf("can't encode phone.getGroupCallJoinAs#ef7c213a as nil")
		tl_phone_get_group_call_join_as_gen.go#L125: 		return fmt.Errorf("can't encode phone.getGroupCallJoinAs#ef7c213a as nil")
		tl_phone_get_group_call_join_as_gen.go#L128: 		return fmt.Errorf("unable to encode phone.getGroupCallJoinAs#ef7c213a: field peer is nil")
		tl_phone_get_group_call_join_as_gen.go#L131: 		return fmt.Errorf("unable to encode phone.getGroupCallJoinAs#ef7c213a: field peer: %w", err)
		tl_phone_get_group_call_join_as_gen.go#L139: 		return fmt.Errorf("can't decode phone.getGroupCallJoinAs#ef7c213a to nil")
		tl_phone_get_group_call_join_as_gen.go#L142: 		return fmt.Errorf("unable to decode phone.getGroupCallJoinAs#ef7c213a: %w", err)
		tl_phone_get_group_call_join_as_gen.go#L150: 		return fmt.Errorf("can't decode phone.getGroupCallJoinAs#ef7c213a to nil")
		tl_phone_get_group_call_join_as_gen.go#L155: 			return fmt.Errorf("unable to decode phone.getGroupCallJoinAs#ef7c213a: field peer: %w", err)
		tl_phone_get_group_call_stream_channels_gen.go#L121: 		return fmt.Errorf("can't encode phone.getGroupCallStreamChannels#1ab21940 as nil")
		tl_phone_get_group_call_stream_channels_gen.go#L130: 		return fmt.Errorf("can't encode phone.getGroupCallStreamChannels#1ab21940 as nil")
		tl_phone_get_group_call_stream_channels_gen.go#L133: 		return fmt.Errorf("unable to encode phone.getGroupCallStreamChannels#1ab21940: field call: %w", err)
		tl_phone_get_group_call_stream_channels_gen.go#L141: 		return fmt.Errorf("can't decode phone.getGroupCallStreamChannels#1ab21940 to nil")
		tl_phone_get_group_call_stream_channels_gen.go#L144: 		return fmt.Errorf("unable to decode phone.getGroupCallStreamChannels#1ab21940: %w", err)
		tl_phone_get_group_call_stream_channels_gen.go#L152: 		return fmt.Errorf("can't decode phone.getGroupCallStreamChannels#1ab21940 to nil")
		tl_phone_get_group_call_stream_channels_gen.go#L156: 			return fmt.Errorf("unable to decode phone.getGroupCallStreamChannels#1ab21940: field call: %w", err)
		tl_phone_get_group_call_stream_rtmp_url_gen.go#L130: 		return fmt.Errorf("can't encode phone.getGroupCallStreamRtmpUrl#deb3abbf as nil")
		tl_phone_get_group_call_stream_rtmp_url_gen.go#L139: 		return fmt.Errorf("can't encode phone.getGroupCallStreamRtmpUrl#deb3abbf as nil")
		tl_phone_get_group_call_stream_rtmp_url_gen.go#L142: 		return fmt.Errorf("unable to encode phone.getGroupCallStreamRtmpUrl#deb3abbf: field peer is nil")
		tl_phone_get_group_call_stream_rtmp_url_gen.go#L145: 		return fmt.Errorf("unable to encode phone.getGroupCallStreamRtmpUrl#deb3abbf: field peer: %w", err)
		tl_phone_get_group_call_stream_rtmp_url_gen.go#L154: 		return fmt.Errorf("can't decode phone.getGroupCallStreamRtmpUrl#deb3abbf to nil")
		tl_phone_get_group_call_stream_rtmp_url_gen.go#L157: 		return fmt.Errorf("unable to decode phone.getGroupCallStreamRtmpUrl#deb3abbf: %w", err)
		tl_phone_get_group_call_stream_rtmp_url_gen.go#L165: 		return fmt.Errorf("can't decode phone.getGroupCallStreamRtmpUrl#deb3abbf to nil")
		tl_phone_get_group_call_stream_rtmp_url_gen.go#L170: 			return fmt.Errorf("unable to decode phone.getGroupCallStreamRtmpUrl#deb3abbf: field peer: %w", err)
		tl_phone_get_group_call_stream_rtmp_url_gen.go#L177: 			return fmt.Errorf("unable to decode phone.getGroupCallStreamRtmpUrl#deb3abbf: field revoke: %w", err)
		tl_phone_get_group_participants_gen.go#L169: 		return fmt.Errorf("can't encode phone.getGroupParticipants#c558d8ab as nil")
		tl_phone_get_group_participants_gen.go#L178: 		return fmt.Errorf("can't encode phone.getGroupParticipants#c558d8ab as nil")
		tl_phone_get_group_participants_gen.go#L181: 		return fmt.Errorf("unable to encode phone.getGroupParticipants#c558d8ab: field call: %w", err)
		tl_phone_get_group_participants_gen.go#L186: 			return fmt.Errorf("unable to encode phone.getGroupParticipants#c558d8ab: field ids element with index %d is nil", idx)
		tl_phone_get_group_participants_gen.go#L189: 			return fmt.Errorf("unable to encode phone.getGroupParticipants#c558d8ab: field ids element with index %d: %w", idx, err)
		tl_phone_get_group_participants_gen.go#L204: 		return fmt.Errorf("can't decode phone.getGroupParticipants#c558d8ab to nil")
		tl_phone_get_group_participants_gen.go#L207: 		return fmt.Errorf("unable to decode phone.getGroupParticipants#c558d8ab: %w", err)
		tl_phone_get_group_participants_gen.go#L215: 		return fmt.Errorf("can't decode phone.getGroupParticipants#c558d8ab to nil")
		tl_phone_get_group_participants_gen.go#L219: 			return fmt.Errorf("unable to decode phone.getGroupParticipants#c558d8ab: field call: %w", err)
		tl_phone_get_group_participants_gen.go#L225: 			return fmt.Errorf("unable to decode phone.getGroupParticipants#c558d8ab: field ids: %w", err)
		tl_phone_get_group_participants_gen.go#L234: 				return fmt.Errorf("unable to decode phone.getGroupParticipants#c558d8ab: field ids: %w", err)
		tl_phone_get_group_participants_gen.go#L242: 			return fmt.Errorf("unable to decode phone.getGroupParticipants#c558d8ab: field sources: %w", err)
		tl_phone_get_group_participants_gen.go#L251: 				return fmt.Errorf("unable to decode phone.getGroupParticipants#c558d8ab: field sources: %w", err)
		tl_phone_get_group_participants_gen.go#L259: 			return fmt.Errorf("unable to decode phone.getGroupParticipants#c558d8ab: field offset: %w", err)
		tl_phone_get_group_participants_gen.go#L266: 			return fmt.Errorf("unable to decode phone.getGroupParticipants#c558d8ab: field limit: %w", err)
		tl_phone_group_call_gen.go#L163: 		return fmt.Errorf("can't encode phone.groupCall#9e727aad as nil")
		tl_phone_group_call_gen.go#L172: 		return fmt.Errorf("can't encode phone.groupCall#9e727aad as nil")
		tl_phone_group_call_gen.go#L175: 		return fmt.Errorf("unable to encode phone.groupCall#9e727aad: field call is nil")
		tl_phone_group_call_gen.go#L178: 		return fmt.Errorf("unable to encode phone.groupCall#9e727aad: field call: %w", err)
		tl_phone_group_call_gen.go#L183: 			return fmt.Errorf("unable to encode phone.groupCall#9e727aad: field participants element with index %d: %w", idx, err)
		tl_phone_group_call_gen.go#L190: 			return fmt.Errorf("unable to encode phone.groupCall#9e727aad: field chats element with index %d is nil", idx)
		tl_phone_group_call_gen.go#L193: 			return fmt.Errorf("unable to encode phone.groupCall#9e727aad: field chats element with index %d: %w", idx, err)
		tl_phone_group_call_gen.go#L199: 			return fmt.Errorf("unable to encode phone.groupCall#9e727aad: field users element with index %d is nil", idx)
		tl_phone_group_call_gen.go#L202: 			return fmt.Errorf("unable to encode phone.groupCall#9e727aad: field users element with index %d: %w", idx, err)
		tl_phone_group_call_gen.go#L211: 		return fmt.Errorf("can't decode phone.groupCall#9e727aad to nil")
		tl_phone_group_call_gen.go#L214: 		return fmt.Errorf("unable to decode phone.groupCall#9e727aad: %w", err)
		tl_phone_group_call_gen.go#L222: 		return fmt.Errorf("can't decode phone.groupCall#9e727aad to nil")
		tl_phone_group_call_gen.go#L227: 			return fmt.Errorf("unable to decode phone.groupCall#9e727aad: field call: %w", err)
		tl_phone_group_call_gen.go#L234: 			return fmt.Errorf("unable to decode phone.groupCall#9e727aad: field participants: %w", err)
		tl_phone_group_call_gen.go#L243: 				return fmt.Errorf("unable to decode phone.groupCall#9e727aad: field participants: %w", err)
		tl_phone_group_call_gen.go#L251: 			return fmt.Errorf("unable to decode phone.groupCall#9e727aad: field participants_next_offset: %w", err)
		tl_phone_group_call_gen.go#L258: 			return fmt.Errorf("unable to decode phone.groupCall#9e727aad: field chats: %w", err)
		tl_phone_group_call_gen.go#L267: 				return fmt.Errorf("unable to decode phone.groupCall#9e727aad: field chats: %w", err)
		tl_phone_group_call_gen.go#L275: 			return fmt.Errorf("unable to decode phone.groupCall#9e727aad: field users: %w", err)
		tl_phone_group_call_gen.go#L284: 				return fmt.Errorf("unable to decode phone.groupCall#9e727aad: field users: %w", err)
		tl_phone_group_call_stream_channels_gen.go#L115: 		return fmt.Errorf("can't encode phone.groupCallStreamChannels#d0e482b2 as nil")
		tl_phone_group_call_stream_channels_gen.go#L124: 		return fmt.Errorf("can't encode phone.groupCallStreamChannels#d0e482b2 as nil")
		tl_phone_group_call_stream_channels_gen.go#L129: 			return fmt.Errorf("unable to encode phone.groupCallStreamChannels#d0e482b2: field channels element with index %d: %w", idx, err)
		tl_phone_group_call_stream_channels_gen.go#L138: 		return fmt.Errorf("can't decode phone.groupCallStreamChannels#d0e482b2 to nil")
		tl_phone_group_call_stream_channels_gen.go#L141: 		return fmt.Errorf("unable to decode phone.groupCallStreamChannels#d0e482b2: %w", err)
		tl_phone_group_call_stream_channels_gen.go#L149: 		return fmt.Errorf("can't decode phone.groupCallStreamChannels#d0e482b2 to nil")
		tl_phone_group_call_stream_channels_gen.go#L154: 			return fmt.Errorf("unable to decode phone.groupCallStreamChannels#d0e482b2: field channels: %w", err)
		tl_phone_group_call_stream_channels_gen.go#L163: 				return fmt.Errorf("unable to decode phone.groupCallStreamChannels#d0e482b2: field channels: %w", err)
		tl_phone_group_call_stream_rtmp_url_gen.go#L126: 		return fmt.Errorf("can't encode phone.groupCallStreamRtmpUrl#2dbf3432 as nil")
		tl_phone_group_call_stream_rtmp_url_gen.go#L135: 		return fmt.Errorf("can't encode phone.groupCallStreamRtmpUrl#2dbf3432 as nil")
		tl_phone_group_call_stream_rtmp_url_gen.go#L145: 		return fmt.Errorf("can't decode phone.groupCallStreamRtmpUrl#2dbf3432 to nil")
		tl_phone_group_call_stream_rtmp_url_gen.go#L148: 		return fmt.Errorf("unable to decode phone.groupCallStreamRtmpUrl#2dbf3432: %w", err)
		tl_phone_group_call_stream_rtmp_url_gen.go#L156: 		return fmt.Errorf("can't decode phone.groupCallStreamRtmpUrl#2dbf3432 to nil")
		tl_phone_group_call_stream_rtmp_url_gen.go#L161: 			return fmt.Errorf("unable to decode phone.groupCallStreamRtmpUrl#2dbf3432: field url: %w", err)
		tl_phone_group_call_stream_rtmp_url_gen.go#L168: 			return fmt.Errorf("unable to decode phone.groupCallStreamRtmpUrl#2dbf3432: field key: %w", err)
		tl_phone_group_participants_gen.go#L174: 		return fmt.Errorf("can't encode phone.groupParticipants#f47751b6 as nil")
		tl_phone_group_participants_gen.go#L183: 		return fmt.Errorf("can't encode phone.groupParticipants#f47751b6 as nil")
		tl_phone_group_participants_gen.go#L189: 			return fmt.Errorf("unable to encode phone.groupParticipants#f47751b6: field participants element with index %d: %w", idx, err)
		tl_phone_group_participants_gen.go#L196: 			return fmt.Errorf("unable to encode phone.groupParticipants#f47751b6: field chats element with index %d is nil", idx)
		tl_phone_group_participants_gen.go#L199: 			return fmt.Errorf("unable to encode phone.groupParticipants#f47751b6: field chats element with index %d: %w", idx, err)
		tl_phone_group_participants_gen.go#L205: 			return fmt.Errorf("unable to encode phone.groupParticipants#f47751b6: field users element with index %d is nil", idx)
		tl_phone_group_participants_gen.go#L208: 			return fmt.Errorf("unable to encode phone.groupParticipants#f47751b6: field users element with index %d: %w", idx, err)
		tl_phone_group_participants_gen.go#L218: 		return fmt.Errorf("can't decode phone.groupParticipants#f47751b6 to nil")
		tl_phone_group_participants_gen.go#L221: 		return fmt.Errorf("unable to decode phone.groupParticipants#f47751b6: %w", err)
		tl_phone_group_participants_gen.go#L229: 		return fmt.Errorf("can't decode phone.groupParticipants#f47751b6 to nil")
		tl_phone_group_participants_gen.go#L234: 			return fmt.Errorf("unable to decode phone.groupParticipants#f47751b6: field count: %w", err)
		tl_phone_group_participants_gen.go#L241: 			return fmt.Errorf("unable to decode phone.groupParticipants#f47751b6: field participants: %w", err)
		tl_phone_group_participants_gen.go#L250: 				return fmt.Errorf("unable to decode phone.groupParticipants#f47751b6: field participants: %w", err)
		tl_phone_group_participants_gen.go#L258: 			return fmt.Errorf("unable to decode phone.groupParticipants#f47751b6: field next_offset: %w", err)
		tl_phone_group_participants_gen.go#L265: 			return fmt.Errorf("unable to decode phone.groupParticipants#f47751b6: field chats: %w", err)
		tl_phone_group_participants_gen.go#L274: 				return fmt.Errorf("unable to decode phone.groupParticipants#f47751b6: field chats: %w", err)
		tl_phone_group_participants_gen.go#L282: 			return fmt.Errorf("unable to decode phone.groupParticipants#f47751b6: field users: %w", err)
		tl_phone_group_participants_gen.go#L291: 				return fmt.Errorf("unable to decode phone.groupParticipants#f47751b6: field users: %w", err)
		tl_phone_group_participants_gen.go#L299: 			return fmt.Errorf("unable to decode phone.groupParticipants#f47751b6: field version: %w", err)
		tl_phone_invite_to_group_call_gen.go#L126: 		return fmt.Errorf("can't encode phone.inviteToGroupCall#7b393160 as nil")
		tl_phone_invite_to_group_call_gen.go#L135: 		return fmt.Errorf("can't encode phone.inviteToGroupCall#7b393160 as nil")
		tl_phone_invite_to_group_call_gen.go#L138: 		return fmt.Errorf("unable to encode phone.inviteToGroupCall#7b393160: field call: %w", err)
		tl_phone_invite_to_group_call_gen.go#L143: 			return fmt.Errorf("unable to encode phone.inviteToGroupCall#7b393160: field users element with index %d is nil", idx)
		tl_phone_invite_to_group_call_gen.go#L146: 			return fmt.Errorf("unable to encode phone.inviteToGroupCall#7b393160: field users element with index %d: %w", idx, err)
		tl_phone_invite_to_group_call_gen.go#L155: 		return fmt.Errorf("can't decode phone.inviteToGroupCall#7b393160 to nil")
		tl_phone_invite_to_group_call_gen.go#L158: 		return fmt.Errorf("unable to decode phone.inviteToGroupCall#7b393160: %w", err)
		tl_phone_invite_to_group_call_gen.go#L166: 		return fmt.Errorf("can't decode phone.inviteToGroupCall#7b393160 to nil")
		tl_phone_invite_to_group_call_gen.go#L170: 			return fmt.Errorf("unable to decode phone.inviteToGroupCall#7b393160: field call: %w", err)
		tl_phone_invite_to_group_call_gen.go#L176: 			return fmt.Errorf("unable to decode phone.inviteToGroupCall#7b393160: field users: %w", err)
		tl_phone_invite_to_group_call_gen.go#L185: 				return fmt.Errorf("unable to decode phone.inviteToGroupCall#7b393160: field users: %w", err)
		tl_phone_join_as_peers_gen.go#L138: 		return fmt.Errorf("can't encode phone.joinAsPeers#afe5623f as nil")
		tl_phone_join_as_peers_gen.go#L147: 		return fmt.Errorf("can't encode phone.joinAsPeers#afe5623f as nil")
		tl_phone_join_as_peers_gen.go#L152: 			return fmt.Errorf("unable to encode phone.joinAsPeers#afe5623f: field peers element with index %d is nil", idx)
		tl_phone_join_as_peers_gen.go#L155: 			return fmt.Errorf("unable to encode phone.joinAsPeers#afe5623f: field peers element with index %d: %w", idx, err)
		tl_phone_join_as_peers_gen.go#L161: 			return fmt.Errorf("unable to encode phone.joinAsPeers#afe5623f: field chats element with index %d is nil", idx)
		tl_phone_join_as_peers_gen.go#L164: 			return fmt.Errorf("unable to encode phone.joinAsPeers#afe5623f: field chats element with index %d: %w", idx, err)
		tl_phone_join_as_peers_gen.go#L170: 			return fmt.Errorf("unable to encode phone.joinAsPeers#afe5623f: field users element with index %d is nil", idx)
		tl_phone_join_as_peers_gen.go#L173: 			return fmt.Errorf("unable to encode phone.joinAsPeers#afe5623f: field users element with index %d: %w", idx, err)
		tl_phone_join_as_peers_gen.go#L182: 		return fmt.Errorf("can't decode phone.joinAsPeers#afe5623f to nil")
		tl_phone_join_as_peers_gen.go#L185: 		return fmt.Errorf("unable to decode phone.joinAsPeers#afe5623f: %w", err)
		tl_phone_join_as_peers_gen.go#L193: 		return fmt.Errorf("can't decode phone.joinAsPeers#afe5623f to nil")
		tl_phone_join_as_peers_gen.go#L198: 			return fmt.Errorf("unable to decode phone.joinAsPeers#afe5623f: field peers: %w", err)
		tl_phone_join_as_peers_gen.go#L207: 				return fmt.Errorf("unable to decode phone.joinAsPeers#afe5623f: field peers: %w", err)
		tl_phone_join_as_peers_gen.go#L215: 			return fmt.Errorf("unable to decode phone.joinAsPeers#afe5623f: field chats: %w", err)
		tl_phone_join_as_peers_gen.go#L224: 				return fmt.Errorf("unable to decode phone.joinAsPeers#afe5623f: field chats: %w", err)
		tl_phone_join_as_peers_gen.go#L232: 			return fmt.Errorf("unable to decode phone.joinAsPeers#afe5623f: field users: %w", err)
		tl_phone_join_as_peers_gen.go#L241: 				return fmt.Errorf("unable to decode phone.joinAsPeers#afe5623f: field users: %w", err)
		tl_phone_join_group_call_gen.go#L203: 		return fmt.Errorf("can't encode phone.joinGroupCall#b132ff7b as nil")
		tl_phone_join_group_call_gen.go#L212: 		return fmt.Errorf("can't encode phone.joinGroupCall#b132ff7b as nil")
		tl_phone_join_group_call_gen.go#L216: 		return fmt.Errorf("unable to encode phone.joinGroupCall#b132ff7b: field flags: %w", err)
		tl_phone_join_group_call_gen.go#L219: 		return fmt.Errorf("unable to encode phone.joinGroupCall#b132ff7b: field call: %w", err)
		tl_phone_join_group_call_gen.go#L222: 		return fmt.Errorf("unable to encode phone.joinGroupCall#b132ff7b: field join_as is nil")
		tl_phone_join_group_call_gen.go#L225: 		return fmt.Errorf("unable to encode phone.joinGroupCall#b132ff7b: field join_as: %w", err)
		tl_phone_join_group_call_gen.go#L231: 		return fmt.Errorf("unable to encode phone.joinGroupCall#b132ff7b: field params: %w", err)
		tl_phone_join_group_call_gen.go#L239: 		return fmt.Errorf("can't decode phone.joinGroupCall#b132ff7b to nil")
		tl_phone_join_group_call_gen.go#L242: 		return fmt.Errorf("unable to decode phone.joinGroupCall#b132ff7b: %w", err)
		tl_phone_join_group_call_gen.go#L250: 		return fmt.Errorf("can't decode phone.joinGroupCall#b132ff7b to nil")
		tl_phone_join_group_call_gen.go#L254: 			return fmt.Errorf("unable to decode phone.joinGroupCall#b132ff7b: field flags: %w", err)
		tl_phone_join_group_call_gen.go#L261: 			return fmt.Errorf("unable to decode phone.joinGroupCall#b132ff7b: field call: %w", err)
		tl_phone_join_group_call_gen.go#L267: 			return fmt.Errorf("unable to decode phone.joinGroupCall#b132ff7b: field join_as: %w", err)
		tl_phone_join_group_call_gen.go#L274: 			return fmt.Errorf("unable to decode phone.joinGroupCall#b132ff7b: field invite_hash: %w", err)
		tl_phone_join_group_call_gen.go#L280: 			return fmt.Errorf("unable to decode phone.joinGroupCall#b132ff7b: field params: %w", err)
		tl_phone_join_group_call_presentation_gen.go#L126: 		return fmt.Errorf("can't encode phone.joinGroupCallPresentation#cbea6bc4 as nil")
		tl_phone_join_group_call_presentation_gen.go#L135: 		return fmt.Errorf("can't encode phone.joinGroupCallPresentation#cbea6bc4 as nil")
		tl_phone_join_group_call_presentation_gen.go#L138: 		return fmt.Errorf("unable to encode phone.joinGroupCallPresentation#cbea6bc4: field call: %w", err)
		tl_phone_join_group_call_presentation_gen.go#L141: 		return fmt.Errorf("unable to encode phone.joinGroupCallPresentation#cbea6bc4: field params: %w", err)
		tl_phone_join_group_call_presentation_gen.go#L149: 		return fmt.Errorf("can't decode phone.joinGroupCallPresentation#cbea6bc4 to nil")
		tl_phone_join_group_call_presentation_gen.go#L152: 		return fmt.Errorf("unable to decode phone.joinGroupCallPresentation#cbea6bc4: %w", err)
		tl_phone_join_group_call_presentation_gen.go#L160: 		return fmt.Errorf("can't decode phone.joinGroupCallPresentation#cbea6bc4 to nil")
		tl_phone_join_group_call_presentation_gen.go#L164: 			return fmt.Errorf("unable to decode phone.joinGroupCallPresentation#cbea6bc4: field call: %w", err)
		tl_phone_join_group_call_presentation_gen.go#L169: 			return fmt.Errorf("unable to decode phone.joinGroupCallPresentation#cbea6bc4: field params: %w", err)
		tl_phone_leave_group_call_gen.go#L126: 		return fmt.Errorf("can't encode phone.leaveGroupCall#500377f9 as nil")
		tl_phone_leave_group_call_gen.go#L135: 		return fmt.Errorf("can't encode phone.leaveGroupCall#500377f9 as nil")
		tl_phone_leave_group_call_gen.go#L138: 		return fmt.Errorf("unable to encode phone.leaveGroupCall#500377f9: field call: %w", err)
		tl_phone_leave_group_call_gen.go#L147: 		return fmt.Errorf("can't decode phone.leaveGroupCall#500377f9 to nil")
		tl_phone_leave_group_call_gen.go#L150: 		return fmt.Errorf("unable to decode phone.leaveGroupCall#500377f9: %w", err)
		tl_phone_leave_group_call_gen.go#L158: 		return fmt.Errorf("can't decode phone.leaveGroupCall#500377f9 to nil")
		tl_phone_leave_group_call_gen.go#L162: 			return fmt.Errorf("unable to decode phone.leaveGroupCall#500377f9: field call: %w", err)
		tl_phone_leave_group_call_gen.go#L168: 			return fmt.Errorf("unable to decode phone.leaveGroupCall#500377f9: field source: %w", err)
		tl_phone_leave_group_call_presentation_gen.go#L115: 		return fmt.Errorf("can't encode phone.leaveGroupCallPresentation#1c50d144 as nil")
		tl_phone_leave_group_call_presentation_gen.go#L124: 		return fmt.Errorf("can't encode phone.leaveGroupCallPresentation#1c50d144 as nil")
		tl_phone_leave_group_call_presentation_gen.go#L127: 		return fmt.Errorf("unable to encode phone.leaveGroupCallPresentation#1c50d144: field call: %w", err)
		tl_phone_leave_group_call_presentation_gen.go#L135: 		return fmt.Errorf("can't decode phone.leaveGroupCallPresentation#1c50d144 to nil")
		tl_phone_leave_group_call_presentation_gen.go#L138: 		return fmt.Errorf("unable to decode phone.leaveGroupCallPresentation#1c50d144: %w", err)
		tl_phone_leave_group_call_presentation_gen.go#L146: 		return fmt.Errorf("can't decode phone.leaveGroupCallPresentation#1c50d144 to nil")
		tl_phone_leave_group_call_presentation_gen.go#L150: 			return fmt.Errorf("unable to decode phone.leaveGroupCallPresentation#1c50d144: field call: %w", err)
		tl_phone_phone_call_gen.go#L126: 		return fmt.Errorf("can't encode phone.phoneCall#ec82e140 as nil")
		tl_phone_phone_call_gen.go#L135: 		return fmt.Errorf("can't encode phone.phoneCall#ec82e140 as nil")
		tl_phone_phone_call_gen.go#L138: 		return fmt.Errorf("unable to encode phone.phoneCall#ec82e140: field phone_call is nil")
		tl_phone_phone_call_gen.go#L141: 		return fmt.Errorf("unable to encode phone.phoneCall#ec82e140: field phone_call: %w", err)
		tl_phone_phone_call_gen.go#L146: 			return fmt.Errorf("unable to encode phone.phoneCall#ec82e140: field users element with index %d is nil", idx)
		tl_phone_phone_call_gen.go#L149: 			return fmt.Errorf("unable to encode phone.phoneCall#ec82e140: field users element with index %d: %w", idx, err)
		tl_phone_phone_call_gen.go#L158: 		return fmt.Errorf("can't decode phone.phoneCall#ec82e140 to nil")
		tl_phone_phone_call_gen.go#L161: 		return fmt.Errorf("unable to decode phone.phoneCall#ec82e140: %w", err)
		tl_phone_phone_call_gen.go#L169: 		return fmt.Errorf("can't decode phone.phoneCall#ec82e140 to nil")
		tl_phone_phone_call_gen.go#L174: 			return fmt.Errorf("unable to decode phone.phoneCall#ec82e140: field phone_call: %w", err)
		tl_phone_phone_call_gen.go#L181: 			return fmt.Errorf("unable to decode phone.phoneCall#ec82e140: field users: %w", err)
		tl_phone_phone_call_gen.go#L190: 				return fmt.Errorf("unable to decode phone.phoneCall#ec82e140: field users: %w", err)
		tl_phone_received_call_gen.go#L116: 		return fmt.Errorf("can't encode phone.receivedCall#17d54f61 as nil")
		tl_phone_received_call_gen.go#L125: 		return fmt.Errorf("can't encode phone.receivedCall#17d54f61 as nil")
		tl_phone_received_call_gen.go#L128: 		return fmt.Errorf("unable to encode phone.receivedCall#17d54f61: field peer: %w", err)
		tl_phone_received_call_gen.go#L136: 		return fmt.Errorf("can't decode phone.receivedCall#17d54f61 to nil")
		tl_phone_received_call_gen.go#L139: 		return fmt.Errorf("unable to decode phone.receivedCall#17d54f61: %w", err)
		tl_phone_received_call_gen.go#L147: 		return fmt.Errorf("can't decode phone.receivedCall#17d54f61 to nil")
		tl_phone_received_call_gen.go#L151: 			return fmt.Errorf("unable to decode phone.receivedCall#17d54f61: field peer: %w", err)
		tl_phone_request_call_gen.go#L178: 		return fmt.Errorf("can't encode phone.requestCall#42ff96ed as nil")
		tl_phone_request_call_gen.go#L187: 		return fmt.Errorf("can't encode phone.requestCall#42ff96ed as nil")
		tl_phone_request_call_gen.go#L191: 		return fmt.Errorf("unable to encode phone.requestCall#42ff96ed: field flags: %w", err)
		tl_phone_request_call_gen.go#L194: 		return fmt.Errorf("unable to encode phone.requestCall#42ff96ed: field user_id is nil")
		tl_phone_request_call_gen.go#L197: 		return fmt.Errorf("unable to encode phone.requestCall#42ff96ed: field user_id: %w", err)
		tl_phone_request_call_gen.go#L202: 		return fmt.Errorf("unable to encode phone.requestCall#42ff96ed: field protocol: %w", err)
		tl_phone_request_call_gen.go#L210: 		return fmt.Errorf("can't decode phone.requestCall#42ff96ed to nil")
		tl_phone_request_call_gen.go#L213: 		return fmt.Errorf("unable to decode phone.requestCall#42ff96ed: %w", err)
		tl_phone_request_call_gen.go#L221: 		return fmt.Errorf("can't decode phone.requestCall#42ff96ed to nil")
		tl_phone_request_call_gen.go#L225: 			return fmt.Errorf("unable to decode phone.requestCall#42ff96ed: field flags: %w", err)
		tl_phone_request_call_gen.go#L232: 			return fmt.Errorf("unable to decode phone.requestCall#42ff96ed: field user_id: %w", err)
		tl_phone_request_call_gen.go#L239: 			return fmt.Errorf("unable to decode phone.requestCall#42ff96ed: field random_id: %w", err)
		tl_phone_request_call_gen.go#L246: 			return fmt.Errorf("unable to decode phone.requestCall#42ff96ed: field g_a_hash: %w", err)
		tl_phone_request_call_gen.go#L252: 			return fmt.Errorf("unable to decode phone.requestCall#42ff96ed: field protocol: %w", err)
		tl_phone_save_call_debug_gen.go#L126: 		return fmt.Errorf("can't encode phone.saveCallDebug#277add7e as nil")
		tl_phone_save_call_debug_gen.go#L135: 		return fmt.Errorf("can't encode phone.saveCallDebug#277add7e as nil")
		tl_phone_save_call_debug_gen.go#L138: 		return fmt.Errorf("unable to encode phone.saveCallDebug#277add7e: field peer: %w", err)
		tl_phone_save_call_debug_gen.go#L141: 		return fmt.Errorf("unable to encode phone.saveCallDebug#277add7e: field debug: %w", err)
		tl_phone_save_call_debug_gen.go#L149: 		return fmt.Errorf("can't decode phone.saveCallDebug#277add7e to nil")
		tl_phone_save_call_debug_gen.go#L152: 		return fmt.Errorf("unable to decode phone.saveCallDebug#277add7e: %w", err)
		tl_phone_save_call_debug_gen.go#L160: 		return fmt.Errorf("can't decode phone.saveCallDebug#277add7e to nil")
		tl_phone_save_call_debug_gen.go#L164: 			return fmt.Errorf("unable to decode phone.saveCallDebug#277add7e: field peer: %w", err)
		tl_phone_save_call_debug_gen.go#L169: 			return fmt.Errorf("unable to decode phone.saveCallDebug#277add7e: field debug: %w", err)
		tl_phone_save_call_log_gen.go#L126: 		return fmt.Errorf("can't encode phone.saveCallLog#41248786 as nil")
		tl_phone_save_call_log_gen.go#L135: 		return fmt.Errorf("can't encode phone.saveCallLog#41248786 as nil")
		tl_phone_save_call_log_gen.go#L138: 		return fmt.Errorf("unable to encode phone.saveCallLog#41248786: field peer: %w", err)
		tl_phone_save_call_log_gen.go#L141: 		return fmt.Errorf("unable to encode phone.saveCallLog#41248786: field file is nil")
		tl_phone_save_call_log_gen.go#L144: 		return fmt.Errorf("unable to encode phone.saveCallLog#41248786: field file: %w", err)
		tl_phone_save_call_log_gen.go#L152: 		return fmt.Errorf("can't decode phone.saveCallLog#41248786 to nil")
		tl_phone_save_call_log_gen.go#L155: 		return fmt.Errorf("unable to decode phone.saveCallLog#41248786: %w", err)
		tl_phone_save_call_log_gen.go#L163: 		return fmt.Errorf("can't decode phone.saveCallLog#41248786 to nil")
		tl_phone_save_call_log_gen.go#L167: 			return fmt.Errorf("unable to decode phone.saveCallLog#41248786: field peer: %w", err)
		tl_phone_save_call_log_gen.go#L173: 			return fmt.Errorf("unable to decode phone.saveCallLog#41248786: field file: %w", err)
		tl_phone_save_default_group_call_join_as_gen.go#L127: 		return fmt.Errorf("can't encode phone.saveDefaultGroupCallJoinAs#575e1f8c as nil")
		tl_phone_save_default_group_call_join_as_gen.go#L136: 		return fmt.Errorf("can't encode phone.saveDefaultGroupCallJoinAs#575e1f8c as nil")
		tl_phone_save_default_group_call_join_as_gen.go#L139: 		return fmt.Errorf("unable to encode phone.saveDefaultGroupCallJoinAs#575e1f8c: field peer is nil")
		tl_phone_save_default_group_call_join_as_gen.go#L142: 		return fmt.Errorf("unable to encode phone.saveDefaultGroupCallJoinAs#575e1f8c: field peer: %w", err)
		tl_phone_save_default_group_call_join_as_gen.go#L145: 		return fmt.Errorf("unable to encode phone.saveDefaultGroupCallJoinAs#575e1f8c: field join_as is nil")
		tl_phone_save_default_group_call_join_as_gen.go#L148: 		return fmt.Errorf("unable to encode phone.saveDefaultGroupCallJoinAs#575e1f8c: field join_as: %w", err)
		tl_phone_save_default_group_call_join_as_gen.go#L156: 		return fmt.Errorf("can't decode phone.saveDefaultGroupCallJoinAs#575e1f8c to nil")
		tl_phone_save_default_group_call_join_as_gen.go#L159: 		return fmt.Errorf("unable to decode phone.saveDefaultGroupCallJoinAs#575e1f8c: %w", err)
		tl_phone_save_default_group_call_join_as_gen.go#L167: 		return fmt.Errorf("can't decode phone.saveDefaultGroupCallJoinAs#575e1f8c to nil")
		tl_phone_save_default_group_call_join_as_gen.go#L172: 			return fmt.Errorf("unable to decode phone.saveDefaultGroupCallJoinAs#575e1f8c: field peer: %w", err)
		tl_phone_save_default_group_call_join_as_gen.go#L179: 			return fmt.Errorf("unable to decode phone.saveDefaultGroupCallJoinAs#575e1f8c: field join_as: %w", err)
		tl_phone_send_signaling_data_gen.go#L126: 		return fmt.Errorf("can't encode phone.sendSignalingData#ff7a9383 as nil")
		tl_phone_send_signaling_data_gen.go#L135: 		return fmt.Errorf("can't encode phone.sendSignalingData#ff7a9383 as nil")
		tl_phone_send_signaling_data_gen.go#L138: 		return fmt.Errorf("unable to encode phone.sendSignalingData#ff7a9383: field peer: %w", err)
		tl_phone_send_signaling_data_gen.go#L147: 		return fmt.Errorf("can't decode phone.sendSignalingData#ff7a9383 to nil")
		tl_phone_send_signaling_data_gen.go#L150: 		return fmt.Errorf("unable to decode phone.sendSignalingData#ff7a9383: %w", err)
		tl_phone_send_signaling_data_gen.go#L158: 		return fmt.Errorf("can't decode phone.sendSignalingData#ff7a9383 to nil")
		tl_phone_send_signaling_data_gen.go#L162: 			return fmt.Errorf("unable to decode phone.sendSignalingData#ff7a9383: field peer: %w", err)
		tl_phone_send_signaling_data_gen.go#L168: 			return fmt.Errorf("unable to decode phone.sendSignalingData#ff7a9383: field data: %w", err)
		tl_phone_set_call_rating_gen.go#L164: 		return fmt.Errorf("can't encode phone.setCallRating#59ead627 as nil")
		tl_phone_set_call_rating_gen.go#L173: 		return fmt.Errorf("can't encode phone.setCallRating#59ead627 as nil")
		tl_phone_set_call_rating_gen.go#L177: 		return fmt.Errorf("unable to encode phone.setCallRating#59ead627: field flags: %w", err)
		tl_phone_set_call_rating_gen.go#L180: 		return fmt.Errorf("unable to encode phone.setCallRating#59ead627: field peer: %w", err)
		tl_phone_set_call_rating_gen.go#L190: 		return fmt.Errorf("can't decode phone.setCallRating#59ead627 to nil")
		tl_phone_set_call_rating_gen.go#L193: 		return fmt.Errorf("unable to decode phone.setCallRating#59ead627: %w", err)
		tl_phone_set_call_rating_gen.go#L201: 		return fmt.Errorf("can't decode phone.setCallRating#59ead627 to nil")
		tl_phone_set_call_rating_gen.go#L205: 			return fmt.Errorf("unable to decode phone.setCallRating#59ead627: field flags: %w", err)
		tl_phone_set_call_rating_gen.go#L211: 			return fmt.Errorf("unable to decode phone.setCallRating#59ead627: field peer: %w", err)
		tl_phone_set_call_rating_gen.go#L217: 			return fmt.Errorf("unable to decode phone.setCallRating#59ead627: field rating: %w", err)
		tl_phone_set_call_rating_gen.go#L224: 			return fmt.Errorf("unable to decode phone.setCallRating#59ead627: field comment: %w", err)
		tl_phone_start_scheduled_group_call_gen.go#L115: 		return fmt.Errorf("can't encode phone.startScheduledGroupCall#5680e342 as nil")
		tl_phone_start_scheduled_group_call_gen.go#L124: 		return fmt.Errorf("can't encode phone.startScheduledGroupCall#5680e342 as nil")
		tl_phone_start_scheduled_group_call_gen.go#L127: 		return fmt.Errorf("unable to encode phone.startScheduledGroupCall#5680e342: field call: %w", err)
		tl_phone_start_scheduled_group_call_gen.go#L135: 		return fmt.Errorf("can't decode phone.startScheduledGroupCall#5680e342 to nil")
		tl_phone_start_scheduled_group_call_gen.go#L138: 		return fmt.Errorf("unable to decode phone.startScheduledGroupCall#5680e342: %w", err)
		tl_phone_start_scheduled_group_call_gen.go#L146: 		return fmt.Errorf("can't decode phone.startScheduledGroupCall#5680e342 to nil")
		tl_phone_start_scheduled_group_call_gen.go#L150: 			return fmt.Errorf("unable to decode phone.startScheduledGroupCall#5680e342: field call: %w", err)
		tl_phone_toggle_group_call_record_gen.go#L198: 		return fmt.Errorf("can't encode phone.toggleGroupCallRecord#f128c708 as nil")
		tl_phone_toggle_group_call_record_gen.go#L207: 		return fmt.Errorf("can't encode phone.toggleGroupCallRecord#f128c708 as nil")
		tl_phone_toggle_group_call_record_gen.go#L211: 		return fmt.Errorf("unable to encode phone.toggleGroupCallRecord#f128c708: field flags: %w", err)
		tl_phone_toggle_group_call_record_gen.go#L214: 		return fmt.Errorf("unable to encode phone.toggleGroupCallRecord#f128c708: field call: %w", err)
		tl_phone_toggle_group_call_record_gen.go#L228: 		return fmt.Errorf("can't decode phone.toggleGroupCallRecord#f128c708 to nil")
		tl_phone_toggle_group_call_record_gen.go#L231: 		return fmt.Errorf("unable to decode phone.toggleGroupCallRecord#f128c708: %w", err)
		tl_phone_toggle_group_call_record_gen.go#L239: 		return fmt.Errorf("can't decode phone.toggleGroupCallRecord#f128c708 to nil")
		tl_phone_toggle_group_call_record_gen.go#L243: 			return fmt.Errorf("unable to decode phone.toggleGroupCallRecord#f128c708: field flags: %w", err)
		tl_phone_toggle_group_call_record_gen.go#L250: 			return fmt.Errorf("unable to decode phone.toggleGroupCallRecord#f128c708: field call: %w", err)
		tl_phone_toggle_group_call_record_gen.go#L256: 			return fmt.Errorf("unable to decode phone.toggleGroupCallRecord#f128c708: field title: %w", err)
		tl_phone_toggle_group_call_record_gen.go#L263: 			return fmt.Errorf("unable to decode phone.toggleGroupCallRecord#f128c708: field video_portrait: %w", err)
		tl_phone_toggle_group_call_settings_gen.go#L163: 		return fmt.Errorf("can't encode phone.toggleGroupCallSettings#74bbb43d as nil")
		tl_phone_toggle_group_call_settings_gen.go#L172: 		return fmt.Errorf("can't encode phone.toggleGroupCallSettings#74bbb43d as nil")
		tl_phone_toggle_group_call_settings_gen.go#L176: 		return fmt.Errorf("unable to encode phone.toggleGroupCallSettings#74bbb43d: field flags: %w", err)
		tl_phone_toggle_group_call_settings_gen.go#L179: 		return fmt.Errorf("unable to encode phone.toggleGroupCallSettings#74bbb43d: field call: %w", err)
		tl_phone_toggle_group_call_settings_gen.go#L190: 		return fmt.Errorf("can't decode phone.toggleGroupCallSettings#74bbb43d to nil")
		tl_phone_toggle_group_call_settings_gen.go#L193: 		return fmt.Errorf("unable to decode phone.toggleGroupCallSettings#74bbb43d: %w", err)
		tl_phone_toggle_group_call_settings_gen.go#L201: 		return fmt.Errorf("can't decode phone.toggleGroupCallSettings#74bbb43d to nil")
		tl_phone_toggle_group_call_settings_gen.go#L205: 			return fmt.Errorf("unable to decode phone.toggleGroupCallSettings#74bbb43d: field flags: %w", err)
		tl_phone_toggle_group_call_settings_gen.go#L211: 			return fmt.Errorf("unable to decode phone.toggleGroupCallSettings#74bbb43d: field call: %w", err)
		tl_phone_toggle_group_call_settings_gen.go#L217: 			return fmt.Errorf("unable to decode phone.toggleGroupCallSettings#74bbb43d: field join_muted: %w", err)
		tl_phone_toggle_group_call_start_subscription_gen.go#L126: 		return fmt.Errorf("can't encode phone.toggleGroupCallStartSubscription#219c34e6 as nil")
		tl_phone_toggle_group_call_start_subscription_gen.go#L135: 		return fmt.Errorf("can't encode phone.toggleGroupCallStartSubscription#219c34e6 as nil")
		tl_phone_toggle_group_call_start_subscription_gen.go#L138: 		return fmt.Errorf("unable to encode phone.toggleGroupCallStartSubscription#219c34e6: field call: %w", err)
		tl_phone_toggle_group_call_start_subscription_gen.go#L147: 		return fmt.Errorf("can't decode phone.toggleGroupCallStartSubscription#219c34e6 to nil")
		tl_phone_toggle_group_call_start_subscription_gen.go#L150: 		return fmt.Errorf("unable to decode phone.toggleGroupCallStartSubscription#219c34e6: %w", err)
		tl_phone_toggle_group_call_start_subscription_gen.go#L158: 		return fmt.Errorf("can't decode phone.toggleGroupCallStartSubscription#219c34e6 to nil")
		tl_phone_toggle_group_call_start_subscription_gen.go#L162: 			return fmt.Errorf("unable to decode phone.toggleGroupCallStartSubscription#219c34e6: field call: %w", err)
		tl_phone_toggle_group_call_start_subscription_gen.go#L168: 			return fmt.Errorf("unable to decode phone.toggleGroupCallStartSubscription#219c34e6: field subscribed: %w", err)
		tl_photo_gen.go#L120: 		return fmt.Errorf("can't encode photoEmpty#2331b22d as nil")
		tl_photo_gen.go#L129: 		return fmt.Errorf("can't encode photoEmpty#2331b22d as nil")
		tl_photo_gen.go#L138: 		return fmt.Errorf("can't decode photoEmpty#2331b22d to nil")
		tl_photo_gen.go#L141: 		return fmt.Errorf("unable to decode photoEmpty#2331b22d: %w", err)
		tl_photo_gen.go#L149: 		return fmt.Errorf("can't decode photoEmpty#2331b22d to nil")
		tl_photo_gen.go#L154: 			return fmt.Errorf("unable to decode photoEmpty#2331b22d: field id: %w", err)
		tl_photo_gen.go#L363: 		return fmt.Errorf("can't encode photo#fb197a65 as nil")
		tl_photo_gen.go#L372: 		return fmt.Errorf("can't encode photo#fb197a65 as nil")
		tl_photo_gen.go#L376: 		return fmt.Errorf("unable to encode photo#fb197a65: field flags: %w", err)
		tl_photo_gen.go#L385: 			return fmt.Errorf("unable to encode photo#fb197a65: field sizes element with index %d is nil", idx)
		tl_photo_gen.go#L388: 			return fmt.Errorf("unable to encode photo#fb197a65: field sizes element with index %d: %w", idx, err)
		tl_photo_gen.go#L395: 				return fmt.Errorf("unable to encode photo#fb197a65: field video_sizes element with index %d is nil", idx)
		tl_photo_gen.go#L398: 				return fmt.Errorf("unable to encode photo#fb197a65: field video_sizes element with index %d: %w", idx, err)
		tl_photo_gen.go#L409: 		return fmt.Errorf("can't decode photo#fb197a65 to nil")
		tl_photo_gen.go#L412: 		return fmt.Errorf("unable to decode photo#fb197a65: %w", err)
		tl_photo_gen.go#L420: 		return fmt.Errorf("can't decode photo#fb197a65 to nil")
		tl_photo_gen.go#L424: 			return fmt.Errorf("unable to decode photo#fb197a65: field flags: %w", err)
		tl_photo_gen.go#L431: 			return fmt.Errorf("unable to decode photo#fb197a65: field id: %w", err)
		tl_photo_gen.go#L438: 			return fmt.Errorf("unable to decode photo#fb197a65: field access_hash: %w", err)
		tl_photo_gen.go#L445: 			return fmt.Errorf("unable to decode photo#fb197a65: field file_reference: %w", err)
		tl_photo_gen.go#L452: 			return fmt.Errorf("unable to decode photo#fb197a65: field date: %w", err)
		tl_photo_gen.go#L459: 			return fmt.Errorf("unable to decode photo#fb197a65: field sizes: %w", err)
		tl_photo_gen.go#L468: 				return fmt.Errorf("unable to decode photo#fb197a65: field sizes: %w", err)
		tl_photo_gen.go#L476: 			return fmt.Errorf("unable to decode photo#fb197a65: field video_sizes: %w", err)
		tl_photo_gen.go#L485: 				return fmt.Errorf("unable to decode photo#fb197a65: field video_sizes: %w", err)
		tl_photo_gen.go#L493: 			return fmt.Errorf("unable to decode photo#fb197a65: field dc_id: %w", err)
		tl_photo_gen.go#L672: 			return nil, fmt.Errorf("unable to decode PhotoClass: %w", err)
		tl_photo_gen.go#L679: 			return nil, fmt.Errorf("unable to decode PhotoClass: %w", err)
		tl_photo_gen.go#L683: 		return nil, fmt.Errorf("unable to decode PhotoClass: %w", bin.NewUnexpectedID(id))
		tl_photo_gen.go#L695: 		return fmt.Errorf("unable to decode PhotoBox to nil")
		tl_photo_gen.go#L699: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_photo_gen.go#L708: 		return fmt.Errorf("unable to encode PhotoClass as nil")
		tl_photo_size_gen.go#L123: 		return fmt.Errorf("can't encode photoSizeEmpty#e17e23c as nil")
		tl_photo_size_gen.go#L132: 		return fmt.Errorf("can't encode photoSizeEmpty#e17e23c as nil")
		tl_photo_size_gen.go#L141: 		return fmt.Errorf("can't decode photoSizeEmpty#e17e23c to nil")
		tl_photo_size_gen.go#L144: 		return fmt.Errorf("unable to decode photoSizeEmpty#e17e23c: %w", err)
		tl_photo_size_gen.go#L152: 		return fmt.Errorf("can't decode photoSizeEmpty#e17e23c to nil")
		tl_photo_size_gen.go#L157: 			return fmt.Errorf("unable to decode photoSizeEmpty#e17e23c: field type: %w", err)
		tl_photo_size_gen.go#L294: 		return fmt.Errorf("can't encode photoSize#75c78e60 as nil")
		tl_photo_size_gen.go#L303: 		return fmt.Errorf("can't encode photoSize#75c78e60 as nil")
		tl_photo_size_gen.go#L315: 		return fmt.Errorf("can't decode photoSize#75c78e60 to nil")
		tl_photo_size_gen.go#L318: 		return fmt.Errorf("unable to decode photoSize#75c78e60: %w", err)
		tl_photo_size_gen.go#L326: 		return fmt.Errorf("can't decode photoSize#75c78e60 to nil")
		tl_photo_size_gen.go#L331: 			return fmt.Errorf("unable to decode photoSize#75c78e60: field type: %w", err)
		tl_photo_size_gen.go#L338: 			return fmt.Errorf("unable to decode photoSize#75c78e60: field w: %w", err)
		tl_photo_size_gen.go#L345: 			return fmt.Errorf("unable to decode photoSize#75c78e60: field h: %w", err)
		tl_photo_size_gen.go#L352: 			return fmt.Errorf("unable to decode photoSize#75c78e60: field size: %w", err)
		tl_photo_size_gen.go#L510: 		return fmt.Errorf("can't encode photoCachedSize#21e1ad6 as nil")
		tl_photo_size_gen.go#L519: 		return fmt.Errorf("can't encode photoCachedSize#21e1ad6 as nil")
		tl_photo_size_gen.go#L531: 		return fmt.Errorf("can't decode photoCachedSize#21e1ad6 to nil")
		tl_photo_size_gen.go#L534: 		return fmt.Errorf("unable to decode photoCachedSize#21e1ad6: %w", err)
		tl_photo_size_gen.go#L542: 		return fmt.Errorf("can't decode photoCachedSize#21e1ad6 to nil")
		tl_photo_size_gen.go#L547: 			return fmt.Errorf("unable to decode photoCachedSize#21e1ad6: field type: %w", err)
		tl_photo_size_gen.go#L554: 			return fmt.Errorf("unable to decode photoCachedSize#21e1ad6: field w: %w", err)
		tl_photo_size_gen.go#L561: 			return fmt.Errorf("unable to decode photoCachedSize#21e1ad6: field h: %w", err)
		tl_photo_size_gen.go#L568: 			return fmt.Errorf("unable to decode photoCachedSize#21e1ad6: field bytes: %w", err)
		tl_photo_size_gen.go#L707: 		return fmt.Errorf("can't encode photoStrippedSize#e0b0bc2e as nil")
		tl_photo_size_gen.go#L716: 		return fmt.Errorf("can't encode photoStrippedSize#e0b0bc2e as nil")
		tl_photo_size_gen.go#L726: 		return fmt.Errorf("can't decode photoStrippedSize#e0b0bc2e to nil")
		tl_photo_size_gen.go#L729: 		return fmt.Errorf("unable to decode photoStrippedSize#e0b0bc2e: %w", err)
		tl_photo_size_gen.go#L737: 		return fmt.Errorf("can't decode photoStrippedSize#e0b0bc2e to nil")
		tl_photo_size_gen.go#L742: 			return fmt.Errorf("unable to decode photoStrippedSize#e0b0bc2e: field type: %w", err)
		tl_photo_size_gen.go#L749: 			return fmt.Errorf("unable to decode photoStrippedSize#e0b0bc2e: field bytes: %w", err)
		tl_photo_size_gen.go#L895: 		return fmt.Errorf("can't encode photoSizeProgressive#fa3efb95 as nil")
		tl_photo_size_gen.go#L904: 		return fmt.Errorf("can't encode photoSizeProgressive#fa3efb95 as nil")
		tl_photo_size_gen.go#L919: 		return fmt.Errorf("can't decode photoSizeProgressive#fa3efb95 to nil")
		tl_photo_size_gen.go#L922: 		return fmt.Errorf("unable to decode photoSizeProgressive#fa3efb95: %w", err)
		tl_photo_size_gen.go#L930: 		return fmt.Errorf("can't decode photoSizeProgressive#fa3efb95 to nil")
		tl_photo_size_gen.go#L935: 			return fmt.Errorf("unable to decode photoSizeProgressive#fa3efb95: field type: %w", err)
		tl_photo_size_gen.go#L942: 			return fmt.Errorf("unable to decode photoSizeProgressive#fa3efb95: field w: %w", err)
		tl_photo_size_gen.go#L949: 			return fmt.Errorf("unable to decode photoSizeProgressive#fa3efb95: field h: %w", err)
		tl_photo_size_gen.go#L956: 			return fmt.Errorf("unable to decode photoSizeProgressive#fa3efb95: field sizes: %w", err)
		tl_photo_size_gen.go#L965: 				return fmt.Errorf("unable to decode photoSizeProgressive#fa3efb95: field sizes: %w", err)
		tl_photo_size_gen.go#L1106: 		return fmt.Errorf("can't encode photoPathSize#d8214d41 as nil")
		tl_photo_size_gen.go#L1115: 		return fmt.Errorf("can't encode photoPathSize#d8214d41 as nil")
		tl_photo_size_gen.go#L1125: 		return fmt.Errorf("can't decode photoPathSize#d8214d41 to nil")
		tl_photo_size_gen.go#L1128: 		return fmt.Errorf("unable to decode photoPathSize#d8214d41: %w", err)
		tl_photo_size_gen.go#L1136: 		return fmt.Errorf("can't decode photoPathSize#d8214d41 to nil")
		tl_photo_size_gen.go#L1141: 			return fmt.Errorf("unable to decode photoPathSize#d8214d41: field type: %w", err)
		tl_photo_size_gen.go#L1148: 			return fmt.Errorf("unable to decode photoPathSize#d8214d41: field bytes: %w", err)
		tl_photo_size_gen.go#L1294: 			return nil, fmt.Errorf("unable to decode PhotoSizeClass: %w", err)
		tl_photo_size_gen.go#L1301: 			return nil, fmt.Errorf("unable to decode PhotoSizeClass: %w", err)
		tl_photo_size_gen.go#L1308: 			return nil, fmt.Errorf("unable to decode PhotoSizeClass: %w", err)
		tl_photo_size_gen.go#L1315: 			return nil, fmt.Errorf("unable to decode PhotoSizeClass: %w", err)
		tl_photo_size_gen.go#L1322: 			return nil, fmt.Errorf("unable to decode PhotoSizeClass: %w", err)
		tl_photo_size_gen.go#L1329: 			return nil, fmt.Errorf("unable to decode PhotoSizeClass: %w", err)
		tl_photo_size_gen.go#L1333: 		return nil, fmt.Errorf("unable to decode PhotoSizeClass: %w", bin.NewUnexpectedID(id))
		tl_photo_size_gen.go#L1345: 		return fmt.Errorf("unable to decode PhotoSizeBox to nil")
		tl_photo_size_gen.go#L1349: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_photo_size_gen.go#L1358: 		return fmt.Errorf("unable to encode PhotoSizeClass as nil")
		tl_photos_delete_photos_gen.go#L115: 		return fmt.Errorf("can't encode photos.deletePhotos#87cf7f2f as nil")
		tl_photos_delete_photos_gen.go#L124: 		return fmt.Errorf("can't encode photos.deletePhotos#87cf7f2f as nil")
		tl_photos_delete_photos_gen.go#L129: 			return fmt.Errorf("unable to encode photos.deletePhotos#87cf7f2f: field id element with index %d is nil", idx)
		tl_photos_delete_photos_gen.go#L132: 			return fmt.Errorf("unable to encode photos.deletePhotos#87cf7f2f: field id element with index %d: %w", idx, err)
		tl_photos_delete_photos_gen.go#L141: 		return fmt.Errorf("can't decode photos.deletePhotos#87cf7f2f to nil")
		tl_photos_delete_photos_gen.go#L144: 		return fmt.Errorf("unable to decode photos.deletePhotos#87cf7f2f: %w", err)
		tl_photos_delete_photos_gen.go#L152: 		return fmt.Errorf("can't decode photos.deletePhotos#87cf7f2f to nil")
		tl_photos_delete_photos_gen.go#L157: 			return fmt.Errorf("unable to decode photos.deletePhotos#87cf7f2f: field id: %w", err)
		tl_photos_delete_photos_gen.go#L166: 				return fmt.Errorf("unable to decode photos.deletePhotos#87cf7f2f: field id: %w", err)
		tl_photos_get_user_photos_gen.go#L155: 		return fmt.Errorf("can't encode photos.getUserPhotos#91cd32a8 as nil")
		tl_photos_get_user_photos_gen.go#L164: 		return fmt.Errorf("can't encode photos.getUserPhotos#91cd32a8 as nil")
		tl_photos_get_user_photos_gen.go#L167: 		return fmt.Errorf("unable to encode photos.getUserPhotos#91cd32a8: field user_id is nil")
		tl_photos_get_user_photos_gen.go#L170: 		return fmt.Errorf("unable to encode photos.getUserPhotos#91cd32a8: field user_id: %w", err)
		tl_photos_get_user_photos_gen.go#L181: 		return fmt.Errorf("can't decode photos.getUserPhotos#91cd32a8 to nil")
		tl_photos_get_user_photos_gen.go#L184: 		return fmt.Errorf("unable to decode photos.getUserPhotos#91cd32a8: %w", err)
		tl_photos_get_user_photos_gen.go#L192: 		return fmt.Errorf("can't decode photos.getUserPhotos#91cd32a8 to nil")
		tl_photos_get_user_photos_gen.go#L197: 			return fmt.Errorf("unable to decode photos.getUserPhotos#91cd32a8: field user_id: %w", err)
		tl_photos_get_user_photos_gen.go#L204: 			return fmt.Errorf("unable to decode photos.getUserPhotos#91cd32a8: field offset: %w", err)
		tl_photos_get_user_photos_gen.go#L211: 			return fmt.Errorf("unable to decode photos.getUserPhotos#91cd32a8: field max_id: %w", err)
		tl_photos_get_user_photos_gen.go#L218: 			return fmt.Errorf("unable to decode photos.getUserPhotos#91cd32a8: field limit: %w", err)
		tl_photos_photo_gen.go#L126: 		return fmt.Errorf("can't encode photos.photo#20212ca8 as nil")
		tl_photos_photo_gen.go#L135: 		return fmt.Errorf("can't encode photos.photo#20212ca8 as nil")
		tl_photos_photo_gen.go#L138: 		return fmt.Errorf("unable to encode photos.photo#20212ca8: field photo is nil")
		tl_photos_photo_gen.go#L141: 		return fmt.Errorf("unable to encode photos.photo#20212ca8: field photo: %w", err)
		tl_photos_photo_gen.go#L146: 			return fmt.Errorf("unable to encode photos.photo#20212ca8: field users element with index %d is nil", idx)
		tl_photos_photo_gen.go#L149: 			return fmt.Errorf("unable to encode photos.photo#20212ca8: field users element with index %d: %w", idx, err)
		tl_photos_photo_gen.go#L158: 		return fmt.Errorf("can't decode photos.photo#20212ca8 to nil")
		tl_photos_photo_gen.go#L161: 		return fmt.Errorf("unable to decode photos.photo#20212ca8: %w", err)
		tl_photos_photo_gen.go#L169: 		return fmt.Errorf("can't decode photos.photo#20212ca8 to nil")
		tl_photos_photo_gen.go#L174: 			return fmt.Errorf("unable to decode photos.photo#20212ca8: field photo: %w", err)
		tl_photos_photo_gen.go#L181: 			return fmt.Errorf("unable to decode photos.photo#20212ca8: field users: %w", err)
		tl_photos_photo_gen.go#L190: 				return fmt.Errorf("unable to decode photos.photo#20212ca8: field users: %w", err)
		tl_photos_photos_gen.go#L131: 		return fmt.Errorf("can't encode photos.photos#8dca6aa5 as nil")
		tl_photos_photos_gen.go#L140: 		return fmt.Errorf("can't encode photos.photos#8dca6aa5 as nil")
		tl_photos_photos_gen.go#L145: 			return fmt.Errorf("unable to encode photos.photos#8dca6aa5: field photos element with index %d is nil", idx)
		tl_photos_photos_gen.go#L148: 			return fmt.Errorf("unable to encode photos.photos#8dca6aa5: field photos element with index %d: %w", idx, err)
		tl_photos_photos_gen.go#L154: 			return fmt.Errorf("unable to encode photos.photos#8dca6aa5: field users element with index %d is nil", idx)
		tl_photos_photos_gen.go#L157: 			return fmt.Errorf("unable to encode photos.photos#8dca6aa5: field users element with index %d: %w", idx, err)
		tl_photos_photos_gen.go#L166: 		return fmt.Errorf("can't decode photos.photos#8dca6aa5 to nil")
		tl_photos_photos_gen.go#L169: 		return fmt.Errorf("unable to decode photos.photos#8dca6aa5: %w", err)
		tl_photos_photos_gen.go#L177: 		return fmt.Errorf("can't decode photos.photos#8dca6aa5 to nil")
		tl_photos_photos_gen.go#L182: 			return fmt.Errorf("unable to decode photos.photos#8dca6aa5: field photos: %w", err)
		tl_photos_photos_gen.go#L191: 				return fmt.Errorf("unable to decode photos.photos#8dca6aa5: field photos: %w", err)
		tl_photos_photos_gen.go#L199: 			return fmt.Errorf("unable to decode photos.photos#8dca6aa5: field users: %w", err)
		tl_photos_photos_gen.go#L208: 				return fmt.Errorf("unable to decode photos.photos#8dca6aa5: field users: %w", err)
		tl_photos_photos_gen.go#L350: 		return fmt.Errorf("can't encode photos.photosSlice#15051f54 as nil")
		tl_photos_photos_gen.go#L359: 		return fmt.Errorf("can't encode photos.photosSlice#15051f54 as nil")
		tl_photos_photos_gen.go#L365: 			return fmt.Errorf("unable to encode photos.photosSlice#15051f54: field photos element with index %d is nil", idx)
		tl_photos_photos_gen.go#L368: 			return fmt.Errorf("unable to encode photos.photosSlice#15051f54: field photos element with index %d: %w", idx, err)
		tl_photos_photos_gen.go#L374: 			return fmt.Errorf("unable to encode photos.photosSlice#15051f54: field users element with index %d is nil", idx)
		tl_photos_photos_gen.go#L377: 			return fmt.Errorf("unable to encode photos.photosSlice#15051f54: field users element with index %d: %w", idx, err)
		tl_photos_photos_gen.go#L386: 		return fmt.Errorf("can't decode photos.photosSlice#15051f54 to nil")
		tl_photos_photos_gen.go#L389: 		return fmt.Errorf("unable to decode photos.photosSlice#15051f54: %w", err)
		tl_photos_photos_gen.go#L397: 		return fmt.Errorf("can't decode photos.photosSlice#15051f54 to nil")
		tl_photos_photos_gen.go#L402: 			return fmt.Errorf("unable to decode photos.photosSlice#15051f54: field count: %w", err)
		tl_photos_photos_gen.go#L409: 			return fmt.Errorf("unable to decode photos.photosSlice#15051f54: field photos: %w", err)
		tl_photos_photos_gen.go#L418: 				return fmt.Errorf("unable to decode photos.photosSlice#15051f54: field photos: %w", err)
		tl_photos_photos_gen.go#L426: 			return fmt.Errorf("unable to decode photos.photosSlice#15051f54: field users: %w", err)
		tl_photos_photos_gen.go#L435: 				return fmt.Errorf("unable to decode photos.photosSlice#15051f54: field users: %w", err)
		tl_photos_photos_gen.go#L534: 			return nil, fmt.Errorf("unable to decode PhotosPhotosClass: %w", err)
		tl_photos_photos_gen.go#L541: 			return nil, fmt.Errorf("unable to decode PhotosPhotosClass: %w", err)
		tl_photos_photos_gen.go#L545: 		return nil, fmt.Errorf("unable to decode PhotosPhotosClass: %w", bin.NewUnexpectedID(id))
		tl_photos_photos_gen.go#L557: 		return fmt.Errorf("unable to decode PhotosPhotosBox to nil")
		tl_photos_photos_gen.go#L561: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_photos_photos_gen.go#L570: 		return fmt.Errorf("unable to encode PhotosPhotosClass as nil")
		tl_photos_update_profile_photo_gen.go#L164: 		return fmt.Errorf("can't encode photos.updateProfilePhoto#9e82039 as nil")
		tl_photos_update_profile_photo_gen.go#L173: 		return fmt.Errorf("can't encode photos.updateProfilePhoto#9e82039 as nil")
		tl_photos_update_profile_photo_gen.go#L177: 		return fmt.Errorf("unable to encode photos.updateProfilePhoto#9e82039: field flags: %w", err)
		tl_photos_update_profile_photo_gen.go#L181: 			return fmt.Errorf("unable to encode photos.updateProfilePhoto#9e82039: field bot is nil")
		tl_photos_update_profile_photo_gen.go#L184: 			return fmt.Errorf("unable to encode photos.updateProfilePhoto#9e82039: field bot: %w", err)
		tl_photos_update_profile_photo_gen.go#L188: 		return fmt.Errorf("unable to encode photos.updateProfilePhoto#9e82039: field id is nil")
		tl_photos_update_profile_photo_gen.go#L191: 		return fmt.Errorf("unable to encode photos.updateProfilePhoto#9e82039: field id: %w", err)
		tl_photos_update_profile_photo_gen.go#L199: 		return fmt.Errorf("can't decode photos.updateProfilePhoto#9e82039 to nil")
		tl_photos_update_profile_photo_gen.go#L202: 		return fmt.Errorf("unable to decode photos.updateProfilePhoto#9e82039: %w", err)
		tl_photos_update_profile_photo_gen.go#L210: 		return fmt.Errorf("can't decode photos.updateProfilePhoto#9e82039 to nil")
		tl_photos_update_profile_photo_gen.go#L214: 			return fmt.Errorf("unable to decode photos.updateProfilePhoto#9e82039: field flags: %w", err)
		tl_photos_update_profile_photo_gen.go#L221: 			return fmt.Errorf("unable to decode photos.updateProfilePhoto#9e82039: field bot: %w", err)
		tl_photos_update_profile_photo_gen.go#L228: 			return fmt.Errorf("unable to decode photos.updateProfilePhoto#9e82039: field id: %w", err)
		tl_photos_upload_contact_profile_photo_gen.go#L260: 		return fmt.Errorf("can't encode photos.uploadContactProfilePhoto#e14c4a71 as nil")
		tl_photos_upload_contact_profile_photo_gen.go#L269: 		return fmt.Errorf("can't encode photos.uploadContactProfilePhoto#e14c4a71 as nil")
		tl_photos_upload_contact_profile_photo_gen.go#L273: 		return fmt.Errorf("unable to encode photos.uploadContactProfilePhoto#e14c4a71: field flags: %w", err)
		tl_photos_upload_contact_profile_photo_gen.go#L276: 		return fmt.Errorf("unable to encode photos.uploadContactProfilePhoto#e14c4a71: field user_id is nil")
		tl_photos_upload_contact_profile_photo_gen.go#L279: 		return fmt.Errorf("unable to encode photos.uploadContactProfilePhoto#e14c4a71: field user_id: %w", err)
		tl_photos_upload_contact_profile_photo_gen.go#L283: 			return fmt.Errorf("unable to encode photos.uploadContactProfilePhoto#e14c4a71: field file is nil")
		tl_photos_upload_contact_profile_photo_gen.go#L286: 			return fmt.Errorf("unable to encode photos.uploadContactProfilePhoto#e14c4a71: field file: %w", err)
		tl_photos_upload_contact_profile_photo_gen.go#L291: 			return fmt.Errorf("unable to encode photos.uploadContactProfilePhoto#e14c4a71: field video is nil")
		tl_photos_upload_contact_profile_photo_gen.go#L294: 			return fmt.Errorf("unable to encode photos.uploadContactProfilePhoto#e14c4a71: field video: %w", err)
		tl_photos_upload_contact_profile_photo_gen.go#L302: 			return fmt.Errorf("unable to encode photos.uploadContactProfilePhoto#e14c4a71: field video_emoji_markup is nil")
		tl_photos_upload_contact_profile_photo_gen.go#L305: 			return fmt.Errorf("unable to encode photos.uploadContactProfilePhoto#e14c4a71: field video_emoji_markup: %w", err)
		tl_photos_upload_contact_profile_photo_gen.go#L314: 		return fmt.Errorf("can't decode photos.uploadContactProfilePhoto#e14c4a71 to nil")
		tl_photos_upload_contact_profile_photo_gen.go#L317: 		return fmt.Errorf("unable to decode photos.uploadContactProfilePhoto#e14c4a71: %w", err)
		tl_photos_upload_contact_profile_photo_gen.go#L325: 		return fmt.Errorf("can't decode photos.uploadContactProfilePhoto#e14c4a71 to nil")
		tl_photos_upload_contact_profile_photo_gen.go#L329: 			return fmt.Errorf("unable to decode photos.uploadContactProfilePhoto#e14c4a71: field flags: %w", err)
		tl_photos_upload_contact_profile_photo_gen.go#L337: 			return fmt.Errorf("unable to decode photos.uploadContactProfilePhoto#e14c4a71: field user_id: %w", err)
		tl_photos_upload_contact_profile_photo_gen.go#L344: 			return fmt.Errorf("unable to decode photos.uploadContactProfilePhoto#e14c4a71: field file: %w", err)
		tl_photos_upload_contact_profile_photo_gen.go#L351: 			return fmt.Errorf("unable to decode photos.uploadContactProfilePhoto#e14c4a71: field video: %w", err)
		tl_photos_upload_contact_profile_photo_gen.go#L358: 			return fmt.Errorf("unable to decode photos.uploadContactProfilePhoto#e14c4a71: field video_start_ts: %w", err)
		tl_photos_upload_contact_profile_photo_gen.go#L365: 			return fmt.Errorf("unable to decode photos.uploadContactProfilePhoto#e14c4a71: field video_emoji_markup: %w", err)
		tl_photos_upload_profile_photo_gen.go#L244: 		return fmt.Errorf("can't encode photos.uploadProfilePhoto#388a3b5 as nil")
		tl_photos_upload_profile_photo_gen.go#L253: 		return fmt.Errorf("can't encode photos.uploadProfilePhoto#388a3b5 as nil")
		tl_photos_upload_profile_photo_gen.go#L257: 		return fmt.Errorf("unable to encode photos.uploadProfilePhoto#388a3b5: field flags: %w", err)
		tl_photos_upload_profile_photo_gen.go#L261: 			return fmt.Errorf("unable to encode photos.uploadProfilePhoto#388a3b5: field bot is nil")
		tl_photos_upload_profile_photo_gen.go#L264: 			return fmt.Errorf("unable to encode photos.uploadProfilePhoto#388a3b5: field bot: %w", err)
		tl_photos_upload_profile_photo_gen.go#L269: 			return fmt.Errorf("unable to encode photos.uploadProfilePhoto#388a3b5: field file is nil")
		tl_photos_upload_profile_photo_gen.go#L272: 			return fmt.Errorf("unable to encode photos.uploadProfilePhoto#388a3b5: field file: %w", err)
		tl_photos_upload_profile_photo_gen.go#L277: 			return fmt.Errorf("unable to encode photos.uploadProfilePhoto#388a3b5: field video is nil")
		tl_photos_upload_profile_photo_gen.go#L280: 			return fmt.Errorf("unable to encode photos.uploadProfilePhoto#388a3b5: field video: %w", err)
		tl_photos_upload_profile_photo_gen.go#L288: 			return fmt.Errorf("unable to encode photos.uploadProfilePhoto#388a3b5: field video_emoji_markup is nil")
		tl_photos_upload_profile_photo_gen.go#L291: 			return fmt.Errorf("unable to encode photos.uploadProfilePhoto#388a3b5: field video_emoji_markup: %w", err)
		tl_photos_upload_profile_photo_gen.go#L300: 		return fmt.Errorf("can't decode photos.uploadProfilePhoto#388a3b5 to nil")
		tl_photos_upload_profile_photo_gen.go#L303: 		return fmt.Errorf("unable to decode photos.uploadProfilePhoto#388a3b5: %w", err)
		tl_photos_upload_profile_photo_gen.go#L311: 		return fmt.Errorf("can't decode photos.uploadProfilePhoto#388a3b5 to nil")
		tl_photos_upload_profile_photo_gen.go#L315: 			return fmt.Errorf("unable to decode photos.uploadProfilePhoto#388a3b5: field flags: %w", err)
		tl_photos_upload_profile_photo_gen.go#L322: 			return fmt.Errorf("unable to decode photos.uploadProfilePhoto#388a3b5: field bot: %w", err)
		tl_photos_upload_profile_photo_gen.go#L329: 			return fmt.Errorf("unable to decode photos.uploadProfilePhoto#388a3b5: field file: %w", err)
		tl_photos_upload_profile_photo_gen.go#L336: 			return fmt.Errorf("unable to decode photos.uploadProfilePhoto#388a3b5: field video: %w", err)
		tl_photos_upload_profile_photo_gen.go#L343: 			return fmt.Errorf("unable to decode photos.uploadProfilePhoto#388a3b5: field video_start_ts: %w", err)
		tl_photos_upload_profile_photo_gen.go#L350: 			return fmt.Errorf("unable to decode photos.uploadProfilePhoto#388a3b5: field video_emoji_markup: %w", err)
		tl_poll_answer_gen.go#L129: 		return fmt.Errorf("can't encode pollAnswer#6ca9c2e9 as nil")
		tl_poll_answer_gen.go#L138: 		return fmt.Errorf("can't encode pollAnswer#6ca9c2e9 as nil")
		tl_poll_answer_gen.go#L148: 		return fmt.Errorf("can't decode pollAnswer#6ca9c2e9 to nil")
		tl_poll_answer_gen.go#L151: 		return fmt.Errorf("unable to decode pollAnswer#6ca9c2e9: %w", err)
		tl_poll_answer_gen.go#L159: 		return fmt.Errorf("can't decode pollAnswer#6ca9c2e9 to nil")
		tl_poll_answer_gen.go#L164: 			return fmt.Errorf("unable to decode pollAnswer#6ca9c2e9: field text: %w", err)
		tl_poll_answer_gen.go#L171: 			return fmt.Errorf("unable to decode pollAnswer#6ca9c2e9: field option: %w", err)
		tl_poll_answer_voters_gen.go#L171: 		return fmt.Errorf("can't encode pollAnswerVoters#3b6ddad2 as nil")
		tl_poll_answer_voters_gen.go#L180: 		return fmt.Errorf("can't encode pollAnswerVoters#3b6ddad2 as nil")
		tl_poll_answer_voters_gen.go#L184: 		return fmt.Errorf("unable to encode pollAnswerVoters#3b6ddad2: field flags: %w", err)
		tl_poll_answer_voters_gen.go#L194: 		return fmt.Errorf("can't decode pollAnswerVoters#3b6ddad2 to nil")
		tl_poll_answer_voters_gen.go#L197: 		return fmt.Errorf("unable to decode pollAnswerVoters#3b6ddad2: %w", err)
		tl_poll_answer_voters_gen.go#L205: 		return fmt.Errorf("can't decode pollAnswerVoters#3b6ddad2 to nil")
		tl_poll_answer_voters_gen.go#L209: 			return fmt.Errorf("unable to decode pollAnswerVoters#3b6ddad2: field flags: %w", err)
		tl_poll_answer_voters_gen.go#L217: 			return fmt.Errorf("unable to decode pollAnswerVoters#3b6ddad2: field option: %w", err)
		tl_poll_answer_voters_gen.go#L224: 			return fmt.Errorf("unable to decode pollAnswerVoters#3b6ddad2: field voters: %w", err)
		tl_poll_gen.go#L256: 		return fmt.Errorf("can't encode poll#86e18161 as nil")
		tl_poll_gen.go#L265: 		return fmt.Errorf("can't encode poll#86e18161 as nil")
		tl_poll_gen.go#L270: 		return fmt.Errorf("unable to encode poll#86e18161: field flags: %w", err)
		tl_poll_gen.go#L276: 			return fmt.Errorf("unable to encode poll#86e18161: field answers element with index %d: %w", idx, err)
		tl_poll_gen.go#L291: 		return fmt.Errorf("can't decode poll#86e18161 to nil")
		tl_poll_gen.go#L294: 		return fmt.Errorf("unable to decode poll#86e18161: %w", err)
		tl_poll_gen.go#L302: 		return fmt.Errorf("can't decode poll#86e18161 to nil")
		tl_poll_gen.go#L307: 			return fmt.Errorf("unable to decode poll#86e18161: field id: %w", err)
		tl_poll_gen.go#L313: 			return fmt.Errorf("unable to decode poll#86e18161: field flags: %w", err)
		tl_poll_gen.go#L323: 			return fmt.Errorf("unable to decode poll#86e18161: field question: %w", err)
		tl_poll_gen.go#L330: 			return fmt.Errorf("unable to decode poll#86e18161: field answers: %w", err)
		tl_poll_gen.go#L339: 				return fmt.Errorf("unable to decode poll#86e18161: field answers: %w", err)
		tl_poll_gen.go#L347: 			return fmt.Errorf("unable to decode poll#86e18161: field close_period: %w", err)
		tl_poll_gen.go#L354: 			return fmt.Errorf("unable to decode poll#86e18161: field close_date: %w", err)
		tl_poll_results_gen.go#L240: 		return fmt.Errorf("can't encode pollResults#7adf2420 as nil")
		tl_poll_results_gen.go#L249: 		return fmt.Errorf("can't encode pollResults#7adf2420 as nil")
		tl_poll_results_gen.go#L253: 		return fmt.Errorf("unable to encode pollResults#7adf2420: field flags: %w", err)
		tl_poll_results_gen.go#L259: 				return fmt.Errorf("unable to encode pollResults#7adf2420: field results element with index %d: %w", idx, err)
		tl_poll_results_gen.go#L270: 				return fmt.Errorf("unable to encode pollResults#7adf2420: field recent_voters element with index %d is nil", idx)
		tl_poll_results_gen.go#L273: 				return fmt.Errorf("unable to encode pollResults#7adf2420: field recent_voters element with index %d: %w", idx, err)
		tl_poll_results_gen.go#L284: 				return fmt.Errorf("unable to encode pollResults#7adf2420: field solution_entities element with index %d is nil", idx)
		tl_poll_results_gen.go#L287: 				return fmt.Errorf("unable to encode pollResults#7adf2420: field solution_entities element with index %d: %w", idx, err)
		tl_poll_results_gen.go#L297: 		return fmt.Errorf("can't decode pollResults#7adf2420 to nil")
		tl_poll_results_gen.go#L300: 		return fmt.Errorf("unable to decode pollResults#7adf2420: %w", err)
		tl_poll_results_gen.go#L308: 		return fmt.Errorf("can't decode pollResults#7adf2420 to nil")
		tl_poll_results_gen.go#L312: 			return fmt.Errorf("unable to decode pollResults#7adf2420: field flags: %w", err)
		tl_poll_results_gen.go#L319: 			return fmt.Errorf("unable to decode pollResults#7adf2420: field results: %w", err)
		tl_poll_results_gen.go#L328: 				return fmt.Errorf("unable to decode pollResults#7adf2420: field results: %w", err)
		tl_poll_results_gen.go#L336: 			return fmt.Errorf("unable to decode pollResults#7adf2420: field total_voters: %w", err)
		tl_poll_results_gen.go#L343: 			return fmt.Errorf("unable to decode pollResults#7adf2420: field recent_voters: %w", err)
		tl_poll_results_gen.go#L352: 				return fmt.Errorf("unable to decode pollResults#7adf2420: field recent_voters: %w", err)
		tl_poll_results_gen.go#L360: 			return fmt.Errorf("unable to decode pollResults#7adf2420: field solution: %w", err)
		tl_poll_results_gen.go#L367: 			return fmt.Errorf("unable to decode pollResults#7adf2420: field solution_entities: %w", err)
		tl_poll_results_gen.go#L376: 				return fmt.Errorf("unable to decode pollResults#7adf2420: field solution_entities: %w", err)
		tl_popular_contact_gen.go#L126: 		return fmt.Errorf("can't encode popularContact#5ce14175 as nil")
		tl_popular_contact_gen.go#L135: 		return fmt.Errorf("can't encode popularContact#5ce14175 as nil")
		tl_popular_contact_gen.go#L145: 		return fmt.Errorf("can't decode popularContact#5ce14175 to nil")
		tl_popular_contact_gen.go#L148: 		return fmt.Errorf("unable to decode popularContact#5ce14175: %w", err)
		tl_popular_contact_gen.go#L156: 		return fmt.Errorf("can't decode popularContact#5ce14175 to nil")
		tl_popular_contact_gen.go#L161: 			return fmt.Errorf("unable to decode popularContact#5ce14175: field client_id: %w", err)
		tl_popular_contact_gen.go#L168: 			return fmt.Errorf("unable to decode popularContact#5ce14175: field importers: %w", err)
		tl_post_address_gen.go#L170: 		return fmt.Errorf("can't encode postAddress#1e8caaeb as nil")
		tl_post_address_gen.go#L179: 		return fmt.Errorf("can't encode postAddress#1e8caaeb as nil")
		tl_post_address_gen.go#L193: 		return fmt.Errorf("can't decode postAddress#1e8caaeb to nil")
		tl_post_address_gen.go#L196: 		return fmt.Errorf("unable to decode postAddress#1e8caaeb: %w", err)
		tl_post_address_gen.go#L204: 		return fmt.Errorf("can't decode postAddress#1e8caaeb to nil")
		tl_post_address_gen.go#L209: 			return fmt.Errorf("unable to decode postAddress#1e8caaeb: field street_line1: %w", err)
		tl_post_address_gen.go#L216: 			return fmt.Errorf("unable to decode postAddress#1e8caaeb: field street_line2: %w", err)
		tl_post_address_gen.go#L223: 			return fmt.Errorf("unable to decode postAddress#1e8caaeb: field city: %w", err)
		tl_post_address_gen.go#L230: 			return fmt.Errorf("unable to decode postAddress#1e8caaeb: field state: %w", err)
		tl_post_address_gen.go#L237: 			return fmt.Errorf("unable to decode postAddress#1e8caaeb: field country_iso2: %w", err)
		tl_post_address_gen.go#L244: 			return fmt.Errorf("unable to decode postAddress#1e8caaeb: field post_code: %w", err)
		tl_post_interaction_counters_gen.go#L153: 		return fmt.Errorf("can't encode postInteractionCountersMessage#e7058e7f as nil")
		tl_post_interaction_counters_gen.go#L162: 		return fmt.Errorf("can't encode postInteractionCountersMessage#e7058e7f as nil")
		tl_post_interaction_counters_gen.go#L174: 		return fmt.Errorf("can't decode postInteractionCountersMessage#e7058e7f to nil")
		tl_post_interaction_counters_gen.go#L177: 		return fmt.Errorf("unable to decode postInteractionCountersMessage#e7058e7f: %w", err)
		tl_post_interaction_counters_gen.go#L185: 		return fmt.Errorf("can't decode postInteractionCountersMessage#e7058e7f to nil")
		tl_post_interaction_counters_gen.go#L190: 			return fmt.Errorf("unable to decode postInteractionCountersMessage#e7058e7f: field msg_id: %w", err)
		tl_post_interaction_counters_gen.go#L197: 			return fmt.Errorf("unable to decode postInteractionCountersMessage#e7058e7f: field views: %w", err)
		tl_post_interaction_counters_gen.go#L204: 			return fmt.Errorf("unable to decode postInteractionCountersMessage#e7058e7f: field forwards: %w", err)
		tl_post_interaction_counters_gen.go#L211: 			return fmt.Errorf("unable to decode postInteractionCountersMessage#e7058e7f: field reactions: %w", err)
		tl_post_interaction_counters_gen.go#L369: 		return fmt.Errorf("can't encode postInteractionCountersStory#8a480e27 as nil")
		tl_post_interaction_counters_gen.go#L378: 		return fmt.Errorf("can't encode postInteractionCountersStory#8a480e27 as nil")
		tl_post_interaction_counters_gen.go#L390: 		return fmt.Errorf("can't decode postInteractionCountersStory#8a480e27 to nil")
		tl_post_interaction_counters_gen.go#L393: 		return fmt.Errorf("unable to decode postInteractionCountersStory#8a480e27: %w", err)
		tl_post_interaction_counters_gen.go#L401: 		return fmt.Errorf("can't decode postInteractionCountersStory#8a480e27 to nil")
		tl_post_interaction_counters_gen.go#L406: 			return fmt.Errorf("unable to decode postInteractionCountersStory#8a480e27: field story_id: %w", err)
		tl_post_interaction_counters_gen.go#L413: 			return fmt.Errorf("unable to decode postInteractionCountersStory#8a480e27: field views: %w", err)
		tl_post_interaction_counters_gen.go#L420: 			return fmt.Errorf("unable to decode postInteractionCountersStory#8a480e27: field forwards: %w", err)
		tl_post_interaction_counters_gen.go#L427: 			return fmt.Errorf("unable to decode postInteractionCountersStory#8a480e27: field reactions: %w", err)
		tl_post_interaction_counters_gen.go#L523: 			return nil, fmt.Errorf("unable to decode PostInteractionCountersClass: %w", err)
		tl_post_interaction_counters_gen.go#L530: 			return nil, fmt.Errorf("unable to decode PostInteractionCountersClass: %w", err)
		tl_post_interaction_counters_gen.go#L534: 		return nil, fmt.Errorf("unable to decode PostInteractionCountersClass: %w", bin.NewUnexpectedID(id))
		tl_post_interaction_counters_gen.go#L546: 		return fmt.Errorf("unable to decode PostInteractionCountersBox to nil")
		tl_post_interaction_counters_gen.go#L550: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_post_interaction_counters_gen.go#L559: 		return fmt.Errorf("unable to encode PostInteractionCountersClass as nil")
		tl_premium_apply_boost_gen.go#L153: 		return fmt.Errorf("can't encode premium.applyBoost#6b7da746 as nil")
		tl_premium_apply_boost_gen.go#L162: 		return fmt.Errorf("can't encode premium.applyBoost#6b7da746 as nil")
		tl_premium_apply_boost_gen.go#L166: 		return fmt.Errorf("unable to encode premium.applyBoost#6b7da746: field flags: %w", err)
		tl_premium_apply_boost_gen.go#L175: 		return fmt.Errorf("unable to encode premium.applyBoost#6b7da746: field peer is nil")
		tl_premium_apply_boost_gen.go#L178: 		return fmt.Errorf("unable to encode premium.applyBoost#6b7da746: field peer: %w", err)
		tl_premium_apply_boost_gen.go#L186: 		return fmt.Errorf("can't decode premium.applyBoost#6b7da746 to nil")
		tl_premium_apply_boost_gen.go#L189: 		return fmt.Errorf("unable to decode premium.applyBoost#6b7da746: %w", err)
		tl_premium_apply_boost_gen.go#L197: 		return fmt.Errorf("can't decode premium.applyBoost#6b7da746 to nil")
		tl_premium_apply_boost_gen.go#L201: 			return fmt.Errorf("unable to decode premium.applyBoost#6b7da746: field flags: %w", err)
		tl_premium_apply_boost_gen.go#L207: 			return fmt.Errorf("unable to decode premium.applyBoost#6b7da746: field slots: %w", err)
		tl_premium_apply_boost_gen.go#L216: 				return fmt.Errorf("unable to decode premium.applyBoost#6b7da746: field slots: %w", err)
		tl_premium_apply_boost_gen.go#L224: 			return fmt.Errorf("unable to decode premium.applyBoost#6b7da746: field peer: %w", err)
		tl_premium_boosts_list_gen.go#L178: 		return fmt.Errorf("can't encode premium.boostsList#86f8613c as nil")
		tl_premium_boosts_list_gen.go#L187: 		return fmt.Errorf("can't encode premium.boostsList#86f8613c as nil")
		tl_premium_boosts_list_gen.go#L191: 		return fmt.Errorf("unable to encode premium.boostsList#86f8613c: field flags: %w", err)
		tl_premium_boosts_list_gen.go#L197: 			return fmt.Errorf("unable to encode premium.boostsList#86f8613c: field boosts element with index %d: %w", idx, err)
		tl_premium_boosts_list_gen.go#L206: 			return fmt.Errorf("unable to encode premium.boostsList#86f8613c: field users element with index %d is nil", idx)
		tl_premium_boosts_list_gen.go#L209: 			return fmt.Errorf("unable to encode premium.boostsList#86f8613c: field users element with index %d: %w", idx, err)
		tl_premium_boosts_list_gen.go#L218: 		return fmt.Errorf("can't decode premium.boostsList#86f8613c to nil")
		tl_premium_boosts_list_gen.go#L221: 		return fmt.Errorf("unable to decode premium.boostsList#86f8613c: %w", err)
		tl_premium_boosts_list_gen.go#L229: 		return fmt.Errorf("can't decode premium.boostsList#86f8613c to nil")
		tl_premium_boosts_list_gen.go#L233: 			return fmt.Errorf("unable to decode premium.boostsList#86f8613c: field flags: %w", err)
		tl_premium_boosts_list_gen.go#L239: 			return fmt.Errorf("unable to decode premium.boostsList#86f8613c: field count: %w", err)
		tl_premium_boosts_list_gen.go#L246: 			return fmt.Errorf("unable to decode premium.boostsList#86f8613c: field boosts: %w", err)
		tl_premium_boosts_list_gen.go#L255: 				return fmt.Errorf("unable to decode premium.boostsList#86f8613c: field boosts: %w", err)
		tl_premium_boosts_list_gen.go#L263: 			return fmt.Errorf("unable to decode premium.boostsList#86f8613c: field next_offset: %w", err)
		tl_premium_boosts_list_gen.go#L270: 			return fmt.Errorf("unable to decode premium.boostsList#86f8613c: field users: %w", err)
		tl_premium_boosts_list_gen.go#L279: 				return fmt.Errorf("unable to decode premium.boostsList#86f8613c: field users: %w", err)
		tl_premium_boosts_status_gen.go#L295: 		return fmt.Errorf("can't encode premium.boostsStatus#4959427a as nil")
		tl_premium_boosts_status_gen.go#L304: 		return fmt.Errorf("can't encode premium.boostsStatus#4959427a as nil")
		tl_premium_boosts_status_gen.go#L308: 		return fmt.Errorf("unable to encode premium.boostsStatus#4959427a: field flags: %w", err)
		tl_premium_boosts_status_gen.go#L321: 			return fmt.Errorf("unable to encode premium.boostsStatus#4959427a: field premium_audience: %w", err)
		tl_premium_boosts_status_gen.go#L329: 				return fmt.Errorf("unable to encode premium.boostsStatus#4959427a: field prepaid_giveaways element with index %d: %w", idx, err)
		tl_premium_boosts_status_gen.go#L345: 		return fmt.Errorf("can't decode premium.boostsStatus#4959427a to nil")
		tl_premium_boosts_status_gen.go#L348: 		return fmt.Errorf("unable to decode premium.boostsStatus#4959427a: %w", err)
		tl_premium_boosts_status_gen.go#L356: 		return fmt.Errorf("can't decode premium.boostsStatus#4959427a to nil")
		tl_premium_boosts_status_gen.go#L360: 			return fmt.Errorf("unable to decode premium.boostsStatus#4959427a: field flags: %w", err)
		tl_premium_boosts_status_gen.go#L367: 			return fmt.Errorf("unable to decode premium.boostsStatus#4959427a: field level: %w", err)
		tl_premium_boosts_status_gen.go#L374: 			return fmt.Errorf("unable to decode premium.boostsStatus#4959427a: field current_level_boosts: %w", err)
		tl_premium_boosts_status_gen.go#L381: 			return fmt.Errorf("unable to decode premium.boostsStatus#4959427a: field boosts: %w", err)
		tl_premium_boosts_status_gen.go#L388: 			return fmt.Errorf("unable to decode premium.boostsStatus#4959427a: field gift_boosts: %w", err)
		tl_premium_boosts_status_gen.go#L395: 			return fmt.Errorf("unable to decode premium.boostsStatus#4959427a: field next_level_boosts: %w", err)
		tl_premium_boosts_status_gen.go#L401: 			return fmt.Errorf("unable to decode premium.boostsStatus#4959427a: field premium_audience: %w", err)
		tl_premium_boosts_status_gen.go#L407: 			return fmt.Errorf("unable to decode premium.boostsStatus#4959427a: field boost_url: %w", err)
		tl_premium_boosts_status_gen.go#L414: 			return fmt.Errorf("unable to decode premium.boostsStatus#4959427a: field prepaid_giveaways: %w", err)
		tl_premium_boosts_status_gen.go#L423: 				return fmt.Errorf("unable to decode premium.boostsStatus#4959427a: field prepaid_giveaways: %w", err)
		tl_premium_boosts_status_gen.go#L431: 			return fmt.Errorf("unable to decode premium.boostsStatus#4959427a: field my_boost_slots: %w", err)
		tl_premium_boosts_status_gen.go#L440: 				return fmt.Errorf("unable to decode premium.boostsStatus#4959427a: field my_boost_slots: %w", err)
		tl_premium_get_boosts_list_gen.go#L174: 		return fmt.Errorf("can't encode premium.getBoostsList#60f67660 as nil")
		tl_premium_get_boosts_list_gen.go#L183: 		return fmt.Errorf("can't encode premium.getBoostsList#60f67660 as nil")
		tl_premium_get_boosts_list_gen.go#L187: 		return fmt.Errorf("unable to encode premium.getBoostsList#60f67660: field flags: %w", err)
		tl_premium_get_boosts_list_gen.go#L190: 		return fmt.Errorf("unable to encode premium.getBoostsList#60f67660: field peer is nil")
		tl_premium_get_boosts_list_gen.go#L193: 		return fmt.Errorf("unable to encode premium.getBoostsList#60f67660: field peer: %w", err)
		tl_premium_get_boosts_list_gen.go#L203: 		return fmt.Errorf("can't decode premium.getBoostsList#60f67660 to nil")
		tl_premium_get_boosts_list_gen.go#L206: 		return fmt.Errorf("unable to decode premium.getBoostsList#60f67660: %w", err)
		tl_premium_get_boosts_list_gen.go#L214: 		return fmt.Errorf("can't decode premium.getBoostsList#60f67660 to nil")
		tl_premium_get_boosts_list_gen.go#L218: 			return fmt.Errorf("unable to decode premium.getBoostsList#60f67660: field flags: %w", err)
		tl_premium_get_boosts_list_gen.go#L225: 			return fmt.Errorf("unable to decode premium.getBoostsList#60f67660: field peer: %w", err)
		tl_premium_get_boosts_list_gen.go#L232: 			return fmt.Errorf("unable to decode premium.getBoostsList#60f67660: field offset: %w", err)
		tl_premium_get_boosts_list_gen.go#L239: 			return fmt.Errorf("unable to decode premium.getBoostsList#60f67660: field limit: %w", err)
		tl_premium_get_boosts_status_gen.go#L118: 		return fmt.Errorf("can't encode premium.getBoostsStatus#42f1f61 as nil")
		tl_premium_get_boosts_status_gen.go#L127: 		return fmt.Errorf("can't encode premium.getBoostsStatus#42f1f61 as nil")
		tl_premium_get_boosts_status_gen.go#L130: 		return fmt.Errorf("unable to encode premium.getBoostsStatus#42f1f61: field peer is nil")
		tl_premium_get_boosts_status_gen.go#L133: 		return fmt.Errorf("unable to encode premium.getBoostsStatus#42f1f61: field peer: %w", err)
		tl_premium_get_boosts_status_gen.go#L141: 		return fmt.Errorf("can't decode premium.getBoostsStatus#42f1f61 to nil")
		tl_premium_get_boosts_status_gen.go#L144: 		return fmt.Errorf("unable to decode premium.getBoostsStatus#42f1f61: %w", err)
		tl_premium_get_boosts_status_gen.go#L152: 		return fmt.Errorf("can't decode premium.getBoostsStatus#42f1f61 to nil")
		tl_premium_get_boosts_status_gen.go#L157: 			return fmt.Errorf("unable to decode premium.getBoostsStatus#42f1f61: field peer: %w", err)
		tl_premium_get_my_boosts_gen.go#L103: 		return fmt.Errorf("can't encode premium.getMyBoosts#be77b4a as nil")
		tl_premium_get_my_boosts_gen.go#L112: 		return fmt.Errorf("can't encode premium.getMyBoosts#be77b4a as nil")
		tl_premium_get_my_boosts_gen.go#L120: 		return fmt.Errorf("can't decode premium.getMyBoosts#be77b4a to nil")
		tl_premium_get_my_boosts_gen.go#L123: 		return fmt.Errorf("unable to decode premium.getMyBoosts#be77b4a: %w", err)
		tl_premium_get_my_boosts_gen.go#L131: 		return fmt.Errorf("can't decode premium.getMyBoosts#be77b4a to nil")
		tl_premium_get_user_boosts_gen.go#L127: 		return fmt.Errorf("can't encode premium.getUserBoosts#39854d1f as nil")
		tl_premium_get_user_boosts_gen.go#L136: 		return fmt.Errorf("can't encode premium.getUserBoosts#39854d1f as nil")
		tl_premium_get_user_boosts_gen.go#L139: 		return fmt.Errorf("unable to encode premium.getUserBoosts#39854d1f: field peer is nil")
		tl_premium_get_user_boosts_gen.go#L142: 		return fmt.Errorf("unable to encode premium.getUserBoosts#39854d1f: field peer: %w", err)
		tl_premium_get_user_boosts_gen.go#L145: 		return fmt.Errorf("unable to encode premium.getUserBoosts#39854d1f: field user_id is nil")
		tl_premium_get_user_boosts_gen.go#L148: 		return fmt.Errorf("unable to encode premium.getUserBoosts#39854d1f: field user_id: %w", err)
		tl_premium_get_user_boosts_gen.go#L156: 		return fmt.Errorf("can't decode premium.getUserBoosts#39854d1f to nil")
		tl_premium_get_user_boosts_gen.go#L159: 		return fmt.Errorf("unable to decode premium.getUserBoosts#39854d1f: %w", err)
		tl_premium_get_user_boosts_gen.go#L167: 		return fmt.Errorf("can't decode premium.getUserBoosts#39854d1f to nil")
		tl_premium_get_user_boosts_gen.go#L172: 			return fmt.Errorf("unable to decode premium.getUserBoosts#39854d1f: field peer: %w", err)
		tl_premium_get_user_boosts_gen.go#L179: 			return fmt.Errorf("unable to decode premium.getUserBoosts#39854d1f: field user_id: %w", err)
		tl_premium_gift_code_option_gen.go#L215: 		return fmt.Errorf("can't encode premiumGiftCodeOption#257e962b as nil")
		tl_premium_gift_code_option_gen.go#L224: 		return fmt.Errorf("can't encode premiumGiftCodeOption#257e962b as nil")
		tl_premium_gift_code_option_gen.go#L228: 		return fmt.Errorf("unable to encode premiumGiftCodeOption#257e962b: field flags: %w", err)
		tl_premium_gift_code_option_gen.go#L246: 		return fmt.Errorf("can't decode premiumGiftCodeOption#257e962b to nil")
		tl_premium_gift_code_option_gen.go#L249: 		return fmt.Errorf("unable to decode premiumGiftCodeOption#257e962b: %w", err)
		tl_premium_gift_code_option_gen.go#L257: 		return fmt.Errorf("can't decode premiumGiftCodeOption#257e962b to nil")
		tl_premium_gift_code_option_gen.go#L261: 			return fmt.Errorf("unable to decode premiumGiftCodeOption#257e962b: field flags: %w", err)
		tl_premium_gift_code_option_gen.go#L267: 			return fmt.Errorf("unable to decode premiumGiftCodeOption#257e962b: field users: %w", err)
		tl_premium_gift_code_option_gen.go#L274: 			return fmt.Errorf("unable to decode premiumGiftCodeOption#257e962b: field months: %w", err)
		tl_premium_gift_code_option_gen.go#L281: 			return fmt.Errorf("unable to decode premiumGiftCodeOption#257e962b: field store_product: %w", err)
		tl_premium_gift_code_option_gen.go#L288: 			return fmt.Errorf("unable to decode premiumGiftCodeOption#257e962b: field store_quantity: %w", err)
		tl_premium_gift_code_option_gen.go#L295: 			return fmt.Errorf("unable to decode premiumGiftCodeOption#257e962b: field currency: %w", err)
		tl_premium_gift_code_option_gen.go#L302: 			return fmt.Errorf("unable to decode premiumGiftCodeOption#257e962b: field amount: %w", err)
		tl_premium_gift_code_option_vector_gen.go#L112: 		return fmt.Errorf("can't encode Vector<PremiumGiftCodeOption> as nil")
		tl_premium_gift_code_option_vector_gen.go#L121: 		return fmt.Errorf("can't encode Vector<PremiumGiftCodeOption> as nil")
		tl_premium_gift_code_option_vector_gen.go#L126: 			return fmt.Errorf("unable to encode Vector<PremiumGiftCodeOption>: field Elems element with index %d: %w", idx, err)
		tl_premium_gift_code_option_vector_gen.go#L135: 		return fmt.Errorf("can't decode Vector<PremiumGiftCodeOption> to nil")
		tl_premium_gift_code_option_vector_gen.go#L144: 		return fmt.Errorf("can't decode Vector<PremiumGiftCodeOption> to nil")
		tl_premium_gift_code_option_vector_gen.go#L149: 			return fmt.Errorf("unable to decode Vector<PremiumGiftCodeOption>: field Elems: %w", err)
		tl_premium_gift_code_option_vector_gen.go#L158: 				return fmt.Errorf("unable to decode Vector<PremiumGiftCodeOption>: field Elems: %w", err)
		tl_premium_gift_option_gen.go#L193: 		return fmt.Errorf("can't encode premiumGiftOption#74c34319 as nil")
		tl_premium_gift_option_gen.go#L202: 		return fmt.Errorf("can't encode premiumGiftOption#74c34319 as nil")
		tl_premium_gift_option_gen.go#L206: 		return fmt.Errorf("unable to encode premiumGiftOption#74c34319: field flags: %w", err)
		tl_premium_gift_option_gen.go#L221: 		return fmt.Errorf("can't decode premiumGiftOption#74c34319 to nil")
		tl_premium_gift_option_gen.go#L224: 		return fmt.Errorf("unable to decode premiumGiftOption#74c34319: %w", err)
		tl_premium_gift_option_gen.go#L232: 		return fmt.Errorf("can't decode premiumGiftOption#74c34319 to nil")
		tl_premium_gift_option_gen.go#L236: 			return fmt.Errorf("unable to decode premiumGiftOption#74c34319: field flags: %w", err)
		tl_premium_gift_option_gen.go#L242: 			return fmt.Errorf("unable to decode premiumGiftOption#74c34319: field months: %w", err)
		tl_premium_gift_option_gen.go#L249: 			return fmt.Errorf("unable to decode premiumGiftOption#74c34319: field currency: %w", err)
		tl_premium_gift_option_gen.go#L256: 			return fmt.Errorf("unable to decode premiumGiftOption#74c34319: field amount: %w", err)
		tl_premium_gift_option_gen.go#L263: 			return fmt.Errorf("unable to decode premiumGiftOption#74c34319: field bot_url: %w", err)
		tl_premium_gift_option_gen.go#L270: 			return fmt.Errorf("unable to decode premiumGiftOption#74c34319: field store_product: %w", err)
		tl_premium_my_boosts_gen.go#L141: 		return fmt.Errorf("can't encode premium.myBoosts#9ae228e2 as nil")
		tl_premium_my_boosts_gen.go#L150: 		return fmt.Errorf("can't encode premium.myBoosts#9ae228e2 as nil")
		tl_premium_my_boosts_gen.go#L155: 			return fmt.Errorf("unable to encode premium.myBoosts#9ae228e2: field my_boosts element with index %d: %w", idx, err)
		tl_premium_my_boosts_gen.go#L161: 			return fmt.Errorf("unable to encode premium.myBoosts#9ae228e2: field chats element with index %d is nil", idx)
		tl_premium_my_boosts_gen.go#L164: 			return fmt.Errorf("unable to encode premium.myBoosts#9ae228e2: field chats element with index %d: %w", idx, err)
		tl_premium_my_boosts_gen.go#L170: 			return fmt.Errorf("unable to encode premium.myBoosts#9ae228e2: field users element with index %d is nil", idx)
		tl_premium_my_boosts_gen.go#L173: 			return fmt.Errorf("unable to encode premium.myBoosts#9ae228e2: field users element with index %d: %w", idx, err)
		tl_premium_my_boosts_gen.go#L182: 		return fmt.Errorf("can't decode premium.myBoosts#9ae228e2 to nil")
		tl_premium_my_boosts_gen.go#L185: 		return fmt.Errorf("unable to decode premium.myBoosts#9ae228e2: %w", err)
		tl_premium_my_boosts_gen.go#L193: 		return fmt.Errorf("can't decode premium.myBoosts#9ae228e2 to nil")
		tl_premium_my_boosts_gen.go#L198: 			return fmt.Errorf("unable to decode premium.myBoosts#9ae228e2: field my_boosts: %w", err)
		tl_premium_my_boosts_gen.go#L207: 				return fmt.Errorf("unable to decode premium.myBoosts#9ae228e2: field my_boosts: %w", err)
		tl_premium_my_boosts_gen.go#L215: 			return fmt.Errorf("unable to decode premium.myBoosts#9ae228e2: field chats: %w", err)
		tl_premium_my_boosts_gen.go#L224: 				return fmt.Errorf("unable to decode premium.myBoosts#9ae228e2: field chats: %w", err)
		tl_premium_my_boosts_gen.go#L232: 			return fmt.Errorf("unable to decode premium.myBoosts#9ae228e2: field users: %w", err)
		tl_premium_my_boosts_gen.go#L241: 				return fmt.Errorf("unable to decode premium.myBoosts#9ae228e2: field users: %w", err)
		tl_premium_subscription_option_gen.go#L246: 		return fmt.Errorf("can't encode premiumSubscriptionOption#5f2d1df2 as nil")
		tl_premium_subscription_option_gen.go#L255: 		return fmt.Errorf("can't encode premiumSubscriptionOption#5f2d1df2 as nil")
		tl_premium_subscription_option_gen.go#L259: 		return fmt.Errorf("unable to encode premiumSubscriptionOption#5f2d1df2: field flags: %w", err)
		tl_premium_subscription_option_gen.go#L277: 		return fmt.Errorf("can't decode premiumSubscriptionOption#5f2d1df2 to nil")
		tl_premium_subscription_option_gen.go#L280: 		return fmt.Errorf("unable to decode premiumSubscriptionOption#5f2d1df2: %w", err)
		tl_premium_subscription_option_gen.go#L288: 		return fmt.Errorf("can't decode premiumSubscriptionOption#5f2d1df2 to nil")
		tl_premium_subscription_option_gen.go#L292: 			return fmt.Errorf("unable to decode premiumSubscriptionOption#5f2d1df2: field flags: %w", err)
		tl_premium_subscription_option_gen.go#L300: 			return fmt.Errorf("unable to decode premiumSubscriptionOption#5f2d1df2: field transaction: %w", err)
		tl_premium_subscription_option_gen.go#L307: 			return fmt.Errorf("unable to decode premiumSubscriptionOption#5f2d1df2: field months: %w", err)
		tl_premium_subscription_option_gen.go#L314: 			return fmt.Errorf("unable to decode premiumSubscriptionOption#5f2d1df2: field currency: %w", err)
		tl_premium_subscription_option_gen.go#L321: 			return fmt.Errorf("unable to decode premiumSubscriptionOption#5f2d1df2: field amount: %w", err)
		tl_premium_subscription_option_gen.go#L328: 			return fmt.Errorf("unable to decode premiumSubscriptionOption#5f2d1df2: field bot_url: %w", err)
		tl_premium_subscription_option_gen.go#L335: 			return fmt.Errorf("unable to decode premiumSubscriptionOption#5f2d1df2: field store_product: %w", err)
		tl_prepaid_giveaway_gen.go#L157: 		return fmt.Errorf("can't encode prepaidGiveaway#b2539d54 as nil")
		tl_prepaid_giveaway_gen.go#L166: 		return fmt.Errorf("can't encode prepaidGiveaway#b2539d54 as nil")
		tl_prepaid_giveaway_gen.go#L178: 		return fmt.Errorf("can't decode prepaidGiveaway#b2539d54 to nil")
		tl_prepaid_giveaway_gen.go#L181: 		return fmt.Errorf("unable to decode prepaidGiveaway#b2539d54: %w", err)
		tl_prepaid_giveaway_gen.go#L189: 		return fmt.Errorf("can't decode prepaidGiveaway#b2539d54 to nil")
		tl_prepaid_giveaway_gen.go#L194: 			return fmt.Errorf("unable to decode prepaidGiveaway#b2539d54: field id: %w", err)
		tl_prepaid_giveaway_gen.go#L201: 			return fmt.Errorf("unable to decode prepaidGiveaway#b2539d54: field months: %w", err)
		tl_prepaid_giveaway_gen.go#L208: 			return fmt.Errorf("unable to decode prepaidGiveaway#b2539d54: field quantity: %w", err)
		tl_prepaid_giveaway_gen.go#L215: 			return fmt.Errorf("unable to decode prepaidGiveaway#b2539d54: field date: %w", err)
		tl_privacy_key_gen.go#L103: 		return fmt.Errorf("can't encode privacyKeyStatusTimestamp#bc2eab30 as nil")
		tl_privacy_key_gen.go#L112: 		return fmt.Errorf("can't encode privacyKeyStatusTimestamp#bc2eab30 as nil")
		tl_privacy_key_gen.go#L120: 		return fmt.Errorf("can't decode privacyKeyStatusTimestamp#bc2eab30 to nil")
		tl_privacy_key_gen.go#L123: 		return fmt.Errorf("unable to decode privacyKeyStatusTimestamp#bc2eab30: %w", err)
		tl_privacy_key_gen.go#L131: 		return fmt.Errorf("can't decode privacyKeyStatusTimestamp#bc2eab30 to nil")
		tl_privacy_key_gen.go#L205: 		return fmt.Errorf("can't encode privacyKeyChatInvite#500e6dfa as nil")
		tl_privacy_key_gen.go#L214: 		return fmt.Errorf("can't encode privacyKeyChatInvite#500e6dfa as nil")
		tl_privacy_key_gen.go#L222: 		return fmt.Errorf("can't decode privacyKeyChatInvite#500e6dfa to nil")
		tl_privacy_key_gen.go#L225: 		return fmt.Errorf("unable to decode privacyKeyChatInvite#500e6dfa: %w", err)
		tl_privacy_key_gen.go#L233: 		return fmt.Errorf("can't decode privacyKeyChatInvite#500e6dfa to nil")
		tl_privacy_key_gen.go#L307: 		return fmt.Errorf("can't encode privacyKeyPhoneCall#3d662b7b as nil")
		tl_privacy_key_gen.go#L316: 		return fmt.Errorf("can't encode privacyKeyPhoneCall#3d662b7b as nil")
		tl_privacy_key_gen.go#L324: 		return fmt.Errorf("can't decode privacyKeyPhoneCall#3d662b7b to nil")
		tl_privacy_key_gen.go#L327: 		return fmt.Errorf("unable to decode privacyKeyPhoneCall#3d662b7b: %w", err)
		tl_privacy_key_gen.go#L335: 		return fmt.Errorf("can't decode privacyKeyPhoneCall#3d662b7b to nil")
		tl_privacy_key_gen.go#L409: 		return fmt.Errorf("can't encode privacyKeyPhoneP2P#39491cc8 as nil")
		tl_privacy_key_gen.go#L418: 		return fmt.Errorf("can't encode privacyKeyPhoneP2P#39491cc8 as nil")
		tl_privacy_key_gen.go#L426: 		return fmt.Errorf("can't decode privacyKeyPhoneP2P#39491cc8 to nil")
		tl_privacy_key_gen.go#L429: 		return fmt.Errorf("unable to decode privacyKeyPhoneP2P#39491cc8: %w", err)
		tl_privacy_key_gen.go#L437: 		return fmt.Errorf("can't decode privacyKeyPhoneP2P#39491cc8 to nil")
		tl_privacy_key_gen.go#L514: 		return fmt.Errorf("can't encode privacyKeyForwards#69ec56a3 as nil")
		tl_privacy_key_gen.go#L523: 		return fmt.Errorf("can't encode privacyKeyForwards#69ec56a3 as nil")
		tl_privacy_key_gen.go#L531: 		return fmt.Errorf("can't decode privacyKeyForwards#69ec56a3 to nil")
		tl_privacy_key_gen.go#L534: 		return fmt.Errorf("unable to decode privacyKeyForwards#69ec56a3: %w", err)
		tl_privacy_key_gen.go#L542: 		return fmt.Errorf("can't decode privacyKeyForwards#69ec56a3 to nil")
		tl_privacy_key_gen.go#L616: 		return fmt.Errorf("can't encode privacyKeyProfilePhoto#96151fed as nil")
		tl_privacy_key_gen.go#L625: 		return fmt.Errorf("can't encode privacyKeyProfilePhoto#96151fed as nil")
		tl_privacy_key_gen.go#L633: 		return fmt.Errorf("can't decode privacyKeyProfilePhoto#96151fed to nil")
		tl_privacy_key_gen.go#L636: 		return fmt.Errorf("unable to decode privacyKeyProfilePhoto#96151fed: %w", err)
		tl_privacy_key_gen.go#L644: 		return fmt.Errorf("can't decode privacyKeyProfilePhoto#96151fed to nil")
		tl_privacy_key_gen.go#L718: 		return fmt.Errorf("can't encode privacyKeyPhoneNumber#d19ae46d as nil")
		tl_privacy_key_gen.go#L727: 		return fmt.Errorf("can't encode privacyKeyPhoneNumber#d19ae46d as nil")
		tl_privacy_key_gen.go#L735: 		return fmt.Errorf("can't decode privacyKeyPhoneNumber#d19ae46d to nil")
		tl_privacy_key_gen.go#L738: 		return fmt.Errorf("unable to decode privacyKeyPhoneNumber#d19ae46d: %w", err)
		tl_privacy_key_gen.go#L746: 		return fmt.Errorf("can't decode privacyKeyPhoneNumber#d19ae46d to nil")
		tl_privacy_key_gen.go#L820: 		return fmt.Errorf("can't encode privacyKeyAddedByPhone#42ffd42b as nil")
		tl_privacy_key_gen.go#L829: 		return fmt.Errorf("can't encode privacyKeyAddedByPhone#42ffd42b as nil")
		tl_privacy_key_gen.go#L837: 		return fmt.Errorf("can't decode privacyKeyAddedByPhone#42ffd42b to nil")
		tl_privacy_key_gen.go#L840: 		return fmt.Errorf("unable to decode privacyKeyAddedByPhone#42ffd42b: %w", err)
		tl_privacy_key_gen.go#L848: 		return fmt.Errorf("can't decode privacyKeyAddedByPhone#42ffd42b to nil")
		tl_privacy_key_gen.go#L922: 		return fmt.Errorf("can't encode privacyKeyVoiceMessages#697f414 as nil")
		tl_privacy_key_gen.go#L931: 		return fmt.Errorf("can't encode privacyKeyVoiceMessages#697f414 as nil")
		tl_privacy_key_gen.go#L939: 		return fmt.Errorf("can't decode privacyKeyVoiceMessages#697f414 to nil")
		tl_privacy_key_gen.go#L942: 		return fmt.Errorf("unable to decode privacyKeyVoiceMessages#697f414: %w", err)
		tl_privacy_key_gen.go#L950: 		return fmt.Errorf("can't decode privacyKeyVoiceMessages#697f414 to nil")
		tl_privacy_key_gen.go#L1024: 		return fmt.Errorf("can't encode privacyKeyAbout#a486b761 as nil")
		tl_privacy_key_gen.go#L1033: 		return fmt.Errorf("can't encode privacyKeyAbout#a486b761 as nil")
		tl_privacy_key_gen.go#L1041: 		return fmt.Errorf("can't decode privacyKeyAbout#a486b761 to nil")
		tl_privacy_key_gen.go#L1044: 		return fmt.Errorf("unable to decode privacyKeyAbout#a486b761: %w", err)
		tl_privacy_key_gen.go#L1052: 		return fmt.Errorf("can't decode privacyKeyAbout#a486b761 to nil")
		tl_privacy_key_gen.go#L1113: 			return nil, fmt.Errorf("unable to decode PrivacyKeyClass: %w", err)
		tl_privacy_key_gen.go#L1120: 			return nil, fmt.Errorf("unable to decode PrivacyKeyClass: %w", err)
		tl_privacy_key_gen.go#L1127: 			return nil, fmt.Errorf("unable to decode PrivacyKeyClass: %w", err)
		tl_privacy_key_gen.go#L1134: 			return nil, fmt.Errorf("unable to decode PrivacyKeyClass: %w", err)
		tl_privacy_key_gen.go#L1141: 			return nil, fmt.Errorf("unable to decode PrivacyKeyClass: %w", err)
		tl_privacy_key_gen.go#L1148: 			return nil, fmt.Errorf("unable to decode PrivacyKeyClass: %w", err)
		tl_privacy_key_gen.go#L1155: 			return nil, fmt.Errorf("unable to decode PrivacyKeyClass: %w", err)
		tl_privacy_key_gen.go#L1162: 			return nil, fmt.Errorf("unable to decode PrivacyKeyClass: %w", err)
		tl_privacy_key_gen.go#L1169: 			return nil, fmt.Errorf("unable to decode PrivacyKeyClass: %w", err)
		tl_privacy_key_gen.go#L1176: 			return nil, fmt.Errorf("unable to decode PrivacyKeyClass: %w", err)
		tl_privacy_key_gen.go#L1180: 		return nil, fmt.Errorf("unable to decode PrivacyKeyClass: %w", bin.NewUnexpectedID(id))
		tl_privacy_key_gen.go#L1192: 		return fmt.Errorf("unable to decode PrivacyKeyBox to nil")
		tl_privacy_key_gen.go#L1196: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_privacy_key_gen.go#L1205: 		return fmt.Errorf("unable to encode PrivacyKeyClass as nil")
		tl_privacy_rule_gen.go#L103: 		return fmt.Errorf("can't encode privacyValueAllowContacts#fffe1bac as nil")
		tl_privacy_rule_gen.go#L112: 		return fmt.Errorf("can't encode privacyValueAllowContacts#fffe1bac as nil")
		tl_privacy_rule_gen.go#L120: 		return fmt.Errorf("can't decode privacyValueAllowContacts#fffe1bac to nil")
		tl_privacy_rule_gen.go#L123: 		return fmt.Errorf("unable to decode privacyValueAllowContacts#fffe1bac: %w", err)
		tl_privacy_rule_gen.go#L131: 		return fmt.Errorf("can't decode privacyValueAllowContacts#fffe1bac to nil")
		tl_privacy_rule_gen.go#L205: 		return fmt.Errorf("can't encode privacyValueAllowAll#65427b82 as nil")
		tl_privacy_rule_gen.go#L214: 		return fmt.Errorf("can't encode privacyValueAllowAll#65427b82 as nil")
		tl_privacy_rule_gen.go#L222: 		return fmt.Errorf("can't decode privacyValueAllowAll#65427b82 to nil")
		tl_privacy_rule_gen.go#L225: 		return fmt.Errorf("unable to decode privacyValueAllowAll#65427b82: %w", err)
		tl_privacy_rule_gen.go#L233: 		return fmt.Errorf("can't decode privacyValueAllowAll#65427b82 to nil")
		tl_privacy_rule_gen.go#L324: 		return fmt.Errorf("can't encode privacyValueAllowUsers#b8905fb2 as nil")
		tl_privacy_rule_gen.go#L333: 		return fmt.Errorf("can't encode privacyValueAllowUsers#b8905fb2 as nil")
		tl_privacy_rule_gen.go#L345: 		return fmt.Errorf("can't decode privacyValueAllowUsers#b8905fb2 to nil")
		tl_privacy_rule_gen.go#L348: 		return fmt.Errorf("unable to decode privacyValueAllowUsers#b8905fb2: %w", err)
		tl_privacy_rule_gen.go#L356: 		return fmt.Errorf("can't decode privacyValueAllowUsers#b8905fb2 to nil")
		tl_privacy_rule_gen.go#L361: 			return fmt.Errorf("unable to decode privacyValueAllowUsers#b8905fb2: field users: %w", err)
		tl_privacy_rule_gen.go#L370: 				return fmt.Errorf("unable to decode privacyValueAllowUsers#b8905fb2: field users: %w", err)
		tl_privacy_rule_gen.go#L455: 		return fmt.Errorf("can't encode privacyValueDisallowContacts#f888fa1a as nil")
		tl_privacy_rule_gen.go#L464: 		return fmt.Errorf("can't encode privacyValueDisallowContacts#f888fa1a as nil")
		tl_privacy_rule_gen.go#L472: 		return fmt.Errorf("can't decode privacyValueDisallowContacts#f888fa1a to nil")
		tl_privacy_rule_gen.go#L475: 		return fmt.Errorf("unable to decode privacyValueDisallowContacts#f888fa1a: %w", err)
		tl_privacy_rule_gen.go#L483: 		return fmt.Errorf("can't decode privacyValueDisallowContacts#f888fa1a to nil")
		tl_privacy_rule_gen.go#L557: 		return fmt.Errorf("can't encode privacyValueDisallowAll#8b73e763 as nil")
		tl_privacy_rule_gen.go#L566: 		return fmt.Errorf("can't encode privacyValueDisallowAll#8b73e763 as nil")
		tl_privacy_rule_gen.go#L574: 		return fmt.Errorf("can't decode privacyValueDisallowAll#8b73e763 to nil")
		tl_privacy_rule_gen.go#L577: 		return fmt.Errorf("unable to decode privacyValueDisallowAll#8b73e763: %w", err)
		tl_privacy_rule_gen.go#L585: 		return fmt.Errorf("can't decode privacyValueDisallowAll#8b73e763 to nil")
		tl_privacy_rule_gen.go#L676: 		return fmt.Errorf("can't encode privacyValueDisallowUsers#e4621141 as nil")
		tl_privacy_rule_gen.go#L685: 		return fmt.Errorf("can't encode privacyValueDisallowUsers#e4621141 as nil")
		tl_privacy_rule_gen.go#L697: 		return fmt.Errorf("can't decode privacyValueDisallowUsers#e4621141 to nil")
		tl_privacy_rule_gen.go#L700: 		return fmt.Errorf("unable to decode privacyValueDisallowUsers#e4621141: %w", err)
		tl_privacy_rule_gen.go#L708: 		return fmt.Errorf("can't decode privacyValueDisallowUsers#e4621141 to nil")
		tl_privacy_rule_gen.go#L713: 			return fmt.Errorf("unable to decode privacyValueDisallowUsers#e4621141: field users: %w", err)
		tl_privacy_rule_gen.go#L722: 				return fmt.Errorf("unable to decode privacyValueDisallowUsers#e4621141: field users: %w", err)
		tl_privacy_rule_gen.go#L824: 		return fmt.Errorf("can't encode privacyValueAllowChatParticipants#6b134e8e as nil")
		tl_privacy_rule_gen.go#L833: 		return fmt.Errorf("can't encode privacyValueAllowChatParticipants#6b134e8e as nil")
		tl_privacy_rule_gen.go#L845: 		return fmt.Errorf("can't decode privacyValueAllowChatParticipants#6b134e8e to nil")
		tl_privacy_rule_gen.go#L848: 		return fmt.Errorf("unable to decode privacyValueAllowChatParticipants#6b134e8e: %w", err)
		tl_privacy_rule_gen.go#L856: 		return fmt.Errorf("can't decode privacyValueAllowChatParticipants#6b134e8e to nil")
		tl_privacy_rule_gen.go#L861: 			return fmt.Errorf("unable to decode privacyValueAllowChatParticipants#6b134e8e: field chats: %w", err)
		tl_privacy_rule_gen.go#L870: 				return fmt.Errorf("unable to decode privacyValueAllowChatParticipants#6b134e8e: field chats: %w", err)
		tl_privacy_rule_gen.go#L972: 		return fmt.Errorf("can't encode privacyValueDisallowChatParticipants#41c87565 as nil")
		tl_privacy_rule_gen.go#L981: 		return fmt.Errorf("can't encode privacyValueDisallowChatParticipants#41c87565 as nil")
		tl_privacy_rule_gen.go#L993: 		return fmt.Errorf("can't decode privacyValueDisallowChatParticipants#41c87565 to nil")
		tl_privacy_rule_gen.go#L996: 		return fmt.Errorf("unable to decode privacyValueDisallowChatParticipants#41c87565: %w", err)
		tl_privacy_rule_gen.go#L1004: 		return fmt.Errorf("can't decode privacyValueDisallowChatParticipants#41c87565 to nil")
		tl_privacy_rule_gen.go#L1009: 			return fmt.Errorf("unable to decode privacyValueDisallowChatParticipants#41c87565: field chats: %w", err)
		tl_privacy_rule_gen.go#L1018: 				return fmt.Errorf("unable to decode privacyValueDisallowChatParticipants#41c87565: field chats: %w", err)
		tl_privacy_rule_gen.go#L1106: 		return fmt.Errorf("can't encode privacyValueAllowCloseFriends#f7e8d89b as nil")
		tl_privacy_rule_gen.go#L1115: 		return fmt.Errorf("can't encode privacyValueAllowCloseFriends#f7e8d89b as nil")
		tl_privacy_rule_gen.go#L1123: 		return fmt.Errorf("can't decode privacyValueAllowCloseFriends#f7e8d89b to nil")
		tl_privacy_rule_gen.go#L1126: 		return fmt.Errorf("unable to decode privacyValueAllowCloseFriends#f7e8d89b: %w", err)
		tl_privacy_rule_gen.go#L1134: 		return fmt.Errorf("can't decode privacyValueAllowCloseFriends#f7e8d89b to nil")
		tl_privacy_rule_gen.go#L1210: 			return nil, fmt.Errorf("unable to decode PrivacyRuleClass: %w", err)
		tl_privacy_rule_gen.go#L1217: 			return nil, fmt.Errorf("unable to decode PrivacyRuleClass: %w", err)
		tl_privacy_rule_gen.go#L1224: 			return nil, fmt.Errorf("unable to decode PrivacyRuleClass: %w", err)
		tl_privacy_rule_gen.go#L1231: 			return nil, fmt.Errorf("unable to decode PrivacyRuleClass: %w", err)
		tl_privacy_rule_gen.go#L1238: 			return nil, fmt.Errorf("unable to decode PrivacyRuleClass: %w", err)
		tl_privacy_rule_gen.go#L1245: 			return nil, fmt.Errorf("unable to decode PrivacyRuleClass: %w", err)
		tl_privacy_rule_gen.go#L1252: 			return nil, fmt.Errorf("unable to decode PrivacyRuleClass: %w", err)
		tl_privacy_rule_gen.go#L1259: 			return nil, fmt.Errorf("unable to decode PrivacyRuleClass: %w", err)
		tl_privacy_rule_gen.go#L1266: 			return nil, fmt.Errorf("unable to decode PrivacyRuleClass: %w", err)
		tl_privacy_rule_gen.go#L1270: 		return nil, fmt.Errorf("unable to decode PrivacyRuleClass: %w", bin.NewUnexpectedID(id))
		tl_privacy_rule_gen.go#L1282: 		return fmt.Errorf("unable to decode PrivacyRuleBox to nil")
		tl_privacy_rule_gen.go#L1286: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_privacy_rule_gen.go#L1295: 		return fmt.Errorf("unable to encode PrivacyRuleClass as nil")
		tl_public_forward_gen.go#L123: 		return fmt.Errorf("can't encode publicForwardMessage#1f2bf4a as nil")
		tl_public_forward_gen.go#L132: 		return fmt.Errorf("can't encode publicForwardMessage#1f2bf4a as nil")
		tl_public_forward_gen.go#L135: 		return fmt.Errorf("unable to encode publicForwardMessage#1f2bf4a: field message is nil")
		tl_public_forward_gen.go#L138: 		return fmt.Errorf("unable to encode publicForwardMessage#1f2bf4a: field message: %w", err)
		tl_public_forward_gen.go#L146: 		return fmt.Errorf("can't decode publicForwardMessage#1f2bf4a to nil")
		tl_public_forward_gen.go#L149: 		return fmt.Errorf("unable to decode publicForwardMessage#1f2bf4a: %w", err)
		tl_public_forward_gen.go#L157: 		return fmt.Errorf("can't decode publicForwardMessage#1f2bf4a to nil")
		tl_public_forward_gen.go#L162: 			return fmt.Errorf("unable to decode publicForwardMessage#1f2bf4a: field message: %w", err)
		tl_public_forward_gen.go#L277: 		return fmt.Errorf("can't encode publicForwardStory#edf3add0 as nil")
		tl_public_forward_gen.go#L286: 		return fmt.Errorf("can't encode publicForwardStory#edf3add0 as nil")
		tl_public_forward_gen.go#L289: 		return fmt.Errorf("unable to encode publicForwardStory#edf3add0: field peer is nil")
		tl_public_forward_gen.go#L292: 		return fmt.Errorf("unable to encode publicForwardStory#edf3add0: field peer: %w", err)
		tl_public_forward_gen.go#L295: 		return fmt.Errorf("unable to encode publicForwardStory#edf3add0: field story is nil")
		tl_public_forward_gen.go#L298: 		return fmt.Errorf("unable to encode publicForwardStory#edf3add0: field story: %w", err)
		tl_public_forward_gen.go#L306: 		return fmt.Errorf("can't decode publicForwardStory#edf3add0 to nil")
		tl_public_forward_gen.go#L309: 		return fmt.Errorf("unable to decode publicForwardStory#edf3add0: %w", err)
		tl_public_forward_gen.go#L317: 		return fmt.Errorf("can't decode publicForwardStory#edf3add0 to nil")
		tl_public_forward_gen.go#L322: 			return fmt.Errorf("unable to decode publicForwardStory#edf3add0: field peer: %w", err)
		tl_public_forward_gen.go#L329: 			return fmt.Errorf("unable to decode publicForwardStory#edf3add0: field story: %w", err)
		tl_public_forward_gen.go#L400: 			return nil, fmt.Errorf("unable to decode PublicForwardClass: %w", err)
		tl_public_forward_gen.go#L407: 			return nil, fmt.Errorf("unable to decode PublicForwardClass: %w", err)
		tl_public_forward_gen.go#L411: 		return nil, fmt.Errorf("unable to decode PublicForwardClass: %w", bin.NewUnexpectedID(id))
		tl_public_forward_gen.go#L423: 		return fmt.Errorf("unable to decode PublicForwardBox to nil")
		tl_public_forward_gen.go#L427: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_public_forward_gen.go#L436: 		return fmt.Errorf("unable to encode PublicForwardClass as nil")
		tl_reaction_count_gen.go#L159: 		return fmt.Errorf("can't encode reactionCount#a3d1cb80 as nil")
		tl_reaction_count_gen.go#L168: 		return fmt.Errorf("can't encode reactionCount#a3d1cb80 as nil")
		tl_reaction_count_gen.go#L172: 		return fmt.Errorf("unable to encode reactionCount#a3d1cb80: field flags: %w", err)
		tl_reaction_count_gen.go#L178: 		return fmt.Errorf("unable to encode reactionCount#a3d1cb80: field reaction is nil")
		tl_reaction_count_gen.go#L181: 		return fmt.Errorf("unable to encode reactionCount#a3d1cb80: field reaction: %w", err)
		tl_reaction_count_gen.go#L190: 		return fmt.Errorf("can't decode reactionCount#a3d1cb80 to nil")
		tl_reaction_count_gen.go#L193: 		return fmt.Errorf("unable to decode reactionCount#a3d1cb80: %w", err)
		tl_reaction_count_gen.go#L201: 		return fmt.Errorf("can't decode reactionCount#a3d1cb80 to nil")
		tl_reaction_count_gen.go#L205: 			return fmt.Errorf("unable to decode reactionCount#a3d1cb80: field flags: %w", err)
		tl_reaction_count_gen.go#L211: 			return fmt.Errorf("unable to decode reactionCount#a3d1cb80: field chosen_order: %w", err)
		tl_reaction_count_gen.go#L218: 			return fmt.Errorf("unable to decode reactionCount#a3d1cb80: field reaction: %w", err)
		tl_reaction_count_gen.go#L225: 			return fmt.Errorf("unable to decode reactionCount#a3d1cb80: field count: %w", err)
		tl_reaction_gen.go#L103: 		return fmt.Errorf("can't encode reactionEmpty#79f5d419 as nil")
		tl_reaction_gen.go#L112: 		return fmt.Errorf("can't encode reactionEmpty#79f5d419 as nil")
		tl_reaction_gen.go#L120: 		return fmt.Errorf("can't decode reactionEmpty#79f5d419 to nil")
		tl_reaction_gen.go#L123: 		return fmt.Errorf("unable to decode reactionEmpty#79f5d419: %w", err)
		tl_reaction_gen.go#L131: 		return fmt.Errorf("can't decode reactionEmpty#79f5d419 to nil")
		tl_reaction_gen.go#L222: 		return fmt.Errorf("can't encode reactionEmoji#1b2286b8 as nil")
		tl_reaction_gen.go#L231: 		return fmt.Errorf("can't encode reactionEmoji#1b2286b8 as nil")
		tl_reaction_gen.go#L240: 		return fmt.Errorf("can't decode reactionEmoji#1b2286b8 to nil")
		tl_reaction_gen.go#L243: 		return fmt.Errorf("unable to decode reactionEmoji#1b2286b8: %w", err)
		tl_reaction_gen.go#L251: 		return fmt.Errorf("can't decode reactionEmoji#1b2286b8 to nil")
		tl_reaction_gen.go#L256: 			return fmt.Errorf("unable to decode reactionEmoji#1b2286b8: field emoticon: %w", err)
		tl_reaction_gen.go#L363: 		return fmt.Errorf("can't encode reactionCustomEmoji#8935fc73 as nil")
		tl_reaction_gen.go#L372: 		return fmt.Errorf("can't encode reactionCustomEmoji#8935fc73 as nil")
		tl_reaction_gen.go#L381: 		return fmt.Errorf("can't decode reactionCustomEmoji#8935fc73 to nil")
		tl_reaction_gen.go#L384: 		return fmt.Errorf("unable to decode reactionCustomEmoji#8935fc73: %w", err)
		tl_reaction_gen.go#L392: 		return fmt.Errorf("can't decode reactionCustomEmoji#8935fc73 to nil")
		tl_reaction_gen.go#L397: 			return fmt.Errorf("unable to decode reactionCustomEmoji#8935fc73: field document_id: %w", err)
		tl_reaction_gen.go#L461: 			return nil, fmt.Errorf("unable to decode ReactionClass: %w", err)
		tl_reaction_gen.go#L468: 			return nil, fmt.Errorf("unable to decode ReactionClass: %w", err)
		tl_reaction_gen.go#L475: 			return nil, fmt.Errorf("unable to decode ReactionClass: %w", err)
		tl_reaction_gen.go#L479: 		return nil, fmt.Errorf("unable to decode ReactionClass: %w", bin.NewUnexpectedID(id))
		tl_reaction_gen.go#L491: 		return fmt.Errorf("unable to decode ReactionBox to nil")
		tl_reaction_gen.go#L495: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_reaction_gen.go#L504: 		return fmt.Errorf("unable to encode ReactionClass as nil")
		tl_read_participant_date_gen.go#L126: 		return fmt.Errorf("can't encode readParticipantDate#4a4ff172 as nil")
		tl_read_participant_date_gen.go#L135: 		return fmt.Errorf("can't encode readParticipantDate#4a4ff172 as nil")
		tl_read_participant_date_gen.go#L145: 		return fmt.Errorf("can't decode readParticipantDate#4a4ff172 to nil")
		tl_read_participant_date_gen.go#L148: 		return fmt.Errorf("unable to decode readParticipantDate#4a4ff172: %w", err)
		tl_read_participant_date_gen.go#L156: 		return fmt.Errorf("can't decode readParticipantDate#4a4ff172 to nil")
		tl_read_participant_date_gen.go#L161: 			return fmt.Errorf("unable to decode readParticipantDate#4a4ff172: field user_id: %w", err)
		tl_read_participant_date_gen.go#L168: 			return fmt.Errorf("unable to decode readParticipantDate#4a4ff172: field date: %w", err)
		tl_read_participant_date_vector_gen.go#L112: 		return fmt.Errorf("can't encode Vector<ReadParticipantDate> as nil")
		tl_read_participant_date_vector_gen.go#L121: 		return fmt.Errorf("can't encode Vector<ReadParticipantDate> as nil")
		tl_read_participant_date_vector_gen.go#L126: 			return fmt.Errorf("unable to encode Vector<ReadParticipantDate>: field Elems element with index %d: %w", idx, err)
		tl_read_participant_date_vector_gen.go#L135: 		return fmt.Errorf("can't decode Vector<ReadParticipantDate> to nil")
		tl_read_participant_date_vector_gen.go#L144: 		return fmt.Errorf("can't decode Vector<ReadParticipantDate> to nil")
		tl_read_participant_date_vector_gen.go#L149: 			return fmt.Errorf("unable to decode Vector<ReadParticipantDate>: field Elems: %w", err)
		tl_read_participant_date_vector_gen.go#L158: 				return fmt.Errorf("unable to decode Vector<ReadParticipantDate>: field Elems: %w", err)
		tl_received_notify_message_gen.go#L126: 		return fmt.Errorf("can't encode receivedNotifyMessage#a384b779 as nil")
		tl_received_notify_message_gen.go#L135: 		return fmt.Errorf("can't encode receivedNotifyMessage#a384b779 as nil")
		tl_received_notify_message_gen.go#L145: 		return fmt.Errorf("can't decode receivedNotifyMessage#a384b779 to nil")
		tl_received_notify_message_gen.go#L148: 		return fmt.Errorf("unable to decode receivedNotifyMessage#a384b779: %w", err)
		tl_received_notify_message_gen.go#L156: 		return fmt.Errorf("can't decode receivedNotifyMessage#a384b779 to nil")
		tl_received_notify_message_gen.go#L161: 			return fmt.Errorf("unable to decode receivedNotifyMessage#a384b779: field id: %w", err)
		tl_received_notify_message_gen.go#L168: 			return fmt.Errorf("unable to decode receivedNotifyMessage#a384b779: field flags: %w", err)
		tl_received_notify_message_vector_gen.go#L112: 		return fmt.Errorf("can't encode Vector<ReceivedNotifyMessage> as nil")
		tl_received_notify_message_vector_gen.go#L121: 		return fmt.Errorf("can't encode Vector<ReceivedNotifyMessage> as nil")
		tl_received_notify_message_vector_gen.go#L126: 			return fmt.Errorf("unable to encode Vector<ReceivedNotifyMessage>: field Elems element with index %d: %w", idx, err)
		tl_received_notify_message_vector_gen.go#L135: 		return fmt.Errorf("can't decode Vector<ReceivedNotifyMessage> to nil")
		tl_received_notify_message_vector_gen.go#L144: 		return fmt.Errorf("can't decode Vector<ReceivedNotifyMessage> to nil")
		tl_received_notify_message_vector_gen.go#L149: 			return fmt.Errorf("unable to decode Vector<ReceivedNotifyMessage>: field Elems: %w", err)
		tl_received_notify_message_vector_gen.go#L158: 				return fmt.Errorf("unable to decode Vector<ReceivedNotifyMessage>: field Elems: %w", err)
		tl_recent_me_url_gen.go#L120: 		return fmt.Errorf("can't encode recentMeUrlUnknown#46e1d13d as nil")
		tl_recent_me_url_gen.go#L129: 		return fmt.Errorf("can't encode recentMeUrlUnknown#46e1d13d as nil")
		tl_recent_me_url_gen.go#L138: 		return fmt.Errorf("can't decode recentMeUrlUnknown#46e1d13d to nil")
		tl_recent_me_url_gen.go#L141: 		return fmt.Errorf("unable to decode recentMeUrlUnknown#46e1d13d: %w", err)
		tl_recent_me_url_gen.go#L149: 		return fmt.Errorf("can't decode recentMeUrlUnknown#46e1d13d to nil")
		tl_recent_me_url_gen.go#L154: 			return fmt.Errorf("unable to decode recentMeUrlUnknown#46e1d13d: field url: %w", err)
		tl_recent_me_url_gen.go#L266: 		return fmt.Errorf("can't encode recentMeUrlUser#b92c09e2 as nil")
		tl_recent_me_url_gen.go#L275: 		return fmt.Errorf("can't encode recentMeUrlUser#b92c09e2 as nil")
		tl_recent_me_url_gen.go#L285: 		return fmt.Errorf("can't decode recentMeUrlUser#b92c09e2 to nil")
		tl_recent_me_url_gen.go#L288: 		return fmt.Errorf("unable to decode recentMeUrlUser#b92c09e2: %w", err)
		tl_recent_me_url_gen.go#L296: 		return fmt.Errorf("can't decode recentMeUrlUser#b92c09e2 to nil")
		tl_recent_me_url_gen.go#L301: 			return fmt.Errorf("unable to decode recentMeUrlUser#b92c09e2: field url: %w", err)
		tl_recent_me_url_gen.go#L308: 			return fmt.Errorf("unable to decode recentMeUrlUser#b92c09e2: field user_id: %w", err)
		tl_recent_me_url_gen.go#L428: 		return fmt.Errorf("can't encode recentMeUrlChat#b2da71d2 as nil")
		tl_recent_me_url_gen.go#L437: 		return fmt.Errorf("can't encode recentMeUrlChat#b2da71d2 as nil")
		tl_recent_me_url_gen.go#L447: 		return fmt.Errorf("can't decode recentMeUrlChat#b2da71d2 to nil")
		tl_recent_me_url_gen.go#L450: 		return fmt.Errorf("unable to decode recentMeUrlChat#b2da71d2: %w", err)
		tl_recent_me_url_gen.go#L458: 		return fmt.Errorf("can't decode recentMeUrlChat#b2da71d2 to nil")
		tl_recent_me_url_gen.go#L463: 			return fmt.Errorf("unable to decode recentMeUrlChat#b2da71d2: field url: %w", err)
		tl_recent_me_url_gen.go#L470: 			return fmt.Errorf("unable to decode recentMeUrlChat#b2da71d2: field chat_id: %w", err)
		tl_recent_me_url_gen.go#L590: 		return fmt.Errorf("can't encode recentMeUrlChatInvite#eb49081d as nil")
		tl_recent_me_url_gen.go#L599: 		return fmt.Errorf("can't encode recentMeUrlChatInvite#eb49081d as nil")
		tl_recent_me_url_gen.go#L603: 		return fmt.Errorf("unable to encode recentMeUrlChatInvite#eb49081d: field chat_invite is nil")
		tl_recent_me_url_gen.go#L606: 		return fmt.Errorf("unable to encode recentMeUrlChatInvite#eb49081d: field chat_invite: %w", err)
		tl_recent_me_url_gen.go#L614: 		return fmt.Errorf("can't decode recentMeUrlChatInvite#eb49081d to nil")
		tl_recent_me_url_gen.go#L617: 		return fmt.Errorf("unable to decode recentMeUrlChatInvite#eb49081d: %w", err)
		tl_recent_me_url_gen.go#L625: 		return fmt.Errorf("can't decode recentMeUrlChatInvite#eb49081d to nil")
		tl_recent_me_url_gen.go#L630: 			return fmt.Errorf("unable to decode recentMeUrlChatInvite#eb49081d: field url: %w", err)
		tl_recent_me_url_gen.go#L637: 			return fmt.Errorf("unable to decode recentMeUrlChatInvite#eb49081d: field chat_invite: %w", err)
		tl_recent_me_url_gen.go#L757: 		return fmt.Errorf("can't encode recentMeUrlStickerSet#bc0a57dc as nil")
		tl_recent_me_url_gen.go#L766: 		return fmt.Errorf("can't encode recentMeUrlStickerSet#bc0a57dc as nil")
		tl_recent_me_url_gen.go#L770: 		return fmt.Errorf("unable to encode recentMeUrlStickerSet#bc0a57dc: field set is nil")
		tl_recent_me_url_gen.go#L773: 		return fmt.Errorf("unable to encode recentMeUrlStickerSet#bc0a57dc: field set: %w", err)
		tl_recent_me_url_gen.go#L781: 		return fmt.Errorf("can't decode recentMeUrlStickerSet#bc0a57dc to nil")
		tl_recent_me_url_gen.go#L784: 		return fmt.Errorf("unable to decode recentMeUrlStickerSet#bc0a57dc: %w", err)
		tl_recent_me_url_gen.go#L792: 		return fmt.Errorf("can't decode recentMeUrlStickerSet#bc0a57dc to nil")
		tl_recent_me_url_gen.go#L797: 			return fmt.Errorf("unable to decode recentMeUrlStickerSet#bc0a57dc: field url: %w", err)
		tl_recent_me_url_gen.go#L804: 			return fmt.Errorf("unable to decode recentMeUrlStickerSet#bc0a57dc: field set: %w", err)
		tl_recent_me_url_gen.go#L881: 			return nil, fmt.Errorf("unable to decode RecentMeURLClass: %w", err)
		tl_recent_me_url_gen.go#L888: 			return nil, fmt.Errorf("unable to decode RecentMeURLClass: %w", err)
		tl_recent_me_url_gen.go#L895: 			return nil, fmt.Errorf("unable to decode RecentMeURLClass: %w", err)
		tl_recent_me_url_gen.go#L902: 			return nil, fmt.Errorf("unable to decode RecentMeURLClass: %w", err)
		tl_recent_me_url_gen.go#L909: 			return nil, fmt.Errorf("unable to decode RecentMeURLClass: %w", err)
		tl_recent_me_url_gen.go#L913: 		return nil, fmt.Errorf("unable to decode RecentMeURLClass: %w", bin.NewUnexpectedID(id))
		tl_recent_me_url_gen.go#L925: 		return fmt.Errorf("unable to decode RecentMeURLBox to nil")
		tl_recent_me_url_gen.go#L929: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_recent_me_url_gen.go#L938: 		return fmt.Errorf("unable to encode RecentMeURLClass as nil")
		tl_reply_markup_gen.go#L141: 		return fmt.Errorf("can't encode replyKeyboardHide#a03e5b85 as nil")
		tl_reply_markup_gen.go#L150: 		return fmt.Errorf("can't encode replyKeyboardHide#a03e5b85 as nil")
		tl_reply_markup_gen.go#L154: 		return fmt.Errorf("unable to encode replyKeyboardHide#a03e5b85: field flags: %w", err)
		tl_reply_markup_gen.go#L162: 		return fmt.Errorf("can't decode replyKeyboardHide#a03e5b85 to nil")
		tl_reply_markup_gen.go#L165: 		return fmt.Errorf("unable to decode replyKeyboardHide#a03e5b85: %w", err)
		tl_reply_markup_gen.go#L173: 		return fmt.Errorf("can't decode replyKeyboardHide#a03e5b85 to nil")
		tl_reply_markup_gen.go#L177: 			return fmt.Errorf("unable to decode replyKeyboardHide#a03e5b85: field flags: %w", err)
		tl_reply_markup_gen.go#L348: 		return fmt.Errorf("can't encode replyKeyboardForceReply#86b40b08 as nil")
		tl_reply_markup_gen.go#L357: 		return fmt.Errorf("can't encode replyKeyboardForceReply#86b40b08 as nil")
		tl_reply_markup_gen.go#L361: 		return fmt.Errorf("unable to encode replyKeyboardForceReply#86b40b08: field flags: %w", err)
		tl_reply_markup_gen.go#L372: 		return fmt.Errorf("can't decode replyKeyboardForceReply#86b40b08 to nil")
		tl_reply_markup_gen.go#L375: 		return fmt.Errorf("unable to decode replyKeyboardForceReply#86b40b08: %w", err)
		tl_reply_markup_gen.go#L383: 		return fmt.Errorf("can't decode replyKeyboardForceReply#86b40b08 to nil")
		tl_reply_markup_gen.go#L387: 			return fmt.Errorf("unable to decode replyKeyboardForceReply#86b40b08: field flags: %w", err)
		tl_reply_markup_gen.go#L395: 			return fmt.Errorf("unable to decode replyKeyboardForceReply#86b40b08: field placeholder: %w", err)
		tl_reply_markup_gen.go#L646: 		return fmt.Errorf("can't encode replyKeyboardMarkup#85dd99d1 as nil")
		tl_reply_markup_gen.go#L655: 		return fmt.Errorf("can't encode replyKeyboardMarkup#85dd99d1 as nil")
		tl_reply_markup_gen.go#L659: 		return fmt.Errorf("unable to encode replyKeyboardMarkup#85dd99d1: field flags: %w", err)
		tl_reply_markup_gen.go#L664: 			return fmt.Errorf("unable to encode replyKeyboardMarkup#85dd99d1: field rows element with index %d: %w", idx, err)
		tl_reply_markup_gen.go#L676: 		return fmt.Errorf("can't decode replyKeyboardMarkup#85dd99d1 to nil")
		tl_reply_markup_gen.go#L679: 		return fmt.Errorf("unable to decode replyKeyboardMarkup#85dd99d1: %w", err)
		tl_reply_markup_gen.go#L687: 		return fmt.Errorf("can't decode replyKeyboardMarkup#85dd99d1 to nil")
		tl_reply_markup_gen.go#L691: 			return fmt.Errorf("unable to decode replyKeyboardMarkup#85dd99d1: field flags: %w", err)
		tl_reply_markup_gen.go#L701: 			return fmt.Errorf("unable to decode replyKeyboardMarkup#85dd99d1: field rows: %w", err)
		tl_reply_markup_gen.go#L710: 				return fmt.Errorf("unable to decode replyKeyboardMarkup#85dd99d1: field rows: %w", err)
		tl_reply_markup_gen.go#L718: 			return fmt.Errorf("unable to decode replyKeyboardMarkup#85dd99d1: field placeholder: %w", err)
		tl_reply_markup_gen.go#L913: 		return fmt.Errorf("can't encode replyInlineMarkup#48a30254 as nil")
		tl_reply_markup_gen.go#L922: 		return fmt.Errorf("can't encode replyInlineMarkup#48a30254 as nil")
		tl_reply_markup_gen.go#L927: 			return fmt.Errorf("unable to encode replyInlineMarkup#48a30254: field rows element with index %d: %w", idx, err)
		tl_reply_markup_gen.go#L936: 		return fmt.Errorf("can't decode replyInlineMarkup#48a30254 to nil")
		tl_reply_markup_gen.go#L939: 		return fmt.Errorf("unable to decode replyInlineMarkup#48a30254: %w", err)
		tl_reply_markup_gen.go#L947: 		return fmt.Errorf("can't decode replyInlineMarkup#48a30254 to nil")
		tl_reply_markup_gen.go#L952: 			return fmt.Errorf("unable to decode replyInlineMarkup#48a30254: field rows: %w", err)
		tl_reply_markup_gen.go#L961: 				return fmt.Errorf("unable to decode replyInlineMarkup#48a30254: field rows: %w", err)
		tl_reply_markup_gen.go#L1027: 			return nil, fmt.Errorf("unable to decode ReplyMarkupClass: %w", err)
		tl_reply_markup_gen.go#L1034: 			return nil, fmt.Errorf("unable to decode ReplyMarkupClass: %w", err)
		tl_reply_markup_gen.go#L1041: 			return nil, fmt.Errorf("unable to decode ReplyMarkupClass: %w", err)
		tl_reply_markup_gen.go#L1048: 			return nil, fmt.Errorf("unable to decode ReplyMarkupClass: %w", err)
		tl_reply_markup_gen.go#L1052: 		return nil, fmt.Errorf("unable to decode ReplyMarkupClass: %w", bin.NewUnexpectedID(id))
		tl_reply_markup_gen.go#L1064: 		return fmt.Errorf("unable to decode ReplyMarkupBox to nil")
		tl_reply_markup_gen.go#L1068: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_reply_markup_gen.go#L1077: 		return fmt.Errorf("unable to encode ReplyMarkupClass as nil")
		tl_report_reason_gen.go#L103: 		return fmt.Errorf("can't encode inputReportReasonSpam#58dbcab8 as nil")
		tl_report_reason_gen.go#L112: 		return fmt.Errorf("can't encode inputReportReasonSpam#58dbcab8 as nil")
		tl_report_reason_gen.go#L120: 		return fmt.Errorf("can't decode inputReportReasonSpam#58dbcab8 to nil")
		tl_report_reason_gen.go#L123: 		return fmt.Errorf("unable to decode inputReportReasonSpam#58dbcab8: %w", err)
		tl_report_reason_gen.go#L131: 		return fmt.Errorf("can't decode inputReportReasonSpam#58dbcab8 to nil")
		tl_report_reason_gen.go#L205: 		return fmt.Errorf("can't encode inputReportReasonViolence#1e22c78d as nil")
		tl_report_reason_gen.go#L214: 		return fmt.Errorf("can't encode inputReportReasonViolence#1e22c78d as nil")
		tl_report_reason_gen.go#L222: 		return fmt.Errorf("can't decode inputReportReasonViolence#1e22c78d to nil")
		tl_report_reason_gen.go#L225: 		return fmt.Errorf("unable to decode inputReportReasonViolence#1e22c78d: %w", err)
		tl_report_reason_gen.go#L233: 		return fmt.Errorf("can't decode inputReportReasonViolence#1e22c78d to nil")
		tl_report_reason_gen.go#L307: 		return fmt.Errorf("can't encode inputReportReasonPornography#2e59d922 as nil")
		tl_report_reason_gen.go#L316: 		return fmt.Errorf("can't encode inputReportReasonPornography#2e59d922 as nil")
		tl_report_reason_gen.go#L324: 		return fmt.Errorf("can't decode inputReportReasonPornography#2e59d922 to nil")
		tl_report_reason_gen.go#L327: 		return fmt.Errorf("unable to decode inputReportReasonPornography#2e59d922: %w", err)
		tl_report_reason_gen.go#L335: 		return fmt.Errorf("can't decode inputReportReasonPornography#2e59d922 to nil")
		tl_report_reason_gen.go#L409: 		return fmt.Errorf("can't encode inputReportReasonChildAbuse#adf44ee3 as nil")
		tl_report_reason_gen.go#L418: 		return fmt.Errorf("can't encode inputReportReasonChildAbuse#adf44ee3 as nil")
		tl_report_reason_gen.go#L426: 		return fmt.Errorf("can't decode inputReportReasonChildAbuse#adf44ee3 to nil")
		tl_report_reason_gen.go#L429: 		return fmt.Errorf("unable to decode inputReportReasonChildAbuse#adf44ee3: %w", err)
		tl_report_reason_gen.go#L437: 		return fmt.Errorf("can't decode inputReportReasonChildAbuse#adf44ee3 to nil")
		tl_report_reason_gen.go#L511: 		return fmt.Errorf("can't encode inputReportReasonOther#c1e4a2b1 as nil")
		tl_report_reason_gen.go#L520: 		return fmt.Errorf("can't encode inputReportReasonOther#c1e4a2b1 as nil")
		tl_report_reason_gen.go#L528: 		return fmt.Errorf("can't decode inputReportReasonOther#c1e4a2b1 to nil")
		tl_report_reason_gen.go#L531: 		return fmt.Errorf("unable to decode inputReportReasonOther#c1e4a2b1: %w", err)
		tl_report_reason_gen.go#L539: 		return fmt.Errorf("can't decode inputReportReasonOther#c1e4a2b1 to nil")
		tl_report_reason_gen.go#L613: 		return fmt.Errorf("can't encode inputReportReasonCopyright#9b89f93a as nil")
		tl_report_reason_gen.go#L622: 		return fmt.Errorf("can't encode inputReportReasonCopyright#9b89f93a as nil")
		tl_report_reason_gen.go#L630: 		return fmt.Errorf("can't decode inputReportReasonCopyright#9b89f93a to nil")
		tl_report_reason_gen.go#L633: 		return fmt.Errorf("unable to decode inputReportReasonCopyright#9b89f93a: %w", err)
		tl_report_reason_gen.go#L641: 		return fmt.Errorf("can't decode inputReportReasonCopyright#9b89f93a to nil")
		tl_report_reason_gen.go#L715: 		return fmt.Errorf("can't encode inputReportReasonGeoIrrelevant#dbd4feed as nil")
		tl_report_reason_gen.go#L724: 		return fmt.Errorf("can't encode inputReportReasonGeoIrrelevant#dbd4feed as nil")
		tl_report_reason_gen.go#L732: 		return fmt.Errorf("can't decode inputReportReasonGeoIrrelevant#dbd4feed to nil")
		tl_report_reason_gen.go#L735: 		return fmt.Errorf("unable to decode inputReportReasonGeoIrrelevant#dbd4feed: %w", err)
		tl_report_reason_gen.go#L743: 		return fmt.Errorf("can't decode inputReportReasonGeoIrrelevant#dbd4feed to nil")
		tl_report_reason_gen.go#L817: 		return fmt.Errorf("can't encode inputReportReasonFake#f5ddd6e7 as nil")
		tl_report_reason_gen.go#L826: 		return fmt.Errorf("can't encode inputReportReasonFake#f5ddd6e7 as nil")
		tl_report_reason_gen.go#L834: 		return fmt.Errorf("can't decode inputReportReasonFake#f5ddd6e7 to nil")
		tl_report_reason_gen.go#L837: 		return fmt.Errorf("unable to decode inputReportReasonFake#f5ddd6e7: %w", err)
		tl_report_reason_gen.go#L845: 		return fmt.Errorf("can't decode inputReportReasonFake#f5ddd6e7 to nil")
		tl_report_reason_gen.go#L919: 		return fmt.Errorf("can't encode inputReportReasonIllegalDrugs#a8eb2be as nil")
		tl_report_reason_gen.go#L928: 		return fmt.Errorf("can't encode inputReportReasonIllegalDrugs#a8eb2be as nil")
		tl_report_reason_gen.go#L936: 		return fmt.Errorf("can't decode inputReportReasonIllegalDrugs#a8eb2be to nil")
		tl_report_reason_gen.go#L939: 		return fmt.Errorf("unable to decode inputReportReasonIllegalDrugs#a8eb2be: %w", err)
		tl_report_reason_gen.go#L947: 		return fmt.Errorf("can't decode inputReportReasonIllegalDrugs#a8eb2be to nil")
		tl_report_reason_gen.go#L1021: 		return fmt.Errorf("can't encode inputReportReasonPersonalDetails#9ec7863d as nil")
		tl_report_reason_gen.go#L1030: 		return fmt.Errorf("can't encode inputReportReasonPersonalDetails#9ec7863d as nil")
		tl_report_reason_gen.go#L1038: 		return fmt.Errorf("can't decode inputReportReasonPersonalDetails#9ec7863d to nil")
		tl_report_reason_gen.go#L1041: 		return fmt.Errorf("unable to decode inputReportReasonPersonalDetails#9ec7863d: %w", err)
		tl_report_reason_gen.go#L1049: 		return fmt.Errorf("can't decode inputReportReasonPersonalDetails#9ec7863d to nil")
		tl_report_reason_gen.go#L1110: 			return nil, fmt.Errorf("unable to decode ReportReasonClass: %w", err)
		tl_report_reason_gen.go#L1117: 			return nil, fmt.Errorf("unable to decode ReportReasonClass: %w", err)
		tl_report_reason_gen.go#L1124: 			return nil, fmt.Errorf("unable to decode ReportReasonClass: %w", err)
		tl_report_reason_gen.go#L1131: 			return nil, fmt.Errorf("unable to decode ReportReasonClass: %w", err)
		tl_report_reason_gen.go#L1138: 			return nil, fmt.Errorf("unable to decode ReportReasonClass: %w", err)
		tl_report_reason_gen.go#L1145: 			return nil, fmt.Errorf("unable to decode ReportReasonClass: %w", err)
		tl_report_reason_gen.go#L1152: 			return nil, fmt.Errorf("unable to decode ReportReasonClass: %w", err)
		tl_report_reason_gen.go#L1159: 			return nil, fmt.Errorf("unable to decode ReportReasonClass: %w", err)
		tl_report_reason_gen.go#L1166: 			return nil, fmt.Errorf("unable to decode ReportReasonClass: %w", err)
		tl_report_reason_gen.go#L1173: 			return nil, fmt.Errorf("unable to decode ReportReasonClass: %w", err)
		tl_report_reason_gen.go#L1177: 		return nil, fmt.Errorf("unable to decode ReportReasonClass: %w", bin.NewUnexpectedID(id))
		tl_report_reason_gen.go#L1189: 		return fmt.Errorf("unable to decode ReportReasonBox to nil")
		tl_report_reason_gen.go#L1193: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_report_reason_gen.go#L1202: 		return fmt.Errorf("unable to encode ReportReasonClass as nil")
		tl_request_peer_type_gen.go#L164: 		return fmt.Errorf("can't encode requestPeerTypeUser#5f3b8a00 as nil")
		tl_request_peer_type_gen.go#L173: 		return fmt.Errorf("can't encode requestPeerTypeUser#5f3b8a00 as nil")
		tl_request_peer_type_gen.go#L177: 		return fmt.Errorf("unable to encode requestPeerTypeUser#5f3b8a00: field flags: %w", err)
		tl_request_peer_type_gen.go#L191: 		return fmt.Errorf("can't decode requestPeerTypeUser#5f3b8a00 to nil")
		tl_request_peer_type_gen.go#L194: 		return fmt.Errorf("unable to decode requestPeerTypeUser#5f3b8a00: %w", err)
		tl_request_peer_type_gen.go#L202: 		return fmt.Errorf("can't decode requestPeerTypeUser#5f3b8a00 to nil")
		tl_request_peer_type_gen.go#L206: 			return fmt.Errorf("unable to decode requestPeerTypeUser#5f3b8a00: field flags: %w", err)
		tl_request_peer_type_gen.go#L212: 			return fmt.Errorf("unable to decode requestPeerTypeUser#5f3b8a00: field bot: %w", err)
		tl_request_peer_type_gen.go#L219: 			return fmt.Errorf("unable to decode requestPeerTypeUser#5f3b8a00: field premium: %w", err)
		tl_request_peer_type_gen.go#L471: 		return fmt.Errorf("can't encode requestPeerTypeChat#c9f06e1b as nil")
		tl_request_peer_type_gen.go#L480: 		return fmt.Errorf("can't encode requestPeerTypeChat#c9f06e1b as nil")
		tl_request_peer_type_gen.go#L484: 		return fmt.Errorf("unable to encode requestPeerTypeChat#c9f06e1b: field flags: %w", err)
		tl_request_peer_type_gen.go#L494: 			return fmt.Errorf("unable to encode requestPeerTypeChat#c9f06e1b: field user_admin_rights: %w", err)
		tl_request_peer_type_gen.go#L499: 			return fmt.Errorf("unable to encode requestPeerTypeChat#c9f06e1b: field bot_admin_rights: %w", err)
		tl_request_peer_type_gen.go#L508: 		return fmt.Errorf("can't decode requestPeerTypeChat#c9f06e1b to nil")
		tl_request_peer_type_gen.go#L511: 		return fmt.Errorf("unable to decode requestPeerTypeChat#c9f06e1b: %w", err)
		tl_request_peer_type_gen.go#L519: 		return fmt.Errorf("can't decode requestPeerTypeChat#c9f06e1b to nil")
		tl_request_peer_type_gen.go#L523: 			return fmt.Errorf("unable to decode requestPeerTypeChat#c9f06e1b: field flags: %w", err)
		tl_request_peer_type_gen.go#L531: 			return fmt.Errorf("unable to decode requestPeerTypeChat#c9f06e1b: field has_username: %w", err)
		tl_request_peer_type_gen.go#L538: 			return fmt.Errorf("unable to decode requestPeerTypeChat#c9f06e1b: field forum: %w", err)
		tl_request_peer_type_gen.go#L544: 			return fmt.Errorf("unable to decode requestPeerTypeChat#c9f06e1b: field user_admin_rights: %w", err)
		tl_request_peer_type_gen.go#L549: 			return fmt.Errorf("unable to decode requestPeerTypeChat#c9f06e1b: field bot_admin_rights: %w", err)
		tl_request_peer_type_gen.go#L833: 		return fmt.Errorf("can't encode requestPeerTypeBroadcast#339bef6c as nil")
		tl_request_peer_type_gen.go#L842: 		return fmt.Errorf("can't encode requestPeerTypeBroadcast#339bef6c as nil")
		tl_request_peer_type_gen.go#L846: 		return fmt.Errorf("unable to encode requestPeerTypeBroadcast#339bef6c: field flags: %w", err)
		tl_request_peer_type_gen.go#L853: 			return fmt.Errorf("unable to encode requestPeerTypeBroadcast#339bef6c: field user_admin_rights: %w", err)
		tl_request_peer_type_gen.go#L858: 			return fmt.Errorf("unable to encode requestPeerTypeBroadcast#339bef6c: field bot_admin_rights: %w", err)
		tl_request_peer_type_gen.go#L867: 		return fmt.Errorf("can't decode requestPeerTypeBroadcast#339bef6c to nil")
		tl_request_peer_type_gen.go#L870: 		return fmt.Errorf("unable to decode requestPeerTypeBroadcast#339bef6c: %w", err)
		tl_request_peer_type_gen.go#L878: 		return fmt.Errorf("can't decode requestPeerTypeBroadcast#339bef6c to nil")
		tl_request_peer_type_gen.go#L882: 			return fmt.Errorf("unable to decode requestPeerTypeBroadcast#339bef6c: field flags: %w", err)
		tl_request_peer_type_gen.go#L889: 			return fmt.Errorf("unable to decode requestPeerTypeBroadcast#339bef6c: field has_username: %w", err)
		tl_request_peer_type_gen.go#L895: 			return fmt.Errorf("unable to decode requestPeerTypeBroadcast#339bef6c: field user_admin_rights: %w", err)
		tl_request_peer_type_gen.go#L900: 			return fmt.Errorf("unable to decode requestPeerTypeBroadcast#339bef6c: field bot_admin_rights: %w", err)
		tl_request_peer_type_gen.go#L1028: 			return nil, fmt.Errorf("unable to decode RequestPeerTypeClass: %w", err)
		tl_request_peer_type_gen.go#L1035: 			return nil, fmt.Errorf("unable to decode RequestPeerTypeClass: %w", err)
		tl_request_peer_type_gen.go#L1042: 			return nil, fmt.Errorf("unable to decode RequestPeerTypeClass: %w", err)
		tl_request_peer_type_gen.go#L1046: 		return nil, fmt.Errorf("unable to decode RequestPeerTypeClass: %w", bin.NewUnexpectedID(id))
		tl_request_peer_type_gen.go#L1058: 		return fmt.Errorf("unable to decode RequestPeerTypeBox to nil")
		tl_request_peer_type_gen.go#L1062: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_request_peer_type_gen.go#L1071: 		return fmt.Errorf("unable to encode RequestPeerTypeClass as nil")
		tl_restriction_reason_gen.go#L143: 		return fmt.Errorf("can't encode restrictionReason#d072acb4 as nil")
		tl_restriction_reason_gen.go#L152: 		return fmt.Errorf("can't encode restrictionReason#d072acb4 as nil")
		tl_restriction_reason_gen.go#L163: 		return fmt.Errorf("can't decode restrictionReason#d072acb4 to nil")
		tl_restriction_reason_gen.go#L166: 		return fmt.Errorf("unable to decode restrictionReason#d072acb4: %w", err)
		tl_restriction_reason_gen.go#L174: 		return fmt.Errorf("can't decode restrictionReason#d072acb4 to nil")
		tl_restriction_reason_gen.go#L179: 			return fmt.Errorf("unable to decode restrictionReason#d072acb4: field platform: %w", err)
		tl_restriction_reason_gen.go#L186: 			return fmt.Errorf("unable to decode restrictionReason#d072acb4: field reason: %w", err)
		tl_restriction_reason_gen.go#L193: 			return fmt.Errorf("unable to decode restrictionReason#d072acb4: field text: %w", err)
		tl_rich_text_gen.go#L103: 		return fmt.Errorf("can't encode textEmpty#dc3d824f as nil")
		tl_rich_text_gen.go#L112: 		return fmt.Errorf("can't encode textEmpty#dc3d824f as nil")
		tl_rich_text_gen.go#L120: 		return fmt.Errorf("can't decode textEmpty#dc3d824f to nil")
		tl_rich_text_gen.go#L123: 		return fmt.Errorf("unable to decode textEmpty#dc3d824f: %w", err)
		tl_rich_text_gen.go#L131: 		return fmt.Errorf("can't decode textEmpty#dc3d824f to nil")
		tl_rich_text_gen.go#L222: 		return fmt.Errorf("can't encode textPlain#744694e0 as nil")
		tl_rich_text_gen.go#L231: 		return fmt.Errorf("can't encode textPlain#744694e0 as nil")
		tl_rich_text_gen.go#L240: 		return fmt.Errorf("can't decode textPlain#744694e0 to nil")
		tl_rich_text_gen.go#L243: 		return fmt.Errorf("unable to decode textPlain#744694e0: %w", err)
		tl_rich_text_gen.go#L251: 		return fmt.Errorf("can't decode textPlain#744694e0 to nil")
		tl_rich_text_gen.go#L256: 			return fmt.Errorf("unable to decode textPlain#744694e0: field text: %w", err)
		tl_rich_text_gen.go#L357: 		return fmt.Errorf("can't encode textBold#6724abc4 as nil")
		tl_rich_text_gen.go#L366: 		return fmt.Errorf("can't encode textBold#6724abc4 as nil")
		tl_rich_text_gen.go#L369: 		return fmt.Errorf("unable to encode textBold#6724abc4: field text is nil")
		tl_rich_text_gen.go#L372: 		return fmt.Errorf("unable to encode textBold#6724abc4: field text: %w", err)
		tl_rich_text_gen.go#L380: 		return fmt.Errorf("can't decode textBold#6724abc4 to nil")
		tl_rich_text_gen.go#L383: 		return fmt.Errorf("unable to decode textBold#6724abc4: %w", err)
		tl_rich_text_gen.go#L391: 		return fmt.Errorf("can't decode textBold#6724abc4 to nil")
		tl_rich_text_gen.go#L396: 			return fmt.Errorf("unable to decode textBold#6724abc4: field text: %w", err)
		tl_rich_text_gen.go#L497: 		return fmt.Errorf("can't encode textItalic#d912a59c as nil")
		tl_rich_text_gen.go#L506: 		return fmt.Errorf("can't encode textItalic#d912a59c as nil")
		tl_rich_text_gen.go#L509: 		return fmt.Errorf("unable to encode textItalic#d912a59c: field text is nil")
		tl_rich_text_gen.go#L512: 		return fmt.Errorf("unable to encode textItalic#d912a59c: field text: %w", err)
		tl_rich_text_gen.go#L520: 		return fmt.Errorf("can't decode textItalic#d912a59c to nil")
		tl_rich_text_gen.go#L523: 		return fmt.Errorf("unable to decode textItalic#d912a59c: %w", err)
		tl_rich_text_gen.go#L531: 		return fmt.Errorf("can't decode textItalic#d912a59c to nil")
		tl_rich_text_gen.go#L536: 			return fmt.Errorf("unable to decode textItalic#d912a59c: field text: %w", err)
		tl_rich_text_gen.go#L637: 		return fmt.Errorf("can't encode textUnderline#c12622c4 as nil")
		tl_rich_text_gen.go#L646: 		return fmt.Errorf("can't encode textUnderline#c12622c4 as nil")
		tl_rich_text_gen.go#L649: 		return fmt.Errorf("unable to encode textUnderline#c12622c4: field text is nil")
		tl_rich_text_gen.go#L652: 		return fmt.Errorf("unable to encode textUnderline#c12622c4: field text: %w", err)
		tl_rich_text_gen.go#L660: 		return fmt.Errorf("can't decode textUnderline#c12622c4 to nil")
		tl_rich_text_gen.go#L663: 		return fmt.Errorf("unable to decode textUnderline#c12622c4: %w", err)
		tl_rich_text_gen.go#L671: 		return fmt.Errorf("can't decode textUnderline#c12622c4 to nil")
		tl_rich_text_gen.go#L676: 			return fmt.Errorf("unable to decode textUnderline#c12622c4: field text: %w", err)
		tl_rich_text_gen.go#L777: 		return fmt.Errorf("can't encode textStrike#9bf8bb95 as nil")
		tl_rich_text_gen.go#L786: 		return fmt.Errorf("can't encode textStrike#9bf8bb95 as nil")
		tl_rich_text_gen.go#L789: 		return fmt.Errorf("unable to encode textStrike#9bf8bb95: field text is nil")
		tl_rich_text_gen.go#L792: 		return fmt.Errorf("unable to encode textStrike#9bf8bb95: field text: %w", err)
		tl_rich_text_gen.go#L800: 		return fmt.Errorf("can't decode textStrike#9bf8bb95 to nil")
		tl_rich_text_gen.go#L803: 		return fmt.Errorf("unable to decode textStrike#9bf8bb95: %w", err)
		tl_rich_text_gen.go#L811: 		return fmt.Errorf("can't decode textStrike#9bf8bb95 to nil")
		tl_rich_text_gen.go#L816: 			return fmt.Errorf("unable to decode textStrike#9bf8bb95: field text: %w", err)
		tl_rich_text_gen.go#L917: 		return fmt.Errorf("can't encode textFixed#6c3f19b9 as nil")
		tl_rich_text_gen.go#L926: 		return fmt.Errorf("can't encode textFixed#6c3f19b9 as nil")
		tl_rich_text_gen.go#L929: 		return fmt.Errorf("unable to encode textFixed#6c3f19b9: field text is nil")
		tl_rich_text_gen.go#L932: 		return fmt.Errorf("unable to encode textFixed#6c3f19b9: field text: %w", err)
		tl_rich_text_gen.go#L940: 		return fmt.Errorf("can't decode textFixed#6c3f19b9 to nil")
		tl_rich_text_gen.go#L943: 		return fmt.Errorf("unable to decode textFixed#6c3f19b9: %w", err)
		tl_rich_text_gen.go#L951: 		return fmt.Errorf("can't decode textFixed#6c3f19b9 to nil")
		tl_rich_text_gen.go#L956: 			return fmt.Errorf("unable to decode textFixed#6c3f19b9: field text: %w", err)
		tl_rich_text_gen.go#L1079: 		return fmt.Errorf("can't encode textUrl#3c2884c1 as nil")
		tl_rich_text_gen.go#L1088: 		return fmt.Errorf("can't encode textUrl#3c2884c1 as nil")
		tl_rich_text_gen.go#L1091: 		return fmt.Errorf("unable to encode textUrl#3c2884c1: field text is nil")
		tl_rich_text_gen.go#L1094: 		return fmt.Errorf("unable to encode textUrl#3c2884c1: field text: %w", err)
		tl_rich_text_gen.go#L1104: 		return fmt.Errorf("can't decode textUrl#3c2884c1 to nil")
		tl_rich_text_gen.go#L1107: 		return fmt.Errorf("unable to decode textUrl#3c2884c1: %w", err)
		tl_rich_text_gen.go#L1115: 		return fmt.Errorf("can't decode textUrl#3c2884c1 to nil")
		tl_rich_text_gen.go#L1120: 			return fmt.Errorf("unable to decode textUrl#3c2884c1: field text: %w", err)
		tl_rich_text_gen.go#L1127: 			return fmt.Errorf("unable to decode textUrl#3c2884c1: field url: %w", err)
		tl_rich_text_gen.go#L1134: 			return fmt.Errorf("unable to decode textUrl#3c2884c1: field webpage_id: %w", err)
		tl_rich_text_gen.go#L1262: 		return fmt.Errorf("can't encode textEmail#de5a0dd6 as nil")
		tl_rich_text_gen.go#L1271: 		return fmt.Errorf("can't encode textEmail#de5a0dd6 as nil")
		tl_rich_text_gen.go#L1274: 		return fmt.Errorf("unable to encode textEmail#de5a0dd6: field text is nil")
		tl_rich_text_gen.go#L1277: 		return fmt.Errorf("unable to encode textEmail#de5a0dd6: field text: %w", err)
		tl_rich_text_gen.go#L1286: 		return fmt.Errorf("can't decode textEmail#de5a0dd6 to nil")
		tl_rich_text_gen.go#L1289: 		return fmt.Errorf("unable to decode textEmail#de5a0dd6: %w", err)
		tl_rich_text_gen.go#L1297: 		return fmt.Errorf("can't decode textEmail#de5a0dd6 to nil")
		tl_rich_text_gen.go#L1302: 			return fmt.Errorf("unable to decode textEmail#de5a0dd6: field text: %w", err)
		tl_rich_text_gen.go#L1309: 			return fmt.Errorf("unable to decode textEmail#de5a0dd6: field email: %w", err)
		tl_rich_text_gen.go#L1418: 		return fmt.Errorf("can't encode textConcat#7e6260d7 as nil")
		tl_rich_text_gen.go#L1427: 		return fmt.Errorf("can't encode textConcat#7e6260d7 as nil")
		tl_rich_text_gen.go#L1432: 			return fmt.Errorf("unable to encode textConcat#7e6260d7: field texts element with index %d is nil", idx)
		tl_rich_text_gen.go#L1435: 			return fmt.Errorf("unable to encode textConcat#7e6260d7: field texts element with index %d: %w", idx, err)
		tl_rich_text_gen.go#L1444: 		return fmt.Errorf("can't decode textConcat#7e6260d7 to nil")
		tl_rich_text_gen.go#L1447: 		return fmt.Errorf("unable to decode textConcat#7e6260d7: %w", err)
		tl_rich_text_gen.go#L1455: 		return fmt.Errorf("can't decode textConcat#7e6260d7 to nil")
		tl_rich_text_gen.go#L1460: 			return fmt.Errorf("unable to decode textConcat#7e6260d7: field texts: %w", err)
		tl_rich_text_gen.go#L1469: 				return fmt.Errorf("unable to decode textConcat#7e6260d7: field texts: %w", err)
		tl_rich_text_gen.go#L1576: 		return fmt.Errorf("can't encode textSubscript#ed6a8504 as nil")
		tl_rich_text_gen.go#L1585: 		return fmt.Errorf("can't encode textSubscript#ed6a8504 as nil")
		tl_rich_text_gen.go#L1588: 		return fmt.Errorf("unable to encode textSubscript#ed6a8504: field text is nil")
		tl_rich_text_gen.go#L1591: 		return fmt.Errorf("unable to encode textSubscript#ed6a8504: field text: %w", err)
		tl_rich_text_gen.go#L1599: 		return fmt.Errorf("can't decode textSubscript#ed6a8504 to nil")
		tl_rich_text_gen.go#L1602: 		return fmt.Errorf("unable to decode textSubscript#ed6a8504: %w", err)
		tl_rich_text_gen.go#L1610: 		return fmt.Errorf("can't decode textSubscript#ed6a8504 to nil")
		tl_rich_text_gen.go#L1615: 			return fmt.Errorf("unable to decode textSubscript#ed6a8504: field text: %w", err)
		tl_rich_text_gen.go#L1716: 		return fmt.Errorf("can't encode textSuperscript#c7fb5e01 as nil")
		tl_rich_text_gen.go#L1725: 		return fmt.Errorf("can't encode textSuperscript#c7fb5e01 as nil")
		tl_rich_text_gen.go#L1728: 		return fmt.Errorf("unable to encode textSuperscript#c7fb5e01: field text is nil")
		tl_rich_text_gen.go#L1731: 		return fmt.Errorf("unable to encode textSuperscript#c7fb5e01: field text: %w", err)
		tl_rich_text_gen.go#L1739: 		return fmt.Errorf("can't decode textSuperscript#c7fb5e01 to nil")
		tl_rich_text_gen.go#L1742: 		return fmt.Errorf("unable to decode textSuperscript#c7fb5e01: %w", err)
		tl_rich_text_gen.go#L1750: 		return fmt.Errorf("can't decode textSuperscript#c7fb5e01 to nil")
		tl_rich_text_gen.go#L1755: 			return fmt.Errorf("unable to decode textSuperscript#c7fb5e01: field text: %w", err)
		tl_rich_text_gen.go#L1856: 		return fmt.Errorf("can't encode textMarked#34b8621 as nil")
		tl_rich_text_gen.go#L1865: 		return fmt.Errorf("can't encode textMarked#34b8621 as nil")
		tl_rich_text_gen.go#L1868: 		return fmt.Errorf("unable to encode textMarked#34b8621: field text is nil")
		tl_rich_text_gen.go#L1871: 		return fmt.Errorf("unable to encode textMarked#34b8621: field text: %w", err)
		tl_rich_text_gen.go#L1879: 		return fmt.Errorf("can't decode textMarked#34b8621 to nil")
		tl_rich_text_gen.go#L1882: 		return fmt.Errorf("unable to decode textMarked#34b8621: %w", err)
		tl_rich_text_gen.go#L1890: 		return fmt.Errorf("can't decode textMarked#34b8621 to nil")
		tl_rich_text_gen.go#L1895: 			return fmt.Errorf("unable to decode textMarked#34b8621: field text: %w", err)
		tl_rich_text_gen.go#L2007: 		return fmt.Errorf("can't encode textPhone#1ccb966a as nil")
		tl_rich_text_gen.go#L2016: 		return fmt.Errorf("can't encode textPhone#1ccb966a as nil")
		tl_rich_text_gen.go#L2019: 		return fmt.Errorf("unable to encode textPhone#1ccb966a: field text is nil")
		tl_rich_text_gen.go#L2022: 		return fmt.Errorf("unable to encode textPhone#1ccb966a: field text: %w", err)
		tl_rich_text_gen.go#L2031: 		return fmt.Errorf("can't decode textPhone#1ccb966a to nil")
		tl_rich_text_gen.go#L2034: 		return fmt.Errorf("unable to decode textPhone#1ccb966a: %w", err)
		tl_rich_text_gen.go#L2042: 		return fmt.Errorf("can't decode textPhone#1ccb966a to nil")
		tl_rich_text_gen.go#L2047: 			return fmt.Errorf("unable to decode textPhone#1ccb966a: field text: %w", err)
		tl_rich_text_gen.go#L2054: 			return fmt.Errorf("unable to decode textPhone#1ccb966a: field phone: %w", err)
		tl_rich_text_gen.go#L2185: 		return fmt.Errorf("can't encode textImage#81ccf4f as nil")
		tl_rich_text_gen.go#L2194: 		return fmt.Errorf("can't encode textImage#81ccf4f as nil")
		tl_rich_text_gen.go#L2205: 		return fmt.Errorf("can't decode textImage#81ccf4f to nil")
		tl_rich_text_gen.go#L2208: 		return fmt.Errorf("unable to decode textImage#81ccf4f: %w", err)
		tl_rich_text_gen.go#L2216: 		return fmt.Errorf("can't decode textImage#81ccf4f to nil")
		tl_rich_text_gen.go#L2221: 			return fmt.Errorf("unable to decode textImage#81ccf4f: field document_id: %w", err)
		tl_rich_text_gen.go#L2228: 			return fmt.Errorf("unable to decode textImage#81ccf4f: field w: %w", err)
		tl_rich_text_gen.go#L2235: 			return fmt.Errorf("unable to decode textImage#81ccf4f: field h: %w", err)
		tl_rich_text_gen.go#L2363: 		return fmt.Errorf("can't encode textAnchor#35553762 as nil")
		tl_rich_text_gen.go#L2372: 		return fmt.Errorf("can't encode textAnchor#35553762 as nil")
		tl_rich_text_gen.go#L2375: 		return fmt.Errorf("unable to encode textAnchor#35553762: field text is nil")
		tl_rich_text_gen.go#L2378: 		return fmt.Errorf("unable to encode textAnchor#35553762: field text: %w", err)
		tl_rich_text_gen.go#L2387: 		return fmt.Errorf("can't decode textAnchor#35553762 to nil")
		tl_rich_text_gen.go#L2390: 		return fmt.Errorf("unable to decode textAnchor#35553762: %w", err)
		tl_rich_text_gen.go#L2398: 		return fmt.Errorf("can't decode textAnchor#35553762 to nil")
		tl_rich_text_gen.go#L2403: 			return fmt.Errorf("unable to decode textAnchor#35553762: field text: %w", err)
		tl_rich_text_gen.go#L2410: 			return fmt.Errorf("unable to decode textAnchor#35553762: field name: %w", err)
		tl_rich_text_gen.go#L2495: 			return nil, fmt.Errorf("unable to decode RichTextClass: %w", err)
		tl_rich_text_gen.go#L2502: 			return nil, fmt.Errorf("unable to decode RichTextClass: %w", err)
		tl_rich_text_gen.go#L2509: 			return nil, fmt.Errorf("unable to decode RichTextClass: %w", err)
		tl_rich_text_gen.go#L2516: 			return nil, fmt.Errorf("unable to decode RichTextClass: %w", err)
		tl_rich_text_gen.go#L2523: 			return nil, fmt.Errorf("unable to decode RichTextClass: %w", err)
		tl_rich_text_gen.go#L2530: 			return nil, fmt.Errorf("unable to decode RichTextClass: %w", err)
		tl_rich_text_gen.go#L2537: 			return nil, fmt.Errorf("unable to decode RichTextClass: %w", err)
		tl_rich_text_gen.go#L2544: 			return nil, fmt.Errorf("unable to decode RichTextClass: %w", err)
		tl_rich_text_gen.go#L2551: 			return nil, fmt.Errorf("unable to decode RichTextClass: %w", err)
		tl_rich_text_gen.go#L2558: 			return nil, fmt.Errorf("unable to decode RichTextClass: %w", err)
		tl_rich_text_gen.go#L2565: 			return nil, fmt.Errorf("unable to decode RichTextClass: %w", err)
		tl_rich_text_gen.go#L2572: 			return nil, fmt.Errorf("unable to decode RichTextClass: %w", err)
		tl_rich_text_gen.go#L2579: 			return nil, fmt.Errorf("unable to decode RichTextClass: %w", err)
		tl_rich_text_gen.go#L2586: 			return nil, fmt.Errorf("unable to decode RichTextClass: %w", err)
		tl_rich_text_gen.go#L2593: 			return nil, fmt.Errorf("unable to decode RichTextClass: %w", err)
		tl_rich_text_gen.go#L2600: 			return nil, fmt.Errorf("unable to decode RichTextClass: %w", err)
		tl_rich_text_gen.go#L2604: 		return nil, fmt.Errorf("unable to decode RichTextClass: %w", bin.NewUnexpectedID(id))
		tl_rich_text_gen.go#L2616: 		return fmt.Errorf("unable to decode RichTextBox to nil")
		tl_rich_text_gen.go#L2620: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_rich_text_gen.go#L2629: 		return fmt.Errorf("unable to encode RichTextClass as nil")
		tl_saved_phone_contact_gen.go#L148: 		return fmt.Errorf("can't encode savedPhoneContact#1142bd56 as nil")
		tl_saved_phone_contact_gen.go#L157: 		return fmt.Errorf("can't encode savedPhoneContact#1142bd56 as nil")
		tl_saved_phone_contact_gen.go#L169: 		return fmt.Errorf("can't decode savedPhoneContact#1142bd56 to nil")
		tl_saved_phone_contact_gen.go#L172: 		return fmt.Errorf("unable to decode savedPhoneContact#1142bd56: %w", err)
		tl_saved_phone_contact_gen.go#L180: 		return fmt.Errorf("can't decode savedPhoneContact#1142bd56 to nil")
		tl_saved_phone_contact_gen.go#L185: 			return fmt.Errorf("unable to decode savedPhoneContact#1142bd56: field phone: %w", err)
		tl_saved_phone_contact_gen.go#L192: 			return fmt.Errorf("unable to decode savedPhoneContact#1142bd56: field first_name: %w", err)
		tl_saved_phone_contact_gen.go#L199: 			return fmt.Errorf("unable to decode savedPhoneContact#1142bd56: field last_name: %w", err)
		tl_saved_phone_contact_gen.go#L206: 			return fmt.Errorf("unable to decode savedPhoneContact#1142bd56: field date: %w", err)
		tl_saved_phone_contact_vector_gen.go#L112: 		return fmt.Errorf("can't encode Vector<SavedContact> as nil")
		tl_saved_phone_contact_vector_gen.go#L121: 		return fmt.Errorf("can't encode Vector<SavedContact> as nil")
		tl_saved_phone_contact_vector_gen.go#L126: 			return fmt.Errorf("unable to encode Vector<SavedContact>: field Elems element with index %d: %w", idx, err)
		tl_saved_phone_contact_vector_gen.go#L135: 		return fmt.Errorf("can't decode Vector<SavedContact> to nil")
		tl_saved_phone_contact_vector_gen.go#L144: 		return fmt.Errorf("can't decode Vector<SavedContact> to nil")
		tl_saved_phone_contact_vector_gen.go#L149: 			return fmt.Errorf("unable to decode Vector<SavedContact>: field Elems: %w", err)
		tl_saved_phone_contact_vector_gen.go#L158: 				return fmt.Errorf("unable to decode Vector<SavedContact>: field Elems: %w", err)
		tl_search_result_position_gen.go#L137: 		return fmt.Errorf("can't encode searchResultPosition#7f648b67 as nil")
		tl_search_result_position_gen.go#L146: 		return fmt.Errorf("can't encode searchResultPosition#7f648b67 as nil")
		tl_search_result_position_gen.go#L157: 		return fmt.Errorf("can't decode searchResultPosition#7f648b67 to nil")
		tl_search_result_position_gen.go#L160: 		return fmt.Errorf("unable to decode searchResultPosition#7f648b67: %w", err)
		tl_search_result_position_gen.go#L168: 		return fmt.Errorf("can't decode searchResultPosition#7f648b67 to nil")
		tl_search_result_position_gen.go#L173: 			return fmt.Errorf("unable to decode searchResultPosition#7f648b67: field msg_id: %w", err)
		tl_search_result_position_gen.go#L180: 			return fmt.Errorf("unable to decode searchResultPosition#7f648b67: field date: %w", err)
		tl_search_result_position_gen.go#L187: 			return fmt.Errorf("unable to decode searchResultPosition#7f648b67: field offset: %w", err)
		tl_search_results_calendar_period_gen.go#L156: 		return fmt.Errorf("can't encode searchResultsCalendarPeriod#c9b0539f as nil")
		tl_search_results_calendar_period_gen.go#L165: 		return fmt.Errorf("can't encode searchResultsCalendarPeriod#c9b0539f as nil")
		tl_search_results_calendar_period_gen.go#L177: 		return fmt.Errorf("can't decode searchResultsCalendarPeriod#c9b0539f to nil")
		tl_search_results_calendar_period_gen.go#L180: 		return fmt.Errorf("unable to decode searchResultsCalendarPeriod#c9b0539f: %w", err)
		tl_search_results_calendar_period_gen.go#L188: 		return fmt.Errorf("can't decode searchResultsCalendarPeriod#c9b0539f to nil")
		tl_search_results_calendar_period_gen.go#L193: 			return fmt.Errorf("unable to decode searchResultsCalendarPeriod#c9b0539f: field date: %w", err)
		tl_search_results_calendar_period_gen.go#L200: 			return fmt.Errorf("unable to decode searchResultsCalendarPeriod#c9b0539f: field min_msg_id: %w", err)
		tl_search_results_calendar_period_gen.go#L207: 			return fmt.Errorf("unable to decode searchResultsCalendarPeriod#c9b0539f: field max_msg_id: %w", err)
		tl_search_results_calendar_period_gen.go#L214: 			return fmt.Errorf("unable to decode searchResultsCalendarPeriod#c9b0539f: field count: %w", err)
		tl_secure_credentials_encrypted_gen.go#L152: 		return fmt.Errorf("can't encode secureCredentialsEncrypted#33f0ea47 as nil")
		tl_secure_credentials_encrypted_gen.go#L161: 		return fmt.Errorf("can't encode secureCredentialsEncrypted#33f0ea47 as nil")
		tl_secure_credentials_encrypted_gen.go#L172: 		return fmt.Errorf("can't decode secureCredentialsEncrypted#33f0ea47 to nil")
		tl_secure_credentials_encrypted_gen.go#L175: 		return fmt.Errorf("unable to decode secureCredentialsEncrypted#33f0ea47: %w", err)
		tl_secure_credentials_encrypted_gen.go#L183: 		return fmt.Errorf("can't decode secureCredentialsEncrypted#33f0ea47 to nil")
		tl_secure_credentials_encrypted_gen.go#L188: 			return fmt.Errorf("unable to decode secureCredentialsEncrypted#33f0ea47: field data: %w", err)
		tl_secure_credentials_encrypted_gen.go#L195: 			return fmt.Errorf("unable to decode secureCredentialsEncrypted#33f0ea47: field hash: %w", err)
		tl_secure_credentials_encrypted_gen.go#L202: 			return fmt.Errorf("unable to decode secureCredentialsEncrypted#33f0ea47: field secret: %w", err)
		tl_secure_data_gen.go#L141: 		return fmt.Errorf("can't encode secureData#8aeabec3 as nil")
		tl_secure_data_gen.go#L150: 		return fmt.Errorf("can't encode secureData#8aeabec3 as nil")
		tl_secure_data_gen.go#L161: 		return fmt.Errorf("can't decode secureData#8aeabec3 to nil")
		tl_secure_data_gen.go#L164: 		return fmt.Errorf("unable to decode secureData#8aeabec3: %w", err)
		tl_secure_data_gen.go#L172: 		return fmt.Errorf("can't decode secureData#8aeabec3 to nil")
		tl_secure_data_gen.go#L177: 			return fmt.Errorf("unable to decode secureData#8aeabec3: field data: %w", err)
		tl_secure_data_gen.go#L184: 			return fmt.Errorf("unable to decode secureData#8aeabec3: field data_hash: %w", err)
		tl_secure_data_gen.go#L191: 			return fmt.Errorf("unable to decode secureData#8aeabec3: field secret: %w", err)
		tl_secure_file_gen.go#L103: 		return fmt.Errorf("can't encode secureFileEmpty#64199744 as nil")
		tl_secure_file_gen.go#L112: 		return fmt.Errorf("can't encode secureFileEmpty#64199744 as nil")
		tl_secure_file_gen.go#L120: 		return fmt.Errorf("can't decode secureFileEmpty#64199744 to nil")
		tl_secure_file_gen.go#L123: 		return fmt.Errorf("unable to decode secureFileEmpty#64199744: %w", err)
		tl_secure_file_gen.go#L131: 		return fmt.Errorf("can't decode secureFileEmpty#64199744 to nil")
		tl_secure_file_gen.go#L292: 		return fmt.Errorf("can't encode secureFile#7d09c27e as nil")
		tl_secure_file_gen.go#L301: 		return fmt.Errorf("can't encode secureFile#7d09c27e as nil")
		tl_secure_file_gen.go#L316: 		return fmt.Errorf("can't decode secureFile#7d09c27e to nil")
		tl_secure_file_gen.go#L319: 		return fmt.Errorf("unable to decode secureFile#7d09c27e: %w", err)
		tl_secure_file_gen.go#L327: 		return fmt.Errorf("can't decode secureFile#7d09c27e to nil")
		tl_secure_file_gen.go#L332: 			return fmt.Errorf("unable to decode secureFile#7d09c27e: field id: %w", err)
		tl_secure_file_gen.go#L339: 			return fmt.Errorf("unable to decode secureFile#7d09c27e: field access_hash: %w", err)
		tl_secure_file_gen.go#L346: 			return fmt.Errorf("unable to decode secureFile#7d09c27e: field size: %w", err)
		tl_secure_file_gen.go#L353: 			return fmt.Errorf("unable to decode secureFile#7d09c27e: field dc_id: %w", err)
		tl_secure_file_gen.go#L360: 			return fmt.Errorf("unable to decode secureFile#7d09c27e: field date: %w", err)
		tl_secure_file_gen.go#L367: 			return fmt.Errorf("unable to decode secureFile#7d09c27e: field file_hash: %w", err)
		tl_secure_file_gen.go#L374: 			return fmt.Errorf("unable to decode secureFile#7d09c27e: field secret: %w", err)
		tl_secure_file_gen.go#L516: 			return nil, fmt.Errorf("unable to decode SecureFileClass: %w", err)
		tl_secure_file_gen.go#L523: 			return nil, fmt.Errorf("unable to decode SecureFileClass: %w", err)
		tl_secure_file_gen.go#L527: 		return nil, fmt.Errorf("unable to decode SecureFileClass: %w", bin.NewUnexpectedID(id))
		tl_secure_file_gen.go#L539: 		return fmt.Errorf("unable to decode SecureFileBox to nil")
		tl_secure_file_gen.go#L543: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_secure_file_gen.go#L552: 		return fmt.Errorf("unable to encode SecureFileClass as nil")
		tl_secure_password_kdf_algo_gen.go#L103: 		return fmt.Errorf("can't encode securePasswordKdfAlgoUnknown#4a8537 as nil")
		tl_secure_password_kdf_algo_gen.go#L112: 		return fmt.Errorf("can't encode securePasswordKdfAlgoUnknown#4a8537 as nil")
		tl_secure_password_kdf_algo_gen.go#L120: 		return fmt.Errorf("can't decode securePasswordKdfAlgoUnknown#4a8537 to nil")
		tl_secure_password_kdf_algo_gen.go#L123: 		return fmt.Errorf("unable to decode securePasswordKdfAlgoUnknown#4a8537: %w", err)
		tl_secure_password_kdf_algo_gen.go#L131: 		return fmt.Errorf("can't decode securePasswordKdfAlgoUnknown#4a8537 to nil")
		tl_secure_password_kdf_algo_gen.go#L224: 		return fmt.Errorf("can't encode securePasswordKdfAlgoPBKDF2HMACSHA512iter100000#bbf2dda0 as nil")
		tl_secure_password_kdf_algo_gen.go#L233: 		return fmt.Errorf("can't encode securePasswordKdfAlgoPBKDF2HMACSHA512iter100000#bbf2dda0 as nil")
		tl_secure_password_kdf_algo_gen.go#L242: 		return fmt.Errorf("can't decode securePasswordKdfAlgoPBKDF2HMACSHA512iter100000#bbf2dda0 to nil")
		tl_secure_password_kdf_algo_gen.go#L245: 		return fmt.Errorf("unable to decode securePasswordKdfAlgoPBKDF2HMACSHA512iter100000#bbf2dda0: %w", err)
		tl_secure_password_kdf_algo_gen.go#L253: 		return fmt.Errorf("can't decode securePasswordKdfAlgoPBKDF2HMACSHA512iter100000#bbf2dda0 to nil")
		tl_secure_password_kdf_algo_gen.go#L258: 			return fmt.Errorf("unable to decode securePasswordKdfAlgoPBKDF2HMACSHA512iter100000#bbf2dda0: field salt: %w", err)
		tl_secure_password_kdf_algo_gen.go#L359: 		return fmt.Errorf("can't encode securePasswordKdfAlgoSHA512#86471d92 as nil")
		tl_secure_password_kdf_algo_gen.go#L368: 		return fmt.Errorf("can't encode securePasswordKdfAlgoSHA512#86471d92 as nil")
		tl_secure_password_kdf_algo_gen.go#L377: 		return fmt.Errorf("can't decode securePasswordKdfAlgoSHA512#86471d92 to nil")
		tl_secure_password_kdf_algo_gen.go#L380: 		return fmt.Errorf("unable to decode securePasswordKdfAlgoSHA512#86471d92: %w", err)
		tl_secure_password_kdf_algo_gen.go#L388: 		return fmt.Errorf("can't decode securePasswordKdfAlgoSHA512#86471d92 to nil")
		tl_secure_password_kdf_algo_gen.go#L393: 			return fmt.Errorf("unable to decode securePasswordKdfAlgoSHA512#86471d92: field salt: %w", err)
		tl_secure_password_kdf_algo_gen.go#L457: 			return nil, fmt.Errorf("unable to decode SecurePasswordKdfAlgoClass: %w", err)
		tl_secure_password_kdf_algo_gen.go#L464: 			return nil, fmt.Errorf("unable to decode SecurePasswordKdfAlgoClass: %w", err)
		tl_secure_password_kdf_algo_gen.go#L471: 			return nil, fmt.Errorf("unable to decode SecurePasswordKdfAlgoClass: %w", err)
		tl_secure_password_kdf_algo_gen.go#L475: 		return nil, fmt.Errorf("unable to decode SecurePasswordKdfAlgoClass: %w", bin.NewUnexpectedID(id))
		tl_secure_password_kdf_algo_gen.go#L487: 		return fmt.Errorf("unable to decode SecurePasswordKdfAlgoBox to nil")
		tl_secure_password_kdf_algo_gen.go#L491: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_secure_password_kdf_algo_gen.go#L500: 		return fmt.Errorf("unable to encode SecurePasswordKdfAlgoClass as nil")
		tl_secure_plain_data_gen.go#L124: 		return fmt.Errorf("can't encode securePlainPhone#7d6099dd as nil")
		tl_secure_plain_data_gen.go#L133: 		return fmt.Errorf("can't encode securePlainPhone#7d6099dd as nil")
		tl_secure_plain_data_gen.go#L142: 		return fmt.Errorf("can't decode securePlainPhone#7d6099dd to nil")
		tl_secure_plain_data_gen.go#L145: 		return fmt.Errorf("unable to decode securePlainPhone#7d6099dd: %w", err)
		tl_secure_plain_data_gen.go#L153: 		return fmt.Errorf("can't decode securePlainPhone#7d6099dd to nil")
		tl_secure_plain_data_gen.go#L158: 			return fmt.Errorf("unable to decode securePlainPhone#7d6099dd: field phone: %w", err)
		tl_secure_plain_data_gen.go#L263: 		return fmt.Errorf("can't encode securePlainEmail#21ec5a5f as nil")
		tl_secure_plain_data_gen.go#L272: 		return fmt.Errorf("can't encode securePlainEmail#21ec5a5f as nil")
		tl_secure_plain_data_gen.go#L281: 		return fmt.Errorf("can't decode securePlainEmail#21ec5a5f to nil")
		tl_secure_plain_data_gen.go#L284: 		return fmt.Errorf("unable to decode securePlainEmail#21ec5a5f: %w", err)
		tl_secure_plain_data_gen.go#L292: 		return fmt.Errorf("can't decode securePlainEmail#21ec5a5f to nil")
		tl_secure_plain_data_gen.go#L297: 			return fmt.Errorf("unable to decode securePlainEmail#21ec5a5f: field email: %w", err)
		tl_secure_plain_data_gen.go#L360: 			return nil, fmt.Errorf("unable to decode SecurePlainDataClass: %w", err)
		tl_secure_plain_data_gen.go#L367: 			return nil, fmt.Errorf("unable to decode SecurePlainDataClass: %w", err)
		tl_secure_plain_data_gen.go#L371: 		return nil, fmt.Errorf("unable to decode SecurePlainDataClass: %w", bin.NewUnexpectedID(id))
		tl_secure_plain_data_gen.go#L383: 		return fmt.Errorf("unable to decode SecurePlainDataBox to nil")
		tl_secure_plain_data_gen.go#L387: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_secure_plain_data_gen.go#L396: 		return fmt.Errorf("unable to encode SecurePlainDataClass as nil")
		tl_secure_required_type_gen.go#L177: 		return fmt.Errorf("can't encode secureRequiredType#829d99da as nil")
		tl_secure_required_type_gen.go#L186: 		return fmt.Errorf("can't encode secureRequiredType#829d99da as nil")
		tl_secure_required_type_gen.go#L190: 		return fmt.Errorf("unable to encode secureRequiredType#829d99da: field flags: %w", err)
		tl_secure_required_type_gen.go#L193: 		return fmt.Errorf("unable to encode secureRequiredType#829d99da: field type is nil")
		tl_secure_required_type_gen.go#L196: 		return fmt.Errorf("unable to encode secureRequiredType#829d99da: field type: %w", err)
		tl_secure_required_type_gen.go#L204: 		return fmt.Errorf("can't decode secureRequiredType#829d99da to nil")
		tl_secure_required_type_gen.go#L207: 		return fmt.Errorf("unable to decode secureRequiredType#829d99da: %w", err)
		tl_secure_required_type_gen.go#L215: 		return fmt.Errorf("can't decode secureRequiredType#829d99da to nil")
		tl_secure_required_type_gen.go#L219: 			return fmt.Errorf("unable to decode secureRequiredType#829d99da: field flags: %w", err)
		tl_secure_required_type_gen.go#L228: 			return fmt.Errorf("unable to decode secureRequiredType#829d99da: field type: %w", err)
		tl_secure_required_type_gen.go#L386: 		return fmt.Errorf("can't encode secureRequiredTypeOneOf#27477b4 as nil")
		tl_secure_required_type_gen.go#L395: 		return fmt.Errorf("can't encode secureRequiredTypeOneOf#27477b4 as nil")
		tl_secure_required_type_gen.go#L400: 			return fmt.Errorf("unable to encode secureRequiredTypeOneOf#27477b4: field types element with index %d is nil", idx)
		tl_secure_required_type_gen.go#L403: 			return fmt.Errorf("unable to encode secureRequiredTypeOneOf#27477b4: field types element with index %d: %w", idx, err)
		tl_secure_required_type_gen.go#L412: 		return fmt.Errorf("can't decode secureRequiredTypeOneOf#27477b4 to nil")
		tl_secure_required_type_gen.go#L415: 		return fmt.Errorf("unable to decode secureRequiredTypeOneOf#27477b4: %w", err)
		tl_secure_required_type_gen.go#L423: 		return fmt.Errorf("can't decode secureRequiredTypeOneOf#27477b4 to nil")
		tl_secure_required_type_gen.go#L428: 			return fmt.Errorf("unable to decode secureRequiredTypeOneOf#27477b4: field types: %w", err)
		tl_secure_required_type_gen.go#L437: 				return fmt.Errorf("unable to decode secureRequiredTypeOneOf#27477b4: field types: %w", err)
		tl_secure_required_type_gen.go#L506: 			return nil, fmt.Errorf("unable to decode SecureRequiredTypeClass: %w", err)
		tl_secure_required_type_gen.go#L513: 			return nil, fmt.Errorf("unable to decode SecureRequiredTypeClass: %w", err)
		tl_secure_required_type_gen.go#L517: 		return nil, fmt.Errorf("unable to decode SecureRequiredTypeClass: %w", bin.NewUnexpectedID(id))
		tl_secure_required_type_gen.go#L529: 		return fmt.Errorf("unable to decode SecureRequiredTypeBox to nil")
		tl_secure_required_type_gen.go#L533: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_secure_required_type_gen.go#L542: 		return fmt.Errorf("unable to encode SecureRequiredTypeClass as nil")
		tl_secure_secret_settings_gen.go#L137: 		return fmt.Errorf("can't encode secureSecretSettings#1527bcac as nil")
		tl_secure_secret_settings_gen.go#L146: 		return fmt.Errorf("can't encode secureSecretSettings#1527bcac as nil")
		tl_secure_secret_settings_gen.go#L149: 		return fmt.Errorf("unable to encode secureSecretSettings#1527bcac: field secure_algo is nil")
		tl_secure_secret_settings_gen.go#L152: 		return fmt.Errorf("unable to encode secureSecretSettings#1527bcac: field secure_algo: %w", err)
		tl_secure_secret_settings_gen.go#L162: 		return fmt.Errorf("can't decode secureSecretSettings#1527bcac to nil")
		tl_secure_secret_settings_gen.go#L165: 		return fmt.Errorf("unable to decode secureSecretSettings#1527bcac: %w", err)
		tl_secure_secret_settings_gen.go#L173: 		return fmt.Errorf("can't decode secureSecretSettings#1527bcac to nil")
		tl_secure_secret_settings_gen.go#L178: 			return fmt.Errorf("unable to decode secureSecretSettings#1527bcac: field secure_algo: %w", err)
		tl_secure_secret_settings_gen.go#L185: 			return fmt.Errorf("unable to decode secureSecretSettings#1527bcac: field secure_secret: %w", err)
		tl_secure_secret_settings_gen.go#L192: 			return fmt.Errorf("unable to decode secureSecretSettings#1527bcac: field secure_secret_id: %w", err)
		tl_secure_value_error_gen.go#L165: 		return fmt.Errorf("can't encode secureValueErrorData#e8a40bd9 as nil")
		tl_secure_value_error_gen.go#L174: 		return fmt.Errorf("can't encode secureValueErrorData#e8a40bd9 as nil")
		tl_secure_value_error_gen.go#L177: 		return fmt.Errorf("unable to encode secureValueErrorData#e8a40bd9: field type is nil")
		tl_secure_value_error_gen.go#L180: 		return fmt.Errorf("unable to encode secureValueErrorData#e8a40bd9: field type: %w", err)
		tl_secure_value_error_gen.go#L191: 		return fmt.Errorf("can't decode secureValueErrorData#e8a40bd9 to nil")
		tl_secure_value_error_gen.go#L194: 		return fmt.Errorf("unable to decode secureValueErrorData#e8a40bd9: %w", err)
		tl_secure_value_error_gen.go#L202: 		return fmt.Errorf("can't decode secureValueErrorData#e8a40bd9 to nil")
		tl_secure_value_error_gen.go#L207: 			return fmt.Errorf("unable to decode secureValueErrorData#e8a40bd9: field type: %w", err)
		tl_secure_value_error_gen.go#L214: 			return fmt.Errorf("unable to decode secureValueErrorData#e8a40bd9: field data_hash: %w", err)
		tl_secure_value_error_gen.go#L221: 			return fmt.Errorf("unable to decode secureValueErrorData#e8a40bd9: field field: %w", err)
		tl_secure_value_error_gen.go#L228: 			return fmt.Errorf("unable to decode secureValueErrorData#e8a40bd9: field text: %w", err)
		tl_secure_value_error_gen.go#L383: 		return fmt.Errorf("can't encode secureValueErrorFrontSide#be3dfa as nil")
		tl_secure_value_error_gen.go#L392: 		return fmt.Errorf("can't encode secureValueErrorFrontSide#be3dfa as nil")
		tl_secure_value_error_gen.go#L395: 		return fmt.Errorf("unable to encode secureValueErrorFrontSide#be3dfa: field type is nil")
		tl_secure_value_error_gen.go#L398: 		return fmt.Errorf("unable to encode secureValueErrorFrontSide#be3dfa: field type: %w", err)
		tl_secure_value_error_gen.go#L408: 		return fmt.Errorf("can't decode secureValueErrorFrontSide#be3dfa to nil")
		tl_secure_value_error_gen.go#L411: 		return fmt.Errorf("unable to decode secureValueErrorFrontSide#be3dfa: %w", err)
		tl_secure_value_error_gen.go#L419: 		return fmt.Errorf("can't decode secureValueErrorFrontSide#be3dfa to nil")
		tl_secure_value_error_gen.go#L424: 			return fmt.Errorf("unable to decode secureValueErrorFrontSide#be3dfa: field type: %w", err)
		tl_secure_value_error_gen.go#L431: 			return fmt.Errorf("unable to decode secureValueErrorFrontSide#be3dfa: field file_hash: %w", err)
		tl_secure_value_error_gen.go#L438: 			return fmt.Errorf("unable to decode secureValueErrorFrontSide#be3dfa: field text: %w", err)
		tl_secure_value_error_gen.go#L582: 		return fmt.Errorf("can't encode secureValueErrorReverseSide#868a2aa5 as nil")
		tl_secure_value_error_gen.go#L591: 		return fmt.Errorf("can't encode secureValueErrorReverseSide#868a2aa5 as nil")
		tl_secure_value_error_gen.go#L594: 		return fmt.Errorf("unable to encode secureValueErrorReverseSide#868a2aa5: field type is nil")
		tl_secure_value_error_gen.go#L597: 		return fmt.Errorf("unable to encode secureValueErrorReverseSide#868a2aa5: field type: %w", err)
		tl_secure_value_error_gen.go#L607: 		return fmt.Errorf("can't decode secureValueErrorReverseSide#868a2aa5 to nil")
		tl_secure_value_error_gen.go#L610: 		return fmt.Errorf("unable to decode secureValueErrorReverseSide#868a2aa5: %w", err)
		tl_secure_value_error_gen.go#L618: 		return fmt.Errorf("can't decode secureValueErrorReverseSide#868a2aa5 to nil")
		tl_secure_value_error_gen.go#L623: 			return fmt.Errorf("unable to decode secureValueErrorReverseSide#868a2aa5: field type: %w", err)
		tl_secure_value_error_gen.go#L630: 			return fmt.Errorf("unable to decode secureValueErrorReverseSide#868a2aa5: field file_hash: %w", err)
		tl_secure_value_error_gen.go#L637: 			return fmt.Errorf("unable to decode secureValueErrorReverseSide#868a2aa5: field text: %w", err)
		tl_secure_value_error_gen.go#L784: 		return fmt.Errorf("can't encode secureValueErrorSelfie#e537ced6 as nil")
		tl_secure_value_error_gen.go#L793: 		return fmt.Errorf("can't encode secureValueErrorSelfie#e537ced6 as nil")
		tl_secure_value_error_gen.go#L796: 		return fmt.Errorf("unable to encode secureValueErrorSelfie#e537ced6: field type is nil")
		tl_secure_value_error_gen.go#L799: 		return fmt.Errorf("unable to encode secureValueErrorSelfie#e537ced6: field type: %w", err)
		tl_secure_value_error_gen.go#L809: 		return fmt.Errorf("can't decode secureValueErrorSelfie#e537ced6 to nil")
		tl_secure_value_error_gen.go#L812: 		return fmt.Errorf("unable to decode secureValueErrorSelfie#e537ced6: %w", err)
		tl_secure_value_error_gen.go#L820: 		return fmt.Errorf("can't decode secureValueErrorSelfie#e537ced6 to nil")
		tl_secure_value_error_gen.go#L825: 			return fmt.Errorf("unable to decode secureValueErrorSelfie#e537ced6: field type: %w", err)
		tl_secure_value_error_gen.go#L832: 			return fmt.Errorf("unable to decode secureValueErrorSelfie#e537ced6: field file_hash: %w", err)
		tl_secure_value_error_gen.go#L839: 			return fmt.Errorf("unable to decode secureValueErrorSelfie#e537ced6: field text: %w", err)
		tl_secure_value_error_gen.go#L988: 		return fmt.Errorf("can't encode secureValueErrorFile#7a700873 as nil")
		tl_secure_value_error_gen.go#L997: 		return fmt.Errorf("can't encode secureValueErrorFile#7a700873 as nil")
		tl_secure_value_error_gen.go#L1000: 		return fmt.Errorf("unable to encode secureValueErrorFile#7a700873: field type is nil")
		tl_secure_value_error_gen.go#L1003: 		return fmt.Errorf("unable to encode secureValueErrorFile#7a700873: field type: %w", err)
		tl_secure_value_error_gen.go#L1013: 		return fmt.Errorf("can't decode secureValueErrorFile#7a700873 to nil")
		tl_secure_value_error_gen.go#L1016: 		return fmt.Errorf("unable to decode secureValueErrorFile#7a700873: %w", err)
		tl_secure_value_error_gen.go#L1024: 		return fmt.Errorf("can't decode secureValueErrorFile#7a700873 to nil")
		tl_secure_value_error_gen.go#L1029: 			return fmt.Errorf("unable to decode secureValueErrorFile#7a700873: field type: %w", err)
		tl_secure_value_error_gen.go#L1036: 			return fmt.Errorf("unable to decode secureValueErrorFile#7a700873: field file_hash: %w", err)
		tl_secure_value_error_gen.go#L1043: 			return fmt.Errorf("unable to decode secureValueErrorFile#7a700873: field text: %w", err)
		tl_secure_value_error_gen.go#L1192: 		return fmt.Errorf("can't encode secureValueErrorFiles#666220e9 as nil")
		tl_secure_value_error_gen.go#L1201: 		return fmt.Errorf("can't encode secureValueErrorFiles#666220e9 as nil")
		tl_secure_value_error_gen.go#L1204: 		return fmt.Errorf("unable to encode secureValueErrorFiles#666220e9: field type is nil")
		tl_secure_value_error_gen.go#L1207: 		return fmt.Errorf("unable to encode secureValueErrorFiles#666220e9: field type: %w", err)
		tl_secure_value_error_gen.go#L1220: 		return fmt.Errorf("can't decode secureValueErrorFiles#666220e9 to nil")
		tl_secure_value_error_gen.go#L1223: 		return fmt.Errorf("unable to decode secureValueErrorFiles#666220e9: %w", err)
		tl_secure_value_error_gen.go#L1231: 		return fmt.Errorf("can't decode secureValueErrorFiles#666220e9 to nil")
		tl_secure_value_error_gen.go#L1236: 			return fmt.Errorf("unable to decode secureValueErrorFiles#666220e9: field type: %w", err)
		tl_secure_value_error_gen.go#L1243: 			return fmt.Errorf("unable to decode secureValueErrorFiles#666220e9: field file_hash: %w", err)
		tl_secure_value_error_gen.go#L1252: 				return fmt.Errorf("unable to decode secureValueErrorFiles#666220e9: field file_hash: %w", err)
		tl_secure_value_error_gen.go#L1260: 			return fmt.Errorf("unable to decode secureValueErrorFiles#666220e9: field text: %w", err)
		tl_secure_value_error_gen.go#L1399: 		return fmt.Errorf("can't encode secureValueError#869d758f as nil")
		tl_secure_value_error_gen.go#L1408: 		return fmt.Errorf("can't encode secureValueError#869d758f as nil")
		tl_secure_value_error_gen.go#L1411: 		return fmt.Errorf("unable to encode secureValueError#869d758f: field type is nil")
		tl_secure_value_error_gen.go#L1414: 		return fmt.Errorf("unable to encode secureValueError#869d758f: field type: %w", err)
		tl_secure_value_error_gen.go#L1424: 		return fmt.Errorf("can't decode secureValueError#869d758f to nil")
		tl_secure_value_error_gen.go#L1427: 		return fmt.Errorf("unable to decode secureValueError#869d758f: %w", err)
		tl_secure_value_error_gen.go#L1435: 		return fmt.Errorf("can't decode secureValueError#869d758f to nil")
		tl_secure_value_error_gen.go#L1440: 			return fmt.Errorf("unable to decode secureValueError#869d758f: field type: %w", err)
		tl_secure_value_error_gen.go#L1447: 			return fmt.Errorf("unable to decode secureValueError#869d758f: field hash: %w", err)
		tl_secure_value_error_gen.go#L1454: 			return fmt.Errorf("unable to decode secureValueError#869d758f: field text: %w", err)
		tl_secure_value_error_gen.go#L1610: 		return fmt.Errorf("can't encode secureValueErrorTranslationFile#a1144770 as nil")
		tl_secure_value_error_gen.go#L1619: 		return fmt.Errorf("can't encode secureValueErrorTranslationFile#a1144770 as nil")
		tl_secure_value_error_gen.go#L1622: 		return fmt.Errorf("unable to encode secureValueErrorTranslationFile#a1144770: field type is nil")
		tl_secure_value_error_gen.go#L1625: 		return fmt.Errorf("unable to encode secureValueErrorTranslationFile#a1144770: field type: %w", err)
		tl_secure_value_error_gen.go#L1635: 		return fmt.Errorf("can't decode secureValueErrorTranslationFile#a1144770 to nil")
		tl_secure_value_error_gen.go#L1638: 		return fmt.Errorf("unable to decode secureValueErrorTranslationFile#a1144770: %w", err)
		tl_secure_value_error_gen.go#L1646: 		return fmt.Errorf("can't decode secureValueErrorTranslationFile#a1144770 to nil")
		tl_secure_value_error_gen.go#L1651: 			return fmt.Errorf("unable to decode secureValueErrorTranslationFile#a1144770: field type: %w", err)
		tl_secure_value_error_gen.go#L1658: 			return fmt.Errorf("unable to decode secureValueErrorTranslationFile#a1144770: field file_hash: %w", err)
		tl_secure_value_error_gen.go#L1665: 			return fmt.Errorf("unable to decode secureValueErrorTranslationFile#a1144770: field text: %w", err)
		tl_secure_value_error_gen.go#L1821: 		return fmt.Errorf("can't encode secureValueErrorTranslationFiles#34636dd8 as nil")
		tl_secure_value_error_gen.go#L1830: 		return fmt.Errorf("can't encode secureValueErrorTranslationFiles#34636dd8 as nil")
		tl_secure_value_error_gen.go#L1833: 		return fmt.Errorf("unable to encode secureValueErrorTranslationFiles#34636dd8: field type is nil")
		tl_secure_value_error_gen.go#L1836: 		return fmt.Errorf("unable to encode secureValueErrorTranslationFiles#34636dd8: field type: %w", err)
		tl_secure_value_error_gen.go#L1849: 		return fmt.Errorf("can't decode secureValueErrorTranslationFiles#34636dd8 to nil")
		tl_secure_value_error_gen.go#L1852: 		return fmt.Errorf("unable to decode secureValueErrorTranslationFiles#34636dd8: %w", err)
		tl_secure_value_error_gen.go#L1860: 		return fmt.Errorf("can't decode secureValueErrorTranslationFiles#34636dd8 to nil")
		tl_secure_value_error_gen.go#L1865: 			return fmt.Errorf("unable to decode secureValueErrorTranslationFiles#34636dd8: field type: %w", err)
		tl_secure_value_error_gen.go#L1872: 			return fmt.Errorf("unable to decode secureValueErrorTranslationFiles#34636dd8: field file_hash: %w", err)
		tl_secure_value_error_gen.go#L1881: 				return fmt.Errorf("unable to decode secureValueErrorTranslationFiles#34636dd8: field file_hash: %w", err)
		tl_secure_value_error_gen.go#L1889: 			return fmt.Errorf("unable to decode secureValueErrorTranslationFiles#34636dd8: field text: %w", err)
		tl_secure_value_error_gen.go#L1992: 			return nil, fmt.Errorf("unable to decode SecureValueErrorClass: %w", err)
		tl_secure_value_error_gen.go#L1999: 			return nil, fmt.Errorf("unable to decode SecureValueErrorClass: %w", err)
		tl_secure_value_error_gen.go#L2006: 			return nil, fmt.Errorf("unable to decode SecureValueErrorClass: %w", err)
		tl_secure_value_error_gen.go#L2013: 			return nil, fmt.Errorf("unable to decode SecureValueErrorClass: %w", err)
		tl_secure_value_error_gen.go#L2020: 			return nil, fmt.Errorf("unable to decode SecureValueErrorClass: %w", err)
		tl_secure_value_error_gen.go#L2027: 			return nil, fmt.Errorf("unable to decode SecureValueErrorClass: %w", err)
		tl_secure_value_error_gen.go#L2034: 			return nil, fmt.Errorf("unable to decode SecureValueErrorClass: %w", err)
		tl_secure_value_error_gen.go#L2041: 			return nil, fmt.Errorf("unable to decode SecureValueErrorClass: %w", err)
		tl_secure_value_error_gen.go#L2048: 			return nil, fmt.Errorf("unable to decode SecureValueErrorClass: %w", err)
		tl_secure_value_error_gen.go#L2052: 		return nil, fmt.Errorf("unable to decode SecureValueErrorClass: %w", bin.NewUnexpectedID(id))
		tl_secure_value_error_gen.go#L2064: 		return fmt.Errorf("unable to decode SecureValueErrorBox to nil")
		tl_secure_value_error_gen.go#L2068: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_secure_value_error_gen.go#L2077: 		return fmt.Errorf("unable to encode SecureValueErrorClass as nil")
		tl_secure_value_gen.go#L302: 		return fmt.Errorf("can't encode secureValue#187fa0ca as nil")
		tl_secure_value_gen.go#L311: 		return fmt.Errorf("can't encode secureValue#187fa0ca as nil")
		tl_secure_value_gen.go#L315: 		return fmt.Errorf("unable to encode secureValue#187fa0ca: field flags: %w", err)
		tl_secure_value_gen.go#L318: 		return fmt.Errorf("unable to encode secureValue#187fa0ca: field type is nil")
		tl_secure_value_gen.go#L321: 		return fmt.Errorf("unable to encode secureValue#187fa0ca: field type: %w", err)
		tl_secure_value_gen.go#L325: 			return fmt.Errorf("unable to encode secureValue#187fa0ca: field data: %w", err)
		tl_secure_value_gen.go#L330: 			return fmt.Errorf("unable to encode secureValue#187fa0ca: field front_side is nil")
		tl_secure_value_gen.go#L333: 			return fmt.Errorf("unable to encode secureValue#187fa0ca: field front_side: %w", err)
		tl_secure_value_gen.go#L338: 			return fmt.Errorf("unable to encode secureValue#187fa0ca: field reverse_side is nil")
		tl_secure_value_gen.go#L341: 			return fmt.Errorf("unable to encode secureValue#187fa0ca: field reverse_side: %w", err)
		tl_secure_value_gen.go#L346: 			return fmt.Errorf("unable to encode secureValue#187fa0ca: field selfie is nil")
		tl_secure_value_gen.go#L349: 			return fmt.Errorf("unable to encode secureValue#187fa0ca: field selfie: %w", err)
		tl_secure_value_gen.go#L356: 				return fmt.Errorf("unable to encode secureValue#187fa0ca: field translation element with index %d is nil", idx)
		tl_secure_value_gen.go#L359: 				return fmt.Errorf("unable to encode secureValue#187fa0ca: field translation element with index %d: %w", idx, err)
		tl_secure_value_gen.go#L367: 				return fmt.Errorf("unable to encode secureValue#187fa0ca: field files element with index %d is nil", idx)
		tl_secure_value_gen.go#L370: 				return fmt.Errorf("unable to encode secureValue#187fa0ca: field files element with index %d: %w", idx, err)
		tl_secure_value_gen.go#L376: 			return fmt.Errorf("unable to encode secureValue#187fa0ca: field plain_data is nil")
		tl_secure_value_gen.go#L379: 			return fmt.Errorf("unable to encode secureValue#187fa0ca: field plain_data: %w", err)
		tl_secure_value_gen.go#L389: 		return fmt.Errorf("can't decode secureValue#187fa0ca to nil")
		tl_secure_value_gen.go#L392: 		return fmt.Errorf("unable to decode secureValue#187fa0ca: %w", err)
		tl_secure_value_gen.go#L400: 		return fmt.Errorf("can't decode secureValue#187fa0ca to nil")
		tl_secure_value_gen.go#L404: 			return fmt.Errorf("unable to decode secureValue#187fa0ca: field flags: %w", err)
		tl_secure_value_gen.go#L410: 			return fmt.Errorf("unable to decode secureValue#187fa0ca: field type: %w", err)
		tl_secure_value_gen.go#L416: 			return fmt.Errorf("unable to decode secureValue#187fa0ca: field data: %w", err)
		tl_secure_value_gen.go#L422: 			return fmt.Errorf("unable to decode secureValue#187fa0ca: field front_side: %w", err)
		tl_secure_value_gen.go#L429: 			return fmt.Errorf("unable to decode secureValue#187fa0ca: field reverse_side: %w", err)
		tl_secure_value_gen.go#L436: 			return fmt.Errorf("unable to decode secureValue#187fa0ca: field selfie: %w", err)
		tl_secure_value_gen.go#L443: 			return fmt.Errorf("unable to decode secureValue#187fa0ca: field translation: %w", err)
		tl_secure_value_gen.go#L452: 				return fmt.Errorf("unable to decode secureValue#187fa0ca: field translation: %w", err)
		tl_secure_value_gen.go#L460: 			return fmt.Errorf("unable to decode secureValue#187fa0ca: field files: %w", err)
		tl_secure_value_gen.go#L469: 				return fmt.Errorf("unable to decode secureValue#187fa0ca: field files: %w", err)
		tl_secure_value_gen.go#L477: 			return fmt.Errorf("unable to decode secureValue#187fa0ca: field plain_data: %w", err)
		tl_secure_value_gen.go#L484: 			return fmt.Errorf("unable to decode secureValue#187fa0ca: field hash: %w", err)
		tl_secure_value_hash_gen.go#L126: 		return fmt.Errorf("can't encode secureValueHash#ed1ecdb0 as nil")
		tl_secure_value_hash_gen.go#L135: 		return fmt.Errorf("can't encode secureValueHash#ed1ecdb0 as nil")
		tl_secure_value_hash_gen.go#L138: 		return fmt.Errorf("unable to encode secureValueHash#ed1ecdb0: field type is nil")
		tl_secure_value_hash_gen.go#L141: 		return fmt.Errorf("unable to encode secureValueHash#ed1ecdb0: field type: %w", err)
		tl_secure_value_hash_gen.go#L150: 		return fmt.Errorf("can't decode secureValueHash#ed1ecdb0 to nil")
		tl_secure_value_hash_gen.go#L153: 		return fmt.Errorf("unable to decode secureValueHash#ed1ecdb0: %w", err)
		tl_secure_value_hash_gen.go#L161: 		return fmt.Errorf("can't decode secureValueHash#ed1ecdb0 to nil")
		tl_secure_value_hash_gen.go#L166: 			return fmt.Errorf("unable to decode secureValueHash#ed1ecdb0: field type: %w", err)
		tl_secure_value_hash_gen.go#L173: 			return fmt.Errorf("unable to decode secureValueHash#ed1ecdb0: field hash: %w", err)
		tl_secure_value_type_gen.go#L103: 		return fmt.Errorf("can't encode secureValueTypePersonalDetails#9d2a81e3 as nil")
		tl_secure_value_type_gen.go#L112: 		return fmt.Errorf("can't encode secureValueTypePersonalDetails#9d2a81e3 as nil")
		tl_secure_value_type_gen.go#L120: 		return fmt.Errorf("can't decode secureValueTypePersonalDetails#9d2a81e3 to nil")
		tl_secure_value_type_gen.go#L123: 		return fmt.Errorf("unable to decode secureValueTypePersonalDetails#9d2a81e3: %w", err)
		tl_secure_value_type_gen.go#L131: 		return fmt.Errorf("can't decode secureValueTypePersonalDetails#9d2a81e3 to nil")
		tl_secure_value_type_gen.go#L205: 		return fmt.Errorf("can't encode secureValueTypePassport#3dac6a00 as nil")
		tl_secure_value_type_gen.go#L214: 		return fmt.Errorf("can't encode secureValueTypePassport#3dac6a00 as nil")
		tl_secure_value_type_gen.go#L222: 		return fmt.Errorf("can't decode secureValueTypePassport#3dac6a00 to nil")
		tl_secure_value_type_gen.go#L225: 		return fmt.Errorf("unable to decode secureValueTypePassport#3dac6a00: %w", err)
		tl_secure_value_type_gen.go#L233: 		return fmt.Errorf("can't decode secureValueTypePassport#3dac6a00 to nil")
		tl_secure_value_type_gen.go#L307: 		return fmt.Errorf("can't encode secureValueTypeDriverLicense#6e425c4 as nil")
		tl_secure_value_type_gen.go#L316: 		return fmt.Errorf("can't encode secureValueTypeDriverLicense#6e425c4 as nil")
		tl_secure_value_type_gen.go#L324: 		return fmt.Errorf("can't decode secureValueTypeDriverLicense#6e425c4 to nil")
		tl_secure_value_type_gen.go#L327: 		return fmt.Errorf("unable to decode secureValueTypeDriverLicense#6e425c4: %w", err)
		tl_secure_value_type_gen.go#L335: 		return fmt.Errorf("can't decode secureValueTypeDriverLicense#6e425c4 to nil")
		tl_secure_value_type_gen.go#L409: 		return fmt.Errorf("can't encode secureValueTypeIdentityCard#a0d0744b as nil")
		tl_secure_value_type_gen.go#L418: 		return fmt.Errorf("can't encode secureValueTypeIdentityCard#a0d0744b as nil")
		tl_secure_value_type_gen.go#L426: 		return fmt.Errorf("can't decode secureValueTypeIdentityCard#a0d0744b to nil")
		tl_secure_value_type_gen.go#L429: 		return fmt.Errorf("unable to decode secureValueTypeIdentityCard#a0d0744b: %w", err)
		tl_secure_value_type_gen.go#L437: 		return fmt.Errorf("can't decode secureValueTypeIdentityCard#a0d0744b to nil")
		tl_secure_value_type_gen.go#L514: 		return fmt.Errorf("can't encode secureValueTypeInternalPassport#99a48f23 as nil")
		tl_secure_value_type_gen.go#L523: 		return fmt.Errorf("can't encode secureValueTypeInternalPassport#99a48f23 as nil")
		tl_secure_value_type_gen.go#L531: 		return fmt.Errorf("can't decode secureValueTypeInternalPassport#99a48f23 to nil")
		tl_secure_value_type_gen.go#L534: 		return fmt.Errorf("unable to decode secureValueTypeInternalPassport#99a48f23: %w", err)
		tl_secure_value_type_gen.go#L542: 		return fmt.Errorf("can't decode secureValueTypeInternalPassport#99a48f23 to nil")
		tl_secure_value_type_gen.go#L616: 		return fmt.Errorf("can't encode secureValueTypeAddress#cbe31e26 as nil")
		tl_secure_value_type_gen.go#L625: 		return fmt.Errorf("can't encode secureValueTypeAddress#cbe31e26 as nil")
		tl_secure_value_type_gen.go#L633: 		return fmt.Errorf("can't decode secureValueTypeAddress#cbe31e26 to nil")
		tl_secure_value_type_gen.go#L636: 		return fmt.Errorf("unable to decode secureValueTypeAddress#cbe31e26: %w", err)
		tl_secure_value_type_gen.go#L644: 		return fmt.Errorf("can't decode secureValueTypeAddress#cbe31e26 to nil")
		tl_secure_value_type_gen.go#L718: 		return fmt.Errorf("can't encode secureValueTypeUtilityBill#fc36954e as nil")
		tl_secure_value_type_gen.go#L727: 		return fmt.Errorf("can't encode secureValueTypeUtilityBill#fc36954e as nil")
		tl_secure_value_type_gen.go#L735: 		return fmt.Errorf("can't decode secureValueTypeUtilityBill#fc36954e to nil")
		tl_secure_value_type_gen.go#L738: 		return fmt.Errorf("unable to decode secureValueTypeUtilityBill#fc36954e: %w", err)
		tl_secure_value_type_gen.go#L746: 		return fmt.Errorf("can't decode secureValueTypeUtilityBill#fc36954e to nil")
		tl_secure_value_type_gen.go#L820: 		return fmt.Errorf("can't encode secureValueTypeBankStatement#89137c0d as nil")
		tl_secure_value_type_gen.go#L829: 		return fmt.Errorf("can't encode secureValueTypeBankStatement#89137c0d as nil")
		tl_secure_value_type_gen.go#L837: 		return fmt.Errorf("can't decode secureValueTypeBankStatement#89137c0d to nil")
		tl_secure_value_type_gen.go#L840: 		return fmt.Errorf("unable to decode secureValueTypeBankStatement#89137c0d: %w", err)
		tl_secure_value_type_gen.go#L848: 		return fmt.Errorf("can't decode secureValueTypeBankStatement#89137c0d to nil")
		tl_secure_value_type_gen.go#L922: 		return fmt.Errorf("can't encode secureValueTypeRentalAgreement#8b883488 as nil")
		tl_secure_value_type_gen.go#L931: 		return fmt.Errorf("can't encode secureValueTypeRentalAgreement#8b883488 as nil")
		tl_secure_value_type_gen.go#L939: 		return fmt.Errorf("can't decode secureValueTypeRentalAgreement#8b883488 to nil")
		tl_secure_value_type_gen.go#L942: 		return fmt.Errorf("unable to decode secureValueTypeRentalAgreement#8b883488: %w", err)
		tl_secure_value_type_gen.go#L950: 		return fmt.Errorf("can't decode secureValueTypeRentalAgreement#8b883488 to nil")
		tl_secure_value_type_gen.go#L1027: 		return fmt.Errorf("can't encode secureValueTypePassportRegistration#99e3806a as nil")
		tl_secure_value_type_gen.go#L1036: 		return fmt.Errorf("can't encode secureValueTypePassportRegistration#99e3806a as nil")
		tl_secure_value_type_gen.go#L1044: 		return fmt.Errorf("can't decode secureValueTypePassportRegistration#99e3806a to nil")
		tl_secure_value_type_gen.go#L1047: 		return fmt.Errorf("unable to decode secureValueTypePassportRegistration#99e3806a: %w", err)
		tl_secure_value_type_gen.go#L1055: 		return fmt.Errorf("can't decode secureValueTypePassportRegistration#99e3806a to nil")
		tl_secure_value_type_gen.go#L1129: 		return fmt.Errorf("can't encode secureValueTypeTemporaryRegistration#ea02ec33 as nil")
		tl_secure_value_type_gen.go#L1138: 		return fmt.Errorf("can't encode secureValueTypeTemporaryRegistration#ea02ec33 as nil")
		tl_secure_value_type_gen.go#L1146: 		return fmt.Errorf("can't decode secureValueTypeTemporaryRegistration#ea02ec33 to nil")
		tl_secure_value_type_gen.go#L1149: 		return fmt.Errorf("unable to decode secureValueTypeTemporaryRegistration#ea02ec33: %w", err)
		tl_secure_value_type_gen.go#L1157: 		return fmt.Errorf("can't decode secureValueTypeTemporaryRegistration#ea02ec33 to nil")
		tl_secure_value_type_gen.go#L1231: 		return fmt.Errorf("can't encode secureValueTypePhone#b320aadb as nil")
		tl_secure_value_type_gen.go#L1240: 		return fmt.Errorf("can't encode secureValueTypePhone#b320aadb as nil")
		tl_secure_value_type_gen.go#L1248: 		return fmt.Errorf("can't decode secureValueTypePhone#b320aadb to nil")
		tl_secure_value_type_gen.go#L1251: 		return fmt.Errorf("unable to decode secureValueTypePhone#b320aadb: %w", err)
		tl_secure_value_type_gen.go#L1259: 		return fmt.Errorf("can't decode secureValueTypePhone#b320aadb to nil")
		tl_secure_value_type_gen.go#L1333: 		return fmt.Errorf("can't encode secureValueTypeEmail#8e3ca7ee as nil")
		tl_secure_value_type_gen.go#L1342: 		return fmt.Errorf("can't encode secureValueTypeEmail#8e3ca7ee as nil")
		tl_secure_value_type_gen.go#L1350: 		return fmt.Errorf("can't decode secureValueTypeEmail#8e3ca7ee to nil")
		tl_secure_value_type_gen.go#L1353: 		return fmt.Errorf("unable to decode secureValueTypeEmail#8e3ca7ee: %w", err)
		tl_secure_value_type_gen.go#L1361: 		return fmt.Errorf("can't decode secureValueTypeEmail#8e3ca7ee to nil")
		tl_secure_value_type_gen.go#L1425: 			return nil, fmt.Errorf("unable to decode SecureValueTypeClass: %w", err)
		tl_secure_value_type_gen.go#L1432: 			return nil, fmt.Errorf("unable to decode SecureValueTypeClass: %w", err)
		tl_secure_value_type_gen.go#L1439: 			return nil, fmt.Errorf("unable to decode SecureValueTypeClass: %w", err)
		tl_secure_value_type_gen.go#L1446: 			return nil, fmt.Errorf("unable to decode SecureValueTypeClass: %w", err)
		tl_secure_value_type_gen.go#L1453: 			return nil, fmt.Errorf("unable to decode SecureValueTypeClass: %w", err)
		tl_secure_value_type_gen.go#L1460: 			return nil, fmt.Errorf("unable to decode SecureValueTypeClass: %w", err)
		tl_secure_value_type_gen.go#L1467: 			return nil, fmt.Errorf("unable to decode SecureValueTypeClass: %w", err)
		tl_secure_value_type_gen.go#L1474: 			return nil, fmt.Errorf("unable to decode SecureValueTypeClass: %w", err)
		tl_secure_value_type_gen.go#L1481: 			return nil, fmt.Errorf("unable to decode SecureValueTypeClass: %w", err)
		tl_secure_value_type_gen.go#L1488: 			return nil, fmt.Errorf("unable to decode SecureValueTypeClass: %w", err)
		tl_secure_value_type_gen.go#L1495: 			return nil, fmt.Errorf("unable to decode SecureValueTypeClass: %w", err)
		tl_secure_value_type_gen.go#L1502: 			return nil, fmt.Errorf("unable to decode SecureValueTypeClass: %w", err)
		tl_secure_value_type_gen.go#L1509: 			return nil, fmt.Errorf("unable to decode SecureValueTypeClass: %w", err)
		tl_secure_value_type_gen.go#L1513: 		return nil, fmt.Errorf("unable to decode SecureValueTypeClass: %w", bin.NewUnexpectedID(id))
		tl_secure_value_type_gen.go#L1525: 		return fmt.Errorf("unable to decode SecureValueTypeBox to nil")
		tl_secure_value_type_gen.go#L1529: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_secure_value_type_gen.go#L1538: 		return fmt.Errorf("unable to encode SecureValueTypeClass as nil")
		tl_secure_value_vector_gen.go#L112: 		return fmt.Errorf("can't encode Vector<SecureValue> as nil")
		tl_secure_value_vector_gen.go#L121: 		return fmt.Errorf("can't encode Vector<SecureValue> as nil")
		tl_secure_value_vector_gen.go#L126: 			return fmt.Errorf("unable to encode Vector<SecureValue>: field Elems element with index %d: %w", idx, err)
		tl_secure_value_vector_gen.go#L135: 		return fmt.Errorf("can't decode Vector<SecureValue> to nil")
		tl_secure_value_vector_gen.go#L144: 		return fmt.Errorf("can't decode Vector<SecureValue> to nil")
		tl_secure_value_vector_gen.go#L149: 			return fmt.Errorf("unable to decode Vector<SecureValue>: field Elems: %w", err)
		tl_secure_value_vector_gen.go#L158: 				return fmt.Errorf("unable to decode Vector<SecureValue>: field Elems: %w", err)
		tl_send_as_peer_gen.go#L142: 		return fmt.Errorf("can't encode sendAsPeer#b81c7034 as nil")
		tl_send_as_peer_gen.go#L151: 		return fmt.Errorf("can't encode sendAsPeer#b81c7034 as nil")
		tl_send_as_peer_gen.go#L155: 		return fmt.Errorf("unable to encode sendAsPeer#b81c7034: field flags: %w", err)
		tl_send_as_peer_gen.go#L158: 		return fmt.Errorf("unable to encode sendAsPeer#b81c7034: field peer is nil")
		tl_send_as_peer_gen.go#L161: 		return fmt.Errorf("unable to encode sendAsPeer#b81c7034: field peer: %w", err)
		tl_send_as_peer_gen.go#L169: 		return fmt.Errorf("can't decode sendAsPeer#b81c7034 to nil")
		tl_send_as_peer_gen.go#L172: 		return fmt.Errorf("unable to decode sendAsPeer#b81c7034: %w", err)
		tl_send_as_peer_gen.go#L180: 		return fmt.Errorf("can't decode sendAsPeer#b81c7034 to nil")
		tl_send_as_peer_gen.go#L184: 			return fmt.Errorf("unable to decode sendAsPeer#b81c7034: field flags: %w", err)
		tl_send_as_peer_gen.go#L191: 			return fmt.Errorf("unable to decode sendAsPeer#b81c7034: field peer: %w", err)
		tl_send_message_action_gen.go#L103: 		return fmt.Errorf("can't encode sendMessageTypingAction#16bf744e as nil")
		tl_send_message_action_gen.go#L112: 		return fmt.Errorf("can't encode sendMessageTypingAction#16bf744e as nil")
		tl_send_message_action_gen.go#L120: 		return fmt.Errorf("can't decode sendMessageTypingAction#16bf744e to nil")
		tl_send_message_action_gen.go#L123: 		return fmt.Errorf("unable to decode sendMessageTypingAction#16bf744e: %w", err)
		tl_send_message_action_gen.go#L131: 		return fmt.Errorf("can't decode sendMessageTypingAction#16bf744e to nil")
		tl_send_message_action_gen.go#L206: 		return fmt.Errorf("can't encode sendMessageCancelAction#fd5ec8f5 as nil")
		tl_send_message_action_gen.go#L215: 		return fmt.Errorf("can't encode sendMessageCancelAction#fd5ec8f5 as nil")
		tl_send_message_action_gen.go#L223: 		return fmt.Errorf("can't decode sendMessageCancelAction#fd5ec8f5 to nil")
		tl_send_message_action_gen.go#L226: 		return fmt.Errorf("unable to decode sendMessageCancelAction#fd5ec8f5: %w", err)
		tl_send_message_action_gen.go#L234: 		return fmt.Errorf("can't decode sendMessageCancelAction#fd5ec8f5 to nil")
		tl_send_message_action_gen.go#L308: 		return fmt.Errorf("can't encode sendMessageRecordVideoAction#a187d66f as nil")
		tl_send_message_action_gen.go#L317: 		return fmt.Errorf("can't encode sendMessageRecordVideoAction#a187d66f as nil")
		tl_send_message_action_gen.go#L325: 		return fmt.Errorf("can't decode sendMessageRecordVideoAction#a187d66f to nil")
		tl_send_message_action_gen.go#L328: 		return fmt.Errorf("unable to decode sendMessageRecordVideoAction#a187d66f: %w", err)
		tl_send_message_action_gen.go#L336: 		return fmt.Errorf("can't decode sendMessageRecordVideoAction#a187d66f to nil")
		tl_send_message_action_gen.go#L427: 		return fmt.Errorf("can't encode sendMessageUploadVideoAction#e9763aec as nil")
		tl_send_message_action_gen.go#L436: 		return fmt.Errorf("can't encode sendMessageUploadVideoAction#e9763aec as nil")
		tl_send_message_action_gen.go#L445: 		return fmt.Errorf("can't decode sendMessageUploadVideoAction#e9763aec to nil")
		tl_send_message_action_gen.go#L448: 		return fmt.Errorf("unable to decode sendMessageUploadVideoAction#e9763aec: %w", err)
		tl_send_message_action_gen.go#L456: 		return fmt.Errorf("can't decode sendMessageUploadVideoAction#e9763aec to nil")
		tl_send_message_action_gen.go#L461: 			return fmt.Errorf("unable to decode sendMessageUploadVideoAction#e9763aec: field progress: %w", err)
		tl_send_message_action_gen.go#L545: 		return fmt.Errorf("can't encode sendMessageRecordAudioAction#d52f73f7 as nil")
		tl_send_message_action_gen.go#L554: 		return fmt.Errorf("can't encode sendMessageRecordAudioAction#d52f73f7 as nil")
		tl_send_message_action_gen.go#L562: 		return fmt.Errorf("can't decode sendMessageRecordAudioAction#d52f73f7 to nil")
		tl_send_message_action_gen.go#L565: 		return fmt.Errorf("unable to decode sendMessageRecordAudioAction#d52f73f7: %w", err)
		tl_send_message_action_gen.go#L573: 		return fmt.Errorf("can't decode sendMessageRecordAudioAction#d52f73f7 to nil")
		tl_send_message_action_gen.go#L664: 		return fmt.Errorf("can't encode sendMessageUploadAudioAction#f351d7ab as nil")
		tl_send_message_action_gen.go#L673: 		return fmt.Errorf("can't encode sendMessageUploadAudioAction#f351d7ab as nil")
		tl_send_message_action_gen.go#L682: 		return fmt.Errorf("can't decode sendMessageUploadAudioAction#f351d7ab to nil")
		tl_send_message_action_gen.go#L685: 		return fmt.Errorf("unable to decode sendMessageUploadAudioAction#f351d7ab: %w", err)
		tl_send_message_action_gen.go#L693: 		return fmt.Errorf("can't decode sendMessageUploadAudioAction#f351d7ab to nil")
		tl_send_message_action_gen.go#L698: 			return fmt.Errorf("unable to decode sendMessageUploadAudioAction#f351d7ab: field progress: %w", err)
		tl_send_message_action_gen.go#L799: 		return fmt.Errorf("can't encode sendMessageUploadPhotoAction#d1d34a26 as nil")
		tl_send_message_action_gen.go#L808: 		return fmt.Errorf("can't encode sendMessageUploadPhotoAction#d1d34a26 as nil")
		tl_send_message_action_gen.go#L817: 		return fmt.Errorf("can't decode sendMessageUploadPhotoAction#d1d34a26 to nil")
		tl_send_message_action_gen.go#L820: 		return fmt.Errorf("unable to decode sendMessageUploadPhotoAction#d1d34a26: %w", err)
		tl_send_message_action_gen.go#L828: 		return fmt.Errorf("can't decode sendMessageUploadPhotoAction#d1d34a26 to nil")
		tl_send_message_action_gen.go#L833: 			return fmt.Errorf("unable to decode sendMessageUploadPhotoAction#d1d34a26: field progress: %w", err)
		tl_send_message_action_gen.go#L934: 		return fmt.Errorf("can't encode sendMessageUploadDocumentAction#aa0cd9e4 as nil")
		tl_send_message_action_gen.go#L943: 		return fmt.Errorf("can't encode sendMessageUploadDocumentAction#aa0cd9e4 as nil")
		tl_send_message_action_gen.go#L952: 		return fmt.Errorf("can't decode sendMessageUploadDocumentAction#aa0cd9e4 to nil")
		tl_send_message_action_gen.go#L955: 		return fmt.Errorf("unable to decode sendMessageUploadDocumentAction#aa0cd9e4: %w", err)
		tl_send_message_action_gen.go#L963: 		return fmt.Errorf("can't decode sendMessageUploadDocumentAction#aa0cd9e4 to nil")
		tl_send_message_action_gen.go#L968: 			return fmt.Errorf("unable to decode sendMessageUploadDocumentAction#aa0cd9e4: field progress: %w", err)
		tl_send_message_action_gen.go#L1052: 		return fmt.Errorf("can't encode sendMessageGeoLocationAction#176f8ba1 as nil")
		tl_send_message_action_gen.go#L1061: 		return fmt.Errorf("can't encode sendMessageGeoLocationAction#176f8ba1 as nil")
		tl_send_message_action_gen.go#L1069: 		return fmt.Errorf("can't decode sendMessageGeoLocationAction#176f8ba1 to nil")
		tl_send_message_action_gen.go#L1072: 		return fmt.Errorf("unable to decode sendMessageGeoLocationAction#176f8ba1: %w", err)
		tl_send_message_action_gen.go#L1080: 		return fmt.Errorf("can't decode sendMessageGeoLocationAction#176f8ba1 to nil")
		tl_send_message_action_gen.go#L1154: 		return fmt.Errorf("can't encode sendMessageChooseContactAction#628cbc6f as nil")
		tl_send_message_action_gen.go#L1163: 		return fmt.Errorf("can't encode sendMessageChooseContactAction#628cbc6f as nil")
		tl_send_message_action_gen.go#L1171: 		return fmt.Errorf("can't decode sendMessageChooseContactAction#628cbc6f to nil")
		tl_send_message_action_gen.go#L1174: 		return fmt.Errorf("unable to decode sendMessageChooseContactAction#628cbc6f: %w", err)
		tl_send_message_action_gen.go#L1182: 		return fmt.Errorf("can't decode sendMessageChooseContactAction#628cbc6f to nil")
		tl_send_message_action_gen.go#L1256: 		return fmt.Errorf("can't encode sendMessageGamePlayAction#dd6a8f48 as nil")
		tl_send_message_action_gen.go#L1265: 		return fmt.Errorf("can't encode sendMessageGamePlayAction#dd6a8f48 as nil")
		tl_send_message_action_gen.go#L1273: 		return fmt.Errorf("can't decode sendMessageGamePlayAction#dd6a8f48 to nil")
		tl_send_message_action_gen.go#L1276: 		return fmt.Errorf("unable to decode sendMessageGamePlayAction#dd6a8f48: %w", err)
		tl_send_message_action_gen.go#L1284: 		return fmt.Errorf("can't decode sendMessageGamePlayAction#dd6a8f48 to nil")
		tl_send_message_action_gen.go#L1358: 		return fmt.Errorf("can't encode sendMessageRecordRoundAction#88f27fbc as nil")
		tl_send_message_action_gen.go#L1367: 		return fmt.Errorf("can't encode sendMessageRecordRoundAction#88f27fbc as nil")
		tl_send_message_action_gen.go#L1375: 		return fmt.Errorf("can't decode sendMessageRecordRoundAction#88f27fbc to nil")
		tl_send_message_action_gen.go#L1378: 		return fmt.Errorf("unable to decode sendMessageRecordRoundAction#88f27fbc: %w", err)
		tl_send_message_action_gen.go#L1386: 		return fmt.Errorf("can't decode sendMessageRecordRoundAction#88f27fbc to nil")
		tl_send_message_action_gen.go#L1477: 		return fmt.Errorf("can't encode sendMessageUploadRoundAction#243e1c66 as nil")
		tl_send_message_action_gen.go#L1486: 		return fmt.Errorf("can't encode sendMessageUploadRoundAction#243e1c66 as nil")
		tl_send_message_action_gen.go#L1495: 		return fmt.Errorf("can't decode sendMessageUploadRoundAction#243e1c66 to nil")
		tl_send_message_action_gen.go#L1498: 		return fmt.Errorf("unable to decode sendMessageUploadRoundAction#243e1c66: %w", err)
		tl_send_message_action_gen.go#L1506: 		return fmt.Errorf("can't decode sendMessageUploadRoundAction#243e1c66 to nil")
		tl_send_message_action_gen.go#L1511: 			return fmt.Errorf("unable to decode sendMessageUploadRoundAction#243e1c66: field progress: %w", err)
		tl_send_message_action_gen.go#L1595: 		return fmt.Errorf("can't encode speakingInGroupCallAction#d92c2285 as nil")
		tl_send_message_action_gen.go#L1604: 		return fmt.Errorf("can't encode speakingInGroupCallAction#d92c2285 as nil")
		tl_send_message_action_gen.go#L1612: 		return fmt.Errorf("can't decode speakingInGroupCallAction#d92c2285 to nil")
		tl_send_message_action_gen.go#L1615: 		return fmt.Errorf("unable to decode speakingInGroupCallAction#d92c2285: %w", err)
		tl_send_message_action_gen.go#L1623: 		return fmt.Errorf("can't decode speakingInGroupCallAction#d92c2285 to nil")
		tl_send_message_action_gen.go#L1714: 		return fmt.Errorf("can't encode sendMessageHistoryImportAction#dbda9246 as nil")
		tl_send_message_action_gen.go#L1723: 		return fmt.Errorf("can't encode sendMessageHistoryImportAction#dbda9246 as nil")
		tl_send_message_action_gen.go#L1732: 		return fmt.Errorf("can't decode sendMessageHistoryImportAction#dbda9246 to nil")
		tl_send_message_action_gen.go#L1735: 		return fmt.Errorf("unable to decode sendMessageHistoryImportAction#dbda9246: %w", err)
		tl_send_message_action_gen.go#L1743: 		return fmt.Errorf("can't decode sendMessageHistoryImportAction#dbda9246 to nil")
		tl_send_message_action_gen.go#L1748: 			return fmt.Errorf("unable to decode sendMessageHistoryImportAction#dbda9246: field progress: %w", err)
		tl_send_message_action_gen.go#L1832: 		return fmt.Errorf("can't encode sendMessageChooseStickerAction#b05ac6b1 as nil")
		tl_send_message_action_gen.go#L1841: 		return fmt.Errorf("can't encode sendMessageChooseStickerAction#b05ac6b1 as nil")
		tl_send_message_action_gen.go#L1849: 		return fmt.Errorf("can't decode sendMessageChooseStickerAction#b05ac6b1 to nil")
		tl_send_message_action_gen.go#L1852: 		return fmt.Errorf("unable to decode sendMessageChooseStickerAction#b05ac6b1: %w", err)
		tl_send_message_action_gen.go#L1860: 		return fmt.Errorf("can't decode sendMessageChooseStickerAction#b05ac6b1 to nil")
		tl_send_message_action_gen.go#L1980: 		return fmt.Errorf("can't encode sendMessageEmojiInteraction#25972bcb as nil")
		tl_send_message_action_gen.go#L1989: 		return fmt.Errorf("can't encode sendMessageEmojiInteraction#25972bcb as nil")
		tl_send_message_action_gen.go#L1994: 		return fmt.Errorf("unable to encode sendMessageEmojiInteraction#25972bcb: field interaction: %w", err)
		tl_send_message_action_gen.go#L2002: 		return fmt.Errorf("can't decode sendMessageEmojiInteraction#25972bcb to nil")
		tl_send_message_action_gen.go#L2005: 		return fmt.Errorf("unable to decode sendMessageEmojiInteraction#25972bcb: %w", err)
		tl_send_message_action_gen.go#L2013: 		return fmt.Errorf("can't decode sendMessageEmojiInteraction#25972bcb to nil")
		tl_send_message_action_gen.go#L2018: 			return fmt.Errorf("unable to decode sendMessageEmojiInteraction#25972bcb: field emoticon: %w", err)
		tl_send_message_action_gen.go#L2025: 			return fmt.Errorf("unable to decode sendMessageEmojiInteraction#25972bcb: field msg_id: %w", err)
		tl_send_message_action_gen.go#L2031: 			return fmt.Errorf("unable to decode sendMessageEmojiInteraction#25972bcb: field interaction: %w", err)
		tl_send_message_action_gen.go#L2151: 		return fmt.Errorf("can't encode sendMessageEmojiInteractionSeen#b665902e as nil")
		tl_send_message_action_gen.go#L2160: 		return fmt.Errorf("can't encode sendMessageEmojiInteractionSeen#b665902e as nil")
		tl_send_message_action_gen.go#L2169: 		return fmt.Errorf("can't decode sendMessageEmojiInteractionSeen#b665902e to nil")
		tl_send_message_action_gen.go#L2172: 		return fmt.Errorf("unable to decode sendMessageEmojiInteractionSeen#b665902e: %w", err)
		tl_send_message_action_gen.go#L2180: 		return fmt.Errorf("can't decode sendMessageEmojiInteractionSeen#b665902e to nil")
		tl_send_message_action_gen.go#L2185: 			return fmt.Errorf("unable to decode sendMessageEmojiInteractionSeen#b665902e: field emoticon: %w", err)
		tl_send_message_action_gen.go#L2264: 			return nil, fmt.Errorf("unable to decode SendMessageActionClass: %w", err)
		tl_send_message_action_gen.go#L2271: 			return nil, fmt.Errorf("unable to decode SendMessageActionClass: %w", err)
		tl_send_message_action_gen.go#L2278: 			return nil, fmt.Errorf("unable to decode SendMessageActionClass: %w", err)
		tl_send_message_action_gen.go#L2285: 			return nil, fmt.Errorf("unable to decode SendMessageActionClass: %w", err)
		tl_send_message_action_gen.go#L2292: 			return nil, fmt.Errorf("unable to decode SendMessageActionClass: %w", err)
		tl_send_message_action_gen.go#L2299: 			return nil, fmt.Errorf("unable to decode SendMessageActionClass: %w", err)
		tl_send_message_action_gen.go#L2306: 			return nil, fmt.Errorf("unable to decode SendMessageActionClass: %w", err)
		tl_send_message_action_gen.go#L2313: 			return nil, fmt.Errorf("unable to decode SendMessageActionClass: %w", err)
		tl_send_message_action_gen.go#L2320: 			return nil, fmt.Errorf("unable to decode SendMessageActionClass: %w", err)
		tl_send_message_action_gen.go#L2327: 			return nil, fmt.Errorf("unable to decode SendMessageActionClass: %w", err)
		tl_send_message_action_gen.go#L2334: 			return nil, fmt.Errorf("unable to decode SendMessageActionClass: %w", err)
		tl_send_message_action_gen.go#L2341: 			return nil, fmt.Errorf("unable to decode SendMessageActionClass: %w", err)
		tl_send_message_action_gen.go#L2348: 			return nil, fmt.Errorf("unable to decode SendMessageActionClass: %w", err)
		tl_send_message_action_gen.go#L2355: 			return nil, fmt.Errorf("unable to decode SendMessageActionClass: %w", err)
		tl_send_message_action_gen.go#L2362: 			return nil, fmt.Errorf("unable to decode SendMessageActionClass: %w", err)
		tl_send_message_action_gen.go#L2369: 			return nil, fmt.Errorf("unable to decode SendMessageActionClass: %w", err)
		tl_send_message_action_gen.go#L2376: 			return nil, fmt.Errorf("unable to decode SendMessageActionClass: %w", err)
		tl_send_message_action_gen.go#L2383: 			return nil, fmt.Errorf("unable to decode SendMessageActionClass: %w", err)
		tl_send_message_action_gen.go#L2387: 		return nil, fmt.Errorf("unable to decode SendMessageActionClass: %w", bin.NewUnexpectedID(id))
		tl_send_message_action_gen.go#L2399: 		return fmt.Errorf("unable to decode SendMessageActionBox to nil")
		tl_send_message_action_gen.go#L2403: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_send_message_action_gen.go#L2412: 		return fmt.Errorf("unable to encode SendMessageActionClass as nil")
		tl_shipping_option_gen.go#L137: 		return fmt.Errorf("can't encode shippingOption#b6213cdf as nil")
		tl_shipping_option_gen.go#L146: 		return fmt.Errorf("can't encode shippingOption#b6213cdf as nil")
		tl_shipping_option_gen.go#L153: 			return fmt.Errorf("unable to encode shippingOption#b6213cdf: field prices element with index %d: %w", idx, err)
		tl_shipping_option_gen.go#L162: 		return fmt.Errorf("can't decode shippingOption#b6213cdf to nil")
		tl_shipping_option_gen.go#L165: 		return fmt.Errorf("unable to decode shippingOption#b6213cdf: %w", err)
		tl_shipping_option_gen.go#L173: 		return fmt.Errorf("can't decode shippingOption#b6213cdf to nil")
		tl_shipping_option_gen.go#L178: 			return fmt.Errorf("unable to decode shippingOption#b6213cdf: field id: %w", err)
		tl_shipping_option_gen.go#L185: 			return fmt.Errorf("unable to decode shippingOption#b6213cdf: field title: %w", err)
		tl_shipping_option_gen.go#L192: 			return fmt.Errorf("unable to decode shippingOption#b6213cdf: field prices: %w", err)
		tl_shipping_option_gen.go#L201: 				return fmt.Errorf("unable to decode shippingOption#b6213cdf: field prices: %w", err)
		tl_simple_web_view_result_url_gen.go#L115: 		return fmt.Errorf("can't encode simpleWebViewResultUrl#882f76bb as nil")
		tl_simple_web_view_result_url_gen.go#L124: 		return fmt.Errorf("can't encode simpleWebViewResultUrl#882f76bb as nil")
		tl_simple_web_view_result_url_gen.go#L133: 		return fmt.Errorf("can't decode simpleWebViewResultUrl#882f76bb to nil")
		tl_simple_web_view_result_url_gen.go#L136: 		return fmt.Errorf("unable to decode simpleWebViewResultUrl#882f76bb: %w", err)
		tl_simple_web_view_result_url_gen.go#L144: 		return fmt.Errorf("can't decode simpleWebViewResultUrl#882f76bb to nil")
		tl_simple_web_view_result_url_gen.go#L149: 			return fmt.Errorf("unable to decode simpleWebViewResultUrl#882f76bb: field url: %w", err)
		tl_sponsored_message_gen.go#L401: 		return fmt.Errorf("can't encode sponsoredMessage#ed5383f7 as nil")
		tl_sponsored_message_gen.go#L410: 		return fmt.Errorf("can't encode sponsoredMessage#ed5383f7 as nil")
		tl_sponsored_message_gen.go#L414: 		return fmt.Errorf("unable to encode sponsoredMessage#ed5383f7: field flags: %w", err)
		tl_sponsored_message_gen.go#L419: 			return fmt.Errorf("unable to encode sponsoredMessage#ed5383f7: field from_id is nil")
		tl_sponsored_message_gen.go#L422: 			return fmt.Errorf("unable to encode sponsoredMessage#ed5383f7: field from_id: %w", err)
		tl_sponsored_message_gen.go#L427: 			return fmt.Errorf("unable to encode sponsoredMessage#ed5383f7: field chat_invite is nil")
		tl_sponsored_message_gen.go#L430: 			return fmt.Errorf("unable to encode sponsoredMessage#ed5383f7: field chat_invite: %w", err)
		tl_sponsored_message_gen.go#L444: 			return fmt.Errorf("unable to encode sponsoredMessage#ed5383f7: field webpage: %w", err)
		tl_sponsored_message_gen.go#L449: 			return fmt.Errorf("unable to encode sponsoredMessage#ed5383f7: field app is nil")
		tl_sponsored_message_gen.go#L452: 			return fmt.Errorf("unable to encode sponsoredMessage#ed5383f7: field app: %w", err)
		tl_sponsored_message_gen.go#L460: 				return fmt.Errorf("unable to encode sponsoredMessage#ed5383f7: field entities element with index %d is nil", idx)
		tl_sponsored_message_gen.go#L463: 				return fmt.Errorf("unable to encode sponsoredMessage#ed5383f7: field entities element with index %d: %w", idx, err)
		tl_sponsored_message_gen.go#L482: 		return fmt.Errorf("can't decode sponsoredMessage#ed5383f7 to nil")
		tl_sponsored_message_gen.go#L485: 		return fmt.Errorf("unable to decode sponsoredMessage#ed5383f7: %w", err)
		tl_sponsored_message_gen.go#L493: 		return fmt.Errorf("can't decode sponsoredMessage#ed5383f7 to nil")
		tl_sponsored_message_gen.go#L497: 			return fmt.Errorf("unable to decode sponsoredMessage#ed5383f7: field flags: %w", err)
		tl_sponsored_message_gen.go#L505: 			return fmt.Errorf("unable to decode sponsoredMessage#ed5383f7: field random_id: %w", err)
		tl_sponsored_message_gen.go#L512: 			return fmt.Errorf("unable to decode sponsoredMessage#ed5383f7: field from_id: %w", err)
		tl_sponsored_message_gen.go#L519: 			return fmt.Errorf("unable to decode sponsoredMessage#ed5383f7: field chat_invite: %w", err)
		tl_sponsored_message_gen.go#L526: 			return fmt.Errorf("unable to decode sponsoredMessage#ed5383f7: field chat_invite_hash: %w", err)
		tl_sponsored_message_gen.go#L533: 			return fmt.Errorf("unable to decode sponsoredMessage#ed5383f7: field channel_post: %w", err)
		tl_sponsored_message_gen.go#L540: 			return fmt.Errorf("unable to decode sponsoredMessage#ed5383f7: field start_param: %w", err)
		tl_sponsored_message_gen.go#L546: 			return fmt.Errorf("unable to decode sponsoredMessage#ed5383f7: field webpage: %w", err)
		tl_sponsored_message_gen.go#L552: 			return fmt.Errorf("unable to decode sponsoredMessage#ed5383f7: field app: %w", err)
		tl_sponsored_message_gen.go#L559: 			return fmt.Errorf("unable to decode sponsoredMessage#ed5383f7: field message: %w", err)
		tl_sponsored_message_gen.go#L566: 			return fmt.Errorf("unable to decode sponsoredMessage#ed5383f7: field entities: %w", err)
		tl_sponsored_message_gen.go#L575: 				return fmt.Errorf("unable to decode sponsoredMessage#ed5383f7: field entities: %w", err)
		tl_sponsored_message_gen.go#L583: 			return fmt.Errorf("unable to decode sponsoredMessage#ed5383f7: field button_text: %w", err)
		tl_sponsored_message_gen.go#L590: 			return fmt.Errorf("unable to decode sponsoredMessage#ed5383f7: field sponsor_info: %w", err)
		tl_sponsored_message_gen.go#L597: 			return fmt.Errorf("unable to decode sponsoredMessage#ed5383f7: field additional_info: %w", err)
		tl_sponsored_web_page_gen.go#L158: 		return fmt.Errorf("can't encode sponsoredWebPage#3db8ec63 as nil")
		tl_sponsored_web_page_gen.go#L167: 		return fmt.Errorf("can't encode sponsoredWebPage#3db8ec63 as nil")
		tl_sponsored_web_page_gen.go#L171: 		return fmt.Errorf("unable to encode sponsoredWebPage#3db8ec63: field flags: %w", err)
		tl_sponsored_web_page_gen.go#L177: 			return fmt.Errorf("unable to encode sponsoredWebPage#3db8ec63: field photo is nil")
		tl_sponsored_web_page_gen.go#L180: 			return fmt.Errorf("unable to encode sponsoredWebPage#3db8ec63: field photo: %w", err)
		tl_sponsored_web_page_gen.go#L189: 		return fmt.Errorf("can't decode sponsoredWebPage#3db8ec63 to nil")
		tl_sponsored_web_page_gen.go#L192: 		return fmt.Errorf("unable to decode sponsoredWebPage#3db8ec63: %w", err)
		tl_sponsored_web_page_gen.go#L200: 		return fmt.Errorf("can't decode sponsoredWebPage#3db8ec63 to nil")
		tl_sponsored_web_page_gen.go#L204: 			return fmt.Errorf("unable to decode sponsoredWebPage#3db8ec63: field flags: %w", err)
		tl_sponsored_web_page_gen.go#L210: 			return fmt.Errorf("unable to decode sponsoredWebPage#3db8ec63: field url: %w", err)
		tl_sponsored_web_page_gen.go#L217: 			return fmt.Errorf("unable to decode sponsoredWebPage#3db8ec63: field site_name: %w", err)
		tl_sponsored_web_page_gen.go#L224: 			return fmt.Errorf("unable to decode sponsoredWebPage#3db8ec63: field photo: %w", err)
		tl_stats_abs_value_and_prev_gen.go#L127: 		return fmt.Errorf("can't encode statsAbsValueAndPrev#cb43acde as nil")
		tl_stats_abs_value_and_prev_gen.go#L136: 		return fmt.Errorf("can't encode statsAbsValueAndPrev#cb43acde as nil")
		tl_stats_abs_value_and_prev_gen.go#L146: 		return fmt.Errorf("can't decode statsAbsValueAndPrev#cb43acde to nil")
		tl_stats_abs_value_and_prev_gen.go#L149: 		return fmt.Errorf("unable to decode statsAbsValueAndPrev#cb43acde: %w", err)
		tl_stats_abs_value_and_prev_gen.go#L157: 		return fmt.Errorf("can't decode statsAbsValueAndPrev#cb43acde to nil")
		tl_stats_abs_value_and_prev_gen.go#L162: 			return fmt.Errorf("unable to decode statsAbsValueAndPrev#cb43acde: field current: %w", err)
		tl_stats_abs_value_and_prev_gen.go#L169: 			return fmt.Errorf("unable to decode statsAbsValueAndPrev#cb43acde: field previous: %w", err)
		tl_stats_broadcast_stats_gen.go#L368: 		return fmt.Errorf("can't encode stats.broadcastStats#396ca5fc as nil")
		tl_stats_broadcast_stats_gen.go#L377: 		return fmt.Errorf("can't encode stats.broadcastStats#396ca5fc as nil")
		tl_stats_broadcast_stats_gen.go#L380: 		return fmt.Errorf("unable to encode stats.broadcastStats#396ca5fc: field period: %w", err)
		tl_stats_broadcast_stats_gen.go#L383: 		return fmt.Errorf("unable to encode stats.broadcastStats#396ca5fc: field followers: %w", err)
		tl_stats_broadcast_stats_gen.go#L386: 		return fmt.Errorf("unable to encode stats.broadcastStats#396ca5fc: field views_per_post: %w", err)
		tl_stats_broadcast_stats_gen.go#L389: 		return fmt.Errorf("unable to encode stats.broadcastStats#396ca5fc: field shares_per_post: %w", err)
		tl_stats_broadcast_stats_gen.go#L392: 		return fmt.Errorf("unable to encode stats.broadcastStats#396ca5fc: field reactions_per_post: %w", err)
		tl_stats_broadcast_stats_gen.go#L395: 		return fmt.Errorf("unable to encode stats.broadcastStats#396ca5fc: field views_per_story: %w", err)
		tl_stats_broadcast_stats_gen.go#L398: 		return fmt.Errorf("unable to encode stats.broadcastStats#396ca5fc: field shares_per_story: %w", err)
		tl_stats_broadcast_stats_gen.go#L401: 		return fmt.Errorf("unable to encode stats.broadcastStats#396ca5fc: field reactions_per_story: %w", err)
		tl_stats_broadcast_stats_gen.go#L404: 		return fmt.Errorf("unable to encode stats.broadcastStats#396ca5fc: field enabled_notifications: %w", err)
		tl_stats_broadcast_stats_gen.go#L407: 		return fmt.Errorf("unable to encode stats.broadcastStats#396ca5fc: field growth_graph is nil")
		tl_stats_broadcast_stats_gen.go#L410: 		return fmt.Errorf("unable to encode stats.broadcastStats#396ca5fc: field growth_graph: %w", err)
		tl_stats_broadcast_stats_gen.go#L413: 		return fmt.Errorf("unable to encode stats.broadcastStats#396ca5fc: field followers_graph is nil")
		tl_stats_broadcast_stats_gen.go#L416: 		return fmt.Errorf("unable to encode stats.broadcastStats#396ca5fc: field followers_graph: %w", err)
		tl_stats_broadcast_stats_gen.go#L419: 		return fmt.Errorf("unable to encode stats.broadcastStats#396ca5fc: field mute_graph is nil")
		tl_stats_broadcast_stats_gen.go#L422: 		return fmt.Errorf("unable to encode stats.broadcastStats#396ca5fc: field mute_graph: %w", err)
		tl_stats_broadcast_stats_gen.go#L425: 		return fmt.Errorf("unable to encode stats.broadcastStats#396ca5fc: field top_hours_graph is nil")
		tl_stats_broadcast_stats_gen.go#L428: 		return fmt.Errorf("unable to encode stats.broadcastStats#396ca5fc: field top_hours_graph: %w", err)
		tl_stats_broadcast_stats_gen.go#L431: 		return fmt.Errorf("unable to encode stats.broadcastStats#396ca5fc: field interactions_graph is nil")
		tl_stats_broadcast_stats_gen.go#L434: 		return fmt.Errorf("unable to encode stats.broadcastStats#396ca5fc: field interactions_graph: %w", err)
		tl_stats_broadcast_stats_gen.go#L437: 		return fmt.Errorf("unable to encode stats.broadcastStats#396ca5fc: field iv_interactions_graph is nil")
		tl_stats_broadcast_stats_gen.go#L440: 		return fmt.Errorf("unable to encode stats.broadcastStats#396ca5fc: field iv_interactions_graph: %w", err)
		tl_stats_broadcast_stats_gen.go#L443: 		return fmt.Errorf("unable to encode stats.broadcastStats#396ca5fc: field views_by_source_graph is nil")
		tl_stats_broadcast_stats_gen.go#L446: 		return fmt.Errorf("unable to encode stats.broadcastStats#396ca5fc: field views_by_source_graph: %w", err)
		tl_stats_broadcast_stats_gen.go#L449: 		return fmt.Errorf("unable to encode stats.broadcastStats#396ca5fc: field new_followers_by_source_graph is nil")
		tl_stats_broadcast_stats_gen.go#L452: 		return fmt.Errorf("unable to encode stats.broadcastStats#396ca5fc: field new_followers_by_source_graph: %w", err)
		tl_stats_broadcast_stats_gen.go#L455: 		return fmt.Errorf("unable to encode stats.broadcastStats#396ca5fc: field languages_graph is nil")
		tl_stats_broadcast_stats_gen.go#L458: 		return fmt.Errorf("unable to encode stats.broadcastStats#396ca5fc: field languages_graph: %w", err)
		tl_stats_broadcast_stats_gen.go#L461: 		return fmt.Errorf("unable to encode stats.broadcastStats#396ca5fc: field reactions_by_emotion_graph is nil")
		tl_stats_broadcast_stats_gen.go#L464: 		return fmt.Errorf("unable to encode stats.broadcastStats#396ca5fc: field reactions_by_emotion_graph: %w", err)
		tl_stats_broadcast_stats_gen.go#L467: 		return fmt.Errorf("unable to encode stats.broadcastStats#396ca5fc: field story_interactions_graph is nil")
		tl_stats_broadcast_stats_gen.go#L470: 		return fmt.Errorf("unable to encode stats.broadcastStats#396ca5fc: field story_interactions_graph: %w", err)
		tl_stats_broadcast_stats_gen.go#L473: 		return fmt.Errorf("unable to encode stats.broadcastStats#396ca5fc: field story_reactions_by_emotion_graph is nil")
		tl_stats_broadcast_stats_gen.go#L476: 		return fmt.Errorf("unable to encode stats.broadcastStats#396ca5fc: field story_reactions_by_emotion_graph: %w", err)
		tl_stats_broadcast_stats_gen.go#L481: 			return fmt.Errorf("unable to encode stats.broadcastStats#396ca5fc: field recent_posts_interactions element with index %d is nil", idx)
		tl_stats_broadcast_stats_gen.go#L484: 			return fmt.Errorf("unable to encode stats.broadcastStats#396ca5fc: field recent_posts_interactions element with index %d: %w", idx, err)
		tl_stats_broadcast_stats_gen.go#L493: 		return fmt.Errorf("can't decode stats.broadcastStats#396ca5fc to nil")
		tl_stats_broadcast_stats_gen.go#L496: 		return fmt.Errorf("unable to decode stats.broadcastStats#396ca5fc: %w", err)
		tl_stats_broadcast_stats_gen.go#L504: 		return fmt.Errorf("can't decode stats.broadcastStats#396ca5fc to nil")
		tl_stats_broadcast_stats_gen.go#L508: 			return fmt.Errorf("unable to decode stats.broadcastStats#396ca5fc: field period: %w", err)
		tl_stats_broadcast_stats_gen.go#L513: 			return fmt.Errorf("unable to decode stats.broadcastStats#396ca5fc: field followers: %w", err)
		tl_stats_broadcast_stats_gen.go#L518: 			return fmt.Errorf("unable to decode stats.broadcastStats#396ca5fc: field views_per_post: %w", err)
		tl_stats_broadcast_stats_gen.go#L523: 			return fmt.Errorf("unable to decode stats.broadcastStats#396ca5fc: field shares_per_post: %w", err)
		tl_stats_broadcast_stats_gen.go#L528: 			return fmt.Errorf("unable to decode stats.broadcastStats#396ca5fc: field reactions_per_post: %w", err)
		tl_stats_broadcast_stats_gen.go#L533: 			return fmt.Errorf("unable to decode stats.broadcastStats#396ca5fc: field views_per_story: %w", err)
		tl_stats_broadcast_stats_gen.go#L538: 			return fmt.Errorf("unable to decode stats.broadcastStats#396ca5fc: field shares_per_story: %w", err)
		tl_stats_broadcast_stats_gen.go#L543: 			return fmt.Errorf("unable to decode stats.broadcastStats#396ca5fc: field reactions_per_story: %w", err)
		tl_stats_broadcast_stats_gen.go#L548: 			return fmt.Errorf("unable to decode stats.broadcastStats#396ca5fc: field enabled_notifications: %w", err)
		tl_stats_broadcast_stats_gen.go#L554: 			return fmt.Errorf("unable to decode stats.broadcastStats#396ca5fc: field growth_graph: %w", err)
		tl_stats_broadcast_stats_gen.go#L561: 			return fmt.Errorf("unable to decode stats.broadcastStats#396ca5fc: field followers_graph: %w", err)
		tl_stats_broadcast_stats_gen.go#L568: 			return fmt.Errorf("unable to decode stats.broadcastStats#396ca5fc: field mute_graph: %w", err)
		tl_stats_broadcast_stats_gen.go#L575: 			return fmt.Errorf("unable to decode stats.broadcastStats#396ca5fc: field top_hours_graph: %w", err)
		tl_stats_broadcast_stats_gen.go#L582: 			return fmt.Errorf("unable to decode stats.broadcastStats#396ca5fc: field interactions_graph: %w", err)
		tl_stats_broadcast_stats_gen.go#L589: 			return fmt.Errorf("unable to decode stats.broadcastStats#396ca5fc: field iv_interactions_graph: %w", err)
		tl_stats_broadcast_stats_gen.go#L596: 			return fmt.Errorf("unable to decode stats.broadcastStats#396ca5fc: field views_by_source_graph: %w", err)
		tl_stats_broadcast_stats_gen.go#L603: 			return fmt.Errorf("unable to decode stats.broadcastStats#396ca5fc: field new_followers_by_source_graph: %w", err)
		tl_stats_broadcast_stats_gen.go#L610: 			return fmt.Errorf("unable to decode stats.broadcastStats#396ca5fc: field languages_graph: %w", err)
		tl_stats_broadcast_stats_gen.go#L617: 			return fmt.Errorf("unable to decode stats.broadcastStats#396ca5fc: field reactions_by_emotion_graph: %w", err)
		tl_stats_broadcast_stats_gen.go#L624: 			return fmt.Errorf("unable to decode stats.broadcastStats#396ca5fc: field story_interactions_graph: %w", err)
		tl_stats_broadcast_stats_gen.go#L631: 			return fmt.Errorf("unable to decode stats.broadcastStats#396ca5fc: field story_reactions_by_emotion_graph: %w", err)
		tl_stats_broadcast_stats_gen.go#L638: 			return fmt.Errorf("unable to decode stats.broadcastStats#396ca5fc: field recent_posts_interactions: %w", err)
		tl_stats_broadcast_stats_gen.go#L647: 				return fmt.Errorf("unable to decode stats.broadcastStats#396ca5fc: field recent_posts_interactions: %w", err)
		tl_stats_date_range_days_gen.go#L129: 		return fmt.Errorf("can't encode statsDateRangeDays#b637edaf as nil")
		tl_stats_date_range_days_gen.go#L138: 		return fmt.Errorf("can't encode statsDateRangeDays#b637edaf as nil")
		tl_stats_date_range_days_gen.go#L148: 		return fmt.Errorf("can't decode statsDateRangeDays#b637edaf to nil")
		tl_stats_date_range_days_gen.go#L151: 		return fmt.Errorf("unable to decode statsDateRangeDays#b637edaf: %w", err)
		tl_stats_date_range_days_gen.go#L159: 		return fmt.Errorf("can't decode statsDateRangeDays#b637edaf to nil")
		tl_stats_date_range_days_gen.go#L164: 			return fmt.Errorf("unable to decode statsDateRangeDays#b637edaf: field min_date: %w", err)
		tl_stats_date_range_days_gen.go#L171: 			return fmt.Errorf("unable to decode statsDateRangeDays#b637edaf: field max_date: %w", err)
		tl_stats_get_broadcast_stats_gen.go#L145: 		return fmt.Errorf("can't encode stats.getBroadcastStats#ab42441a as nil")
		tl_stats_get_broadcast_stats_gen.go#L154: 		return fmt.Errorf("can't encode stats.getBroadcastStats#ab42441a as nil")
		tl_stats_get_broadcast_stats_gen.go#L158: 		return fmt.Errorf("unable to encode stats.getBroadcastStats#ab42441a: field flags: %w", err)
		tl_stats_get_broadcast_stats_gen.go#L161: 		return fmt.Errorf("unable to encode stats.getBroadcastStats#ab42441a: field channel is nil")
		tl_stats_get_broadcast_stats_gen.go#L164: 		return fmt.Errorf("unable to encode stats.getBroadcastStats#ab42441a: field channel: %w", err)
		tl_stats_get_broadcast_stats_gen.go#L172: 		return fmt.Errorf("can't decode stats.getBroadcastStats#ab42441a to nil")
		tl_stats_get_broadcast_stats_gen.go#L175: 		return fmt.Errorf("unable to decode stats.getBroadcastStats#ab42441a: %w", err)
		tl_stats_get_broadcast_stats_gen.go#L183: 		return fmt.Errorf("can't decode stats.getBroadcastStats#ab42441a to nil")
		tl_stats_get_broadcast_stats_gen.go#L187: 			return fmt.Errorf("unable to decode stats.getBroadcastStats#ab42441a: field flags: %w", err)
		tl_stats_get_broadcast_stats_gen.go#L194: 			return fmt.Errorf("unable to decode stats.getBroadcastStats#ab42441a: field channel: %w", err)
		tl_stats_get_megagroup_stats_gen.go#L148: 		return fmt.Errorf("can't encode stats.getMegagroupStats#dcdf8607 as nil")
		tl_stats_get_megagroup_stats_gen.go#L157: 		return fmt.Errorf("can't encode stats.getMegagroupStats#dcdf8607 as nil")
		tl_stats_get_megagroup_stats_gen.go#L161: 		return fmt.Errorf("unable to encode stats.getMegagroupStats#dcdf8607: field flags: %w", err)
		tl_stats_get_megagroup_stats_gen.go#L164: 		return fmt.Errorf("unable to encode stats.getMegagroupStats#dcdf8607: field channel is nil")
		tl_stats_get_megagroup_stats_gen.go#L167: 		return fmt.Errorf("unable to encode stats.getMegagroupStats#dcdf8607: field channel: %w", err)
		tl_stats_get_megagroup_stats_gen.go#L175: 		return fmt.Errorf("can't decode stats.getMegagroupStats#dcdf8607 to nil")
		tl_stats_get_megagroup_stats_gen.go#L178: 		return fmt.Errorf("unable to decode stats.getMegagroupStats#dcdf8607: %w", err)
		tl_stats_get_megagroup_stats_gen.go#L186: 		return fmt.Errorf("can't decode stats.getMegagroupStats#dcdf8607 to nil")
		tl_stats_get_megagroup_stats_gen.go#L190: 			return fmt.Errorf("unable to decode stats.getMegagroupStats#dcdf8607: field flags: %w", err)
		tl_stats_get_megagroup_stats_gen.go#L197: 			return fmt.Errorf("unable to decode stats.getMegagroupStats#dcdf8607: field channel: %w", err)
		tl_stats_get_message_public_forwards_gen.go#L157: 		return fmt.Errorf("can't encode stats.getMessagePublicForwards#5f150144 as nil")
		tl_stats_get_message_public_forwards_gen.go#L166: 		return fmt.Errorf("can't encode stats.getMessagePublicForwards#5f150144 as nil")
		tl_stats_get_message_public_forwards_gen.go#L169: 		return fmt.Errorf("unable to encode stats.getMessagePublicForwards#5f150144: field channel is nil")
		tl_stats_get_message_public_forwards_gen.go#L172: 		return fmt.Errorf("unable to encode stats.getMessagePublicForwards#5f150144: field channel: %w", err)
		tl_stats_get_message_public_forwards_gen.go#L183: 		return fmt.Errorf("can't decode stats.getMessagePublicForwards#5f150144 to nil")
		tl_stats_get_message_public_forwards_gen.go#L186: 		return fmt.Errorf("unable to decode stats.getMessagePublicForwards#5f150144: %w", err)
		tl_stats_get_message_public_forwards_gen.go#L194: 		return fmt.Errorf("can't decode stats.getMessagePublicForwards#5f150144 to nil")
		tl_stats_get_message_public_forwards_gen.go#L199: 			return fmt.Errorf("unable to decode stats.getMessagePublicForwards#5f150144: field channel: %w", err)
		tl_stats_get_message_public_forwards_gen.go#L206: 			return fmt.Errorf("unable to decode stats.getMessagePublicForwards#5f150144: field msg_id: %w", err)
		tl_stats_get_message_public_forwards_gen.go#L213: 			return fmt.Errorf("unable to decode stats.getMessagePublicForwards#5f150144: field offset: %w", err)
		tl_stats_get_message_public_forwards_gen.go#L220: 			return fmt.Errorf("unable to decode stats.getMessagePublicForwards#5f150144: field limit: %w", err)
		tl_stats_get_message_stats_gen.go#L156: 		return fmt.Errorf("can't encode stats.getMessageStats#b6e0a3f5 as nil")
		tl_stats_get_message_stats_gen.go#L165: 		return fmt.Errorf("can't encode stats.getMessageStats#b6e0a3f5 as nil")
		tl_stats_get_message_stats_gen.go#L169: 		return fmt.Errorf("unable to encode stats.getMessageStats#b6e0a3f5: field flags: %w", err)
		tl_stats_get_message_stats_gen.go#L172: 		return fmt.Errorf("unable to encode stats.getMessageStats#b6e0a3f5: field channel is nil")
		tl_stats_get_message_stats_gen.go#L175: 		return fmt.Errorf("unable to encode stats.getMessageStats#b6e0a3f5: field channel: %w", err)
		tl_stats_get_message_stats_gen.go#L184: 		return fmt.Errorf("can't decode stats.getMessageStats#b6e0a3f5 to nil")
		tl_stats_get_message_stats_gen.go#L187: 		return fmt.Errorf("unable to decode stats.getMessageStats#b6e0a3f5: %w", err)
		tl_stats_get_message_stats_gen.go#L195: 		return fmt.Errorf("can't decode stats.getMessageStats#b6e0a3f5 to nil")
		tl_stats_get_message_stats_gen.go#L199: 			return fmt.Errorf("unable to decode stats.getMessageStats#b6e0a3f5: field flags: %w", err)
		tl_stats_get_message_stats_gen.go#L206: 			return fmt.Errorf("unable to decode stats.getMessageStats#b6e0a3f5: field channel: %w", err)
		tl_stats_get_message_stats_gen.go#L213: 			return fmt.Errorf("unable to decode stats.getMessageStats#b6e0a3f5: field msg_id: %w", err)
		tl_stats_get_story_public_forwards_gen.go#L161: 		return fmt.Errorf("can't encode stats.getStoryPublicForwards#a6437ef6 as nil")
		tl_stats_get_story_public_forwards_gen.go#L170: 		return fmt.Errorf("can't encode stats.getStoryPublicForwards#a6437ef6 as nil")
		tl_stats_get_story_public_forwards_gen.go#L173: 		return fmt.Errorf("unable to encode stats.getStoryPublicForwards#a6437ef6: field peer is nil")
		tl_stats_get_story_public_forwards_gen.go#L176: 		return fmt.Errorf("unable to encode stats.getStoryPublicForwards#a6437ef6: field peer: %w", err)
		tl_stats_get_story_public_forwards_gen.go#L187: 		return fmt.Errorf("can't decode stats.getStoryPublicForwards#a6437ef6 to nil")
		tl_stats_get_story_public_forwards_gen.go#L190: 		return fmt.Errorf("unable to decode stats.getStoryPublicForwards#a6437ef6: %w", err)
		tl_stats_get_story_public_forwards_gen.go#L198: 		return fmt.Errorf("can't decode stats.getStoryPublicForwards#a6437ef6 to nil")
		tl_stats_get_story_public_forwards_gen.go#L203: 			return fmt.Errorf("unable to decode stats.getStoryPublicForwards#a6437ef6: field peer: %w", err)
		tl_stats_get_story_public_forwards_gen.go#L210: 			return fmt.Errorf("unable to decode stats.getStoryPublicForwards#a6437ef6: field id: %w", err)
		tl_stats_get_story_public_forwards_gen.go#L217: 			return fmt.Errorf("unable to decode stats.getStoryPublicForwards#a6437ef6: field offset: %w", err)
		tl_stats_get_story_public_forwards_gen.go#L224: 			return fmt.Errorf("unable to decode stats.getStoryPublicForwards#a6437ef6: field limit: %w", err)
		tl_stats_get_story_stats_gen.go#L157: 		return fmt.Errorf("can't encode stats.getStoryStats#374fef40 as nil")
		tl_stats_get_story_stats_gen.go#L166: 		return fmt.Errorf("can't encode stats.getStoryStats#374fef40 as nil")
		tl_stats_get_story_stats_gen.go#L170: 		return fmt.Errorf("unable to encode stats.getStoryStats#374fef40: field flags: %w", err)
		tl_stats_get_story_stats_gen.go#L173: 		return fmt.Errorf("unable to encode stats.getStoryStats#374fef40: field peer is nil")
		tl_stats_get_story_stats_gen.go#L176: 		return fmt.Errorf("unable to encode stats.getStoryStats#374fef40: field peer: %w", err)
		tl_stats_get_story_stats_gen.go#L185: 		return fmt.Errorf("can't decode stats.getStoryStats#374fef40 to nil")
		tl_stats_get_story_stats_gen.go#L188: 		return fmt.Errorf("unable to decode stats.getStoryStats#374fef40: %w", err)
		tl_stats_get_story_stats_gen.go#L196: 		return fmt.Errorf("can't decode stats.getStoryStats#374fef40 to nil")
		tl_stats_get_story_stats_gen.go#L200: 			return fmt.Errorf("unable to decode stats.getStoryStats#374fef40: field flags: %w", err)
		tl_stats_get_story_stats_gen.go#L207: 			return fmt.Errorf("unable to decode stats.getStoryStats#374fef40: field peer: %w", err)
		tl_stats_get_story_stats_gen.go#L214: 			return fmt.Errorf("unable to decode stats.getStoryStats#374fef40: field id: %w", err)
		tl_stats_graph_gen.go#L125: 		return fmt.Errorf("can't encode statsGraphAsync#4a27eb2d as nil")
		tl_stats_graph_gen.go#L134: 		return fmt.Errorf("can't encode statsGraphAsync#4a27eb2d as nil")
		tl_stats_graph_gen.go#L143: 		return fmt.Errorf("can't decode statsGraphAsync#4a27eb2d to nil")
		tl_stats_graph_gen.go#L146: 		return fmt.Errorf("unable to decode statsGraphAsync#4a27eb2d: %w", err)
		tl_stats_graph_gen.go#L154: 		return fmt.Errorf("can't decode statsGraphAsync#4a27eb2d to nil")
		tl_stats_graph_gen.go#L159: 			return fmt.Errorf("unable to decode statsGraphAsync#4a27eb2d: field token: %w", err)
		tl_stats_graph_gen.go#L263: 		return fmt.Errorf("can't encode statsGraphError#bedc9822 as nil")
		tl_stats_graph_gen.go#L272: 		return fmt.Errorf("can't encode statsGraphError#bedc9822 as nil")
		tl_stats_graph_gen.go#L281: 		return fmt.Errorf("can't decode statsGraphError#bedc9822 to nil")
		tl_stats_graph_gen.go#L284: 		return fmt.Errorf("unable to decode statsGraphError#bedc9822: %w", err)
		tl_stats_graph_gen.go#L292: 		return fmt.Errorf("can't decode statsGraphError#bedc9822 to nil")
		tl_stats_graph_gen.go#L297: 			return fmt.Errorf("unable to decode statsGraphError#bedc9822: field error: %w", err)
		tl_stats_graph_gen.go#L433: 		return fmt.Errorf("can't encode statsGraph#8ea464b6 as nil")
		tl_stats_graph_gen.go#L442: 		return fmt.Errorf("can't encode statsGraph#8ea464b6 as nil")
		tl_stats_graph_gen.go#L446: 		return fmt.Errorf("unable to encode statsGraph#8ea464b6: field flags: %w", err)
		tl_stats_graph_gen.go#L449: 		return fmt.Errorf("unable to encode statsGraph#8ea464b6: field json: %w", err)
		tl_stats_graph_gen.go#L460: 		return fmt.Errorf("can't decode statsGraph#8ea464b6 to nil")
		tl_stats_graph_gen.go#L463: 		return fmt.Errorf("unable to decode statsGraph#8ea464b6: %w", err)
		tl_stats_graph_gen.go#L471: 		return fmt.Errorf("can't decode statsGraph#8ea464b6 to nil")
		tl_stats_graph_gen.go#L475: 			return fmt.Errorf("unable to decode statsGraph#8ea464b6: field flags: %w", err)
		tl_stats_graph_gen.go#L480: 			return fmt.Errorf("unable to decode statsGraph#8ea464b6: field json: %w", err)
		tl_stats_graph_gen.go#L486: 			return fmt.Errorf("unable to decode statsGraph#8ea464b6: field zoom_token: %w", err)
		tl_stats_graph_gen.go#L568: 			return nil, fmt.Errorf("unable to decode StatsGraphClass: %w", err)
		tl_stats_graph_gen.go#L575: 			return nil, fmt.Errorf("unable to decode StatsGraphClass: %w", err)
		tl_stats_graph_gen.go#L582: 			return nil, fmt.Errorf("unable to decode StatsGraphClass: %w", err)
		tl_stats_graph_gen.go#L586: 		return nil, fmt.Errorf("unable to decode StatsGraphClass: %w", bin.NewUnexpectedID(id))
		tl_stats_graph_gen.go#L598: 		return fmt.Errorf("unable to decode StatsGraphBox to nil")
		tl_stats_graph_gen.go#L602: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_stats_graph_gen.go#L611: 		return fmt.Errorf("unable to encode StatsGraphClass as nil")
		tl_stats_group_top_admin_gen.go#L157: 		return fmt.Errorf("can't encode statsGroupTopAdmin#d7584c87 as nil")
		tl_stats_group_top_admin_gen.go#L166: 		return fmt.Errorf("can't encode statsGroupTopAdmin#d7584c87 as nil")
		tl_stats_group_top_admin_gen.go#L178: 		return fmt.Errorf("can't decode statsGroupTopAdmin#d7584c87 to nil")
		tl_stats_group_top_admin_gen.go#L181: 		return fmt.Errorf("unable to decode statsGroupTopAdmin#d7584c87: %w", err)
		tl_stats_group_top_admin_gen.go#L189: 		return fmt.Errorf("can't decode statsGroupTopAdmin#d7584c87 to nil")
		tl_stats_group_top_admin_gen.go#L194: 			return fmt.Errorf("unable to decode statsGroupTopAdmin#d7584c87: field user_id: %w", err)
		tl_stats_group_top_admin_gen.go#L201: 			return fmt.Errorf("unable to decode statsGroupTopAdmin#d7584c87: field deleted: %w", err)
		tl_stats_group_top_admin_gen.go#L208: 			return fmt.Errorf("unable to decode statsGroupTopAdmin#d7584c87: field kicked: %w", err)
		tl_stats_group_top_admin_gen.go#L215: 			return fmt.Errorf("unable to decode statsGroupTopAdmin#d7584c87: field banned: %w", err)
		tl_stats_group_top_inviter_gen.go#L129: 		return fmt.Errorf("can't encode statsGroupTopInviter#535f779d as nil")
		tl_stats_group_top_inviter_gen.go#L138: 		return fmt.Errorf("can't encode statsGroupTopInviter#535f779d as nil")
		tl_stats_group_top_inviter_gen.go#L148: 		return fmt.Errorf("can't decode statsGroupTopInviter#535f779d to nil")
		tl_stats_group_top_inviter_gen.go#L151: 		return fmt.Errorf("unable to decode statsGroupTopInviter#535f779d: %w", err)
		tl_stats_group_top_inviter_gen.go#L159: 		return fmt.Errorf("can't decode statsGroupTopInviter#535f779d to nil")
		tl_stats_group_top_inviter_gen.go#L164: 			return fmt.Errorf("unable to decode statsGroupTopInviter#535f779d: field user_id: %w", err)
		tl_stats_group_top_inviter_gen.go#L171: 			return fmt.Errorf("unable to decode statsGroupTopInviter#535f779d: field invitations: %w", err)
		tl_stats_group_top_poster_gen.go#L140: 		return fmt.Errorf("can't encode statsGroupTopPoster#9d04af9b as nil")
		tl_stats_group_top_poster_gen.go#L149: 		return fmt.Errorf("can't encode statsGroupTopPoster#9d04af9b as nil")
		tl_stats_group_top_poster_gen.go#L160: 		return fmt.Errorf("can't decode statsGroupTopPoster#9d04af9b to nil")
		tl_stats_group_top_poster_gen.go#L163: 		return fmt.Errorf("unable to decode statsGroupTopPoster#9d04af9b: %w", err)
		tl_stats_group_top_poster_gen.go#L171: 		return fmt.Errorf("can't decode statsGroupTopPoster#9d04af9b to nil")
		tl_stats_group_top_poster_gen.go#L176: 			return fmt.Errorf("unable to decode statsGroupTopPoster#9d04af9b: field user_id: %w", err)
		tl_stats_group_top_poster_gen.go#L183: 			return fmt.Errorf("unable to decode statsGroupTopPoster#9d04af9b: field messages: %w", err)
		tl_stats_group_top_poster_gen.go#L190: 			return fmt.Errorf("unable to decode statsGroupTopPoster#9d04af9b: field avg_chars: %w", err)
		tl_stats_load_async_graph_gen.go#L153: 		return fmt.Errorf("can't encode stats.loadAsyncGraph#621d5fa0 as nil")
		tl_stats_load_async_graph_gen.go#L162: 		return fmt.Errorf("can't encode stats.loadAsyncGraph#621d5fa0 as nil")
		tl_stats_load_async_graph_gen.go#L166: 		return fmt.Errorf("unable to encode stats.loadAsyncGraph#621d5fa0: field flags: %w", err)
		tl_stats_load_async_graph_gen.go#L178: 		return fmt.Errorf("can't decode stats.loadAsyncGraph#621d5fa0 to nil")
		tl_stats_load_async_graph_gen.go#L181: 		return fmt.Errorf("unable to decode stats.loadAsyncGraph#621d5fa0: %w", err)
		tl_stats_load_async_graph_gen.go#L189: 		return fmt.Errorf("can't decode stats.loadAsyncGraph#621d5fa0 to nil")
		tl_stats_load_async_graph_gen.go#L193: 			return fmt.Errorf("unable to decode stats.loadAsyncGraph#621d5fa0: field flags: %w", err)
		tl_stats_load_async_graph_gen.go#L199: 			return fmt.Errorf("unable to decode stats.loadAsyncGraph#621d5fa0: field token: %w", err)
		tl_stats_load_async_graph_gen.go#L206: 			return fmt.Errorf("unable to decode stats.loadAsyncGraph#621d5fa0: field x: %w", err)
		tl_stats_megagroup_stats_gen.go#L294: 		return fmt.Errorf("can't encode stats.megagroupStats#ef7ff916 as nil")
		tl_stats_megagroup_stats_gen.go#L303: 		return fmt.Errorf("can't encode stats.megagroupStats#ef7ff916 as nil")
		tl_stats_megagroup_stats_gen.go#L306: 		return fmt.Errorf("unable to encode stats.megagroupStats#ef7ff916: field period: %w", err)
		tl_stats_megagroup_stats_gen.go#L309: 		return fmt.Errorf("unable to encode stats.megagroupStats#ef7ff916: field members: %w", err)
		tl_stats_megagroup_stats_gen.go#L312: 		return fmt.Errorf("unable to encode stats.megagroupStats#ef7ff916: field messages: %w", err)
		tl_stats_megagroup_stats_gen.go#L315: 		return fmt.Errorf("unable to encode stats.megagroupStats#ef7ff916: field viewers: %w", err)
		tl_stats_megagroup_stats_gen.go#L318: 		return fmt.Errorf("unable to encode stats.megagroupStats#ef7ff916: field posters: %w", err)
		tl_stats_megagroup_stats_gen.go#L321: 		return fmt.Errorf("unable to encode stats.megagroupStats#ef7ff916: field growth_graph is nil")
		tl_stats_megagroup_stats_gen.go#L324: 		return fmt.Errorf("unable to encode stats.megagroupStats#ef7ff916: field growth_graph: %w", err)
		tl_stats_megagroup_stats_gen.go#L327: 		return fmt.Errorf("unable to encode stats.megagroupStats#ef7ff916: field members_graph is nil")
		tl_stats_megagroup_stats_gen.go#L330: 		return fmt.Errorf("unable to encode stats.megagroupStats#ef7ff916: field members_graph: %w", err)
		tl_stats_megagroup_stats_gen.go#L333: 		return fmt.Errorf("unable to encode stats.megagroupStats#ef7ff916: field new_members_by_source_graph is nil")
		tl_stats_megagroup_stats_gen.go#L336: 		return fmt.Errorf("unable to encode stats.megagroupStats#ef7ff916: field new_members_by_source_graph: %w", err)
		tl_stats_megagroup_stats_gen.go#L339: 		return fmt.Errorf("unable to encode stats.megagroupStats#ef7ff916: field languages_graph is nil")
		tl_stats_megagroup_stats_gen.go#L342: 		return fmt.Errorf("unable to encode stats.megagroupStats#ef7ff916: field languages_graph: %w", err)
		tl_stats_megagroup_stats_gen.go#L345: 		return fmt.Errorf("unable to encode stats.megagroupStats#ef7ff916: field messages_graph is nil")
		tl_stats_megagroup_stats_gen.go#L348: 		return fmt.Errorf("unable to encode stats.megagroupStats#ef7ff916: field messages_graph: %w", err)
		tl_stats_megagroup_stats_gen.go#L351: 		return fmt.Errorf("unable to encode stats.megagroupStats#ef7ff916: field actions_graph is nil")
		tl_stats_megagroup_stats_gen.go#L354: 		return fmt.Errorf("unable to encode stats.megagroupStats#ef7ff916: field actions_graph: %w", err)
		tl_stats_megagroup_stats_gen.go#L357: 		return fmt.Errorf("unable to encode stats.megagroupStats#ef7ff916: field top_hours_graph is nil")
		tl_stats_megagroup_stats_gen.go#L360: 		return fmt.Errorf("unable to encode stats.megagroupStats#ef7ff916: field top_hours_graph: %w", err)
		tl_stats_megagroup_stats_gen.go#L363: 		return fmt.Errorf("unable to encode stats.megagroupStats#ef7ff916: field weekdays_graph is nil")
		tl_stats_megagroup_stats_gen.go#L366: 		return fmt.Errorf("unable to encode stats.megagroupStats#ef7ff916: field weekdays_graph: %w", err)
		tl_stats_megagroup_stats_gen.go#L371: 			return fmt.Errorf("unable to encode stats.megagroupStats#ef7ff916: field top_posters element with index %d: %w", idx, err)
		tl_stats_megagroup_stats_gen.go#L377: 			return fmt.Errorf("unable to encode stats.megagroupStats#ef7ff916: field top_admins element with index %d: %w", idx, err)
		tl_stats_megagroup_stats_gen.go#L383: 			return fmt.Errorf("unable to encode stats.megagroupStats#ef7ff916: field top_inviters element with index %d: %w", idx, err)
		tl_stats_megagroup_stats_gen.go#L389: 			return fmt.Errorf("unable to encode stats.megagroupStats#ef7ff916: field users element with index %d is nil", idx)
		tl_stats_megagroup_stats_gen.go#L392: 			return fmt.Errorf("unable to encode stats.megagroupStats#ef7ff916: field users element with index %d: %w", idx, err)
		tl_stats_megagroup_stats_gen.go#L401: 		return fmt.Errorf("can't decode stats.megagroupStats#ef7ff916 to nil")
		tl_stats_megagroup_stats_gen.go#L404: 		return fmt.Errorf("unable to decode stats.megagroupStats#ef7ff916: %w", err)
		tl_stats_megagroup_stats_gen.go#L412: 		return fmt.Errorf("can't decode stats.megagroupStats#ef7ff916 to nil")
		tl_stats_megagroup_stats_gen.go#L416: 			return fmt.Errorf("unable to decode stats.megagroupStats#ef7ff916: field period: %w", err)
		tl_stats_megagroup_stats_gen.go#L421: 			return fmt.Errorf("unable to decode stats.megagroupStats#ef7ff916: field members: %w", err)
		tl_stats_megagroup_stats_gen.go#L426: 			return fmt.Errorf("unable to decode stats.megagroupStats#ef7ff916: field messages: %w", err)
		tl_stats_megagroup_stats_gen.go#L431: 			return fmt.Errorf("unable to decode stats.megagroupStats#ef7ff916: field viewers: %w", err)
		tl_stats_megagroup_stats_gen.go#L436: 			return fmt.Errorf("unable to decode stats.megagroupStats#ef7ff916: field posters: %w", err)
		tl_stats_megagroup_stats_gen.go#L442: 			return fmt.Errorf("unable to decode stats.megagroupStats#ef7ff916: field growth_graph: %w", err)
		tl_stats_megagroup_stats_gen.go#L449: 			return fmt.Errorf("unable to decode stats.megagroupStats#ef7ff916: field members_graph: %w", err)
		tl_stats_megagroup_stats_gen.go#L456: 			return fmt.Errorf("unable to decode stats.megagroupStats#ef7ff916: field new_members_by_source_graph: %w", err)
		tl_stats_megagroup_stats_gen.go#L463: 			return fmt.Errorf("unable to decode stats.megagroupStats#ef7ff916: field languages_graph: %w", err)
		tl_stats_megagroup_stats_gen.go#L470: 			return fmt.Errorf("unable to decode stats.megagroupStats#ef7ff916: field messages_graph: %w", err)
		tl_stats_megagroup_stats_gen.go#L477: 			return fmt.Errorf("unable to decode stats.megagroupStats#ef7ff916: field actions_graph: %w", err)
		tl_stats_megagroup_stats_gen.go#L484: 			return fmt.Errorf("unable to decode stats.megagroupStats#ef7ff916: field top_hours_graph: %w", err)
		tl_stats_megagroup_stats_gen.go#L491: 			return fmt.Errorf("unable to decode stats.megagroupStats#ef7ff916: field weekdays_graph: %w", err)
		tl_stats_megagroup_stats_gen.go#L498: 			return fmt.Errorf("unable to decode stats.megagroupStats#ef7ff916: field top_posters: %w", err)
		tl_stats_megagroup_stats_gen.go#L507: 				return fmt.Errorf("unable to decode stats.megagroupStats#ef7ff916: field top_posters: %w", err)
		tl_stats_megagroup_stats_gen.go#L515: 			return fmt.Errorf("unable to decode stats.megagroupStats#ef7ff916: field top_admins: %w", err)
		tl_stats_megagroup_stats_gen.go#L524: 				return fmt.Errorf("unable to decode stats.megagroupStats#ef7ff916: field top_admins: %w", err)
		tl_stats_megagroup_stats_gen.go#L532: 			return fmt.Errorf("unable to decode stats.megagroupStats#ef7ff916: field top_inviters: %w", err)
		tl_stats_megagroup_stats_gen.go#L541: 				return fmt.Errorf("unable to decode stats.megagroupStats#ef7ff916: field top_inviters: %w", err)
		tl_stats_megagroup_stats_gen.go#L549: 			return fmt.Errorf("unable to decode stats.megagroupStats#ef7ff916: field users: %w", err)
		tl_stats_megagroup_stats_gen.go#L558: 				return fmt.Errorf("unable to decode stats.megagroupStats#ef7ff916: field users: %w", err)
		tl_stats_message_stats_gen.go#L126: 		return fmt.Errorf("can't encode stats.messageStats#7fe91c14 as nil")
		tl_stats_message_stats_gen.go#L135: 		return fmt.Errorf("can't encode stats.messageStats#7fe91c14 as nil")
		tl_stats_message_stats_gen.go#L138: 		return fmt.Errorf("unable to encode stats.messageStats#7fe91c14: field views_graph is nil")
		tl_stats_message_stats_gen.go#L141: 		return fmt.Errorf("unable to encode stats.messageStats#7fe91c14: field views_graph: %w", err)
		tl_stats_message_stats_gen.go#L144: 		return fmt.Errorf("unable to encode stats.messageStats#7fe91c14: field reactions_by_emotion_graph is nil")
		tl_stats_message_stats_gen.go#L147: 		return fmt.Errorf("unable to encode stats.messageStats#7fe91c14: field reactions_by_emotion_graph: %w", err)
		tl_stats_message_stats_gen.go#L155: 		return fmt.Errorf("can't decode stats.messageStats#7fe91c14 to nil")
		tl_stats_message_stats_gen.go#L158: 		return fmt.Errorf("unable to decode stats.messageStats#7fe91c14: %w", err)
		tl_stats_message_stats_gen.go#L166: 		return fmt.Errorf("can't decode stats.messageStats#7fe91c14 to nil")
		tl_stats_message_stats_gen.go#L171: 			return fmt.Errorf("unable to decode stats.messageStats#7fe91c14: field views_graph: %w", err)
		tl_stats_message_stats_gen.go#L178: 			return fmt.Errorf("unable to decode stats.messageStats#7fe91c14: field reactions_by_emotion_graph: %w", err)
		tl_stats_percent_value_gen.go#L130: 		return fmt.Errorf("can't encode statsPercentValue#cbce2fe0 as nil")
		tl_stats_percent_value_gen.go#L139: 		return fmt.Errorf("can't encode statsPercentValue#cbce2fe0 as nil")
		tl_stats_percent_value_gen.go#L149: 		return fmt.Errorf("can't decode statsPercentValue#cbce2fe0 to nil")
		tl_stats_percent_value_gen.go#L152: 		return fmt.Errorf("unable to decode statsPercentValue#cbce2fe0: %w", err)
		tl_stats_percent_value_gen.go#L160: 		return fmt.Errorf("can't decode statsPercentValue#cbce2fe0 to nil")
		tl_stats_percent_value_gen.go#L165: 			return fmt.Errorf("unable to decode statsPercentValue#cbce2fe0: field part: %w", err)
		tl_stats_percent_value_gen.go#L172: 			return fmt.Errorf("unable to decode statsPercentValue#cbce2fe0: field total: %w", err)
		tl_stats_public_forwards_gen.go#L187: 		return fmt.Errorf("can't encode stats.publicForwards#93037e20 as nil")
		tl_stats_public_forwards_gen.go#L196: 		return fmt.Errorf("can't encode stats.publicForwards#93037e20 as nil")
		tl_stats_public_forwards_gen.go#L200: 		return fmt.Errorf("unable to encode stats.publicForwards#93037e20: field flags: %w", err)
		tl_stats_public_forwards_gen.go#L206: 			return fmt.Errorf("unable to encode stats.publicForwards#93037e20: field forwards element with index %d is nil", idx)
		tl_stats_public_forwards_gen.go#L209: 			return fmt.Errorf("unable to encode stats.publicForwards#93037e20: field forwards element with index %d: %w", idx, err)
		tl_stats_public_forwards_gen.go#L218: 			return fmt.Errorf("unable to encode stats.publicForwards#93037e20: field chats element with index %d is nil", idx)
		tl_stats_public_forwards_gen.go#L221: 			return fmt.Errorf("unable to encode stats.publicForwards#93037e20: field chats element with index %d: %w", idx, err)
		tl_stats_public_forwards_gen.go#L227: 			return fmt.Errorf("unable to encode stats.publicForwards#93037e20: field users element with index %d is nil", idx)
		tl_stats_public_forwards_gen.go#L230: 			return fmt.Errorf("unable to encode stats.publicForwards#93037e20: field users element with index %d: %w", idx, err)
		tl_stats_public_forwards_gen.go#L239: 		return fmt.Errorf("can't decode stats.publicForwards#93037e20 to nil")
		tl_stats_public_forwards_gen.go#L242: 		return fmt.Errorf("unable to decode stats.publicForwards#93037e20: %w", err)
		tl_stats_public_forwards_gen.go#L250: 		return fmt.Errorf("can't decode stats.publicForwards#93037e20 to nil")
		tl_stats_public_forwards_gen.go#L254: 			return fmt.Errorf("unable to decode stats.publicForwards#93037e20: field flags: %w", err)
		tl_stats_public_forwards_gen.go#L260: 			return fmt.Errorf("unable to decode stats.publicForwards#93037e20: field count: %w", err)
		tl_stats_public_forwards_gen.go#L267: 			return fmt.Errorf("unable to decode stats.publicForwards#93037e20: field forwards: %w", err)
		tl_stats_public_forwards_gen.go#L276: 				return fmt.Errorf("unable to decode stats.publicForwards#93037e20: field forwards: %w", err)
		tl_stats_public_forwards_gen.go#L284: 			return fmt.Errorf("unable to decode stats.publicForwards#93037e20: field next_offset: %w", err)
		tl_stats_public_forwards_gen.go#L291: 			return fmt.Errorf("unable to decode stats.publicForwards#93037e20: field chats: %w", err)
		tl_stats_public_forwards_gen.go#L300: 				return fmt.Errorf("unable to decode stats.publicForwards#93037e20: field chats: %w", err)
		tl_stats_public_forwards_gen.go#L308: 			return fmt.Errorf("unable to decode stats.publicForwards#93037e20: field users: %w", err)
		tl_stats_public_forwards_gen.go#L317: 				return fmt.Errorf("unable to decode stats.publicForwards#93037e20: field users: %w", err)
		tl_stats_story_stats_gen.go#L131: 		return fmt.Errorf("can't encode stats.storyStats#50cd067c as nil")
		tl_stats_story_stats_gen.go#L140: 		return fmt.Errorf("can't encode stats.storyStats#50cd067c as nil")
		tl_stats_story_stats_gen.go#L143: 		return fmt.Errorf("unable to encode stats.storyStats#50cd067c: field views_graph is nil")
		tl_stats_story_stats_gen.go#L146: 		return fmt.Errorf("unable to encode stats.storyStats#50cd067c: field views_graph: %w", err)
		tl_stats_story_stats_gen.go#L149: 		return fmt.Errorf("unable to encode stats.storyStats#50cd067c: field reactions_by_emotion_graph is nil")
		tl_stats_story_stats_gen.go#L152: 		return fmt.Errorf("unable to encode stats.storyStats#50cd067c: field reactions_by_emotion_graph: %w", err)
		tl_stats_story_stats_gen.go#L160: 		return fmt.Errorf("can't decode stats.storyStats#50cd067c to nil")
		tl_stats_story_stats_gen.go#L163: 		return fmt.Errorf("unable to decode stats.storyStats#50cd067c: %w", err)
		tl_stats_story_stats_gen.go#L171: 		return fmt.Errorf("can't decode stats.storyStats#50cd067c to nil")
		tl_stats_story_stats_gen.go#L176: 			return fmt.Errorf("unable to decode stats.storyStats#50cd067c: field views_graph: %w", err)
		tl_stats_story_stats_gen.go#L183: 			return fmt.Errorf("unable to decode stats.storyStats#50cd067c: field reactions_by_emotion_graph: %w", err)
		tl_stats_url_gen.go#L115: 		return fmt.Errorf("can't encode statsURL#47a971e0 as nil")
		tl_stats_url_gen.go#L124: 		return fmt.Errorf("can't encode statsURL#47a971e0 as nil")
		tl_stats_url_gen.go#L133: 		return fmt.Errorf("can't decode statsURL#47a971e0 to nil")
		tl_stats_url_gen.go#L136: 		return fmt.Errorf("unable to decode statsURL#47a971e0: %w", err)
		tl_stats_url_gen.go#L144: 		return fmt.Errorf("can't decode statsURL#47a971e0 to nil")
		tl_stats_url_gen.go#L149: 			return fmt.Errorf("unable to decode statsURL#47a971e0: field url: %w", err)
		tl_sticker_keyword_gen.go#L126: 		return fmt.Errorf("can't encode stickerKeyword#fcfeb29c as nil")
		tl_sticker_keyword_gen.go#L135: 		return fmt.Errorf("can't encode stickerKeyword#fcfeb29c as nil")
		tl_sticker_keyword_gen.go#L148: 		return fmt.Errorf("can't decode stickerKeyword#fcfeb29c to nil")
		tl_sticker_keyword_gen.go#L151: 		return fmt.Errorf("unable to decode stickerKeyword#fcfeb29c: %w", err)
		tl_sticker_keyword_gen.go#L159: 		return fmt.Errorf("can't decode stickerKeyword#fcfeb29c to nil")
		tl_sticker_keyword_gen.go#L164: 			return fmt.Errorf("unable to decode stickerKeyword#fcfeb29c: field document_id: %w", err)
		tl_sticker_keyword_gen.go#L171: 			return fmt.Errorf("unable to decode stickerKeyword#fcfeb29c: field keyword: %w", err)
		tl_sticker_keyword_gen.go#L180: 				return fmt.Errorf("unable to decode stickerKeyword#fcfeb29c: field keyword: %w", err)
		tl_sticker_pack_gen.go#L131: 		return fmt.Errorf("can't encode stickerPack#12b299d4 as nil")
		tl_sticker_pack_gen.go#L140: 		return fmt.Errorf("can't encode stickerPack#12b299d4 as nil")
		tl_sticker_pack_gen.go#L153: 		return fmt.Errorf("can't decode stickerPack#12b299d4 to nil")
		tl_sticker_pack_gen.go#L156: 		return fmt.Errorf("unable to decode stickerPack#12b299d4: %w", err)
		tl_sticker_pack_gen.go#L164: 		return fmt.Errorf("can't decode stickerPack#12b299d4 to nil")
		tl_sticker_pack_gen.go#L169: 			return fmt.Errorf("unable to decode stickerPack#12b299d4: field emoticon: %w", err)
		tl_sticker_pack_gen.go#L176: 			return fmt.Errorf("unable to decode stickerPack#12b299d4: field documents: %w", err)
		tl_sticker_pack_gen.go#L185: 				return fmt.Errorf("unable to decode stickerPack#12b299d4: field documents: %w", err)
		tl_sticker_set_covered_class_vector_gen.go#L112: 		return fmt.Errorf("can't encode Vector<StickerSetCovered> as nil")
		tl_sticker_set_covered_class_vector_gen.go#L121: 		return fmt.Errorf("can't encode Vector<StickerSetCovered> as nil")
		tl_sticker_set_covered_class_vector_gen.go#L126: 			return fmt.Errorf("unable to encode Vector<StickerSetCovered>: field Elems element with index %d is nil", idx)
		tl_sticker_set_covered_class_vector_gen.go#L129: 			return fmt.Errorf("unable to encode Vector<StickerSetCovered>: field Elems element with index %d: %w", idx, err)
		tl_sticker_set_covered_class_vector_gen.go#L138: 		return fmt.Errorf("can't decode Vector<StickerSetCovered> to nil")
		tl_sticker_set_covered_class_vector_gen.go#L147: 		return fmt.Errorf("can't decode Vector<StickerSetCovered> to nil")
		tl_sticker_set_covered_class_vector_gen.go#L152: 			return fmt.Errorf("unable to decode Vector<StickerSetCovered>: field Elems: %w", err)
		tl_sticker_set_covered_class_vector_gen.go#L161: 				return fmt.Errorf("unable to decode Vector<StickerSetCovered>: field Elems: %w", err)
		tl_sticker_set_covered_gen.go#L131: 		return fmt.Errorf("can't encode stickerSetCovered#6410a5d2 as nil")
		tl_sticker_set_covered_gen.go#L140: 		return fmt.Errorf("can't encode stickerSetCovered#6410a5d2 as nil")
		tl_sticker_set_covered_gen.go#L143: 		return fmt.Errorf("unable to encode stickerSetCovered#6410a5d2: field set: %w", err)
		tl_sticker_set_covered_gen.go#L146: 		return fmt.Errorf("unable to encode stickerSetCovered#6410a5d2: field cover is nil")
		tl_sticker_set_covered_gen.go#L149: 		return fmt.Errorf("unable to encode stickerSetCovered#6410a5d2: field cover: %w", err)
		tl_sticker_set_covered_gen.go#L157: 		return fmt.Errorf("can't decode stickerSetCovered#6410a5d2 to nil")
		tl_sticker_set_covered_gen.go#L160: 		return fmt.Errorf("unable to decode stickerSetCovered#6410a5d2: %w", err)
		tl_sticker_set_covered_gen.go#L168: 		return fmt.Errorf("can't decode stickerSetCovered#6410a5d2 to nil")
		tl_sticker_set_covered_gen.go#L172: 			return fmt.Errorf("unable to decode stickerSetCovered#6410a5d2: field set: %w", err)
		tl_sticker_set_covered_gen.go#L178: 			return fmt.Errorf("unable to decode stickerSetCovered#6410a5d2: field cover: %w", err)
		tl_sticker_set_covered_gen.go#L298: 		return fmt.Errorf("can't encode stickerSetMultiCovered#3407e51b as nil")
		tl_sticker_set_covered_gen.go#L307: 		return fmt.Errorf("can't encode stickerSetMultiCovered#3407e51b as nil")
		tl_sticker_set_covered_gen.go#L310: 		return fmt.Errorf("unable to encode stickerSetMultiCovered#3407e51b: field set: %w", err)
		tl_sticker_set_covered_gen.go#L315: 			return fmt.Errorf("unable to encode stickerSetMultiCovered#3407e51b: field covers element with index %d is nil", idx)
		tl_sticker_set_covered_gen.go#L318: 			return fmt.Errorf("unable to encode stickerSetMultiCovered#3407e51b: field covers element with index %d: %w", idx, err)
		tl_sticker_set_covered_gen.go#L327: 		return fmt.Errorf("can't decode stickerSetMultiCovered#3407e51b to nil")
		tl_sticker_set_covered_gen.go#L330: 		return fmt.Errorf("unable to decode stickerSetMultiCovered#3407e51b: %w", err)
		tl_sticker_set_covered_gen.go#L338: 		return fmt.Errorf("can't decode stickerSetMultiCovered#3407e51b to nil")
		tl_sticker_set_covered_gen.go#L342: 			return fmt.Errorf("unable to decode stickerSetMultiCovered#3407e51b: field set: %w", err)
		tl_sticker_set_covered_gen.go#L348: 			return fmt.Errorf("unable to decode stickerSetMultiCovered#3407e51b: field covers: %w", err)
		tl_sticker_set_covered_gen.go#L357: 				return fmt.Errorf("unable to decode stickerSetMultiCovered#3407e51b: field covers: %w", err)
		tl_sticker_set_covered_gen.go#L511: 		return fmt.Errorf("can't encode stickerSetFullCovered#40d13c0e as nil")
		tl_sticker_set_covered_gen.go#L520: 		return fmt.Errorf("can't encode stickerSetFullCovered#40d13c0e as nil")
		tl_sticker_set_covered_gen.go#L523: 		return fmt.Errorf("unable to encode stickerSetFullCovered#40d13c0e: field set: %w", err)
		tl_sticker_set_covered_gen.go#L528: 			return fmt.Errorf("unable to encode stickerSetFullCovered#40d13c0e: field packs element with index %d: %w", idx, err)
		tl_sticker_set_covered_gen.go#L534: 			return fmt.Errorf("unable to encode stickerSetFullCovered#40d13c0e: field keywords element with index %d: %w", idx, err)
		tl_sticker_set_covered_gen.go#L540: 			return fmt.Errorf("unable to encode stickerSetFullCovered#40d13c0e: field documents element with index %d is nil", idx)
		tl_sticker_set_covered_gen.go#L543: 			return fmt.Errorf("unable to encode stickerSetFullCovered#40d13c0e: field documents element with index %d: %w", idx, err)
		tl_sticker_set_covered_gen.go#L552: 		return fmt.Errorf("can't decode stickerSetFullCovered#40d13c0e to nil")
		tl_sticker_set_covered_gen.go#L555: 		return fmt.Errorf("unable to decode stickerSetFullCovered#40d13c0e: %w", err)
		tl_sticker_set_covered_gen.go#L563: 		return fmt.Errorf("can't decode stickerSetFullCovered#40d13c0e to nil")
		tl_sticker_set_covered_gen.go#L567: 			return fmt.Errorf("unable to decode stickerSetFullCovered#40d13c0e: field set: %w", err)
		tl_sticker_set_covered_gen.go#L573: 			return fmt.Errorf("unable to decode stickerSetFullCovered#40d13c0e: field packs: %w", err)
		tl_sticker_set_covered_gen.go#L582: 				return fmt.Errorf("unable to decode stickerSetFullCovered#40d13c0e: field packs: %w", err)
		tl_sticker_set_covered_gen.go#L590: 			return fmt.Errorf("unable to decode stickerSetFullCovered#40d13c0e: field keywords: %w", err)
		tl_sticker_set_covered_gen.go#L599: 				return fmt.Errorf("unable to decode stickerSetFullCovered#40d13c0e: field keywords: %w", err)
		tl_sticker_set_covered_gen.go#L607: 			return fmt.Errorf("unable to decode stickerSetFullCovered#40d13c0e: field documents: %w", err)
		tl_sticker_set_covered_gen.go#L616: 				return fmt.Errorf("unable to decode stickerSetFullCovered#40d13c0e: field documents: %w", err)
		tl_sticker_set_covered_gen.go#L747: 		return fmt.Errorf("can't encode stickerSetNoCovered#77b15d1c as nil")
		tl_sticker_set_covered_gen.go#L756: 		return fmt.Errorf("can't encode stickerSetNoCovered#77b15d1c as nil")
		tl_sticker_set_covered_gen.go#L759: 		return fmt.Errorf("unable to encode stickerSetNoCovered#77b15d1c: field set: %w", err)
		tl_sticker_set_covered_gen.go#L767: 		return fmt.Errorf("can't decode stickerSetNoCovered#77b15d1c to nil")
		tl_sticker_set_covered_gen.go#L770: 		return fmt.Errorf("unable to decode stickerSetNoCovered#77b15d1c: %w", err)
		tl_sticker_set_covered_gen.go#L778: 		return fmt.Errorf("can't decode stickerSetNoCovered#77b15d1c to nil")
		tl_sticker_set_covered_gen.go#L782: 			return fmt.Errorf("unable to decode stickerSetNoCovered#77b15d1c: field set: %w", err)
		tl_sticker_set_covered_gen.go#L849: 			return nil, fmt.Errorf("unable to decode StickerSetCoveredClass: %w", err)
		tl_sticker_set_covered_gen.go#L856: 			return nil, fmt.Errorf("unable to decode StickerSetCoveredClass: %w", err)
		tl_sticker_set_covered_gen.go#L863: 			return nil, fmt.Errorf("unable to decode StickerSetCoveredClass: %w", err)
		tl_sticker_set_covered_gen.go#L870: 			return nil, fmt.Errorf("unable to decode StickerSetCoveredClass: %w", err)
		tl_sticker_set_covered_gen.go#L874: 		return nil, fmt.Errorf("unable to decode StickerSetCoveredClass: %w", bin.NewUnexpectedID(id))
		tl_sticker_set_covered_gen.go#L886: 		return fmt.Errorf("unable to decode StickerSetCoveredBox to nil")
		tl_sticker_set_covered_gen.go#L890: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_sticker_set_covered_gen.go#L899: 		return fmt.Errorf("unable to encode StickerSetCoveredClass as nil")
		tl_sticker_set_gen.go#L412: 		return fmt.Errorf("can't encode stickerSet#2dd14edc as nil")
		tl_sticker_set_gen.go#L421: 		return fmt.Errorf("can't encode stickerSet#2dd14edc as nil")
		tl_sticker_set_gen.go#L425: 		return fmt.Errorf("unable to encode stickerSet#2dd14edc: field flags: %w", err)
		tl_sticker_set_gen.go#L438: 				return fmt.Errorf("unable to encode stickerSet#2dd14edc: field thumbs element with index %d is nil", idx)
		tl_sticker_set_gen.go#L441: 				return fmt.Errorf("unable to encode stickerSet#2dd14edc: field thumbs element with index %d: %w", idx, err)
		tl_sticker_set_gen.go#L462: 		return fmt.Errorf("can't decode stickerSet#2dd14edc to nil")
		tl_sticker_set_gen.go#L465: 		return fmt.Errorf("unable to decode stickerSet#2dd14edc: %w", err)
		tl_sticker_set_gen.go#L473: 		return fmt.Errorf("can't decode stickerSet#2dd14edc to nil")
		tl_sticker_set_gen.go#L477: 			return fmt.Errorf("unable to decode stickerSet#2dd14edc: field flags: %w", err)
		tl_sticker_set_gen.go#L491: 			return fmt.Errorf("unable to decode stickerSet#2dd14edc: field installed_date: %w", err)
		tl_sticker_set_gen.go#L498: 			return fmt.Errorf("unable to decode stickerSet#2dd14edc: field id: %w", err)
		tl_sticker_set_gen.go#L505: 			return fmt.Errorf("unable to decode stickerSet#2dd14edc: field access_hash: %w", err)
		tl_sticker_set_gen.go#L512: 			return fmt.Errorf("unable to decode stickerSet#2dd14edc: field title: %w", err)
		tl_sticker_set_gen.go#L519: 			return fmt.Errorf("unable to decode stickerSet#2dd14edc: field short_name: %w", err)
		tl_sticker_set_gen.go#L526: 			return fmt.Errorf("unable to decode stickerSet#2dd14edc: field thumbs: %w", err)
		tl_sticker_set_gen.go#L535: 				return fmt.Errorf("unable to decode stickerSet#2dd14edc: field thumbs: %w", err)
		tl_sticker_set_gen.go#L543: 			return fmt.Errorf("unable to decode stickerSet#2dd14edc: field thumb_dc_id: %w", err)
		tl_sticker_set_gen.go#L550: 			return fmt.Errorf("unable to decode stickerSet#2dd14edc: field thumb_version: %w", err)
		tl_sticker_set_gen.go#L557: 			return fmt.Errorf("unable to decode stickerSet#2dd14edc: field thumb_document_id: %w", err)
		tl_sticker_set_gen.go#L564: 			return fmt.Errorf("unable to decode stickerSet#2dd14edc: field count: %w", err)
		tl_sticker_set_gen.go#L571: 			return fmt.Errorf("unable to decode stickerSet#2dd14edc: field hash: %w", err)
		tl_stickers_add_sticker_to_set_gen.go#L127: 		return fmt.Errorf("can't encode stickers.addStickerToSet#8653febe as nil")
		tl_stickers_add_sticker_to_set_gen.go#L136: 		return fmt.Errorf("can't encode stickers.addStickerToSet#8653febe as nil")
		tl_stickers_add_sticker_to_set_gen.go#L139: 		return fmt.Errorf("unable to encode stickers.addStickerToSet#8653febe: field stickerset is nil")
		tl_stickers_add_sticker_to_set_gen.go#L142: 		return fmt.Errorf("unable to encode stickers.addStickerToSet#8653febe: field stickerset: %w", err)
		tl_stickers_add_sticker_to_set_gen.go#L145: 		return fmt.Errorf("unable to encode stickers.addStickerToSet#8653febe: field sticker: %w", err)
		tl_stickers_add_sticker_to_set_gen.go#L153: 		return fmt.Errorf("can't decode stickers.addStickerToSet#8653febe to nil")
		tl_stickers_add_sticker_to_set_gen.go#L156: 		return fmt.Errorf("unable to decode stickers.addStickerToSet#8653febe: %w", err)
		tl_stickers_add_sticker_to_set_gen.go#L164: 		return fmt.Errorf("can't decode stickers.addStickerToSet#8653febe to nil")
		tl_stickers_add_sticker_to_set_gen.go#L169: 			return fmt.Errorf("unable to decode stickers.addStickerToSet#8653febe: field stickerset: %w", err)
		tl_stickers_add_sticker_to_set_gen.go#L175: 			return fmt.Errorf("unable to decode stickers.addStickerToSet#8653febe: field sticker: %w", err)
		tl_stickers_change_sticker_gen.go#L194: 		return fmt.Errorf("can't encode stickers.changeSticker#f5537ebc as nil")
		tl_stickers_change_sticker_gen.go#L203: 		return fmt.Errorf("can't encode stickers.changeSticker#f5537ebc as nil")
		tl_stickers_change_sticker_gen.go#L207: 		return fmt.Errorf("unable to encode stickers.changeSticker#f5537ebc: field flags: %w", err)
		tl_stickers_change_sticker_gen.go#L210: 		return fmt.Errorf("unable to encode stickers.changeSticker#f5537ebc: field sticker is nil")
		tl_stickers_change_sticker_gen.go#L213: 		return fmt.Errorf("unable to encode stickers.changeSticker#f5537ebc: field sticker: %w", err)
		tl_stickers_change_sticker_gen.go#L220: 			return fmt.Errorf("unable to encode stickers.changeSticker#f5537ebc: field mask_coords: %w", err)
		tl_stickers_change_sticker_gen.go#L232: 		return fmt.Errorf("can't decode stickers.changeSticker#f5537ebc to nil")
		tl_stickers_change_sticker_gen.go#L235: 		return fmt.Errorf("unable to decode stickers.changeSticker#f5537ebc: %w", err)
		tl_stickers_change_sticker_gen.go#L243: 		return fmt.Errorf("can't decode stickers.changeSticker#f5537ebc to nil")
		tl_stickers_change_sticker_gen.go#L247: 			return fmt.Errorf("unable to decode stickers.changeSticker#f5537ebc: field flags: %w", err)
		tl_stickers_change_sticker_gen.go#L253: 			return fmt.Errorf("unable to decode stickers.changeSticker#f5537ebc: field sticker: %w", err)
		tl_stickers_change_sticker_gen.go#L260: 			return fmt.Errorf("unable to decode stickers.changeSticker#f5537ebc: field emoji: %w", err)
		tl_stickers_change_sticker_gen.go#L266: 			return fmt.Errorf("unable to decode stickers.changeSticker#f5537ebc: field mask_coords: %w", err)
		tl_stickers_change_sticker_gen.go#L272: 			return fmt.Errorf("unable to decode stickers.changeSticker#f5537ebc: field keywords: %w", err)
		tl_stickers_change_sticker_position_gen.go#L127: 		return fmt.Errorf("can't encode stickers.changeStickerPosition#ffb6d4ca as nil")
		tl_stickers_change_sticker_position_gen.go#L136: 		return fmt.Errorf("can't encode stickers.changeStickerPosition#ffb6d4ca as nil")
		tl_stickers_change_sticker_position_gen.go#L139: 		return fmt.Errorf("unable to encode stickers.changeStickerPosition#ffb6d4ca: field sticker is nil")
		tl_stickers_change_sticker_position_gen.go#L142: 		return fmt.Errorf("unable to encode stickers.changeStickerPosition#ffb6d4ca: field sticker: %w", err)
		tl_stickers_change_sticker_position_gen.go#L151: 		return fmt.Errorf("can't decode stickers.changeStickerPosition#ffb6d4ca to nil")
		tl_stickers_change_sticker_position_gen.go#L154: 		return fmt.Errorf("unable to decode stickers.changeStickerPosition#ffb6d4ca: %w", err)
		tl_stickers_change_sticker_position_gen.go#L162: 		return fmt.Errorf("can't decode stickers.changeStickerPosition#ffb6d4ca to nil")
		tl_stickers_change_sticker_position_gen.go#L167: 			return fmt.Errorf("unable to decode stickers.changeStickerPosition#ffb6d4ca: field sticker: %w", err)
		tl_stickers_change_sticker_position_gen.go#L174: 			return fmt.Errorf("unable to decode stickers.changeStickerPosition#ffb6d4ca: field position: %w", err)
		tl_stickers_check_short_name_gen.go#L115: 		return fmt.Errorf("can't encode stickers.checkShortName#284b3639 as nil")
		tl_stickers_check_short_name_gen.go#L124: 		return fmt.Errorf("can't encode stickers.checkShortName#284b3639 as nil")
		tl_stickers_check_short_name_gen.go#L133: 		return fmt.Errorf("can't decode stickers.checkShortName#284b3639 to nil")
		tl_stickers_check_short_name_gen.go#L136: 		return fmt.Errorf("unable to decode stickers.checkShortName#284b3639: %w", err)
		tl_stickers_check_short_name_gen.go#L144: 		return fmt.Errorf("can't decode stickers.checkShortName#284b3639 to nil")
		tl_stickers_check_short_name_gen.go#L149: 			return fmt.Errorf("unable to decode stickers.checkShortName#284b3639: field short_name: %w", err)
		tl_stickers_create_sticker_set_gen.go#L291: 		return fmt.Errorf("can't encode stickers.createStickerSet#9021ab67 as nil")
		tl_stickers_create_sticker_set_gen.go#L300: 		return fmt.Errorf("can't encode stickers.createStickerSet#9021ab67 as nil")
		tl_stickers_create_sticker_set_gen.go#L304: 		return fmt.Errorf("unable to encode stickers.createStickerSet#9021ab67: field flags: %w", err)
		tl_stickers_create_sticker_set_gen.go#L307: 		return fmt.Errorf("unable to encode stickers.createStickerSet#9021ab67: field user_id is nil")
		tl_stickers_create_sticker_set_gen.go#L310: 		return fmt.Errorf("unable to encode stickers.createStickerSet#9021ab67: field user_id: %w", err)
		tl_stickers_create_sticker_set_gen.go#L316: 			return fmt.Errorf("unable to encode stickers.createStickerSet#9021ab67: field thumb is nil")
		tl_stickers_create_sticker_set_gen.go#L319: 			return fmt.Errorf("unable to encode stickers.createStickerSet#9021ab67: field thumb: %w", err)
		tl_stickers_create_sticker_set_gen.go#L325: 			return fmt.Errorf("unable to encode stickers.createStickerSet#9021ab67: field stickers element with index %d: %w", idx, err)
		tl_stickers_create_sticker_set_gen.go#L337: 		return fmt.Errorf("can't decode stickers.createStickerSet#9021ab67 to nil")
		tl_stickers_create_sticker_set_gen.go#L340: 		return fmt.Errorf("unable to decode stickers.createStickerSet#9021ab67: %w", err)
		tl_stickers_create_sticker_set_gen.go#L348: 		return fmt.Errorf("can't decode stickers.createStickerSet#9021ab67 to nil")
		tl_stickers_create_sticker_set_gen.go#L352: 			return fmt.Errorf("unable to decode stickers.createStickerSet#9021ab67: field flags: %w", err)
		tl_stickers_create_sticker_set_gen.go#L363: 			return fmt.Errorf("unable to decode stickers.createStickerSet#9021ab67: field user_id: %w", err)
		tl_stickers_create_sticker_set_gen.go#L370: 			return fmt.Errorf("unable to decode stickers.createStickerSet#9021ab67: field title: %w", err)
		tl_stickers_create_sticker_set_gen.go#L377: 			return fmt.Errorf("unable to decode stickers.createStickerSet#9021ab67: field short_name: %w", err)
		tl_stickers_create_sticker_set_gen.go#L384: 			return fmt.Errorf("unable to decode stickers.createStickerSet#9021ab67: field thumb: %w", err)
		tl_stickers_create_sticker_set_gen.go#L391: 			return fmt.Errorf("unable to decode stickers.createStickerSet#9021ab67: field stickers: %w", err)
		tl_stickers_create_sticker_set_gen.go#L400: 				return fmt.Errorf("unable to decode stickers.createStickerSet#9021ab67: field stickers: %w", err)
		tl_stickers_create_sticker_set_gen.go#L408: 			return fmt.Errorf("unable to decode stickers.createStickerSet#9021ab67: field software: %w", err)
		tl_stickers_delete_sticker_set_gen.go#L115: 		return fmt.Errorf("can't encode stickers.deleteStickerSet#87704394 as nil")
		tl_stickers_delete_sticker_set_gen.go#L124: 		return fmt.Errorf("can't encode stickers.deleteStickerSet#87704394 as nil")
		tl_stickers_delete_sticker_set_gen.go#L127: 		return fmt.Errorf("unable to encode stickers.deleteStickerSet#87704394: field stickerset is nil")
		tl_stickers_delete_sticker_set_gen.go#L130: 		return fmt.Errorf("unable to encode stickers.deleteStickerSet#87704394: field stickerset: %w", err)
		tl_stickers_delete_sticker_set_gen.go#L138: 		return fmt.Errorf("can't decode stickers.deleteStickerSet#87704394 to nil")
		tl_stickers_delete_sticker_set_gen.go#L141: 		return fmt.Errorf("unable to decode stickers.deleteStickerSet#87704394: %w", err)
		tl_stickers_delete_sticker_set_gen.go#L149: 		return fmt.Errorf("can't decode stickers.deleteStickerSet#87704394 to nil")
		tl_stickers_delete_sticker_set_gen.go#L154: 			return fmt.Errorf("unable to decode stickers.deleteStickerSet#87704394: field stickerset: %w", err)
		tl_stickers_remove_sticker_from_set_gen.go#L116: 		return fmt.Errorf("can't encode stickers.removeStickerFromSet#f7760f51 as nil")
		tl_stickers_remove_sticker_from_set_gen.go#L125: 		return fmt.Errorf("can't encode stickers.removeStickerFromSet#f7760f51 as nil")
		tl_stickers_remove_sticker_from_set_gen.go#L128: 		return fmt.Errorf("unable to encode stickers.removeStickerFromSet#f7760f51: field sticker is nil")
		tl_stickers_remove_sticker_from_set_gen.go#L131: 		return fmt.Errorf("unable to encode stickers.removeStickerFromSet#f7760f51: field sticker: %w", err)
		tl_stickers_remove_sticker_from_set_gen.go#L139: 		return fmt.Errorf("can't decode stickers.removeStickerFromSet#f7760f51 to nil")
		tl_stickers_remove_sticker_from_set_gen.go#L142: 		return fmt.Errorf("unable to decode stickers.removeStickerFromSet#f7760f51: %w", err)
		tl_stickers_remove_sticker_from_set_gen.go#L150: 		return fmt.Errorf("can't decode stickers.removeStickerFromSet#f7760f51 to nil")
		tl_stickers_remove_sticker_from_set_gen.go#L155: 			return fmt.Errorf("unable to decode stickers.removeStickerFromSet#f7760f51: field sticker: %w", err)
		tl_stickers_rename_sticker_set_gen.go#L126: 		return fmt.Errorf("can't encode stickers.renameStickerSet#124b1c00 as nil")
		tl_stickers_rename_sticker_set_gen.go#L135: 		return fmt.Errorf("can't encode stickers.renameStickerSet#124b1c00 as nil")
		tl_stickers_rename_sticker_set_gen.go#L138: 		return fmt.Errorf("unable to encode stickers.renameStickerSet#124b1c00: field stickerset is nil")
		tl_stickers_rename_sticker_set_gen.go#L141: 		return fmt.Errorf("unable to encode stickers.renameStickerSet#124b1c00: field stickerset: %w", err)
		tl_stickers_rename_sticker_set_gen.go#L150: 		return fmt.Errorf("can't decode stickers.renameStickerSet#124b1c00 to nil")
		tl_stickers_rename_sticker_set_gen.go#L153: 		return fmt.Errorf("unable to decode stickers.renameStickerSet#124b1c00: %w", err)
		tl_stickers_rename_sticker_set_gen.go#L161: 		return fmt.Errorf("can't decode stickers.renameStickerSet#124b1c00 to nil")
		tl_stickers_rename_sticker_set_gen.go#L166: 			return fmt.Errorf("unable to decode stickers.renameStickerSet#124b1c00: field stickerset: %w", err)
		tl_stickers_rename_sticker_set_gen.go#L173: 			return fmt.Errorf("unable to decode stickers.renameStickerSet#124b1c00: field title: %w", err)
		tl_stickers_set_sticker_set_thumb_gen.go#L171: 		return fmt.Errorf("can't encode stickers.setStickerSetThumb#a76a5392 as nil")
		tl_stickers_set_sticker_set_thumb_gen.go#L180: 		return fmt.Errorf("can't encode stickers.setStickerSetThumb#a76a5392 as nil")
		tl_stickers_set_sticker_set_thumb_gen.go#L184: 		return fmt.Errorf("unable to encode stickers.setStickerSetThumb#a76a5392: field flags: %w", err)
		tl_stickers_set_sticker_set_thumb_gen.go#L187: 		return fmt.Errorf("unable to encode stickers.setStickerSetThumb#a76a5392: field stickerset is nil")
		tl_stickers_set_sticker_set_thumb_gen.go#L190: 		return fmt.Errorf("unable to encode stickers.setStickerSetThumb#a76a5392: field stickerset: %w", err)
		tl_stickers_set_sticker_set_thumb_gen.go#L194: 			return fmt.Errorf("unable to encode stickers.setStickerSetThumb#a76a5392: field thumb is nil")
		tl_stickers_set_sticker_set_thumb_gen.go#L197: 			return fmt.Errorf("unable to encode stickers.setStickerSetThumb#a76a5392: field thumb: %w", err)
		tl_stickers_set_sticker_set_thumb_gen.go#L209: 		return fmt.Errorf("can't decode stickers.setStickerSetThumb#a76a5392 to nil")
		tl_stickers_set_sticker_set_thumb_gen.go#L212: 		return fmt.Errorf("unable to decode stickers.setStickerSetThumb#a76a5392: %w", err)
		tl_stickers_set_sticker_set_thumb_gen.go#L220: 		return fmt.Errorf("can't decode stickers.setStickerSetThumb#a76a5392 to nil")
		tl_stickers_set_sticker_set_thumb_gen.go#L224: 			return fmt.Errorf("unable to decode stickers.setStickerSetThumb#a76a5392: field flags: %w", err)
		tl_stickers_set_sticker_set_thumb_gen.go#L230: 			return fmt.Errorf("unable to decode stickers.setStickerSetThumb#a76a5392: field stickerset: %w", err)
		tl_stickers_set_sticker_set_thumb_gen.go#L237: 			return fmt.Errorf("unable to decode stickers.setStickerSetThumb#a76a5392: field thumb: %w", err)
		tl_stickers_set_sticker_set_thumb_gen.go#L244: 			return fmt.Errorf("unable to decode stickers.setStickerSetThumb#a76a5392: field thumb_document_id: %w", err)
		tl_stickers_suggest_short_name_gen.go#L115: 		return fmt.Errorf("can't encode stickers.suggestShortName#4dafc503 as nil")
		tl_stickers_suggest_short_name_gen.go#L124: 		return fmt.Errorf("can't encode stickers.suggestShortName#4dafc503 as nil")
		tl_stickers_suggest_short_name_gen.go#L133: 		return fmt.Errorf("can't decode stickers.suggestShortName#4dafc503 to nil")
		tl_stickers_suggest_short_name_gen.go#L136: 		return fmt.Errorf("unable to decode stickers.suggestShortName#4dafc503: %w", err)
		tl_stickers_suggest_short_name_gen.go#L144: 		return fmt.Errorf("can't decode stickers.suggestShortName#4dafc503 to nil")
		tl_stickers_suggest_short_name_gen.go#L149: 			return fmt.Errorf("unable to decode stickers.suggestShortName#4dafc503: field title: %w", err)
		tl_stickers_suggested_short_name_gen.go#L115: 		return fmt.Errorf("can't encode stickers.suggestedShortName#85fea03f as nil")
		tl_stickers_suggested_short_name_gen.go#L124: 		return fmt.Errorf("can't encode stickers.suggestedShortName#85fea03f as nil")
		tl_stickers_suggested_short_name_gen.go#L133: 		return fmt.Errorf("can't decode stickers.suggestedShortName#85fea03f to nil")
		tl_stickers_suggested_short_name_gen.go#L136: 		return fmt.Errorf("unable to decode stickers.suggestedShortName#85fea03f: %w", err)
		tl_stickers_suggested_short_name_gen.go#L144: 		return fmt.Errorf("can't decode stickers.suggestedShortName#85fea03f to nil")
		tl_stickers_suggested_short_name_gen.go#L149: 			return fmt.Errorf("unable to decode stickers.suggestedShortName#85fea03f: field short_name: %w", err)
		tl_storage_file_type_gen.go#L103: 		return fmt.Errorf("can't encode storage.fileUnknown#aa963b05 as nil")
		tl_storage_file_type_gen.go#L112: 		return fmt.Errorf("can't encode storage.fileUnknown#aa963b05 as nil")
		tl_storage_file_type_gen.go#L120: 		return fmt.Errorf("can't decode storage.fileUnknown#aa963b05 to nil")
		tl_storage_file_type_gen.go#L123: 		return fmt.Errorf("unable to decode storage.fileUnknown#aa963b05: %w", err)
		tl_storage_file_type_gen.go#L131: 		return fmt.Errorf("can't decode storage.fileUnknown#aa963b05 to nil")
		tl_storage_file_type_gen.go#L205: 		return fmt.Errorf("can't encode storage.filePartial#40bc6f52 as nil")
		tl_storage_file_type_gen.go#L214: 		return fmt.Errorf("can't encode storage.filePartial#40bc6f52 as nil")
		tl_storage_file_type_gen.go#L222: 		return fmt.Errorf("can't decode storage.filePartial#40bc6f52 to nil")
		tl_storage_file_type_gen.go#L225: 		return fmt.Errorf("unable to decode storage.filePartial#40bc6f52: %w", err)
		tl_storage_file_type_gen.go#L233: 		return fmt.Errorf("can't decode storage.filePartial#40bc6f52 to nil")
		tl_storage_file_type_gen.go#L307: 		return fmt.Errorf("can't encode storage.fileJpeg#7efe0e as nil")
		tl_storage_file_type_gen.go#L316: 		return fmt.Errorf("can't encode storage.fileJpeg#7efe0e as nil")
		tl_storage_file_type_gen.go#L324: 		return fmt.Errorf("can't decode storage.fileJpeg#7efe0e to nil")
		tl_storage_file_type_gen.go#L327: 		return fmt.Errorf("unable to decode storage.fileJpeg#7efe0e: %w", err)
		tl_storage_file_type_gen.go#L335: 		return fmt.Errorf("can't decode storage.fileJpeg#7efe0e to nil")
		tl_storage_file_type_gen.go#L409: 		return fmt.Errorf("can't encode storage.fileGif#cae1aadf as nil")
		tl_storage_file_type_gen.go#L418: 		return fmt.Errorf("can't encode storage.fileGif#cae1aadf as nil")
		tl_storage_file_type_gen.go#L426: 		return fmt.Errorf("can't decode storage.fileGif#cae1aadf to nil")
		tl_storage_file_type_gen.go#L429: 		return fmt.Errorf("unable to decode storage.fileGif#cae1aadf: %w", err)
		tl_storage_file_type_gen.go#L437: 		return fmt.Errorf("can't decode storage.fileGif#cae1aadf to nil")
		tl_storage_file_type_gen.go#L511: 		return fmt.Errorf("can't encode storage.filePng#a4f63c0 as nil")
		tl_storage_file_type_gen.go#L520: 		return fmt.Errorf("can't encode storage.filePng#a4f63c0 as nil")
		tl_storage_file_type_gen.go#L528: 		return fmt.Errorf("can't decode storage.filePng#a4f63c0 to nil")
		tl_storage_file_type_gen.go#L531: 		return fmt.Errorf("unable to decode storage.filePng#a4f63c0: %w", err)
		tl_storage_file_type_gen.go#L539: 		return fmt.Errorf("can't decode storage.filePng#a4f63c0 to nil")
		tl_storage_file_type_gen.go#L613: 		return fmt.Errorf("can't encode storage.filePdf#ae1e508d as nil")
		tl_storage_file_type_gen.go#L622: 		return fmt.Errorf("can't encode storage.filePdf#ae1e508d as nil")
		tl_storage_file_type_gen.go#L630: 		return fmt.Errorf("can't decode storage.filePdf#ae1e508d to nil")
		tl_storage_file_type_gen.go#L633: 		return fmt.Errorf("unable to decode storage.filePdf#ae1e508d: %w", err)
		tl_storage_file_type_gen.go#L641: 		return fmt.Errorf("can't decode storage.filePdf#ae1e508d to nil")
		tl_storage_file_type_gen.go#L715: 		return fmt.Errorf("can't encode storage.fileMp3#528a0677 as nil")
		tl_storage_file_type_gen.go#L724: 		return fmt.Errorf("can't encode storage.fileMp3#528a0677 as nil")
		tl_storage_file_type_gen.go#L732: 		return fmt.Errorf("can't decode storage.fileMp3#528a0677 to nil")
		tl_storage_file_type_gen.go#L735: 		return fmt.Errorf("unable to decode storage.fileMp3#528a0677: %w", err)
		tl_storage_file_type_gen.go#L743: 		return fmt.Errorf("can't decode storage.fileMp3#528a0677 to nil")
		tl_storage_file_type_gen.go#L817: 		return fmt.Errorf("can't encode storage.fileMov#4b09ebbc as nil")
		tl_storage_file_type_gen.go#L826: 		return fmt.Errorf("can't encode storage.fileMov#4b09ebbc as nil")
		tl_storage_file_type_gen.go#L834: 		return fmt.Errorf("can't decode storage.fileMov#4b09ebbc to nil")
		tl_storage_file_type_gen.go#L837: 		return fmt.Errorf("unable to decode storage.fileMov#4b09ebbc: %w", err)
		tl_storage_file_type_gen.go#L845: 		return fmt.Errorf("can't decode storage.fileMov#4b09ebbc to nil")
		tl_storage_file_type_gen.go#L919: 		return fmt.Errorf("can't encode storage.fileMp4#b3cea0e4 as nil")
		tl_storage_file_type_gen.go#L928: 		return fmt.Errorf("can't encode storage.fileMp4#b3cea0e4 as nil")
		tl_storage_file_type_gen.go#L936: 		return fmt.Errorf("can't decode storage.fileMp4#b3cea0e4 to nil")
		tl_storage_file_type_gen.go#L939: 		return fmt.Errorf("unable to decode storage.fileMp4#b3cea0e4: %w", err)
		tl_storage_file_type_gen.go#L947: 		return fmt.Errorf("can't decode storage.fileMp4#b3cea0e4 to nil")
		tl_storage_file_type_gen.go#L1021: 		return fmt.Errorf("can't encode storage.fileWebp#1081464c as nil")
		tl_storage_file_type_gen.go#L1030: 		return fmt.Errorf("can't encode storage.fileWebp#1081464c as nil")
		tl_storage_file_type_gen.go#L1038: 		return fmt.Errorf("can't decode storage.fileWebp#1081464c to nil")
		tl_storage_file_type_gen.go#L1041: 		return fmt.Errorf("unable to decode storage.fileWebp#1081464c: %w", err)
		tl_storage_file_type_gen.go#L1049: 		return fmt.Errorf("can't decode storage.fileWebp#1081464c to nil")
		tl_storage_file_type_gen.go#L1110: 			return nil, fmt.Errorf("unable to decode StorageFileTypeClass: %w", err)
		tl_storage_file_type_gen.go#L1117: 			return nil, fmt.Errorf("unable to decode StorageFileTypeClass: %w", err)
		tl_storage_file_type_gen.go#L1124: 			return nil, fmt.Errorf("unable to decode StorageFileTypeClass: %w", err)
		tl_storage_file_type_gen.go#L1131: 			return nil, fmt.Errorf("unable to decode StorageFileTypeClass: %w", err)
		tl_storage_file_type_gen.go#L1138: 			return nil, fmt.Errorf("unable to decode StorageFileTypeClass: %w", err)
		tl_storage_file_type_gen.go#L1145: 			return nil, fmt.Errorf("unable to decode StorageFileTypeClass: %w", err)
		tl_storage_file_type_gen.go#L1152: 			return nil, fmt.Errorf("unable to decode StorageFileTypeClass: %w", err)
		tl_storage_file_type_gen.go#L1159: 			return nil, fmt.Errorf("unable to decode StorageFileTypeClass: %w", err)
		tl_storage_file_type_gen.go#L1166: 			return nil, fmt.Errorf("unable to decode StorageFileTypeClass: %w", err)
		tl_storage_file_type_gen.go#L1173: 			return nil, fmt.Errorf("unable to decode StorageFileTypeClass: %w", err)
		tl_storage_file_type_gen.go#L1177: 		return nil, fmt.Errorf("unable to decode StorageFileTypeClass: %w", bin.NewUnexpectedID(id))
		tl_storage_file_type_gen.go#L1189: 		return fmt.Errorf("unable to decode StorageFileTypeBox to nil")
		tl_storage_file_type_gen.go#L1193: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_storage_file_type_gen.go#L1202: 		return fmt.Errorf("unable to encode StorageFileTypeClass as nil")
		tl_stories_activate_stealth_mode_gen.go#L162: 		return fmt.Errorf("can't encode stories.activateStealthMode#57bbd166 as nil")
		tl_stories_activate_stealth_mode_gen.go#L171: 		return fmt.Errorf("can't encode stories.activateStealthMode#57bbd166 as nil")
		tl_stories_activate_stealth_mode_gen.go#L175: 		return fmt.Errorf("unable to encode stories.activateStealthMode#57bbd166: field flags: %w", err)
		tl_stories_activate_stealth_mode_gen.go#L183: 		return fmt.Errorf("can't decode stories.activateStealthMode#57bbd166 to nil")
		tl_stories_activate_stealth_mode_gen.go#L186: 		return fmt.Errorf("unable to decode stories.activateStealthMode#57bbd166: %w", err)
		tl_stories_activate_stealth_mode_gen.go#L194: 		return fmt.Errorf("can't decode stories.activateStealthMode#57bbd166 to nil")
		tl_stories_activate_stealth_mode_gen.go#L198: 			return fmt.Errorf("unable to decode stories.activateStealthMode#57bbd166: field flags: %w", err)
		tl_stories_all_stories_gen.go#L149: 		return fmt.Errorf("can't encode stories.allStoriesNotModified#1158fe3e as nil")
		tl_stories_all_stories_gen.go#L158: 		return fmt.Errorf("can't encode stories.allStoriesNotModified#1158fe3e as nil")
		tl_stories_all_stories_gen.go#L162: 		return fmt.Errorf("unable to encode stories.allStoriesNotModified#1158fe3e: field flags: %w", err)
		tl_stories_all_stories_gen.go#L166: 		return fmt.Errorf("unable to encode stories.allStoriesNotModified#1158fe3e: field stealth_mode: %w", err)
		tl_stories_all_stories_gen.go#L174: 		return fmt.Errorf("can't decode stories.allStoriesNotModified#1158fe3e to nil")
		tl_stories_all_stories_gen.go#L177: 		return fmt.Errorf("unable to decode stories.allStoriesNotModified#1158fe3e: %w", err)
		tl_stories_all_stories_gen.go#L185: 		return fmt.Errorf("can't decode stories.allStoriesNotModified#1158fe3e to nil")
		tl_stories_all_stories_gen.go#L189: 			return fmt.Errorf("unable to decode stories.allStoriesNotModified#1158fe3e: field flags: %w", err)
		tl_stories_all_stories_gen.go#L195: 			return fmt.Errorf("unable to decode stories.allStoriesNotModified#1158fe3e: field state: %w", err)
		tl_stories_all_stories_gen.go#L201: 			return fmt.Errorf("unable to decode stories.allStoriesNotModified#1158fe3e: field stealth_mode: %w", err)
		tl_stories_all_stories_gen.go#L400: 		return fmt.Errorf("can't encode stories.allStories#6efc5e81 as nil")
		tl_stories_all_stories_gen.go#L409: 		return fmt.Errorf("can't encode stories.allStories#6efc5e81 as nil")
		tl_stories_all_stories_gen.go#L413: 		return fmt.Errorf("unable to encode stories.allStories#6efc5e81: field flags: %w", err)
		tl_stories_all_stories_gen.go#L420: 			return fmt.Errorf("unable to encode stories.allStories#6efc5e81: field peer_stories element with index %d: %w", idx, err)
		tl_stories_all_stories_gen.go#L426: 			return fmt.Errorf("unable to encode stories.allStories#6efc5e81: field chats element with index %d is nil", idx)
		tl_stories_all_stories_gen.go#L429: 			return fmt.Errorf("unable to encode stories.allStories#6efc5e81: field chats element with index %d: %w", idx, err)
		tl_stories_all_stories_gen.go#L435: 			return fmt.Errorf("unable to encode stories.allStories#6efc5e81: field users element with index %d is nil", idx)
		tl_stories_all_stories_gen.go#L438: 			return fmt.Errorf("unable to encode stories.allStories#6efc5e81: field users element with index %d: %w", idx, err)
		tl_stories_all_stories_gen.go#L442: 		return fmt.Errorf("unable to encode stories.allStories#6efc5e81: field stealth_mode: %w", err)
		tl_stories_all_stories_gen.go#L450: 		return fmt.Errorf("can't decode stories.allStories#6efc5e81 to nil")
		tl_stories_all_stories_gen.go#L453: 		return fmt.Errorf("unable to decode stories.allStories#6efc5e81: %w", err)
		tl_stories_all_stories_gen.go#L461: 		return fmt.Errorf("can't decode stories.allStories#6efc5e81 to nil")
		tl_stories_all_stories_gen.go#L465: 			return fmt.Errorf("unable to decode stories.allStories#6efc5e81: field flags: %w", err)
		tl_stories_all_stories_gen.go#L472: 			return fmt.Errorf("unable to decode stories.allStories#6efc5e81: field count: %w", err)
		tl_stories_all_stories_gen.go#L479: 			return fmt.Errorf("unable to decode stories.allStories#6efc5e81: field state: %w", err)
		tl_stories_all_stories_gen.go#L486: 			return fmt.Errorf("unable to decode stories.allStories#6efc5e81: field peer_stories: %w", err)
		tl_stories_all_stories_gen.go#L495: 				return fmt.Errorf("unable to decode stories.allStories#6efc5e81: field peer_stories: %w", err)
		tl_stories_all_stories_gen.go#L503: 			return fmt.Errorf("unable to decode stories.allStories#6efc5e81: field chats: %w", err)
		tl_stories_all_stories_gen.go#L512: 				return fmt.Errorf("unable to decode stories.allStories#6efc5e81: field chats: %w", err)
		tl_stories_all_stories_gen.go#L520: 			return fmt.Errorf("unable to decode stories.allStories#6efc5e81: field users: %w", err)
		tl_stories_all_stories_gen.go#L529: 				return fmt.Errorf("unable to decode stories.allStories#6efc5e81: field users: %w", err)
		tl_stories_all_stories_gen.go#L536: 			return fmt.Errorf("unable to decode stories.allStories#6efc5e81: field stealth_mode: %w", err)
		tl_stories_all_stories_gen.go#L689: 			return nil, fmt.Errorf("unable to decode StoriesAllStoriesClass: %w", err)
		tl_stories_all_stories_gen.go#L696: 			return nil, fmt.Errorf("unable to decode StoriesAllStoriesClass: %w", err)
		tl_stories_all_stories_gen.go#L700: 		return nil, fmt.Errorf("unable to decode StoriesAllStoriesClass: %w", bin.NewUnexpectedID(id))
		tl_stories_all_stories_gen.go#L712: 		return fmt.Errorf("unable to decode StoriesAllStoriesBox to nil")
		tl_stories_all_stories_gen.go#L716: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_stories_all_stories_gen.go#L725: 		return fmt.Errorf("unable to encode StoriesAllStoriesClass as nil")
		tl_stories_can_send_story_gen.go#L115: 		return fmt.Errorf("can't encode stories.canSendStory#c7dfdfdd as nil")
		tl_stories_can_send_story_gen.go#L124: 		return fmt.Errorf("can't encode stories.canSendStory#c7dfdfdd as nil")
		tl_stories_can_send_story_gen.go#L127: 		return fmt.Errorf("unable to encode stories.canSendStory#c7dfdfdd: field peer is nil")
		tl_stories_can_send_story_gen.go#L130: 		return fmt.Errorf("unable to encode stories.canSendStory#c7dfdfdd: field peer: %w", err)
		tl_stories_can_send_story_gen.go#L138: 		return fmt.Errorf("can't decode stories.canSendStory#c7dfdfdd to nil")
		tl_stories_can_send_story_gen.go#L141: 		return fmt.Errorf("unable to decode stories.canSendStory#c7dfdfdd: %w", err)
		tl_stories_can_send_story_gen.go#L149: 		return fmt.Errorf("can't decode stories.canSendStory#c7dfdfdd to nil")
		tl_stories_can_send_story_gen.go#L154: 			return fmt.Errorf("unable to decode stories.canSendStory#c7dfdfdd: field peer: %w", err)
		tl_stories_delete_stories_gen.go#L129: 		return fmt.Errorf("can't encode stories.deleteStories#ae59db5f as nil")
		tl_stories_delete_stories_gen.go#L138: 		return fmt.Errorf("can't encode stories.deleteStories#ae59db5f as nil")
		tl_stories_delete_stories_gen.go#L141: 		return fmt.Errorf("unable to encode stories.deleteStories#ae59db5f: field peer is nil")
		tl_stories_delete_stories_gen.go#L144: 		return fmt.Errorf("unable to encode stories.deleteStories#ae59db5f: field peer: %w", err)
		tl_stories_delete_stories_gen.go#L156: 		return fmt.Errorf("can't decode stories.deleteStories#ae59db5f to nil")
		tl_stories_delete_stories_gen.go#L159: 		return fmt.Errorf("unable to decode stories.deleteStories#ae59db5f: %w", err)
		tl_stories_delete_stories_gen.go#L167: 		return fmt.Errorf("can't decode stories.deleteStories#ae59db5f to nil")
		tl_stories_delete_stories_gen.go#L172: 			return fmt.Errorf("unable to decode stories.deleteStories#ae59db5f: field peer: %w", err)
		tl_stories_delete_stories_gen.go#L179: 			return fmt.Errorf("unable to decode stories.deleteStories#ae59db5f: field id: %w", err)
		tl_stories_delete_stories_gen.go#L188: 				return fmt.Errorf("unable to decode stories.deleteStories#ae59db5f: field id: %w", err)
		tl_stories_edit_story_gen.go#L254: 		return fmt.Errorf("can't encode stories.editStory#b583ba46 as nil")
		tl_stories_edit_story_gen.go#L263: 		return fmt.Errorf("can't encode stories.editStory#b583ba46 as nil")
		tl_stories_edit_story_gen.go#L267: 		return fmt.Errorf("unable to encode stories.editStory#b583ba46: field flags: %w", err)
		tl_stories_edit_story_gen.go#L270: 		return fmt.Errorf("unable to encode stories.editStory#b583ba46: field peer is nil")
		tl_stories_edit_story_gen.go#L273: 		return fmt.Errorf("unable to encode stories.editStory#b583ba46: field peer: %w", err)
		tl_stories_edit_story_gen.go#L278: 			return fmt.Errorf("unable to encode stories.editStory#b583ba46: field media is nil")
		tl_stories_edit_story_gen.go#L281: 			return fmt.Errorf("unable to encode stories.editStory#b583ba46: field media: %w", err)
		tl_stories_edit_story_gen.go#L288: 				return fmt.Errorf("unable to encode stories.editStory#b583ba46: field media_areas element with index %d is nil", idx)
		tl_stories_edit_story_gen.go#L291: 				return fmt.Errorf("unable to encode stories.editStory#b583ba46: field media_areas element with index %d: %w", idx, err)
		tl_stories_edit_story_gen.go#L302: 				return fmt.Errorf("unable to encode stories.editStory#b583ba46: field entities element with index %d is nil", idx)
		tl_stories_edit_story_gen.go#L305: 				return fmt.Errorf("unable to encode stories.editStory#b583ba46: field entities element with index %d: %w", idx, err)
		tl_stories_edit_story_gen.go#L313: 				return fmt.Errorf("unable to encode stories.editStory#b583ba46: field privacy_rules element with index %d is nil", idx)
		tl_stories_edit_story_gen.go#L316: 				return fmt.Errorf("unable to encode stories.editStory#b583ba46: field privacy_rules element with index %d: %w", idx, err)
		tl_stories_edit_story_gen.go#L326: 		return fmt.Errorf("can't decode stories.editStory#b583ba46 to nil")
		tl_stories_edit_story_gen.go#L329: 		return fmt.Errorf("unable to decode stories.editStory#b583ba46: %w", err)
		tl_stories_edit_story_gen.go#L337: 		return fmt.Errorf("can't decode stories.editStory#b583ba46 to nil")
		tl_stories_edit_story_gen.go#L341: 			return fmt.Errorf("unable to decode stories.editStory#b583ba46: field flags: %w", err)
		tl_stories_edit_story_gen.go#L347: 			return fmt.Errorf("unable to decode stories.editStory#b583ba46: field peer: %w", err)
		tl_stories_edit_story_gen.go#L354: 			return fmt.Errorf("unable to decode stories.editStory#b583ba46: field id: %w", err)
		tl_stories_edit_story_gen.go#L361: 			return fmt.Errorf("unable to decode stories.editStory#b583ba46: field media: %w", err)
		tl_stories_edit_story_gen.go#L368: 			return fmt.Errorf("unable to decode stories.editStory#b583ba46: field media_areas: %w", err)
		tl_stories_edit_story_gen.go#L377: 				return fmt.Errorf("unable to decode stories.editStory#b583ba46: field media_areas: %w", err)
		tl_stories_edit_story_gen.go#L385: 			return fmt.Errorf("unable to decode stories.editStory#b583ba46: field caption: %w", err)
		tl_stories_edit_story_gen.go#L392: 			return fmt.Errorf("unable to decode stories.editStory#b583ba46: field entities: %w", err)
		tl_stories_edit_story_gen.go#L401: 				return fmt.Errorf("unable to decode stories.editStory#b583ba46: field entities: %w", err)
		tl_stories_edit_story_gen.go#L409: 			return fmt.Errorf("unable to decode stories.editStory#b583ba46: field privacy_rules: %w", err)
		tl_stories_edit_story_gen.go#L418: 				return fmt.Errorf("unable to decode stories.editStory#b583ba46: field privacy_rules: %w", err)
		tl_stories_export_story_link_gen.go#L129: 		return fmt.Errorf("can't encode stories.exportStoryLink#7b8def20 as nil")
		tl_stories_export_story_link_gen.go#L138: 		return fmt.Errorf("can't encode stories.exportStoryLink#7b8def20 as nil")
		tl_stories_export_story_link_gen.go#L141: 		return fmt.Errorf("unable to encode stories.exportStoryLink#7b8def20: field peer is nil")
		tl_stories_export_story_link_gen.go#L144: 		return fmt.Errorf("unable to encode stories.exportStoryLink#7b8def20: field peer: %w", err)
		tl_stories_export_story_link_gen.go#L153: 		return fmt.Errorf("can't decode stories.exportStoryLink#7b8def20 to nil")
		tl_stories_export_story_link_gen.go#L156: 		return fmt.Errorf("unable to decode stories.exportStoryLink#7b8def20: %w", err)
		tl_stories_export_story_link_gen.go#L164: 		return fmt.Errorf("can't decode stories.exportStoryLink#7b8def20 to nil")
		tl_stories_export_story_link_gen.go#L169: 			return fmt.Errorf("unable to decode stories.exportStoryLink#7b8def20: field peer: %w", err)
		tl_stories_export_story_link_gen.go#L176: 			return fmt.Errorf("unable to decode stories.exportStoryLink#7b8def20: field id: %w", err)
		tl_stories_get_all_read_peer_stories_gen.go#L103: 		return fmt.Errorf("can't encode stories.getAllReadPeerStories#9b5ae7f9 as nil")
		tl_stories_get_all_read_peer_stories_gen.go#L112: 		return fmt.Errorf("can't encode stories.getAllReadPeerStories#9b5ae7f9 as nil")
		tl_stories_get_all_read_peer_stories_gen.go#L120: 		return fmt.Errorf("can't decode stories.getAllReadPeerStories#9b5ae7f9 to nil")
		tl_stories_get_all_read_peer_stories_gen.go#L123: 		return fmt.Errorf("unable to decode stories.getAllReadPeerStories#9b5ae7f9: %w", err)
		tl_stories_get_all_read_peer_stories_gen.go#L131: 		return fmt.Errorf("can't decode stories.getAllReadPeerStories#9b5ae7f9 to nil")
		tl_stories_get_all_stories_gen.go#L186: 		return fmt.Errorf("can't encode stories.getAllStories#eeb0d625 as nil")
		tl_stories_get_all_stories_gen.go#L195: 		return fmt.Errorf("can't encode stories.getAllStories#eeb0d625 as nil")
		tl_stories_get_all_stories_gen.go#L199: 		return fmt.Errorf("unable to encode stories.getAllStories#eeb0d625: field flags: %w", err)
		tl_stories_get_all_stories_gen.go#L210: 		return fmt.Errorf("can't decode stories.getAllStories#eeb0d625 to nil")
		tl_stories_get_all_stories_gen.go#L213: 		return fmt.Errorf("unable to decode stories.getAllStories#eeb0d625: %w", err)
		tl_stories_get_all_stories_gen.go#L221: 		return fmt.Errorf("can't decode stories.getAllStories#eeb0d625 to nil")
		tl_stories_get_all_stories_gen.go#L225: 			return fmt.Errorf("unable to decode stories.getAllStories#eeb0d625: field flags: %w", err)
		tl_stories_get_all_stories_gen.go#L233: 			return fmt.Errorf("unable to decode stories.getAllStories#eeb0d625: field state: %w", err)
		tl_stories_get_chats_to_send_gen.go#L101: 		return fmt.Errorf("can't encode stories.getChatsToSend#a56a8b60 as nil")
		tl_stories_get_chats_to_send_gen.go#L110: 		return fmt.Errorf("can't encode stories.getChatsToSend#a56a8b60 as nil")
		tl_stories_get_chats_to_send_gen.go#L118: 		return fmt.Errorf("can't decode stories.getChatsToSend#a56a8b60 to nil")
		tl_stories_get_chats_to_send_gen.go#L121: 		return fmt.Errorf("unable to decode stories.getChatsToSend#a56a8b60: %w", err)
		tl_stories_get_chats_to_send_gen.go#L129: 		return fmt.Errorf("can't decode stories.getChatsToSend#a56a8b60 to nil")
		tl_stories_get_peer_max_ids_gen.go#L115: 		return fmt.Errorf("can't encode stories.getPeerMaxIDs#535983c3 as nil")
		tl_stories_get_peer_max_ids_gen.go#L124: 		return fmt.Errorf("can't encode stories.getPeerMaxIDs#535983c3 as nil")
		tl_stories_get_peer_max_ids_gen.go#L129: 			return fmt.Errorf("unable to encode stories.getPeerMaxIDs#535983c3: field id element with index %d is nil", idx)
		tl_stories_get_peer_max_ids_gen.go#L132: 			return fmt.Errorf("unable to encode stories.getPeerMaxIDs#535983c3: field id element with index %d: %w", idx, err)
		tl_stories_get_peer_max_ids_gen.go#L141: 		return fmt.Errorf("can't decode stories.getPeerMaxIDs#535983c3 to nil")
		tl_stories_get_peer_max_ids_gen.go#L144: 		return fmt.Errorf("unable to decode stories.getPeerMaxIDs#535983c3: %w", err)
		tl_stories_get_peer_max_ids_gen.go#L152: 		return fmt.Errorf("can't decode stories.getPeerMaxIDs#535983c3 to nil")
		tl_stories_get_peer_max_ids_gen.go#L157: 			return fmt.Errorf("unable to decode stories.getPeerMaxIDs#535983c3: field id: %w", err)
		tl_stories_get_peer_max_ids_gen.go#L166: 				return fmt.Errorf("unable to decode stories.getPeerMaxIDs#535983c3: field id: %w", err)
		tl_stories_get_peer_stories_gen.go#L118: 		return fmt.Errorf("can't encode stories.getPeerStories#2c4ada50 as nil")
		tl_stories_get_peer_stories_gen.go#L127: 		return fmt.Errorf("can't encode stories.getPeerStories#2c4ada50 as nil")
		tl_stories_get_peer_stories_gen.go#L130: 		return fmt.Errorf("unable to encode stories.getPeerStories#2c4ada50: field peer is nil")
		tl_stories_get_peer_stories_gen.go#L133: 		return fmt.Errorf("unable to encode stories.getPeerStories#2c4ada50: field peer: %w", err)
		tl_stories_get_peer_stories_gen.go#L141: 		return fmt.Errorf("can't decode stories.getPeerStories#2c4ada50 to nil")
		tl_stories_get_peer_stories_gen.go#L144: 		return fmt.Errorf("unable to decode stories.getPeerStories#2c4ada50: %w", err)
		tl_stories_get_peer_stories_gen.go#L152: 		return fmt.Errorf("can't decode stories.getPeerStories#2c4ada50 to nil")
		tl_stories_get_peer_stories_gen.go#L157: 			return fmt.Errorf("unable to decode stories.getPeerStories#2c4ada50: field peer: %w", err)
		tl_stories_get_pinned_stories_gen.go#L146: 		return fmt.Errorf("can't encode stories.getPinnedStories#5821a5dc as nil")
		tl_stories_get_pinned_stories_gen.go#L155: 		return fmt.Errorf("can't encode stories.getPinnedStories#5821a5dc as nil")
		tl_stories_get_pinned_stories_gen.go#L158: 		return fmt.Errorf("unable to encode stories.getPinnedStories#5821a5dc: field peer is nil")
		tl_stories_get_pinned_stories_gen.go#L161: 		return fmt.Errorf("unable to encode stories.getPinnedStories#5821a5dc: field peer: %w", err)
		tl_stories_get_pinned_stories_gen.go#L171: 		return fmt.Errorf("can't decode stories.getPinnedStories#5821a5dc to nil")
		tl_stories_get_pinned_stories_gen.go#L174: 		return fmt.Errorf("unable to decode stories.getPinnedStories#5821a5dc: %w", err)
		tl_stories_get_pinned_stories_gen.go#L182: 		return fmt.Errorf("can't decode stories.getPinnedStories#5821a5dc to nil")
		tl_stories_get_pinned_stories_gen.go#L187: 			return fmt.Errorf("unable to decode stories.getPinnedStories#5821a5dc: field peer: %w", err)
		tl_stories_get_pinned_stories_gen.go#L194: 			return fmt.Errorf("unable to decode stories.getPinnedStories#5821a5dc: field offset_id: %w", err)
		tl_stories_get_pinned_stories_gen.go#L201: 			return fmt.Errorf("unable to decode stories.getPinnedStories#5821a5dc: field limit: %w", err)
		tl_stories_get_stories_archive_gen.go#L146: 		return fmt.Errorf("can't encode stories.getStoriesArchive#b4352016 as nil")
		tl_stories_get_stories_archive_gen.go#L155: 		return fmt.Errorf("can't encode stories.getStoriesArchive#b4352016 as nil")
		tl_stories_get_stories_archive_gen.go#L158: 		return fmt.Errorf("unable to encode stories.getStoriesArchive#b4352016: field peer is nil")
		tl_stories_get_stories_archive_gen.go#L161: 		return fmt.Errorf("unable to encode stories.getStoriesArchive#b4352016: field peer: %w", err)
		tl_stories_get_stories_archive_gen.go#L171: 		return fmt.Errorf("can't decode stories.getStoriesArchive#b4352016 to nil")
		tl_stories_get_stories_archive_gen.go#L174: 		return fmt.Errorf("unable to decode stories.getStoriesArchive#b4352016: %w", err)
		tl_stories_get_stories_archive_gen.go#L182: 		return fmt.Errorf("can't decode stories.getStoriesArchive#b4352016 to nil")
		tl_stories_get_stories_archive_gen.go#L187: 			return fmt.Errorf("unable to decode stories.getStoriesArchive#b4352016: field peer: %w", err)
		tl_stories_get_stories_archive_gen.go#L194: 			return fmt.Errorf("unable to decode stories.getStoriesArchive#b4352016: field offset_id: %w", err)
		tl_stories_get_stories_archive_gen.go#L201: 			return fmt.Errorf("unable to decode stories.getStoriesArchive#b4352016: field limit: %w", err)
		tl_stories_get_stories_by_id_gen.go#L129: 		return fmt.Errorf("can't encode stories.getStoriesByID#5774ca74 as nil")
		tl_stories_get_stories_by_id_gen.go#L138: 		return fmt.Errorf("can't encode stories.getStoriesByID#5774ca74 as nil")
		tl_stories_get_stories_by_id_gen.go#L141: 		return fmt.Errorf("unable to encode stories.getStoriesByID#5774ca74: field peer is nil")
		tl_stories_get_stories_by_id_gen.go#L144: 		return fmt.Errorf("unable to encode stories.getStoriesByID#5774ca74: field peer: %w", err)
		tl_stories_get_stories_by_id_gen.go#L156: 		return fmt.Errorf("can't decode stories.getStoriesByID#5774ca74 to nil")
		tl_stories_get_stories_by_id_gen.go#L159: 		return fmt.Errorf("unable to decode stories.getStoriesByID#5774ca74: %w", err)
		tl_stories_get_stories_by_id_gen.go#L167: 		return fmt.Errorf("can't decode stories.getStoriesByID#5774ca74 to nil")
		tl_stories_get_stories_by_id_gen.go#L172: 			return fmt.Errorf("unable to decode stories.getStoriesByID#5774ca74: field peer: %w", err)
		tl_stories_get_stories_by_id_gen.go#L179: 			return fmt.Errorf("unable to decode stories.getStoriesByID#5774ca74: field id: %w", err)
		tl_stories_get_stories_by_id_gen.go#L188: 				return fmt.Errorf("unable to decode stories.getStoriesByID#5774ca74: field id: %w", err)
		tl_stories_get_stories_views_gen.go#L130: 		return fmt.Errorf("can't encode stories.getStoriesViews#28e16cc8 as nil")
		tl_stories_get_stories_views_gen.go#L139: 		return fmt.Errorf("can't encode stories.getStoriesViews#28e16cc8 as nil")
		tl_stories_get_stories_views_gen.go#L142: 		return fmt.Errorf("unable to encode stories.getStoriesViews#28e16cc8: field peer is nil")
		tl_stories_get_stories_views_gen.go#L145: 		return fmt.Errorf("unable to encode stories.getStoriesViews#28e16cc8: field peer: %w", err)
		tl_stories_get_stories_views_gen.go#L157: 		return fmt.Errorf("can't decode stories.getStoriesViews#28e16cc8 to nil")
		tl_stories_get_stories_views_gen.go#L160: 		return fmt.Errorf("unable to decode stories.getStoriesViews#28e16cc8: %w", err)
		tl_stories_get_stories_views_gen.go#L168: 		return fmt.Errorf("can't decode stories.getStoriesViews#28e16cc8 to nil")
		tl_stories_get_stories_views_gen.go#L173: 			return fmt.Errorf("unable to decode stories.getStoriesViews#28e16cc8: field peer: %w", err)
		tl_stories_get_stories_views_gen.go#L180: 			return fmt.Errorf("unable to decode stories.getStoriesViews#28e16cc8: field id: %w", err)
		tl_stories_get_stories_views_gen.go#L189: 				return fmt.Errorf("unable to decode stories.getStoriesViews#28e16cc8: field id: %w", err)
		tl_stories_get_story_reactions_list_gen.go#L200: 		return fmt.Errorf("can't encode stories.getStoryReactionsList#b9b2881f as nil")
		tl_stories_get_story_reactions_list_gen.go#L209: 		return fmt.Errorf("can't encode stories.getStoryReactionsList#b9b2881f as nil")
		tl_stories_get_story_reactions_list_gen.go#L213: 		return fmt.Errorf("unable to encode stories.getStoryReactionsList#b9b2881f: field flags: %w", err)
		tl_stories_get_story_reactions_list_gen.go#L216: 		return fmt.Errorf("unable to encode stories.getStoryReactionsList#b9b2881f: field peer is nil")
		tl_stories_get_story_reactions_list_gen.go#L219: 		return fmt.Errorf("unable to encode stories.getStoryReactionsList#b9b2881f: field peer: %w", err)
		tl_stories_get_story_reactions_list_gen.go#L224: 			return fmt.Errorf("unable to encode stories.getStoryReactionsList#b9b2881f: field reaction is nil")
		tl_stories_get_story_reactions_list_gen.go#L227: 			return fmt.Errorf("unable to encode stories.getStoryReactionsList#b9b2881f: field reaction: %w", err)
		tl_stories_get_story_reactions_list_gen.go#L240: 		return fmt.Errorf("can't decode stories.getStoryReactionsList#b9b2881f to nil")
		tl_stories_get_story_reactions_list_gen.go#L243: 		return fmt.Errorf("unable to decode stories.getStoryReactionsList#b9b2881f: %w", err)
		tl_stories_get_story_reactions_list_gen.go#L251: 		return fmt.Errorf("can't decode stories.getStoryReactionsList#b9b2881f to nil")
		tl_stories_get_story_reactions_list_gen.go#L255: 			return fmt.Errorf("unable to decode stories.getStoryReactionsList#b9b2881f: field flags: %w", err)
		tl_stories_get_story_reactions_list_gen.go#L262: 			return fmt.Errorf("unable to decode stories.getStoryReactionsList#b9b2881f: field peer: %w", err)
		tl_stories_get_story_reactions_list_gen.go#L269: 			return fmt.Errorf("unable to decode stories.getStoryReactionsList#b9b2881f: field id: %w", err)
		tl_stories_get_story_reactions_list_gen.go#L276: 			return fmt.Errorf("unable to decode stories.getStoryReactionsList#b9b2881f: field reaction: %w", err)
		tl_stories_get_story_reactions_list_gen.go#L283: 			return fmt.Errorf("unable to decode stories.getStoryReactionsList#b9b2881f: field offset: %w", err)
		tl_stories_get_story_reactions_list_gen.go#L290: 			return fmt.Errorf("unable to decode stories.getStoryReactionsList#b9b2881f: field limit: %w", err)
		tl_stories_get_story_views_list_gen.go#L243: 		return fmt.Errorf("can't encode stories.getStoryViewsList#7ed23c57 as nil")
		tl_stories_get_story_views_list_gen.go#L252: 		return fmt.Errorf("can't encode stories.getStoryViewsList#7ed23c57 as nil")
		tl_stories_get_story_views_list_gen.go#L256: 		return fmt.Errorf("unable to encode stories.getStoryViewsList#7ed23c57: field flags: %w", err)
		tl_stories_get_story_views_list_gen.go#L259: 		return fmt.Errorf("unable to encode stories.getStoryViewsList#7ed23c57: field peer is nil")
		tl_stories_get_story_views_list_gen.go#L262: 		return fmt.Errorf("unable to encode stories.getStoryViewsList#7ed23c57: field peer: %w", err)
		tl_stories_get_story_views_list_gen.go#L276: 		return fmt.Errorf("can't decode stories.getStoryViewsList#7ed23c57 to nil")
		tl_stories_get_story_views_list_gen.go#L279: 		return fmt.Errorf("unable to decode stories.getStoryViewsList#7ed23c57: %w", err)
		tl_stories_get_story_views_list_gen.go#L287: 		return fmt.Errorf("can't decode stories.getStoryViewsList#7ed23c57 to nil")
		tl_stories_get_story_views_list_gen.go#L291: 			return fmt.Errorf("unable to decode stories.getStoryViewsList#7ed23c57: field flags: %w", err)
		tl_stories_get_story_views_list_gen.go#L300: 			return fmt.Errorf("unable to decode stories.getStoryViewsList#7ed23c57: field peer: %w", err)
		tl_stories_get_story_views_list_gen.go#L307: 			return fmt.Errorf("unable to decode stories.getStoryViewsList#7ed23c57: field q: %w", err)
		tl_stories_get_story_views_list_gen.go#L314: 			return fmt.Errorf("unable to decode stories.getStoryViewsList#7ed23c57: field id: %w", err)
		tl_stories_get_story_views_list_gen.go#L321: 			return fmt.Errorf("unable to decode stories.getStoryViewsList#7ed23c57: field offset: %w", err)
		tl_stories_get_story_views_list_gen.go#L328: 			return fmt.Errorf("unable to decode stories.getStoryViewsList#7ed23c57: field limit: %w", err)
		tl_stories_increment_story_views_gen.go#L126: 		return fmt.Errorf("can't encode stories.incrementStoryViews#b2028afb as nil")
		tl_stories_increment_story_views_gen.go#L135: 		return fmt.Errorf("can't encode stories.incrementStoryViews#b2028afb as nil")
		tl_stories_increment_story_views_gen.go#L138: 		return fmt.Errorf("unable to encode stories.incrementStoryViews#b2028afb: field peer is nil")
		tl_stories_increment_story_views_gen.go#L141: 		return fmt.Errorf("unable to encode stories.incrementStoryViews#b2028afb: field peer: %w", err)
		tl_stories_increment_story_views_gen.go#L153: 		return fmt.Errorf("can't decode stories.incrementStoryViews#b2028afb to nil")
		tl_stories_increment_story_views_gen.go#L156: 		return fmt.Errorf("unable to decode stories.incrementStoryViews#b2028afb: %w", err)
		tl_stories_increment_story_views_gen.go#L164: 		return fmt.Errorf("can't decode stories.incrementStoryViews#b2028afb to nil")
		tl_stories_increment_story_views_gen.go#L169: 			return fmt.Errorf("unable to decode stories.incrementStoryViews#b2028afb: field peer: %w", err)
		tl_stories_increment_story_views_gen.go#L176: 			return fmt.Errorf("unable to decode stories.incrementStoryViews#b2028afb: field id: %w", err)
		tl_stories_increment_story_views_gen.go#L185: 				return fmt.Errorf("unable to decode stories.incrementStoryViews#b2028afb: field id: %w", err)
		tl_stories_peer_stories_gen.go#L140: 		return fmt.Errorf("can't encode stories.peerStories#cae68768 as nil")
		tl_stories_peer_stories_gen.go#L149: 		return fmt.Errorf("can't encode stories.peerStories#cae68768 as nil")
		tl_stories_peer_stories_gen.go#L152: 		return fmt.Errorf("unable to encode stories.peerStories#cae68768: field stories: %w", err)
		tl_stories_peer_stories_gen.go#L157: 			return fmt.Errorf("unable to encode stories.peerStories#cae68768: field chats element with index %d is nil", idx)
		tl_stories_peer_stories_gen.go#L160: 			return fmt.Errorf("unable to encode stories.peerStories#cae68768: field chats element with index %d: %w", idx, err)
		tl_stories_peer_stories_gen.go#L166: 			return fmt.Errorf("unable to encode stories.peerStories#cae68768: field users element with index %d is nil", idx)
		tl_stories_peer_stories_gen.go#L169: 			return fmt.Errorf("unable to encode stories.peerStories#cae68768: field users element with index %d: %w", idx, err)
		tl_stories_peer_stories_gen.go#L178: 		return fmt.Errorf("can't decode stories.peerStories#cae68768 to nil")
		tl_stories_peer_stories_gen.go#L181: 		return fmt.Errorf("unable to decode stories.peerStories#cae68768: %w", err)
		tl_stories_peer_stories_gen.go#L189: 		return fmt.Errorf("can't decode stories.peerStories#cae68768 to nil")
		tl_stories_peer_stories_gen.go#L193: 			return fmt.Errorf("unable to decode stories.peerStories#cae68768: field stories: %w", err)
		tl_stories_peer_stories_gen.go#L199: 			return fmt.Errorf("unable to decode stories.peerStories#cae68768: field chats: %w", err)
		tl_stories_peer_stories_gen.go#L208: 				return fmt.Errorf("unable to decode stories.peerStories#cae68768: field chats: %w", err)
		tl_stories_peer_stories_gen.go#L216: 			return fmt.Errorf("unable to decode stories.peerStories#cae68768: field users: %w", err)
		tl_stories_peer_stories_gen.go#L225: 				return fmt.Errorf("unable to decode stories.peerStories#cae68768: field users: %w", err)
		tl_stories_read_stories_gen.go#L130: 		return fmt.Errorf("can't encode stories.readStories#a556dac8 as nil")
		tl_stories_read_stories_gen.go#L139: 		return fmt.Errorf("can't encode stories.readStories#a556dac8 as nil")
		tl_stories_read_stories_gen.go#L142: 		return fmt.Errorf("unable to encode stories.readStories#a556dac8: field peer is nil")
		tl_stories_read_stories_gen.go#L145: 		return fmt.Errorf("unable to encode stories.readStories#a556dac8: field peer: %w", err)
		tl_stories_read_stories_gen.go#L154: 		return fmt.Errorf("can't decode stories.readStories#a556dac8 to nil")
		tl_stories_read_stories_gen.go#L157: 		return fmt.Errorf("unable to decode stories.readStories#a556dac8: %w", err)
		tl_stories_read_stories_gen.go#L165: 		return fmt.Errorf("can't decode stories.readStories#a556dac8 to nil")
		tl_stories_read_stories_gen.go#L170: 			return fmt.Errorf("unable to decode stories.readStories#a556dac8: field peer: %w", err)
		tl_stories_read_stories_gen.go#L177: 			return fmt.Errorf("unable to decode stories.readStories#a556dac8: field max_id: %w", err)
		tl_stories_report_gen.go#L148: 		return fmt.Errorf("can't encode stories.report#1923fa8c as nil")
		tl_stories_report_gen.go#L157: 		return fmt.Errorf("can't encode stories.report#1923fa8c as nil")
		tl_stories_report_gen.go#L160: 		return fmt.Errorf("unable to encode stories.report#1923fa8c: field peer is nil")
		tl_stories_report_gen.go#L163: 		return fmt.Errorf("unable to encode stories.report#1923fa8c: field peer: %w", err)
		tl_stories_report_gen.go#L170: 		return fmt.Errorf("unable to encode stories.report#1923fa8c: field reason is nil")
		tl_stories_report_gen.go#L173: 		return fmt.Errorf("unable to encode stories.report#1923fa8c: field reason: %w", err)
		tl_stories_report_gen.go#L182: 		return fmt.Errorf("can't decode stories.report#1923fa8c to nil")
		tl_stories_report_gen.go#L185: 		return fmt.Errorf("unable to decode stories.report#1923fa8c: %w", err)
		tl_stories_report_gen.go#L193: 		return fmt.Errorf("can't decode stories.report#1923fa8c to nil")
		tl_stories_report_gen.go#L198: 			return fmt.Errorf("unable to decode stories.report#1923fa8c: field peer: %w", err)
		tl_stories_report_gen.go#L205: 			return fmt.Errorf("unable to decode stories.report#1923fa8c: field id: %w", err)
		tl_stories_report_gen.go#L214: 				return fmt.Errorf("unable to decode stories.report#1923fa8c: field id: %w", err)
		tl_stories_report_gen.go#L222: 			return fmt.Errorf("unable to decode stories.report#1923fa8c: field reason: %w", err)
		tl_stories_report_gen.go#L229: 			return fmt.Errorf("unable to decode stories.report#1923fa8c: field message: %w", err)
		tl_stories_send_reaction_gen.go#L167: 		return fmt.Errorf("can't encode stories.sendReaction#7fd736b2 as nil")
		tl_stories_send_reaction_gen.go#L176: 		return fmt.Errorf("can't encode stories.sendReaction#7fd736b2 as nil")
		tl_stories_send_reaction_gen.go#L180: 		return fmt.Errorf("unable to encode stories.sendReaction#7fd736b2: field flags: %w", err)
		tl_stories_send_reaction_gen.go#L183: 		return fmt.Errorf("unable to encode stories.sendReaction#7fd736b2: field peer is nil")
		tl_stories_send_reaction_gen.go#L186: 		return fmt.Errorf("unable to encode stories.sendReaction#7fd736b2: field peer: %w", err)
		tl_stories_send_reaction_gen.go#L190: 		return fmt.Errorf("unable to encode stories.sendReaction#7fd736b2: field reaction is nil")
		tl_stories_send_reaction_gen.go#L193: 		return fmt.Errorf("unable to encode stories.sendReaction#7fd736b2: field reaction: %w", err)
		tl_stories_send_reaction_gen.go#L201: 		return fmt.Errorf("can't decode stories.sendReaction#7fd736b2 to nil")
		tl_stories_send_reaction_gen.go#L204: 		return fmt.Errorf("unable to decode stories.sendReaction#7fd736b2: %w", err)
		tl_stories_send_reaction_gen.go#L212: 		return fmt.Errorf("can't decode stories.sendReaction#7fd736b2 to nil")
		tl_stories_send_reaction_gen.go#L216: 			return fmt.Errorf("unable to decode stories.sendReaction#7fd736b2: field flags: %w", err)
		tl_stories_send_reaction_gen.go#L223: 			return fmt.Errorf("unable to decode stories.sendReaction#7fd736b2: field peer: %w", err)
		tl_stories_send_reaction_gen.go#L230: 			return fmt.Errorf("unable to decode stories.sendReaction#7fd736b2: field story_id: %w", err)
		tl_stories_send_reaction_gen.go#L237: 			return fmt.Errorf("unable to decode stories.sendReaction#7fd736b2: field reaction: %w", err)
		tl_stories_send_story_gen.go#L349: 		return fmt.Errorf("can't encode stories.sendStory#e4e6694b as nil")
		tl_stories_send_story_gen.go#L358: 		return fmt.Errorf("can't encode stories.sendStory#e4e6694b as nil")
		tl_stories_send_story_gen.go#L362: 		return fmt.Errorf("unable to encode stories.sendStory#e4e6694b: field flags: %w", err)
		tl_stories_send_story_gen.go#L365: 		return fmt.Errorf("unable to encode stories.sendStory#e4e6694b: field peer is nil")
		tl_stories_send_story_gen.go#L368: 		return fmt.Errorf("unable to encode stories.sendStory#e4e6694b: field peer: %w", err)
		tl_stories_send_story_gen.go#L371: 		return fmt.Errorf("unable to encode stories.sendStory#e4e6694b: field media is nil")
		tl_stories_send_story_gen.go#L374: 		return fmt.Errorf("unable to encode stories.sendStory#e4e6694b: field media: %w", err)
		tl_stories_send_story_gen.go#L380: 				return fmt.Errorf("unable to encode stories.sendStory#e4e6694b: field media_areas element with index %d is nil", idx)
		tl_stories_send_story_gen.go#L383: 				return fmt.Errorf("unable to encode stories.sendStory#e4e6694b: field media_areas element with index %d: %w", idx, err)
		tl_stories_send_story_gen.go#L394: 				return fmt.Errorf("unable to encode stories.sendStory#e4e6694b: field entities element with index %d is nil", idx)
		tl_stories_send_story_gen.go#L397: 				return fmt.Errorf("unable to encode stories.sendStory#e4e6694b: field entities element with index %d: %w", idx, err)
		tl_stories_send_story_gen.go#L404: 			return fmt.Errorf("unable to encode stories.sendStory#e4e6694b: field privacy_rules element with index %d is nil", idx)
		tl_stories_send_story_gen.go#L407: 			return fmt.Errorf("unable to encode stories.sendStory#e4e6694b: field privacy_rules element with index %d: %w", idx, err)
		tl_stories_send_story_gen.go#L416: 			return fmt.Errorf("unable to encode stories.sendStory#e4e6694b: field fwd_from_id is nil")
		tl_stories_send_story_gen.go#L419: 			return fmt.Errorf("unable to encode stories.sendStory#e4e6694b: field fwd_from_id: %w", err)
		tl_stories_send_story_gen.go#L431: 		return fmt.Errorf("can't decode stories.sendStory#e4e6694b to nil")
		tl_stories_send_story_gen.go#L434: 		return fmt.Errorf("unable to decode stories.sendStory#e4e6694b: %w", err)
		tl_stories_send_story_gen.go#L442: 		return fmt.Errorf("can't decode stories.sendStory#e4e6694b to nil")
		tl_stories_send_story_gen.go#L446: 			return fmt.Errorf("unable to decode stories.sendStory#e4e6694b: field flags: %w", err)
		tl_stories_send_story_gen.go#L455: 			return fmt.Errorf("unable to decode stories.sendStory#e4e6694b: field peer: %w", err)
		tl_stories_send_story_gen.go#L462: 			return fmt.Errorf("unable to decode stories.sendStory#e4e6694b: field media: %w", err)
		tl_stories_send_story_gen.go#L469: 			return fmt.Errorf("unable to decode stories.sendStory#e4e6694b: field media_areas: %w", err)
		tl_stories_send_story_gen.go#L478: 				return fmt.Errorf("unable to decode stories.sendStory#e4e6694b: field media_areas: %w", err)
		tl_stories_send_story_gen.go#L486: 			return fmt.Errorf("unable to decode stories.sendStory#e4e6694b: field caption: %w", err)
		tl_stories_send_story_gen.go#L493: 			return fmt.Errorf("unable to decode stories.sendStory#e4e6694b: field entities: %w", err)
		tl_stories_send_story_gen.go#L502: 				return fmt.Errorf("unable to decode stories.sendStory#e4e6694b: field entities: %w", err)
		tl_stories_send_story_gen.go#L510: 			return fmt.Errorf("unable to decode stories.sendStory#e4e6694b: field privacy_rules: %w", err)
		tl_stories_send_story_gen.go#L519: 				return fmt.Errorf("unable to decode stories.sendStory#e4e6694b: field privacy_rules: %w", err)
		tl_stories_send_story_gen.go#L527: 			return fmt.Errorf("unable to decode stories.sendStory#e4e6694b: field random_id: %w", err)
		tl_stories_send_story_gen.go#L534: 			return fmt.Errorf("unable to decode stories.sendStory#e4e6694b: field period: %w", err)
		tl_stories_send_story_gen.go#L541: 			return fmt.Errorf("unable to decode stories.sendStory#e4e6694b: field fwd_from_id: %w", err)
		tl_stories_send_story_gen.go#L548: 			return fmt.Errorf("unable to decode stories.sendStory#e4e6694b: field fwd_from_story: %w", err)
		tl_stories_stealth_mode_gen.go#L159: 		return fmt.Errorf("can't encode storiesStealthMode#712e27fd as nil")
		tl_stories_stealth_mode_gen.go#L168: 		return fmt.Errorf("can't encode storiesStealthMode#712e27fd as nil")
		tl_stories_stealth_mode_gen.go#L172: 		return fmt.Errorf("unable to encode storiesStealthMode#712e27fd: field flags: %w", err)
		tl_stories_stealth_mode_gen.go#L186: 		return fmt.Errorf("can't decode storiesStealthMode#712e27fd to nil")
		tl_stories_stealth_mode_gen.go#L189: 		return fmt.Errorf("unable to decode storiesStealthMode#712e27fd: %w", err)
		tl_stories_stealth_mode_gen.go#L197: 		return fmt.Errorf("can't decode storiesStealthMode#712e27fd to nil")
		tl_stories_stealth_mode_gen.go#L201: 			return fmt.Errorf("unable to decode storiesStealthMode#712e27fd: field flags: %w", err)
		tl_stories_stealth_mode_gen.go#L207: 			return fmt.Errorf("unable to decode storiesStealthMode#712e27fd: field active_until_date: %w", err)
		tl_stories_stealth_mode_gen.go#L214: 			return fmt.Errorf("unable to decode storiesStealthMode#712e27fd: field cooldown_until_date: %w", err)
		tl_stories_stories_gen.go#L151: 		return fmt.Errorf("can't encode stories.stories#5dd8c3c8 as nil")
		tl_stories_stories_gen.go#L160: 		return fmt.Errorf("can't encode stories.stories#5dd8c3c8 as nil")
		tl_stories_stories_gen.go#L166: 			return fmt.Errorf("unable to encode stories.stories#5dd8c3c8: field stories element with index %d is nil", idx)
		tl_stories_stories_gen.go#L169: 			return fmt.Errorf("unable to encode stories.stories#5dd8c3c8: field stories element with index %d: %w", idx, err)
		tl_stories_stories_gen.go#L175: 			return fmt.Errorf("unable to encode stories.stories#5dd8c3c8: field chats element with index %d is nil", idx)
		tl_stories_stories_gen.go#L178: 			return fmt.Errorf("unable to encode stories.stories#5dd8c3c8: field chats element with index %d: %w", idx, err)
		tl_stories_stories_gen.go#L184: 			return fmt.Errorf("unable to encode stories.stories#5dd8c3c8: field users element with index %d is nil", idx)
		tl_stories_stories_gen.go#L187: 			return fmt.Errorf("unable to encode stories.stories#5dd8c3c8: field users element with index %d: %w", idx, err)
		tl_stories_stories_gen.go#L196: 		return fmt.Errorf("can't decode stories.stories#5dd8c3c8 to nil")
		tl_stories_stories_gen.go#L199: 		return fmt.Errorf("unable to decode stories.stories#5dd8c3c8: %w", err)
		tl_stories_stories_gen.go#L207: 		return fmt.Errorf("can't decode stories.stories#5dd8c3c8 to nil")
		tl_stories_stories_gen.go#L212: 			return fmt.Errorf("unable to decode stories.stories#5dd8c3c8: field count: %w", err)
		tl_stories_stories_gen.go#L219: 			return fmt.Errorf("unable to decode stories.stories#5dd8c3c8: field stories: %w", err)
		tl_stories_stories_gen.go#L228: 				return fmt.Errorf("unable to decode stories.stories#5dd8c3c8: field stories: %w", err)
		tl_stories_stories_gen.go#L236: 			return fmt.Errorf("unable to decode stories.stories#5dd8c3c8: field chats: %w", err)
		tl_stories_stories_gen.go#L245: 				return fmt.Errorf("unable to decode stories.stories#5dd8c3c8: field chats: %w", err)
		tl_stories_stories_gen.go#L253: 			return fmt.Errorf("unable to decode stories.stories#5dd8c3c8: field users: %w", err)
		tl_stories_stories_gen.go#L262: 				return fmt.Errorf("unable to decode stories.stories#5dd8c3c8: field users: %w", err)
		tl_stories_story_reactions_list_gen.go#L176: 		return fmt.Errorf("can't encode stories.storyReactionsList#aa5f789c as nil")
		tl_stories_story_reactions_list_gen.go#L185: 		return fmt.Errorf("can't encode stories.storyReactionsList#aa5f789c as nil")
		tl_stories_story_reactions_list_gen.go#L189: 		return fmt.Errorf("unable to encode stories.storyReactionsList#aa5f789c: field flags: %w", err)
		tl_stories_story_reactions_list_gen.go#L195: 			return fmt.Errorf("unable to encode stories.storyReactionsList#aa5f789c: field reactions element with index %d is nil", idx)
		tl_stories_story_reactions_list_gen.go#L198: 			return fmt.Errorf("unable to encode stories.storyReactionsList#aa5f789c: field reactions element with index %d: %w", idx, err)
		tl_stories_story_reactions_list_gen.go#L204: 			return fmt.Errorf("unable to encode stories.storyReactionsList#aa5f789c: field chats element with index %d is nil", idx)
		tl_stories_story_reactions_list_gen.go#L207: 			return fmt.Errorf("unable to encode stories.storyReactionsList#aa5f789c: field chats element with index %d: %w", idx, err)
		tl_stories_story_reactions_list_gen.go#L213: 			return fmt.Errorf("unable to encode stories.storyReactionsList#aa5f789c: field users element with index %d is nil", idx)
		tl_stories_story_reactions_list_gen.go#L216: 			return fmt.Errorf("unable to encode stories.storyReactionsList#aa5f789c: field users element with index %d: %w", idx, err)
		tl_stories_story_reactions_list_gen.go#L228: 		return fmt.Errorf("can't decode stories.storyReactionsList#aa5f789c to nil")
		tl_stories_story_reactions_list_gen.go#L231: 		return fmt.Errorf("unable to decode stories.storyReactionsList#aa5f789c: %w", err)
		tl_stories_story_reactions_list_gen.go#L239: 		return fmt.Errorf("can't decode stories.storyReactionsList#aa5f789c to nil")
		tl_stories_story_reactions_list_gen.go#L243: 			return fmt.Errorf("unable to decode stories.storyReactionsList#aa5f789c: field flags: %w", err)
		tl_stories_story_reactions_list_gen.go#L249: 			return fmt.Errorf("unable to decode stories.storyReactionsList#aa5f789c: field count: %w", err)
		tl_stories_story_reactions_list_gen.go#L256: 			return fmt.Errorf("unable to decode stories.storyReactionsList#aa5f789c: field reactions: %w", err)
		tl_stories_story_reactions_list_gen.go#L265: 				return fmt.Errorf("unable to decode stories.storyReactionsList#aa5f789c: field reactions: %w", err)
		tl_stories_story_reactions_list_gen.go#L273: 			return fmt.Errorf("unable to decode stories.storyReactionsList#aa5f789c: field chats: %w", err)
		tl_stories_story_reactions_list_gen.go#L282: 				return fmt.Errorf("unable to decode stories.storyReactionsList#aa5f789c: field chats: %w", err)
		tl_stories_story_reactions_list_gen.go#L290: 			return fmt.Errorf("unable to decode stories.storyReactionsList#aa5f789c: field users: %w", err)
		tl_stories_story_reactions_list_gen.go#L299: 				return fmt.Errorf("unable to decode stories.storyReactionsList#aa5f789c: field users: %w", err)
		tl_stories_story_reactions_list_gen.go#L307: 			return fmt.Errorf("unable to decode stories.storyReactionsList#aa5f789c: field next_offset: %w", err)
		tl_stories_story_views_gen.go#L129: 		return fmt.Errorf("can't encode stories.storyViews#de9eed1d as nil")
		tl_stories_story_views_gen.go#L138: 		return fmt.Errorf("can't encode stories.storyViews#de9eed1d as nil")
		tl_stories_story_views_gen.go#L143: 			return fmt.Errorf("unable to encode stories.storyViews#de9eed1d: field views element with index %d: %w", idx, err)
		tl_stories_story_views_gen.go#L149: 			return fmt.Errorf("unable to encode stories.storyViews#de9eed1d: field users element with index %d is nil", idx)
		tl_stories_story_views_gen.go#L152: 			return fmt.Errorf("unable to encode stories.storyViews#de9eed1d: field users element with index %d: %w", idx, err)
		tl_stories_story_views_gen.go#L161: 		return fmt.Errorf("can't decode stories.storyViews#de9eed1d to nil")
		tl_stories_story_views_gen.go#L164: 		return fmt.Errorf("unable to decode stories.storyViews#de9eed1d: %w", err)
		tl_stories_story_views_gen.go#L172: 		return fmt.Errorf("can't decode stories.storyViews#de9eed1d to nil")
		tl_stories_story_views_gen.go#L177: 			return fmt.Errorf("unable to decode stories.storyViews#de9eed1d: field views: %w", err)
		tl_stories_story_views_gen.go#L186: 				return fmt.Errorf("unable to decode stories.storyViews#de9eed1d: field views: %w", err)
		tl_stories_story_views_gen.go#L194: 			return fmt.Errorf("unable to decode stories.storyViews#de9eed1d: field users: %w", err)
		tl_stories_story_views_gen.go#L203: 				return fmt.Errorf("unable to decode stories.storyViews#de9eed1d: field users: %w", err)
		tl_stories_story_views_list_gen.go#L216: 		return fmt.Errorf("can't encode stories.storyViewsList#59d78fc5 as nil")
		tl_stories_story_views_list_gen.go#L225: 		return fmt.Errorf("can't encode stories.storyViewsList#59d78fc5 as nil")
		tl_stories_story_views_list_gen.go#L229: 		return fmt.Errorf("unable to encode stories.storyViewsList#59d78fc5: field flags: %w", err)
		tl_stories_story_views_list_gen.go#L238: 			return fmt.Errorf("unable to encode stories.storyViewsList#59d78fc5: field views element with index %d is nil", idx)
		tl_stories_story_views_list_gen.go#L241: 			return fmt.Errorf("unable to encode stories.storyViewsList#59d78fc5: field views element with index %d: %w", idx, err)
		tl_stories_story_views_list_gen.go#L247: 			return fmt.Errorf("unable to encode stories.storyViewsList#59d78fc5: field chats element with index %d is nil", idx)
		tl_stories_story_views_list_gen.go#L250: 			return fmt.Errorf("unable to encode stories.storyViewsList#59d78fc5: field chats element with index %d: %w", idx, err)
		tl_stories_story_views_list_gen.go#L256: 			return fmt.Errorf("unable to encode stories.storyViewsList#59d78fc5: field users element with index %d is nil", idx)
		tl_stories_story_views_list_gen.go#L259: 			return fmt.Errorf("unable to encode stories.storyViewsList#59d78fc5: field users element with index %d: %w", idx, err)
		tl_stories_story_views_list_gen.go#L271: 		return fmt.Errorf("can't decode stories.storyViewsList#59d78fc5 to nil")
		tl_stories_story_views_list_gen.go#L274: 		return fmt.Errorf("unable to decode stories.storyViewsList#59d78fc5: %w", err)
		tl_stories_story_views_list_gen.go#L282: 		return fmt.Errorf("can't decode stories.storyViewsList#59d78fc5 to nil")
		tl_stories_story_views_list_gen.go#L286: 			return fmt.Errorf("unable to decode stories.storyViewsList#59d78fc5: field flags: %w", err)
		tl_stories_story_views_list_gen.go#L292: 			return fmt.Errorf("unable to decode stories.storyViewsList#59d78fc5: field count: %w", err)
		tl_stories_story_views_list_gen.go#L299: 			return fmt.Errorf("unable to decode stories.storyViewsList#59d78fc5: field views_count: %w", err)
		tl_stories_story_views_list_gen.go#L306: 			return fmt.Errorf("unable to decode stories.storyViewsList#59d78fc5: field forwards_count: %w", err)
		tl_stories_story_views_list_gen.go#L313: 			return fmt.Errorf("unable to decode stories.storyViewsList#59d78fc5: field reactions_count: %w", err)
		tl_stories_story_views_list_gen.go#L320: 			return fmt.Errorf("unable to decode stories.storyViewsList#59d78fc5: field views: %w", err)
		tl_stories_story_views_list_gen.go#L329: 				return fmt.Errorf("unable to decode stories.storyViewsList#59d78fc5: field views: %w", err)
		tl_stories_story_views_list_gen.go#L337: 			return fmt.Errorf("unable to decode stories.storyViewsList#59d78fc5: field chats: %w", err)
		tl_stories_story_views_list_gen.go#L346: 				return fmt.Errorf("unable to decode stories.storyViewsList#59d78fc5: field chats: %w", err)
		tl_stories_story_views_list_gen.go#L354: 			return fmt.Errorf("unable to decode stories.storyViewsList#59d78fc5: field users: %w", err)
		tl_stories_story_views_list_gen.go#L363: 				return fmt.Errorf("unable to decode stories.storyViewsList#59d78fc5: field users: %w", err)
		tl_stories_story_views_list_gen.go#L371: 			return fmt.Errorf("unable to decode stories.storyViewsList#59d78fc5: field next_offset: %w", err)
		tl_stories_toggle_all_stories_hidden_gen.go#L116: 		return fmt.Errorf("can't encode stories.toggleAllStoriesHidden#7c2557c4 as nil")
		tl_stories_toggle_all_stories_hidden_gen.go#L125: 		return fmt.Errorf("can't encode stories.toggleAllStoriesHidden#7c2557c4 as nil")
		tl_stories_toggle_all_stories_hidden_gen.go#L134: 		return fmt.Errorf("can't decode stories.toggleAllStoriesHidden#7c2557c4 to nil")
		tl_stories_toggle_all_stories_hidden_gen.go#L137: 		return fmt.Errorf("unable to decode stories.toggleAllStoriesHidden#7c2557c4: %w", err)
		tl_stories_toggle_all_stories_hidden_gen.go#L145: 		return fmt.Errorf("can't decode stories.toggleAllStoriesHidden#7c2557c4 to nil")
		tl_stories_toggle_all_stories_hidden_gen.go#L150: 			return fmt.Errorf("unable to decode stories.toggleAllStoriesHidden#7c2557c4: field hidden: %w", err)
		tl_stories_toggle_peer_stories_hidden_gen.go#L130: 		return fmt.Errorf("can't encode stories.togglePeerStoriesHidden#bd0415c4 as nil")
		tl_stories_toggle_peer_stories_hidden_gen.go#L139: 		return fmt.Errorf("can't encode stories.togglePeerStoriesHidden#bd0415c4 as nil")
		tl_stories_toggle_peer_stories_hidden_gen.go#L142: 		return fmt.Errorf("unable to encode stories.togglePeerStoriesHidden#bd0415c4: field peer is nil")
		tl_stories_toggle_peer_stories_hidden_gen.go#L145: 		return fmt.Errorf("unable to encode stories.togglePeerStoriesHidden#bd0415c4: field peer: %w", err)
		tl_stories_toggle_peer_stories_hidden_gen.go#L154: 		return fmt.Errorf("can't decode stories.togglePeerStoriesHidden#bd0415c4 to nil")
		tl_stories_toggle_peer_stories_hidden_gen.go#L157: 		return fmt.Errorf("unable to decode stories.togglePeerStoriesHidden#bd0415c4: %w", err)
		tl_stories_toggle_peer_stories_hidden_gen.go#L165: 		return fmt.Errorf("can't decode stories.togglePeerStoriesHidden#bd0415c4 to nil")
		tl_stories_toggle_peer_stories_hidden_gen.go#L170: 			return fmt.Errorf("unable to decode stories.togglePeerStoriesHidden#bd0415c4: field peer: %w", err)
		tl_stories_toggle_peer_stories_hidden_gen.go#L177: 			return fmt.Errorf("unable to decode stories.togglePeerStoriesHidden#bd0415c4: field hidden: %w", err)
		tl_stories_toggle_pinned_gen.go#L137: 		return fmt.Errorf("can't encode stories.togglePinned#9a75a1ef as nil")
		tl_stories_toggle_pinned_gen.go#L146: 		return fmt.Errorf("can't encode stories.togglePinned#9a75a1ef as nil")
		tl_stories_toggle_pinned_gen.go#L149: 		return fmt.Errorf("unable to encode stories.togglePinned#9a75a1ef: field peer is nil")
		tl_stories_toggle_pinned_gen.go#L152: 		return fmt.Errorf("unable to encode stories.togglePinned#9a75a1ef: field peer: %w", err)
		tl_stories_toggle_pinned_gen.go#L165: 		return fmt.Errorf("can't decode stories.togglePinned#9a75a1ef to nil")
		tl_stories_toggle_pinned_gen.go#L168: 		return fmt.Errorf("unable to decode stories.togglePinned#9a75a1ef: %w", err)
		tl_stories_toggle_pinned_gen.go#L176: 		return fmt.Errorf("can't decode stories.togglePinned#9a75a1ef to nil")
		tl_stories_toggle_pinned_gen.go#L181: 			return fmt.Errorf("unable to decode stories.togglePinned#9a75a1ef: field peer: %w", err)
		tl_stories_toggle_pinned_gen.go#L188: 			return fmt.Errorf("unable to decode stories.togglePinned#9a75a1ef: field id: %w", err)
		tl_stories_toggle_pinned_gen.go#L197: 				return fmt.Errorf("unable to decode stories.togglePinned#9a75a1ef: field id: %w", err)
		tl_stories_toggle_pinned_gen.go#L205: 			return fmt.Errorf("unable to decode stories.togglePinned#9a75a1ef: field pinned: %w", err)
		tl_story_fwd_header_gen.go#L194: 		return fmt.Errorf("can't encode storyFwdHeader#b826e150 as nil")
		tl_story_fwd_header_gen.go#L203: 		return fmt.Errorf("can't encode storyFwdHeader#b826e150 as nil")
		tl_story_fwd_header_gen.go#L207: 		return fmt.Errorf("unable to encode storyFwdHeader#b826e150: field flags: %w", err)
		tl_story_fwd_header_gen.go#L211: 			return fmt.Errorf("unable to encode storyFwdHeader#b826e150: field from is nil")
		tl_story_fwd_header_gen.go#L214: 			return fmt.Errorf("unable to encode storyFwdHeader#b826e150: field from: %w", err)
		tl_story_fwd_header_gen.go#L229: 		return fmt.Errorf("can't decode storyFwdHeader#b826e150 to nil")
		tl_story_fwd_header_gen.go#L232: 		return fmt.Errorf("unable to decode storyFwdHeader#b826e150: %w", err)
		tl_story_fwd_header_gen.go#L240: 		return fmt.Errorf("can't decode storyFwdHeader#b826e150 to nil")
		tl_story_fwd_header_gen.go#L244: 			return fmt.Errorf("unable to decode storyFwdHeader#b826e150: field flags: %w", err)
		tl_story_fwd_header_gen.go#L251: 			return fmt.Errorf("unable to decode storyFwdHeader#b826e150: field from: %w", err)
		tl_story_fwd_header_gen.go#L258: 			return fmt.Errorf("unable to decode storyFwdHeader#b826e150: field from_name: %w", err)
		tl_story_fwd_header_gen.go#L265: 			return fmt.Errorf("unable to decode storyFwdHeader#b826e150: field story_id: %w", err)
		tl_story_item_gen.go#L120: 		return fmt.Errorf("can't encode storyItemDeleted#51e6ee4f as nil")
		tl_story_item_gen.go#L129: 		return fmt.Errorf("can't encode storyItemDeleted#51e6ee4f as nil")
		tl_story_item_gen.go#L138: 		return fmt.Errorf("can't decode storyItemDeleted#51e6ee4f to nil")
		tl_story_item_gen.go#L141: 		return fmt.Errorf("unable to decode storyItemDeleted#51e6ee4f: %w", err)
		tl_story_item_gen.go#L149: 		return fmt.Errorf("can't decode storyItemDeleted#51e6ee4f to nil")
		tl_story_item_gen.go#L154: 			return fmt.Errorf("unable to decode storyItemDeleted#51e6ee4f: field id: %w", err)
		tl_story_item_gen.go#L313: 		return fmt.Errorf("can't encode storyItemSkipped#ffadc913 as nil")
		tl_story_item_gen.go#L322: 		return fmt.Errorf("can't encode storyItemSkipped#ffadc913 as nil")
		tl_story_item_gen.go#L326: 		return fmt.Errorf("unable to encode storyItemSkipped#ffadc913: field flags: %w", err)
		tl_story_item_gen.go#L337: 		return fmt.Errorf("can't decode storyItemSkipped#ffadc913 to nil")
		tl_story_item_gen.go#L340: 		return fmt.Errorf("unable to decode storyItemSkipped#ffadc913: %w", err)
		tl_story_item_gen.go#L348: 		return fmt.Errorf("can't decode storyItemSkipped#ffadc913 to nil")
		tl_story_item_gen.go#L352: 			return fmt.Errorf("unable to decode storyItemSkipped#ffadc913: field flags: %w", err)
		tl_story_item_gen.go#L359: 			return fmt.Errorf("unable to decode storyItemSkipped#ffadc913: field id: %w", err)
		tl_story_item_gen.go#L366: 			return fmt.Errorf("unable to decode storyItemSkipped#ffadc913: field date: %w", err)
		tl_story_item_gen.go#L373: 			return fmt.Errorf("unable to decode storyItemSkipped#ffadc913: field expire_date: %w", err)
		tl_story_item_gen.go#L857: 		return fmt.Errorf("can't encode storyItem#af6365a1 as nil")
		tl_story_item_gen.go#L866: 		return fmt.Errorf("can't encode storyItem#af6365a1 as nil")
		tl_story_item_gen.go#L870: 		return fmt.Errorf("unable to encode storyItem#af6365a1: field flags: %w", err)
		tl_story_item_gen.go#L876: 			return fmt.Errorf("unable to encode storyItem#af6365a1: field fwd_from: %w", err)
		tl_story_item_gen.go#L887: 				return fmt.Errorf("unable to encode storyItem#af6365a1: field entities element with index %d is nil", idx)
		tl_story_item_gen.go#L890: 				return fmt.Errorf("unable to encode storyItem#af6365a1: field entities element with index %d: %w", idx, err)
		tl_story_item_gen.go#L895: 		return fmt.Errorf("unable to encode storyItem#af6365a1: field media is nil")
		tl_story_item_gen.go#L898: 		return fmt.Errorf("unable to encode storyItem#af6365a1: field media: %w", err)
		tl_story_item_gen.go#L904: 				return fmt.Errorf("unable to encode storyItem#af6365a1: field media_areas element with index %d is nil", idx)
		tl_story_item_gen.go#L907: 				return fmt.Errorf("unable to encode storyItem#af6365a1: field media_areas element with index %d: %w", idx, err)
		tl_story_item_gen.go#L915: 				return fmt.Errorf("unable to encode storyItem#af6365a1: field privacy element with index %d is nil", idx)
		tl_story_item_gen.go#L918: 				return fmt.Errorf("unable to encode storyItem#af6365a1: field privacy element with index %d: %w", idx, err)
		tl_story_item_gen.go#L924: 			return fmt.Errorf("unable to encode storyItem#af6365a1: field views: %w", err)
		tl_story_item_gen.go#L929: 			return fmt.Errorf("unable to encode storyItem#af6365a1: field sent_reaction is nil")
		tl_story_item_gen.go#L932: 			return fmt.Errorf("unable to encode storyItem#af6365a1: field sent_reaction: %w", err)
		tl_story_item_gen.go#L941: 		return fmt.Errorf("can't decode storyItem#af6365a1 to nil")
		tl_story_item_gen.go#L944: 		return fmt.Errorf("unable to decode storyItem#af6365a1: %w", err)
		tl_story_item_gen.go#L952: 		return fmt.Errorf("can't decode storyItem#af6365a1 to nil")
		tl_story_item_gen.go#L956: 			return fmt.Errorf("unable to decode storyItem#af6365a1: field flags: %w", err)
		tl_story_item_gen.go#L971: 			return fmt.Errorf("unable to decode storyItem#af6365a1: field id: %w", err)
		tl_story_item_gen.go#L978: 			return fmt.Errorf("unable to decode storyItem#af6365a1: field date: %w", err)
		tl_story_item_gen.go#L984: 			return fmt.Errorf("unable to decode storyItem#af6365a1: field fwd_from: %w", err)
		tl_story_item_gen.go#L990: 			return fmt.Errorf("unable to decode storyItem#af6365a1: field expire_date: %w", err)
		tl_story_item_gen.go#L997: 			return fmt.Errorf("unable to decode storyItem#af6365a1: field caption: %w", err)
		tl_story_item_gen.go#L1004: 			return fmt.Errorf("unable to decode storyItem#af6365a1: field entities: %w", err)
		tl_story_item_gen.go#L1013: 				return fmt.Errorf("unable to decode storyItem#af6365a1: field entities: %w", err)
		tl_story_item_gen.go#L1021: 			return fmt.Errorf("unable to decode storyItem#af6365a1: field media: %w", err)
		tl_story_item_gen.go#L1028: 			return fmt.Errorf("unable to decode storyItem#af6365a1: field media_areas: %w", err)
		tl_story_item_gen.go#L1037: 				return fmt.Errorf("unable to decode storyItem#af6365a1: field media_areas: %w", err)
		tl_story_item_gen.go#L1045: 			return fmt.Errorf("unable to decode storyItem#af6365a1: field privacy: %w", err)
		tl_story_item_gen.go#L1054: 				return fmt.Errorf("unable to decode storyItem#af6365a1: field privacy: %w", err)
		tl_story_item_gen.go#L1061: 			return fmt.Errorf("unable to decode storyItem#af6365a1: field views: %w", err)
		tl_story_item_gen.go#L1067: 			return fmt.Errorf("unable to decode storyItem#af6365a1: field sent_reaction: %w", err)
		tl_story_item_gen.go#L1479: 			return nil, fmt.Errorf("unable to decode StoryItemClass: %w", err)
		tl_story_item_gen.go#L1486: 			return nil, fmt.Errorf("unable to decode StoryItemClass: %w", err)
		tl_story_item_gen.go#L1493: 			return nil, fmt.Errorf("unable to decode StoryItemClass: %w", err)
		tl_story_item_gen.go#L1497: 		return nil, fmt.Errorf("unable to decode StoryItemClass: %w", bin.NewUnexpectedID(id))
		tl_story_item_gen.go#L1509: 		return fmt.Errorf("unable to decode StoryItemBox to nil")
		tl_story_item_gen.go#L1513: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_story_item_gen.go#L1522: 		return fmt.Errorf("unable to encode StoryItemClass as nil")
		tl_story_reaction_gen.go#L141: 		return fmt.Errorf("can't encode storyReaction#6090d6d5 as nil")
		tl_story_reaction_gen.go#L150: 		return fmt.Errorf("can't encode storyReaction#6090d6d5 as nil")
		tl_story_reaction_gen.go#L153: 		return fmt.Errorf("unable to encode storyReaction#6090d6d5: field peer_id is nil")
		tl_story_reaction_gen.go#L156: 		return fmt.Errorf("unable to encode storyReaction#6090d6d5: field peer_id: %w", err)
		tl_story_reaction_gen.go#L160: 		return fmt.Errorf("unable to encode storyReaction#6090d6d5: field reaction is nil")
		tl_story_reaction_gen.go#L163: 		return fmt.Errorf("unable to encode storyReaction#6090d6d5: field reaction: %w", err)
		tl_story_reaction_gen.go#L171: 		return fmt.Errorf("can't decode storyReaction#6090d6d5 to nil")
		tl_story_reaction_gen.go#L174: 		return fmt.Errorf("unable to decode storyReaction#6090d6d5: %w", err)
		tl_story_reaction_gen.go#L182: 		return fmt.Errorf("can't decode storyReaction#6090d6d5 to nil")
		tl_story_reaction_gen.go#L187: 			return fmt.Errorf("unable to decode storyReaction#6090d6d5: field peer_id: %w", err)
		tl_story_reaction_gen.go#L194: 			return fmt.Errorf("unable to decode storyReaction#6090d6d5: field date: %w", err)
		tl_story_reaction_gen.go#L201: 			return fmt.Errorf("unable to decode storyReaction#6090d6d5: field reaction: %w", err)
		tl_story_reaction_gen.go#L317: 		return fmt.Errorf("can't encode storyReactionPublicForward#bbab2643 as nil")
		tl_story_reaction_gen.go#L326: 		return fmt.Errorf("can't encode storyReactionPublicForward#bbab2643 as nil")
		tl_story_reaction_gen.go#L329: 		return fmt.Errorf("unable to encode storyReactionPublicForward#bbab2643: field message is nil")
		tl_story_reaction_gen.go#L332: 		return fmt.Errorf("unable to encode storyReactionPublicForward#bbab2643: field message: %w", err)
		tl_story_reaction_gen.go#L340: 		return fmt.Errorf("can't decode storyReactionPublicForward#bbab2643 to nil")
		tl_story_reaction_gen.go#L343: 		return fmt.Errorf("unable to decode storyReactionPublicForward#bbab2643: %w", err)
		tl_story_reaction_gen.go#L351: 		return fmt.Errorf("can't decode storyReactionPublicForward#bbab2643 to nil")
		tl_story_reaction_gen.go#L356: 			return fmt.Errorf("unable to decode storyReactionPublicForward#bbab2643: field message: %w", err)
		tl_story_reaction_gen.go#L467: 		return fmt.Errorf("can't encode storyReactionPublicRepost#cfcd0f13 as nil")
		tl_story_reaction_gen.go#L476: 		return fmt.Errorf("can't encode storyReactionPublicRepost#cfcd0f13 as nil")
		tl_story_reaction_gen.go#L479: 		return fmt.Errorf("unable to encode storyReactionPublicRepost#cfcd0f13: field peer_id is nil")
		tl_story_reaction_gen.go#L482: 		return fmt.Errorf("unable to encode storyReactionPublicRepost#cfcd0f13: field peer_id: %w", err)
		tl_story_reaction_gen.go#L485: 		return fmt.Errorf("unable to encode storyReactionPublicRepost#cfcd0f13: field story is nil")
		tl_story_reaction_gen.go#L488: 		return fmt.Errorf("unable to encode storyReactionPublicRepost#cfcd0f13: field story: %w", err)
		tl_story_reaction_gen.go#L496: 		return fmt.Errorf("can't decode storyReactionPublicRepost#cfcd0f13 to nil")
		tl_story_reaction_gen.go#L499: 		return fmt.Errorf("unable to decode storyReactionPublicRepost#cfcd0f13: %w", err)
		tl_story_reaction_gen.go#L507: 		return fmt.Errorf("can't decode storyReactionPublicRepost#cfcd0f13 to nil")
		tl_story_reaction_gen.go#L512: 			return fmt.Errorf("unable to decode storyReactionPublicRepost#cfcd0f13: field peer_id: %w", err)
		tl_story_reaction_gen.go#L519: 			return fmt.Errorf("unable to decode storyReactionPublicRepost#cfcd0f13: field story: %w", err)
		tl_story_reaction_gen.go#L591: 			return nil, fmt.Errorf("unable to decode StoryReactionClass: %w", err)
		tl_story_reaction_gen.go#L598: 			return nil, fmt.Errorf("unable to decode StoryReactionClass: %w", err)
		tl_story_reaction_gen.go#L605: 			return nil, fmt.Errorf("unable to decode StoryReactionClass: %w", err)
		tl_story_reaction_gen.go#L609: 		return nil, fmt.Errorf("unable to decode StoryReactionClass: %w", bin.NewUnexpectedID(id))
		tl_story_reaction_gen.go#L621: 		return fmt.Errorf("unable to decode StoryReactionBox to nil")
		tl_story_reaction_gen.go#L625: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_story_reaction_gen.go#L634: 		return fmt.Errorf("unable to encode StoryReactionClass as nil")
		tl_story_view_gen.go#L203: 		return fmt.Errorf("can't encode storyView#b0bdeac5 as nil")
		tl_story_view_gen.go#L212: 		return fmt.Errorf("can't encode storyView#b0bdeac5 as nil")
		tl_story_view_gen.go#L216: 		return fmt.Errorf("unable to encode storyView#b0bdeac5: field flags: %w", err)
		tl_story_view_gen.go#L222: 			return fmt.Errorf("unable to encode storyView#b0bdeac5: field reaction is nil")
		tl_story_view_gen.go#L225: 			return fmt.Errorf("unable to encode storyView#b0bdeac5: field reaction: %w", err)
		tl_story_view_gen.go#L234: 		return fmt.Errorf("can't decode storyView#b0bdeac5 to nil")
		tl_story_view_gen.go#L237: 		return fmt.Errorf("unable to decode storyView#b0bdeac5: %w", err)
		tl_story_view_gen.go#L245: 		return fmt.Errorf("can't decode storyView#b0bdeac5 to nil")
		tl_story_view_gen.go#L249: 			return fmt.Errorf("unable to decode storyView#b0bdeac5: field flags: %w", err)
		tl_story_view_gen.go#L257: 			return fmt.Errorf("unable to decode storyView#b0bdeac5: field user_id: %w", err)
		tl_story_view_gen.go#L264: 			return fmt.Errorf("unable to decode storyView#b0bdeac5: field date: %w", err)
		tl_story_view_gen.go#L271: 			return fmt.Errorf("unable to decode storyView#b0bdeac5: field reaction: %w", err)
		tl_story_view_gen.go#L474: 		return fmt.Errorf("can't encode storyViewPublicForward#9083670b as nil")
		tl_story_view_gen.go#L483: 		return fmt.Errorf("can't encode storyViewPublicForward#9083670b as nil")
		tl_story_view_gen.go#L487: 		return fmt.Errorf("unable to encode storyViewPublicForward#9083670b: field flags: %w", err)
		tl_story_view_gen.go#L490: 		return fmt.Errorf("unable to encode storyViewPublicForward#9083670b: field message is nil")
		tl_story_view_gen.go#L493: 		return fmt.Errorf("unable to encode storyViewPublicForward#9083670b: field message: %w", err)
		tl_story_view_gen.go#L501: 		return fmt.Errorf("can't decode storyViewPublicForward#9083670b to nil")
		tl_story_view_gen.go#L504: 		return fmt.Errorf("unable to decode storyViewPublicForward#9083670b: %w", err)
		tl_story_view_gen.go#L512: 		return fmt.Errorf("can't decode storyViewPublicForward#9083670b to nil")
		tl_story_view_gen.go#L516: 			return fmt.Errorf("unable to decode storyViewPublicForward#9083670b: field flags: %w", err)
		tl_story_view_gen.go#L524: 			return fmt.Errorf("unable to decode storyViewPublicForward#9083670b: field message: %w", err)
		tl_story_view_gen.go#L712: 		return fmt.Errorf("can't encode storyViewPublicRepost#bd74cf49 as nil")
		tl_story_view_gen.go#L721: 		return fmt.Errorf("can't encode storyViewPublicRepost#bd74cf49 as nil")
		tl_story_view_gen.go#L725: 		return fmt.Errorf("unable to encode storyViewPublicRepost#bd74cf49: field flags: %w", err)
		tl_story_view_gen.go#L728: 		return fmt.Errorf("unable to encode storyViewPublicRepost#bd74cf49: field peer_id is nil")
		tl_story_view_gen.go#L731: 		return fmt.Errorf("unable to encode storyViewPublicRepost#bd74cf49: field peer_id: %w", err)
		tl_story_view_gen.go#L734: 		return fmt.Errorf("unable to encode storyViewPublicRepost#bd74cf49: field story is nil")
		tl_story_view_gen.go#L737: 		return fmt.Errorf("unable to encode storyViewPublicRepost#bd74cf49: field story: %w", err)
		tl_story_view_gen.go#L745: 		return fmt.Errorf("can't decode storyViewPublicRepost#bd74cf49 to nil")
		tl_story_view_gen.go#L748: 		return fmt.Errorf("unable to decode storyViewPublicRepost#bd74cf49: %w", err)
		tl_story_view_gen.go#L756: 		return fmt.Errorf("can't decode storyViewPublicRepost#bd74cf49 to nil")
		tl_story_view_gen.go#L760: 			return fmt.Errorf("unable to decode storyViewPublicRepost#bd74cf49: field flags: %w", err)
		tl_story_view_gen.go#L768: 			return fmt.Errorf("unable to decode storyViewPublicRepost#bd74cf49: field peer_id: %w", err)
		tl_story_view_gen.go#L775: 			return fmt.Errorf("unable to decode storyViewPublicRepost#bd74cf49: field story: %w", err)
		tl_story_view_gen.go#L898: 			return nil, fmt.Errorf("unable to decode StoryViewClass: %w", err)
		tl_story_view_gen.go#L905: 			return nil, fmt.Errorf("unable to decode StoryViewClass: %w", err)
		tl_story_view_gen.go#L912: 			return nil, fmt.Errorf("unable to decode StoryViewClass: %w", err)
		tl_story_view_gen.go#L916: 		return nil, fmt.Errorf("unable to decode StoryViewClass: %w", bin.NewUnexpectedID(id))
		tl_story_view_gen.go#L928: 		return fmt.Errorf("unable to decode StoryViewBox to nil")
		tl_story_view_gen.go#L932: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_story_view_gen.go#L941: 		return fmt.Errorf("unable to encode StoryViewClass as nil")
		tl_story_views_gen.go#L229: 		return fmt.Errorf("can't encode storyViews#8d595cd6 as nil")
		tl_story_views_gen.go#L238: 		return fmt.Errorf("can't encode storyViews#8d595cd6 as nil")
		tl_story_views_gen.go#L242: 		return fmt.Errorf("unable to encode storyViews#8d595cd6: field flags: %w", err)
		tl_story_views_gen.go#L252: 				return fmt.Errorf("unable to encode storyViews#8d595cd6: field reactions element with index %d: %w", idx, err)
		tl_story_views_gen.go#L271: 		return fmt.Errorf("can't decode storyViews#8d595cd6 to nil")
		tl_story_views_gen.go#L274: 		return fmt.Errorf("unable to decode storyViews#8d595cd6: %w", err)
		tl_story_views_gen.go#L282: 		return fmt.Errorf("can't decode storyViews#8d595cd6 to nil")
		tl_story_views_gen.go#L286: 			return fmt.Errorf("unable to decode storyViews#8d595cd6: field flags: %w", err)
		tl_story_views_gen.go#L293: 			return fmt.Errorf("unable to decode storyViews#8d595cd6: field views_count: %w", err)
		tl_story_views_gen.go#L300: 			return fmt.Errorf("unable to decode storyViews#8d595cd6: field forwards_count: %w", err)
		tl_story_views_gen.go#L307: 			return fmt.Errorf("unable to decode storyViews#8d595cd6: field reactions: %w", err)
		tl_story_views_gen.go#L316: 				return fmt.Errorf("unable to decode storyViews#8d595cd6: field reactions: %w", err)
		tl_story_views_gen.go#L324: 			return fmt.Errorf("unable to decode storyViews#8d595cd6: field reactions_count: %w", err)
		tl_story_views_gen.go#L331: 			return fmt.Errorf("unable to decode storyViews#8d595cd6: field recent_viewers: %w", err)
		tl_story_views_gen.go#L340: 				return fmt.Errorf("unable to decode storyViews#8d595cd6: field recent_viewers: %w", err)
		tl_string_gen.go#L97: 		return fmt.Errorf("can't encode string#b5286e24 as nil")
		tl_string_gen.go#L106: 		return fmt.Errorf("can't encode string#b5286e24 as nil")
		tl_string_gen.go#L114: 		return fmt.Errorf("can't decode string#b5286e24 to nil")
		tl_string_gen.go#L117: 		return fmt.Errorf("unable to decode string#b5286e24: %w", err)
		tl_string_gen.go#L125: 		return fmt.Errorf("can't decode string#b5286e24 to nil")
		tl_test_use_config_simple_gen.go#L97: 		return fmt.Errorf("can't encode test.useConfigSimple#f9b7b23d as nil")
		tl_test_use_config_simple_gen.go#L106: 		return fmt.Errorf("can't encode test.useConfigSimple#f9b7b23d as nil")
		tl_test_use_config_simple_gen.go#L114: 		return fmt.Errorf("can't decode test.useConfigSimple#f9b7b23d to nil")
		tl_test_use_config_simple_gen.go#L117: 		return fmt.Errorf("unable to decode test.useConfigSimple#f9b7b23d: %w", err)
		tl_test_use_config_simple_gen.go#L125: 		return fmt.Errorf("can't decode test.useConfigSimple#f9b7b23d to nil")
		tl_test_use_error_gen.go#L97: 		return fmt.Errorf("can't encode test.useError#ee75af01 as nil")
		tl_test_use_error_gen.go#L106: 		return fmt.Errorf("can't encode test.useError#ee75af01 as nil")
		tl_test_use_error_gen.go#L114: 		return fmt.Errorf("can't decode test.useError#ee75af01 to nil")
		tl_test_use_error_gen.go#L117: 		return fmt.Errorf("unable to decode test.useError#ee75af01: %w", err)
		tl_test_use_error_gen.go#L125: 		return fmt.Errorf("can't decode test.useError#ee75af01 to nil")
		tl_text_with_entities_gen.go#L132: 		return fmt.Errorf("can't encode textWithEntities#751f3146 as nil")
		tl_text_with_entities_gen.go#L141: 		return fmt.Errorf("can't encode textWithEntities#751f3146 as nil")
		tl_text_with_entities_gen.go#L147: 			return fmt.Errorf("unable to encode textWithEntities#751f3146: field entities element with index %d is nil", idx)
		tl_text_with_entities_gen.go#L150: 			return fmt.Errorf("unable to encode textWithEntities#751f3146: field entities element with index %d: %w", idx, err)
		tl_text_with_entities_gen.go#L159: 		return fmt.Errorf("can't decode textWithEntities#751f3146 to nil")
		tl_text_with_entities_gen.go#L162: 		return fmt.Errorf("unable to decode textWithEntities#751f3146: %w", err)
		tl_text_with_entities_gen.go#L170: 		return fmt.Errorf("can't decode textWithEntities#751f3146 to nil")
		tl_text_with_entities_gen.go#L175: 			return fmt.Errorf("unable to decode textWithEntities#751f3146: field text: %w", err)
		tl_text_with_entities_gen.go#L182: 			return fmt.Errorf("unable to decode textWithEntities#751f3146: field entities: %w", err)
		tl_text_with_entities_gen.go#L191: 				return fmt.Errorf("unable to decode textWithEntities#751f3146: field entities: %w", err)
		tl_theme_gen.go#L288: 		return fmt.Errorf("can't encode theme#a00e67d6 as nil")
		tl_theme_gen.go#L297: 		return fmt.Errorf("can't encode theme#a00e67d6 as nil")
		tl_theme_gen.go#L301: 		return fmt.Errorf("unable to encode theme#a00e67d6: field flags: %w", err)
		tl_theme_gen.go#L309: 			return fmt.Errorf("unable to encode theme#a00e67d6: field document is nil")
		tl_theme_gen.go#L312: 			return fmt.Errorf("unable to encode theme#a00e67d6: field document: %w", err)
		tl_theme_gen.go#L319: 				return fmt.Errorf("unable to encode theme#a00e67d6: field settings element with index %d: %w", idx, err)
		tl_theme_gen.go#L335: 		return fmt.Errorf("can't decode theme#a00e67d6 to nil")
		tl_theme_gen.go#L338: 		return fmt.Errorf("unable to decode theme#a00e67d6: %w", err)
		tl_theme_gen.go#L346: 		return fmt.Errorf("can't decode theme#a00e67d6 to nil")
		tl_theme_gen.go#L350: 			return fmt.Errorf("unable to decode theme#a00e67d6: field flags: %w", err)
		tl_theme_gen.go#L359: 			return fmt.Errorf("unable to decode theme#a00e67d6: field id: %w", err)
		tl_theme_gen.go#L366: 			return fmt.Errorf("unable to decode theme#a00e67d6: field access_hash: %w", err)
		tl_theme_gen.go#L373: 			return fmt.Errorf("unable to decode theme#a00e67d6: field slug: %w", err)
		tl_theme_gen.go#L380: 			return fmt.Errorf("unable to decode theme#a00e67d6: field title: %w", err)
		tl_theme_gen.go#L387: 			return fmt.Errorf("unable to decode theme#a00e67d6: field document: %w", err)
		tl_theme_gen.go#L394: 			return fmt.Errorf("unable to decode theme#a00e67d6: field settings: %w", err)
		tl_theme_gen.go#L403: 				return fmt.Errorf("unable to decode theme#a00e67d6: field settings: %w", err)
		tl_theme_gen.go#L411: 			return fmt.Errorf("unable to decode theme#a00e67d6: field emoticon: %w", err)
		tl_theme_gen.go#L418: 			return fmt.Errorf("unable to decode theme#a00e67d6: field installs_count: %w", err)
		tl_theme_settings_gen.go#L220: 		return fmt.Errorf("can't encode themeSettings#fa58b6d4 as nil")
		tl_theme_settings_gen.go#L229: 		return fmt.Errorf("can't encode themeSettings#fa58b6d4 as nil")
		tl_theme_settings_gen.go#L233: 		return fmt.Errorf("unable to encode themeSettings#fa58b6d4: field flags: %w", err)
		tl_theme_settings_gen.go#L236: 		return fmt.Errorf("unable to encode themeSettings#fa58b6d4: field base_theme is nil")
		tl_theme_settings_gen.go#L239: 		return fmt.Errorf("unable to encode themeSettings#fa58b6d4: field base_theme: %w", err)
		tl_theme_settings_gen.go#L253: 			return fmt.Errorf("unable to encode themeSettings#fa58b6d4: field wallpaper is nil")
		tl_theme_settings_gen.go#L256: 			return fmt.Errorf("unable to encode themeSettings#fa58b6d4: field wallpaper: %w", err)
		tl_theme_settings_gen.go#L265: 		return fmt.Errorf("can't decode themeSettings#fa58b6d4 to nil")
		tl_theme_settings_gen.go#L268: 		return fmt.Errorf("unable to decode themeSettings#fa58b6d4: %w", err)
		tl_theme_settings_gen.go#L276: 		return fmt.Errorf("can't decode themeSettings#fa58b6d4 to nil")
		tl_theme_settings_gen.go#L280: 			return fmt.Errorf("unable to decode themeSettings#fa58b6d4: field flags: %w", err)
		tl_theme_settings_gen.go#L287: 			return fmt.Errorf("unable to decode themeSettings#fa58b6d4: field base_theme: %w", err)
		tl_theme_settings_gen.go#L294: 			return fmt.Errorf("unable to decode themeSettings#fa58b6d4: field accent_color: %w", err)
		tl_theme_settings_gen.go#L301: 			return fmt.Errorf("unable to decode themeSettings#fa58b6d4: field outbox_accent_color: %w", err)
		tl_theme_settings_gen.go#L308: 			return fmt.Errorf("unable to decode themeSettings#fa58b6d4: field message_colors: %w", err)
		tl_theme_settings_gen.go#L317: 				return fmt.Errorf("unable to decode themeSettings#fa58b6d4: field message_colors: %w", err)
		tl_theme_settings_gen.go#L325: 			return fmt.Errorf("unable to decode themeSettings#fa58b6d4: field wallpaper: %w", err)
		tl_top_peer_category_gen.go#L103: 		return fmt.Errorf("can't encode topPeerCategoryBotsPM#ab661b5b as nil")
		tl_top_peer_category_gen.go#L112: 		return fmt.Errorf("can't encode topPeerCategoryBotsPM#ab661b5b as nil")
		tl_top_peer_category_gen.go#L120: 		return fmt.Errorf("can't decode topPeerCategoryBotsPM#ab661b5b to nil")
		tl_top_peer_category_gen.go#L123: 		return fmt.Errorf("unable to decode topPeerCategoryBotsPM#ab661b5b: %w", err)
		tl_top_peer_category_gen.go#L131: 		return fmt.Errorf("can't decode topPeerCategoryBotsPM#ab661b5b to nil")
		tl_top_peer_category_gen.go#L205: 		return fmt.Errorf("can't encode topPeerCategoryBotsInline#148677e2 as nil")
		tl_top_peer_category_gen.go#L214: 		return fmt.Errorf("can't encode topPeerCategoryBotsInline#148677e2 as nil")
		tl_top_peer_category_gen.go#L222: 		return fmt.Errorf("can't decode topPeerCategoryBotsInline#148677e2 to nil")
		tl_top_peer_category_gen.go#L225: 		return fmt.Errorf("unable to decode topPeerCategoryBotsInline#148677e2: %w", err)
		tl_top_peer_category_gen.go#L233: 		return fmt.Errorf("can't decode topPeerCategoryBotsInline#148677e2 to nil")
		tl_top_peer_category_gen.go#L307: 		return fmt.Errorf("can't encode topPeerCategoryCorrespondents#637b7ed as nil")
		tl_top_peer_category_gen.go#L316: 		return fmt.Errorf("can't encode topPeerCategoryCorrespondents#637b7ed as nil")
		tl_top_peer_category_gen.go#L324: 		return fmt.Errorf("can't decode topPeerCategoryCorrespondents#637b7ed to nil")
		tl_top_peer_category_gen.go#L327: 		return fmt.Errorf("unable to decode topPeerCategoryCorrespondents#637b7ed: %w", err)
		tl_top_peer_category_gen.go#L335: 		return fmt.Errorf("can't decode topPeerCategoryCorrespondents#637b7ed to nil")
		tl_top_peer_category_gen.go#L409: 		return fmt.Errorf("can't encode topPeerCategoryGroups#bd17a14a as nil")
		tl_top_peer_category_gen.go#L418: 		return fmt.Errorf("can't encode topPeerCategoryGroups#bd17a14a as nil")
		tl_top_peer_category_gen.go#L426: 		return fmt.Errorf("can't decode topPeerCategoryGroups#bd17a14a to nil")
		tl_top_peer_category_gen.go#L429: 		return fmt.Errorf("unable to decode topPeerCategoryGroups#bd17a14a: %w", err)
		tl_top_peer_category_gen.go#L437: 		return fmt.Errorf("can't decode topPeerCategoryGroups#bd17a14a to nil")
		tl_top_peer_category_gen.go#L511: 		return fmt.Errorf("can't encode topPeerCategoryChannels#161d9628 as nil")
		tl_top_peer_category_gen.go#L520: 		return fmt.Errorf("can't encode topPeerCategoryChannels#161d9628 as nil")
		tl_top_peer_category_gen.go#L528: 		return fmt.Errorf("can't decode topPeerCategoryChannels#161d9628 to nil")
		tl_top_peer_category_gen.go#L531: 		return fmt.Errorf("unable to decode topPeerCategoryChannels#161d9628: %w", err)
		tl_top_peer_category_gen.go#L539: 		return fmt.Errorf("can't decode topPeerCategoryChannels#161d9628 to nil")
		tl_top_peer_category_gen.go#L613: 		return fmt.Errorf("can't encode topPeerCategoryPhoneCalls#1e76a78c as nil")
		tl_top_peer_category_gen.go#L622: 		return fmt.Errorf("can't encode topPeerCategoryPhoneCalls#1e76a78c as nil")
		tl_top_peer_category_gen.go#L630: 		return fmt.Errorf("can't decode topPeerCategoryPhoneCalls#1e76a78c to nil")
		tl_top_peer_category_gen.go#L633: 		return fmt.Errorf("unable to decode topPeerCategoryPhoneCalls#1e76a78c: %w", err)
		tl_top_peer_category_gen.go#L641: 		return fmt.Errorf("can't decode topPeerCategoryPhoneCalls#1e76a78c to nil")
		tl_top_peer_category_gen.go#L715: 		return fmt.Errorf("can't encode topPeerCategoryForwardUsers#a8406ca9 as nil")
		tl_top_peer_category_gen.go#L724: 		return fmt.Errorf("can't encode topPeerCategoryForwardUsers#a8406ca9 as nil")
		tl_top_peer_category_gen.go#L732: 		return fmt.Errorf("can't decode topPeerCategoryForwardUsers#a8406ca9 to nil")
		tl_top_peer_category_gen.go#L735: 		return fmt.Errorf("unable to decode topPeerCategoryForwardUsers#a8406ca9: %w", err)
		tl_top_peer_category_gen.go#L743: 		return fmt.Errorf("can't decode topPeerCategoryForwardUsers#a8406ca9 to nil")
		tl_top_peer_category_gen.go#L817: 		return fmt.Errorf("can't encode topPeerCategoryForwardChats#fbeec0f0 as nil")
		tl_top_peer_category_gen.go#L826: 		return fmt.Errorf("can't encode topPeerCategoryForwardChats#fbeec0f0 as nil")
		tl_top_peer_category_gen.go#L834: 		return fmt.Errorf("can't decode topPeerCategoryForwardChats#fbeec0f0 to nil")
		tl_top_peer_category_gen.go#L837: 		return fmt.Errorf("unable to decode topPeerCategoryForwardChats#fbeec0f0: %w", err)
		tl_top_peer_category_gen.go#L845: 		return fmt.Errorf("can't decode topPeerCategoryForwardChats#fbeec0f0 to nil")
		tl_top_peer_category_gen.go#L904: 			return nil, fmt.Errorf("unable to decode TopPeerCategoryClass: %w", err)
		tl_top_peer_category_gen.go#L911: 			return nil, fmt.Errorf("unable to decode TopPeerCategoryClass: %w", err)
		tl_top_peer_category_gen.go#L918: 			return nil, fmt.Errorf("unable to decode TopPeerCategoryClass: %w", err)
		tl_top_peer_category_gen.go#L925: 			return nil, fmt.Errorf("unable to decode TopPeerCategoryClass: %w", err)
		tl_top_peer_category_gen.go#L932: 			return nil, fmt.Errorf("unable to decode TopPeerCategoryClass: %w", err)
		tl_top_peer_category_gen.go#L939: 			return nil, fmt.Errorf("unable to decode TopPeerCategoryClass: %w", err)
		tl_top_peer_category_gen.go#L946: 			return nil, fmt.Errorf("unable to decode TopPeerCategoryClass: %w", err)
		tl_top_peer_category_gen.go#L953: 			return nil, fmt.Errorf("unable to decode TopPeerCategoryClass: %w", err)
		tl_top_peer_category_gen.go#L957: 		return nil, fmt.Errorf("unable to decode TopPeerCategoryClass: %w", bin.NewUnexpectedID(id))
		tl_top_peer_category_gen.go#L969: 		return fmt.Errorf("unable to decode TopPeerCategoryBox to nil")
		tl_top_peer_category_gen.go#L973: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_top_peer_category_gen.go#L982: 		return fmt.Errorf("unable to encode TopPeerCategoryClass as nil")
		tl_top_peer_category_peers_gen.go#L137: 		return fmt.Errorf("can't encode topPeerCategoryPeers#fb834291 as nil")
		tl_top_peer_category_peers_gen.go#L146: 		return fmt.Errorf("can't encode topPeerCategoryPeers#fb834291 as nil")
		tl_top_peer_category_peers_gen.go#L149: 		return fmt.Errorf("unable to encode topPeerCategoryPeers#fb834291: field category is nil")
		tl_top_peer_category_peers_gen.go#L152: 		return fmt.Errorf("unable to encode topPeerCategoryPeers#fb834291: field category: %w", err)
		tl_top_peer_category_peers_gen.go#L158: 			return fmt.Errorf("unable to encode topPeerCategoryPeers#fb834291: field peers element with index %d: %w", idx, err)
		tl_top_peer_category_peers_gen.go#L167: 		return fmt.Errorf("can't decode topPeerCategoryPeers#fb834291 to nil")
		tl_top_peer_category_peers_gen.go#L170: 		return fmt.Errorf("unable to decode topPeerCategoryPeers#fb834291: %w", err)
		tl_top_peer_category_peers_gen.go#L178: 		return fmt.Errorf("can't decode topPeerCategoryPeers#fb834291 to nil")
		tl_top_peer_category_peers_gen.go#L183: 			return fmt.Errorf("unable to decode topPeerCategoryPeers#fb834291: field category: %w", err)
		tl_top_peer_category_peers_gen.go#L190: 			return fmt.Errorf("unable to decode topPeerCategoryPeers#fb834291: field count: %w", err)
		tl_top_peer_category_peers_gen.go#L197: 			return fmt.Errorf("unable to decode topPeerCategoryPeers#fb834291: field peers: %w", err)
		tl_top_peer_category_peers_gen.go#L206: 				return fmt.Errorf("unable to decode topPeerCategoryPeers#fb834291: field peers: %w", err)
		tl_top_peer_gen.go#L129: 		return fmt.Errorf("can't encode topPeer#edcdc05b as nil")
		tl_top_peer_gen.go#L138: 		return fmt.Errorf("can't encode topPeer#edcdc05b as nil")
		tl_top_peer_gen.go#L141: 		return fmt.Errorf("unable to encode topPeer#edcdc05b: field peer is nil")
		tl_top_peer_gen.go#L144: 		return fmt.Errorf("unable to encode topPeer#edcdc05b: field peer: %w", err)
		tl_top_peer_gen.go#L153: 		return fmt.Errorf("can't decode topPeer#edcdc05b to nil")
		tl_top_peer_gen.go#L156: 		return fmt.Errorf("unable to decode topPeer#edcdc05b: %w", err)
		tl_top_peer_gen.go#L164: 		return fmt.Errorf("can't decode topPeer#edcdc05b to nil")
		tl_top_peer_gen.go#L169: 			return fmt.Errorf("unable to decode topPeer#edcdc05b: field peer: %w", err)
		tl_top_peer_gen.go#L176: 			return fmt.Errorf("unable to decode topPeer#edcdc05b: field rating: %w", err)
		tl_true_gen.go#L101: 		return fmt.Errorf("can't encode true#3fedd339 as nil")
		tl_true_gen.go#L110: 		return fmt.Errorf("can't encode true#3fedd339 as nil")
		tl_true_gen.go#L118: 		return fmt.Errorf("can't decode true#3fedd339 to nil")
		tl_true_gen.go#L121: 		return fmt.Errorf("unable to decode true#3fedd339: %w", err)
		tl_true_gen.go#L129: 		return fmt.Errorf("can't decode true#3fedd339 to nil")
		tl_update_gen.go#L145: 		return fmt.Errorf("can't encode updateNewMessage#1f2b0afd as nil")
		tl_update_gen.go#L154: 		return fmt.Errorf("can't encode updateNewMessage#1f2b0afd as nil")
		tl_update_gen.go#L157: 		return fmt.Errorf("unable to encode updateNewMessage#1f2b0afd: field message is nil")
		tl_update_gen.go#L160: 		return fmt.Errorf("unable to encode updateNewMessage#1f2b0afd: field message: %w", err)
		tl_update_gen.go#L170: 		return fmt.Errorf("can't decode updateNewMessage#1f2b0afd to nil")
		tl_update_gen.go#L173: 		return fmt.Errorf("unable to decode updateNewMessage#1f2b0afd: %w", err)
		tl_update_gen.go#L181: 		return fmt.Errorf("can't decode updateNewMessage#1f2b0afd to nil")
		tl_update_gen.go#L186: 			return fmt.Errorf("unable to decode updateNewMessage#1f2b0afd: field message: %w", err)
		tl_update_gen.go#L193: 			return fmt.Errorf("unable to decode updateNewMessage#1f2b0afd: field pts: %w", err)
		tl_update_gen.go#L200: 			return fmt.Errorf("unable to decode updateNewMessage#1f2b0afd: field pts_count: %w", err)
		tl_update_gen.go#L331: 		return fmt.Errorf("can't encode updateMessageID#4e90bfd6 as nil")
		tl_update_gen.go#L340: 		return fmt.Errorf("can't encode updateMessageID#4e90bfd6 as nil")
		tl_update_gen.go#L350: 		return fmt.Errorf("can't decode updateMessageID#4e90bfd6 to nil")
		tl_update_gen.go#L353: 		return fmt.Errorf("unable to decode updateMessageID#4e90bfd6: %w", err)
		tl_update_gen.go#L361: 		return fmt.Errorf("can't decode updateMessageID#4e90bfd6 to nil")
		tl_update_gen.go#L366: 			return fmt.Errorf("unable to decode updateMessageID#4e90bfd6: field id: %w", err)
		tl_update_gen.go#L373: 			return fmt.Errorf("unable to decode updateMessageID#4e90bfd6: field random_id: %w", err)
		tl_update_gen.go#L507: 		return fmt.Errorf("can't encode updateDeleteMessages#a20db0e5 as nil")
		tl_update_gen.go#L516: 		return fmt.Errorf("can't encode updateDeleteMessages#a20db0e5 as nil")
		tl_update_gen.go#L530: 		return fmt.Errorf("can't decode updateDeleteMessages#a20db0e5 to nil")
		tl_update_gen.go#L533: 		return fmt.Errorf("unable to decode updateDeleteMessages#a20db0e5: %w", err)
		tl_update_gen.go#L541: 		return fmt.Errorf("can't decode updateDeleteMessages#a20db0e5 to nil")
		tl_update_gen.go#L546: 			return fmt.Errorf("unable to decode updateDeleteMessages#a20db0e5: field messages: %w", err)
		tl_update_gen.go#L555: 				return fmt.Errorf("unable to decode updateDeleteMessages#a20db0e5: field messages: %w", err)
		tl_update_gen.go#L563: 			return fmt.Errorf("unable to decode updateDeleteMessages#a20db0e5: field pts: %w", err)
		tl_update_gen.go#L570: 			return fmt.Errorf("unable to decode updateDeleteMessages#a20db0e5: field pts_count: %w", err)
		tl_update_gen.go#L700: 		return fmt.Errorf("can't encode updateUserTyping#c01e857f as nil")
		tl_update_gen.go#L709: 		return fmt.Errorf("can't encode updateUserTyping#c01e857f as nil")
		tl_update_gen.go#L713: 		return fmt.Errorf("unable to encode updateUserTyping#c01e857f: field action is nil")
		tl_update_gen.go#L716: 		return fmt.Errorf("unable to encode updateUserTyping#c01e857f: field action: %w", err)
		tl_update_gen.go#L724: 		return fmt.Errorf("can't decode updateUserTyping#c01e857f to nil")
		tl_update_gen.go#L727: 		return fmt.Errorf("unable to decode updateUserTyping#c01e857f: %w", err)
		tl_update_gen.go#L735: 		return fmt.Errorf("can't decode updateUserTyping#c01e857f to nil")
		tl_update_gen.go#L740: 			return fmt.Errorf("unable to decode updateUserTyping#c01e857f: field user_id: %w", err)
		tl_update_gen.go#L747: 			return fmt.Errorf("unable to decode updateUserTyping#c01e857f: field action: %w", err)
		tl_update_gen.go#L880: 		return fmt.Errorf("can't encode updateChatUserTyping#83487af0 as nil")
		tl_update_gen.go#L889: 		return fmt.Errorf("can't encode updateChatUserTyping#83487af0 as nil")
		tl_update_gen.go#L893: 		return fmt.Errorf("unable to encode updateChatUserTyping#83487af0: field from_id is nil")
		tl_update_gen.go#L896: 		return fmt.Errorf("unable to encode updateChatUserTyping#83487af0: field from_id: %w", err)
		tl_update_gen.go#L899: 		return fmt.Errorf("unable to encode updateChatUserTyping#83487af0: field action is nil")
		tl_update_gen.go#L902: 		return fmt.Errorf("unable to encode updateChatUserTyping#83487af0: field action: %w", err)
		tl_update_gen.go#L910: 		return fmt.Errorf("can't decode updateChatUserTyping#83487af0 to nil")
		tl_update_gen.go#L913: 		return fmt.Errorf("unable to decode updateChatUserTyping#83487af0: %w", err)
		tl_update_gen.go#L921: 		return fmt.Errorf("can't decode updateChatUserTyping#83487af0 to nil")
		tl_update_gen.go#L926: 			return fmt.Errorf("unable to decode updateChatUserTyping#83487af0: field chat_id: %w", err)
		tl_update_gen.go#L933: 			return fmt.Errorf("unable to decode updateChatUserTyping#83487af0: field from_id: %w", err)
		tl_update_gen.go#L940: 			return fmt.Errorf("unable to decode updateChatUserTyping#83487af0: field action: %w", err)
		tl_update_gen.go#L1057: 		return fmt.Errorf("can't encode updateChatParticipants#7761198 as nil")
		tl_update_gen.go#L1066: 		return fmt.Errorf("can't encode updateChatParticipants#7761198 as nil")
		tl_update_gen.go#L1069: 		return fmt.Errorf("unable to encode updateChatParticipants#7761198: field participants is nil")
		tl_update_gen.go#L1072: 		return fmt.Errorf("unable to encode updateChatParticipants#7761198: field participants: %w", err)
		tl_update_gen.go#L1080: 		return fmt.Errorf("can't decode updateChatParticipants#7761198 to nil")
		tl_update_gen.go#L1083: 		return fmt.Errorf("unable to decode updateChatParticipants#7761198: %w", err)
		tl_update_gen.go#L1091: 		return fmt.Errorf("can't decode updateChatParticipants#7761198 to nil")
		tl_update_gen.go#L1096: 			return fmt.Errorf("unable to decode updateChatParticipants#7761198: field participants: %w", err)
		tl_update_gen.go#L1208: 		return fmt.Errorf("can't encode updateUserStatus#e5bdf8de as nil")
		tl_update_gen.go#L1217: 		return fmt.Errorf("can't encode updateUserStatus#e5bdf8de as nil")
		tl_update_gen.go#L1221: 		return fmt.Errorf("unable to encode updateUserStatus#e5bdf8de: field status is nil")
		tl_update_gen.go#L1224: 		return fmt.Errorf("unable to encode updateUserStatus#e5bdf8de: field status: %w", err)
		tl_update_gen.go#L1232: 		return fmt.Errorf("can't decode updateUserStatus#e5bdf8de to nil")
		tl_update_gen.go#L1235: 		return fmt.Errorf("unable to decode updateUserStatus#e5bdf8de: %w", err)
		tl_update_gen.go#L1243: 		return fmt.Errorf("can't decode updateUserStatus#e5bdf8de to nil")
		tl_update_gen.go#L1248: 			return fmt.Errorf("unable to decode updateUserStatus#e5bdf8de: field user_id: %w", err)
		tl_update_gen.go#L1255: 			return fmt.Errorf("unable to decode updateUserStatus#e5bdf8de: field status: %w", err)
		tl_update_gen.go#L1405: 		return fmt.Errorf("can't encode updateUserName#a7848924 as nil")
		tl_update_gen.go#L1414: 		return fmt.Errorf("can't encode updateUserName#a7848924 as nil")
		tl_update_gen.go#L1422: 			return fmt.Errorf("unable to encode updateUserName#a7848924: field usernames element with index %d: %w", idx, err)
		tl_update_gen.go#L1431: 		return fmt.Errorf("can't decode updateUserName#a7848924 to nil")
		tl_update_gen.go#L1434: 		return fmt.Errorf("unable to decode updateUserName#a7848924: %w", err)
		tl_update_gen.go#L1442: 		return fmt.Errorf("can't decode updateUserName#a7848924 to nil")
		tl_update_gen.go#L1447: 			return fmt.Errorf("unable to decode updateUserName#a7848924: field user_id: %w", err)
		tl_update_gen.go#L1454: 			return fmt.Errorf("unable to decode updateUserName#a7848924: field first_name: %w", err)
		tl_update_gen.go#L1461: 			return fmt.Errorf("unable to decode updateUserName#a7848924: field last_name: %w", err)
		tl_update_gen.go#L1468: 			return fmt.Errorf("unable to decode updateUserName#a7848924: field usernames: %w", err)
		tl_update_gen.go#L1477: 				return fmt.Errorf("unable to decode updateUserName#a7848924: field usernames: %w", err)
		tl_update_gen.go#L1696: 		return fmt.Errorf("can't encode updateNewAuthorization#8951abef as nil")
		tl_update_gen.go#L1705: 		return fmt.Errorf("can't encode updateNewAuthorization#8951abef as nil")
		tl_update_gen.go#L1709: 		return fmt.Errorf("unable to encode updateNewAuthorization#8951abef: field flags: %w", err)
		tl_update_gen.go#L1727: 		return fmt.Errorf("can't decode updateNewAuthorization#8951abef to nil")
		tl_update_gen.go#L1730: 		return fmt.Errorf("unable to decode updateNewAuthorization#8951abef: %w", err)
		tl_update_gen.go#L1738: 		return fmt.Errorf("can't decode updateNewAuthorization#8951abef to nil")
		tl_update_gen.go#L1742: 			return fmt.Errorf("unable to decode updateNewAuthorization#8951abef: field flags: %w", err)
		tl_update_gen.go#L1749: 			return fmt.Errorf("unable to decode updateNewAuthorization#8951abef: field hash: %w", err)
		tl_update_gen.go#L1756: 			return fmt.Errorf("unable to decode updateNewAuthorization#8951abef: field date: %w", err)
		tl_update_gen.go#L1763: 			return fmt.Errorf("unable to decode updateNewAuthorization#8951abef: field device: %w", err)
		tl_update_gen.go#L1770: 			return fmt.Errorf("unable to decode updateNewAuthorization#8951abef: field location: %w", err)
		tl_update_gen.go#L1958: 		return fmt.Errorf("can't encode updateNewEncryptedMessage#12bcbd9a as nil")
		tl_update_gen.go#L1967: 		return fmt.Errorf("can't encode updateNewEncryptedMessage#12bcbd9a as nil")
		tl_update_gen.go#L1970: 		return fmt.Errorf("unable to encode updateNewEncryptedMessage#12bcbd9a: field message is nil")
		tl_update_gen.go#L1973: 		return fmt.Errorf("unable to encode updateNewEncryptedMessage#12bcbd9a: field message: %w", err)
		tl_update_gen.go#L1982: 		return fmt.Errorf("can't decode updateNewEncryptedMessage#12bcbd9a to nil")
		tl_update_gen.go#L1985: 		return fmt.Errorf("unable to decode updateNewEncryptedMessage#12bcbd9a: %w", err)
		tl_update_gen.go#L1993: 		return fmt.Errorf("can't decode updateNewEncryptedMessage#12bcbd9a to nil")
		tl_update_gen.go#L1998: 			return fmt.Errorf("unable to decode updateNewEncryptedMessage#12bcbd9a: field message: %w", err)
		tl_update_gen.go#L2005: 			return fmt.Errorf("unable to decode updateNewEncryptedMessage#12bcbd9a: field qts: %w", err)
		tl_update_gen.go#L2116: 		return fmt.Errorf("can't encode updateEncryptedChatTyping#1710f156 as nil")
		tl_update_gen.go#L2125: 		return fmt.Errorf("can't encode updateEncryptedChatTyping#1710f156 as nil")
		tl_update_gen.go#L2134: 		return fmt.Errorf("can't decode updateEncryptedChatTyping#1710f156 to nil")
		tl_update_gen.go#L2137: 		return fmt.Errorf("unable to decode updateEncryptedChatTyping#1710f156: %w", err)
		tl_update_gen.go#L2145: 		return fmt.Errorf("can't decode updateEncryptedChatTyping#1710f156 to nil")
		tl_update_gen.go#L2150: 			return fmt.Errorf("unable to decode updateEncryptedChatTyping#1710f156: field chat_id: %w", err)
		tl_update_gen.go#L2262: 		return fmt.Errorf("can't encode updateEncryption#b4a2e88d as nil")
		tl_update_gen.go#L2271: 		return fmt.Errorf("can't encode updateEncryption#b4a2e88d as nil")
		tl_update_gen.go#L2274: 		return fmt.Errorf("unable to encode updateEncryption#b4a2e88d: field chat is nil")
		tl_update_gen.go#L2277: 		return fmt.Errorf("unable to encode updateEncryption#b4a2e88d: field chat: %w", err)
		tl_update_gen.go#L2286: 		return fmt.Errorf("can't decode updateEncryption#b4a2e88d to nil")
		tl_update_gen.go#L2289: 		return fmt.Errorf("unable to decode updateEncryption#b4a2e88d: %w", err)
		tl_update_gen.go#L2297: 		return fmt.Errorf("can't decode updateEncryption#b4a2e88d to nil")
		tl_update_gen.go#L2302: 			return fmt.Errorf("unable to decode updateEncryption#b4a2e88d: field chat: %w", err)
		tl_update_gen.go#L2309: 			return fmt.Errorf("unable to decode updateEncryption#b4a2e88d: field date: %w", err)
		tl_update_gen.go#L2440: 		return fmt.Errorf("can't encode updateEncryptedMessagesRead#38fe25b7 as nil")
		tl_update_gen.go#L2449: 		return fmt.Errorf("can't encode updateEncryptedMessagesRead#38fe25b7 as nil")
		tl_update_gen.go#L2460: 		return fmt.Errorf("can't decode updateEncryptedMessagesRead#38fe25b7 to nil")
		tl_update_gen.go#L2463: 		return fmt.Errorf("unable to decode updateEncryptedMessagesRead#38fe25b7: %w", err)
		tl_update_gen.go#L2471: 		return fmt.Errorf("can't decode updateEncryptedMessagesRead#38fe25b7 to nil")
		tl_update_gen.go#L2476: 			return fmt.Errorf("unable to decode updateEncryptedMessagesRead#38fe25b7: field chat_id: %w", err)
		tl_update_gen.go#L2483: 			return fmt.Errorf("unable to decode updateEncryptedMessagesRead#38fe25b7: field max_date: %w", err)
		tl_update_gen.go#L2490: 			return fmt.Errorf("unable to decode updateEncryptedMessagesRead#38fe25b7: field date: %w", err)
		tl_update_gen.go#L2651: 		return fmt.Errorf("can't encode updateChatParticipantAdd#3dda5451 as nil")
		tl_update_gen.go#L2660: 		return fmt.Errorf("can't encode updateChatParticipantAdd#3dda5451 as nil")
		tl_update_gen.go#L2673: 		return fmt.Errorf("can't decode updateChatParticipantAdd#3dda5451 to nil")
		tl_update_gen.go#L2676: 		return fmt.Errorf("unable to decode updateChatParticipantAdd#3dda5451: %w", err)
		tl_update_gen.go#L2684: 		return fmt.Errorf("can't decode updateChatParticipantAdd#3dda5451 to nil")
		tl_update_gen.go#L2689: 			return fmt.Errorf("unable to decode updateChatParticipantAdd#3dda5451: field chat_id: %w", err)
		tl_update_gen.go#L2696: 			return fmt.Errorf("unable to decode updateChatParticipantAdd#3dda5451: field user_id: %w", err)
		tl_update_gen.go#L2703: 			return fmt.Errorf("unable to decode updateChatParticipantAdd#3dda5451: field inviter_id: %w", err)
		tl_update_gen.go#L2710: 			return fmt.Errorf("unable to decode updateChatParticipantAdd#3dda5451: field date: %w", err)
		tl_update_gen.go#L2717: 			return fmt.Errorf("unable to decode updateChatParticipantAdd#3dda5451: field version: %w", err)
		tl_update_gen.go#L2872: 		return fmt.Errorf("can't encode updateChatParticipantDelete#e32f3d77 as nil")
		tl_update_gen.go#L2881: 		return fmt.Errorf("can't encode updateChatParticipantDelete#e32f3d77 as nil")
		tl_update_gen.go#L2892: 		return fmt.Errorf("can't decode updateChatParticipantDelete#e32f3d77 to nil")
		tl_update_gen.go#L2895: 		return fmt.Errorf("unable to decode updateChatParticipantDelete#e32f3d77: %w", err)
		tl_update_gen.go#L2903: 		return fmt.Errorf("can't decode updateChatParticipantDelete#e32f3d77 to nil")
		tl_update_gen.go#L2908: 			return fmt.Errorf("unable to decode updateChatParticipantDelete#e32f3d77: field chat_id: %w", err)
		tl_update_gen.go#L2915: 			return fmt.Errorf("unable to decode updateChatParticipantDelete#e32f3d77: field user_id: %w", err)
		tl_update_gen.go#L2922: 			return fmt.Errorf("unable to decode updateChatParticipantDelete#e32f3d77: field version: %w", err)
		tl_update_gen.go#L3039: 		return fmt.Errorf("can't encode updateDcOptions#8e5e9873 as nil")
		tl_update_gen.go#L3048: 		return fmt.Errorf("can't encode updateDcOptions#8e5e9873 as nil")
		tl_update_gen.go#L3053: 			return fmt.Errorf("unable to encode updateDcOptions#8e5e9873: field dc_options element with index %d: %w", idx, err)
		tl_update_gen.go#L3062: 		return fmt.Errorf("can't decode updateDcOptions#8e5e9873 to nil")
		tl_update_gen.go#L3065: 		return fmt.Errorf("unable to decode updateDcOptions#8e5e9873: %w", err)
		tl_update_gen.go#L3073: 		return fmt.Errorf("can't decode updateDcOptions#8e5e9873 to nil")
		tl_update_gen.go#L3078: 			return fmt.Errorf("unable to decode updateDcOptions#8e5e9873: field dc_options: %w", err)
		tl_update_gen.go#L3087: 				return fmt.Errorf("unable to decode updateDcOptions#8e5e9873: field dc_options: %w", err)
		tl_update_gen.go#L3200: 		return fmt.Errorf("can't encode updateNotifySettings#bec268ef as nil")
		tl_update_gen.go#L3209: 		return fmt.Errorf("can't encode updateNotifySettings#bec268ef as nil")
		tl_update_gen.go#L3212: 		return fmt.Errorf("unable to encode updateNotifySettings#bec268ef: field peer is nil")
		tl_update_gen.go#L3215: 		return fmt.Errorf("unable to encode updateNotifySettings#bec268ef: field peer: %w", err)
		tl_update_gen.go#L3218: 		return fmt.Errorf("unable to encode updateNotifySettings#bec268ef: field notify_settings: %w", err)
		tl_update_gen.go#L3226: 		return fmt.Errorf("can't decode updateNotifySettings#bec268ef to nil")
		tl_update_gen.go#L3229: 		return fmt.Errorf("unable to decode updateNotifySettings#bec268ef: %w", err)
		tl_update_gen.go#L3237: 		return fmt.Errorf("can't decode updateNotifySettings#bec268ef to nil")
		tl_update_gen.go#L3242: 			return fmt.Errorf("unable to decode updateNotifySettings#bec268ef: field peer: %w", err)
		tl_update_gen.go#L3248: 			return fmt.Errorf("unable to decode updateNotifySettings#bec268ef: field notify_settings: %w", err)
		tl_update_gen.go#L3467: 		return fmt.Errorf("can't encode updateServiceNotification#ebe46819 as nil")
		tl_update_gen.go#L3476: 		return fmt.Errorf("can't encode updateServiceNotification#ebe46819 as nil")
		tl_update_gen.go#L3480: 		return fmt.Errorf("unable to encode updateServiceNotification#ebe46819: field flags: %w", err)
		tl_update_gen.go#L3488: 		return fmt.Errorf("unable to encode updateServiceNotification#ebe46819: field media is nil")
		tl_update_gen.go#L3491: 		return fmt.Errorf("unable to encode updateServiceNotification#ebe46819: field media: %w", err)
		tl_update_gen.go#L3496: 			return fmt.Errorf("unable to encode updateServiceNotification#ebe46819: field entities element with index %d is nil", idx)
		tl_update_gen.go#L3499: 			return fmt.Errorf("unable to encode updateServiceNotification#ebe46819: field entities element with index %d: %w", idx, err)
		tl_update_gen.go#L3508: 		return fmt.Errorf("can't decode updateServiceNotification#ebe46819 to nil")
		tl_update_gen.go#L3511: 		return fmt.Errorf("unable to decode updateServiceNotification#ebe46819: %w", err)
		tl_update_gen.go#L3519: 		return fmt.Errorf("can't decode updateServiceNotification#ebe46819 to nil")
		tl_update_gen.go#L3523: 			return fmt.Errorf("unable to decode updateServiceNotification#ebe46819: field flags: %w", err)
		tl_update_gen.go#L3531: 			return fmt.Errorf("unable to decode updateServiceNotification#ebe46819: field inbox_date: %w", err)
		tl_update_gen.go#L3538: 			return fmt.Errorf("unable to decode updateServiceNotification#ebe46819: field type: %w", err)
		tl_update_gen.go#L3545: 			return fmt.Errorf("unable to decode updateServiceNotification#ebe46819: field message: %w", err)
		tl_update_gen.go#L3552: 			return fmt.Errorf("unable to decode updateServiceNotification#ebe46819: field media: %w", err)
		tl_update_gen.go#L3559: 			return fmt.Errorf("unable to decode updateServiceNotification#ebe46819: field entities: %w", err)
		tl_update_gen.go#L3568: 				return fmt.Errorf("unable to decode updateServiceNotification#ebe46819: field entities: %w", err)
		tl_update_gen.go#L3766: 		return fmt.Errorf("can't encode updatePrivacy#ee3b272a as nil")
		tl_update_gen.go#L3775: 		return fmt.Errorf("can't encode updatePrivacy#ee3b272a as nil")
		tl_update_gen.go#L3778: 		return fmt.Errorf("unable to encode updatePrivacy#ee3b272a: field key is nil")
		tl_update_gen.go#L3781: 		return fmt.Errorf("unable to encode updatePrivacy#ee3b272a: field key: %w", err)
		tl_update_gen.go#L3786: 			return fmt.Errorf("unable to encode updatePrivacy#ee3b272a: field rules element with index %d is nil", idx)
		tl_update_gen.go#L3789: 			return fmt.Errorf("unable to encode updatePrivacy#ee3b272a: field rules element with index %d: %w", idx, err)
		tl_update_gen.go#L3798: 		return fmt.Errorf("can't decode updatePrivacy#ee3b272a to nil")
		tl_update_gen.go#L3801: 		return fmt.Errorf("unable to decode updatePrivacy#ee3b272a: %w", err)
		tl_update_gen.go#L3809: 		return fmt.Errorf("can't decode updatePrivacy#ee3b272a to nil")
		tl_update_gen.go#L3814: 			return fmt.Errorf("unable to decode updatePrivacy#ee3b272a: field key: %w", err)
		tl_update_gen.go#L3821: 			return fmt.Errorf("unable to decode updatePrivacy#ee3b272a: field rules: %w", err)
		tl_update_gen.go#L3830: 				return fmt.Errorf("unable to decode updatePrivacy#ee3b272a: field rules: %w", err)
		tl_update_gen.go#L3956: 		return fmt.Errorf("can't encode updateUserPhone#5492a13 as nil")
		tl_update_gen.go#L3965: 		return fmt.Errorf("can't encode updateUserPhone#5492a13 as nil")
		tl_update_gen.go#L3975: 		return fmt.Errorf("can't decode updateUserPhone#5492a13 to nil")
		tl_update_gen.go#L3978: 		return fmt.Errorf("unable to decode updateUserPhone#5492a13: %w", err)
		tl_update_gen.go#L3986: 		return fmt.Errorf("can't decode updateUserPhone#5492a13 to nil")
		tl_update_gen.go#L3991: 			return fmt.Errorf("unable to decode updateUserPhone#5492a13: field user_id: %w", err)
		tl_update_gen.go#L3998: 			return fmt.Errorf("unable to decode updateUserPhone#5492a13: field phone: %w", err)
		tl_update_gen.go#L4192: 		return fmt.Errorf("can't encode updateReadHistoryInbox#9c974fdf as nil")
		tl_update_gen.go#L4201: 		return fmt.Errorf("can't encode updateReadHistoryInbox#9c974fdf as nil")
		tl_update_gen.go#L4205: 		return fmt.Errorf("unable to encode updateReadHistoryInbox#9c974fdf: field flags: %w", err)
		tl_update_gen.go#L4211: 		return fmt.Errorf("unable to encode updateReadHistoryInbox#9c974fdf: field peer is nil")
		tl_update_gen.go#L4214: 		return fmt.Errorf("unable to encode updateReadHistoryInbox#9c974fdf: field peer: %w", err)
		tl_update_gen.go#L4226: 		return fmt.Errorf("can't decode updateReadHistoryInbox#9c974fdf to nil")
		tl_update_gen.go#L4229: 		return fmt.Errorf("unable to decode updateReadHistoryInbox#9c974fdf: %w", err)
		tl_update_gen.go#L4237: 		return fmt.Errorf("can't decode updateReadHistoryInbox#9c974fdf to nil")
		tl_update_gen.go#L4241: 			return fmt.Errorf("unable to decode updateReadHistoryInbox#9c974fdf: field flags: %w", err)
		tl_update_gen.go#L4247: 			return fmt.Errorf("unable to decode updateReadHistoryInbox#9c974fdf: field folder_id: %w", err)
		tl_update_gen.go#L4254: 			return fmt.Errorf("unable to decode updateReadHistoryInbox#9c974fdf: field peer: %w", err)
		tl_update_gen.go#L4261: 			return fmt.Errorf("unable to decode updateReadHistoryInbox#9c974fdf: field max_id: %w", err)
		tl_update_gen.go#L4268: 			return fmt.Errorf("unable to decode updateReadHistoryInbox#9c974fdf: field still_unread_count: %w", err)
		tl_update_gen.go#L4275: 			return fmt.Errorf("unable to decode updateReadHistoryInbox#9c974fdf: field pts: %w", err)
		tl_update_gen.go#L4282: 			return fmt.Errorf("unable to decode updateReadHistoryInbox#9c974fdf: field pts_count: %w", err)
		tl_update_gen.go#L4472: 		return fmt.Errorf("can't encode updateReadHistoryOutbox#2f2f21bf as nil")
		tl_update_gen.go#L4481: 		return fmt.Errorf("can't encode updateReadHistoryOutbox#2f2f21bf as nil")
		tl_update_gen.go#L4484: 		return fmt.Errorf("unable to encode updateReadHistoryOutbox#2f2f21bf: field peer is nil")
		tl_update_gen.go#L4487: 		return fmt.Errorf("unable to encode updateReadHistoryOutbox#2f2f21bf: field peer: %w", err)
		tl_update_gen.go#L4498: 		return fmt.Errorf("can't decode updateReadHistoryOutbox#2f2f21bf to nil")
		tl_update_gen.go#L4501: 		return fmt.Errorf("unable to decode updateReadHistoryOutbox#2f2f21bf: %w", err)
		tl_update_gen.go#L4509: 		return fmt.Errorf("can't decode updateReadHistoryOutbox#2f2f21bf to nil")
		tl_update_gen.go#L4514: 			return fmt.Errorf("unable to decode updateReadHistoryOutbox#2f2f21bf: field peer: %w", err)
		tl_update_gen.go#L4521: 			return fmt.Errorf("unable to decode updateReadHistoryOutbox#2f2f21bf: field max_id: %w", err)
		tl_update_gen.go#L4528: 			return fmt.Errorf("unable to decode updateReadHistoryOutbox#2f2f21bf: field pts: %w", err)
		tl_update_gen.go#L4535: 			return fmt.Errorf("unable to decode updateReadHistoryOutbox#2f2f21bf: field pts_count: %w", err)
		tl_update_gen.go#L4691: 		return fmt.Errorf("can't encode updateWebPage#7f891213 as nil")
		tl_update_gen.go#L4700: 		return fmt.Errorf("can't encode updateWebPage#7f891213 as nil")
		tl_update_gen.go#L4703: 		return fmt.Errorf("unable to encode updateWebPage#7f891213: field webpage is nil")
		tl_update_gen.go#L4706: 		return fmt.Errorf("unable to encode updateWebPage#7f891213: field webpage: %w", err)
		tl_update_gen.go#L4716: 		return fmt.Errorf("can't decode updateWebPage#7f891213 to nil")
		tl_update_gen.go#L4719: 		return fmt.Errorf("unable to decode updateWebPage#7f891213: %w", err)
		tl_update_gen.go#L4727: 		return fmt.Errorf("can't decode updateWebPage#7f891213 to nil")
		tl_update_gen.go#L4732: 			return fmt.Errorf("unable to decode updateWebPage#7f891213: field webpage: %w", err)
		tl_update_gen.go#L4739: 			return fmt.Errorf("unable to decode updateWebPage#7f891213: field pts: %w", err)
		tl_update_gen.go#L4746: 			return fmt.Errorf("unable to decode updateWebPage#7f891213: field pts_count: %w", err)
		tl_update_gen.go#L4926: 		return fmt.Errorf("can't encode updateReadMessagesContents#f8227181 as nil")
		tl_update_gen.go#L4935: 		return fmt.Errorf("can't encode updateReadMessagesContents#f8227181 as nil")
		tl_update_gen.go#L4939: 		return fmt.Errorf("unable to encode updateReadMessagesContents#f8227181: field flags: %w", err)
		tl_update_gen.go#L4956: 		return fmt.Errorf("can't decode updateReadMessagesContents#f8227181 to nil")
		tl_update_gen.go#L4959: 		return fmt.Errorf("unable to decode updateReadMessagesContents#f8227181: %w", err)
		tl_update_gen.go#L4967: 		return fmt.Errorf("can't decode updateReadMessagesContents#f8227181 to nil")
		tl_update_gen.go#L4971: 			return fmt.Errorf("unable to decode updateReadMessagesContents#f8227181: field flags: %w", err)
		tl_update_gen.go#L4977: 			return fmt.Errorf("unable to decode updateReadMessagesContents#f8227181: field messages: %w", err)
		tl_update_gen.go#L4986: 				return fmt.Errorf("unable to decode updateReadMessagesContents#f8227181: field messages: %w", err)
		tl_update_gen.go#L4994: 			return fmt.Errorf("unable to decode updateReadMessagesContents#f8227181: field pts: %w", err)
		tl_update_gen.go#L5001: 			return fmt.Errorf("unable to decode updateReadMessagesContents#f8227181: field pts_count: %w", err)
		tl_update_gen.go#L5008: 			return fmt.Errorf("unable to decode updateReadMessagesContents#f8227181: field date: %w", err)
		tl_update_gen.go#L5180: 		return fmt.Errorf("can't encode updateChannelTooLong#108d941f as nil")
		tl_update_gen.go#L5189: 		return fmt.Errorf("can't encode updateChannelTooLong#108d941f as nil")
		tl_update_gen.go#L5193: 		return fmt.Errorf("unable to encode updateChannelTooLong#108d941f: field flags: %w", err)
		tl_update_gen.go#L5205: 		return fmt.Errorf("can't decode updateChannelTooLong#108d941f to nil")
		tl_update_gen.go#L5208: 		return fmt.Errorf("unable to decode updateChannelTooLong#108d941f: %w", err)
		tl_update_gen.go#L5216: 		return fmt.Errorf("can't decode updateChannelTooLong#108d941f to nil")
		tl_update_gen.go#L5220: 			return fmt.Errorf("unable to decode updateChannelTooLong#108d941f: field flags: %w", err)
		tl_update_gen.go#L5226: 			return fmt.Errorf("unable to decode updateChannelTooLong#108d941f: field channel_id: %w", err)
		tl_update_gen.go#L5233: 			return fmt.Errorf("unable to decode updateChannelTooLong#108d941f: field pts: %w", err)
		tl_update_gen.go#L5353: 		return fmt.Errorf("can't encode updateChannel#635b4c09 as nil")
		tl_update_gen.go#L5362: 		return fmt.Errorf("can't encode updateChannel#635b4c09 as nil")
		tl_update_gen.go#L5371: 		return fmt.Errorf("can't decode updateChannel#635b4c09 to nil")
		tl_update_gen.go#L5374: 		return fmt.Errorf("unable to decode updateChannel#635b4c09: %w", err)
		tl_update_gen.go#L5382: 		return fmt.Errorf("can't decode updateChannel#635b4c09 to nil")
		tl_update_gen.go#L5387: 			return fmt.Errorf("unable to decode updateChannel#635b4c09: field channel_id: %w", err)
		tl_update_gen.go#L5519: 		return fmt.Errorf("can't encode updateNewChannelMessage#62ba04d9 as nil")
		tl_update_gen.go#L5528: 		return fmt.Errorf("can't encode updateNewChannelMessage#62ba04d9 as nil")
		tl_update_gen.go#L5531: 		return fmt.Errorf("unable to encode updateNewChannelMessage#62ba04d9: field message is nil")
		tl_update_gen.go#L5534: 		return fmt.Errorf("unable to encode updateNewChannelMessage#62ba04d9: field message: %w", err)
		tl_update_gen.go#L5544: 		return fmt.Errorf("can't decode updateNewChannelMessage#62ba04d9 to nil")
		tl_update_gen.go#L5547: 		return fmt.Errorf("unable to decode updateNewChannelMessage#62ba04d9: %w", err)
		tl_update_gen.go#L5555: 		return fmt.Errorf("can't decode updateNewChannelMessage#62ba04d9 to nil")
		tl_update_gen.go#L5560: 			return fmt.Errorf("unable to decode updateNewChannelMessage#62ba04d9: field message: %w", err)
		tl_update_gen.go#L5567: 			return fmt.Errorf("unable to decode updateNewChannelMessage#62ba04d9: field pts: %w", err)
		tl_update_gen.go#L5574: 			return fmt.Errorf("unable to decode updateNewChannelMessage#62ba04d9: field pts_count: %w", err)
		tl_update_gen.go#L5765: 		return fmt.Errorf("can't encode updateReadChannelInbox#922e6e10 as nil")
		tl_update_gen.go#L5774: 		return fmt.Errorf("can't encode updateReadChannelInbox#922e6e10 as nil")
		tl_update_gen.go#L5778: 		return fmt.Errorf("unable to encode updateReadChannelInbox#922e6e10: field flags: %w", err)
		tl_update_gen.go#L5793: 		return fmt.Errorf("can't decode updateReadChannelInbox#922e6e10 to nil")
		tl_update_gen.go#L5796: 		return fmt.Errorf("unable to decode updateReadChannelInbox#922e6e10: %w", err)
		tl_update_gen.go#L5804: 		return fmt.Errorf("can't decode updateReadChannelInbox#922e6e10 to nil")
		tl_update_gen.go#L5808: 			return fmt.Errorf("unable to decode updateReadChannelInbox#922e6e10: field flags: %w", err)
		tl_update_gen.go#L5814: 			return fmt.Errorf("unable to decode updateReadChannelInbox#922e6e10: field folder_id: %w", err)
		tl_update_gen.go#L5821: 			return fmt.Errorf("unable to decode updateReadChannelInbox#922e6e10: field channel_id: %w", err)
		tl_update_gen.go#L5828: 			return fmt.Errorf("unable to decode updateReadChannelInbox#922e6e10: field max_id: %w", err)
		tl_update_gen.go#L5835: 			return fmt.Errorf("unable to decode updateReadChannelInbox#922e6e10: field still_unread_count: %w", err)
		tl_update_gen.go#L5842: 			return fmt.Errorf("unable to decode updateReadChannelInbox#922e6e10: field pts: %w", err)
		tl_update_gen.go#L6027: 		return fmt.Errorf("can't encode updateDeleteChannelMessages#c32d5b12 as nil")
		tl_update_gen.go#L6036: 		return fmt.Errorf("can't encode updateDeleteChannelMessages#c32d5b12 as nil")
		tl_update_gen.go#L6051: 		return fmt.Errorf("can't decode updateDeleteChannelMessages#c32d5b12 to nil")
		tl_update_gen.go#L6054: 		return fmt.Errorf("unable to decode updateDeleteChannelMessages#c32d5b12: %w", err)
		tl_update_gen.go#L6062: 		return fmt.Errorf("can't decode updateDeleteChannelMessages#c32d5b12 to nil")
		tl_update_gen.go#L6067: 			return fmt.Errorf("unable to decode updateDeleteChannelMessages#c32d5b12: field channel_id: %w", err)
		tl_update_gen.go#L6074: 			return fmt.Errorf("unable to decode updateDeleteChannelMessages#c32d5b12: field messages: %w", err)
		tl_update_gen.go#L6083: 				return fmt.Errorf("unable to decode updateDeleteChannelMessages#c32d5b12: field messages: %w", err)
		tl_update_gen.go#L6091: 			return fmt.Errorf("unable to decode updateDeleteChannelMessages#c32d5b12: field pts: %w", err)
		tl_update_gen.go#L6098: 			return fmt.Errorf("unable to decode updateDeleteChannelMessages#c32d5b12: field pts_count: %w", err)
		tl_update_gen.go#L6245: 		return fmt.Errorf("can't encode updateChannelMessageViews#f226ac08 as nil")
		tl_update_gen.go#L6254: 		return fmt.Errorf("can't encode updateChannelMessageViews#f226ac08 as nil")
		tl_update_gen.go#L6265: 		return fmt.Errorf("can't decode updateChannelMessageViews#f226ac08 to nil")
		tl_update_gen.go#L6268: 		return fmt.Errorf("unable to decode updateChannelMessageViews#f226ac08: %w", err)
		tl_update_gen.go#L6276: 		return fmt.Errorf("can't decode updateChannelMessageViews#f226ac08 to nil")
		tl_update_gen.go#L6281: 			return fmt.Errorf("unable to decode updateChannelMessageViews#f226ac08: field channel_id: %w", err)
		tl_update_gen.go#L6288: 			return fmt.Errorf("unable to decode updateChannelMessageViews#f226ac08: field id: %w", err)
		tl_update_gen.go#L6295: 			return fmt.Errorf("unable to decode updateChannelMessageViews#f226ac08: field views: %w", err)
		tl_update_gen.go#L6448: 		return fmt.Errorf("can't encode updateChatParticipantAdmin#d7ca61a2 as nil")
		tl_update_gen.go#L6457: 		return fmt.Errorf("can't encode updateChatParticipantAdmin#d7ca61a2 as nil")
		tl_update_gen.go#L6469: 		return fmt.Errorf("can't decode updateChatParticipantAdmin#d7ca61a2 to nil")
		tl_update_gen.go#L6472: 		return fmt.Errorf("unable to decode updateChatParticipantAdmin#d7ca61a2: %w", err)
		tl_update_gen.go#L6480: 		return fmt.Errorf("can't decode updateChatParticipantAdmin#d7ca61a2 to nil")
		tl_update_gen.go#L6485: 			return fmt.Errorf("unable to decode updateChatParticipantAdmin#d7ca61a2: field chat_id: %w", err)
		tl_update_gen.go#L6492: 			return fmt.Errorf("unable to decode updateChatParticipantAdmin#d7ca61a2: field user_id: %w", err)
		tl_update_gen.go#L6499: 			return fmt.Errorf("unable to decode updateChatParticipantAdmin#d7ca61a2: field is_admin: %w", err)
		tl_update_gen.go#L6506: 			return fmt.Errorf("unable to decode updateChatParticipantAdmin#d7ca61a2: field version: %w", err)
		tl_update_gen.go#L6631: 		return fmt.Errorf("can't encode updateNewStickerSet#688a30aa as nil")
		tl_update_gen.go#L6640: 		return fmt.Errorf("can't encode updateNewStickerSet#688a30aa as nil")
		tl_update_gen.go#L6643: 		return fmt.Errorf("unable to encode updateNewStickerSet#688a30aa: field stickerset is nil")
		tl_update_gen.go#L6646: 		return fmt.Errorf("unable to encode updateNewStickerSet#688a30aa: field stickerset: %w", err)
		tl_update_gen.go#L6654: 		return fmt.Errorf("can't decode updateNewStickerSet#688a30aa to nil")
		tl_update_gen.go#L6657: 		return fmt.Errorf("unable to decode updateNewStickerSet#688a30aa: %w", err)
		tl_update_gen.go#L6665: 		return fmt.Errorf("can't decode updateNewStickerSet#688a30aa to nil")
		tl_update_gen.go#L6670: 			return fmt.Errorf("unable to decode updateNewStickerSet#688a30aa: field stickerset: %w", err)
		tl_update_gen.go#L6813: 		return fmt.Errorf("can't encode updateStickerSetsOrder#bb2d201 as nil")
		tl_update_gen.go#L6822: 		return fmt.Errorf("can't encode updateStickerSetsOrder#bb2d201 as nil")
		tl_update_gen.go#L6826: 		return fmt.Errorf("unable to encode updateStickerSetsOrder#bb2d201: field flags: %w", err)
		tl_update_gen.go#L6838: 		return fmt.Errorf("can't decode updateStickerSetsOrder#bb2d201 to nil")
		tl_update_gen.go#L6841: 		return fmt.Errorf("unable to decode updateStickerSetsOrder#bb2d201: %w", err)
		tl_update_gen.go#L6849: 		return fmt.Errorf("can't decode updateStickerSetsOrder#bb2d201 to nil")
		tl_update_gen.go#L6853: 			return fmt.Errorf("unable to decode updateStickerSetsOrder#bb2d201: field flags: %w", err)
		tl_update_gen.go#L6861: 			return fmt.Errorf("unable to decode updateStickerSetsOrder#bb2d201: field order: %w", err)
		tl_update_gen.go#L6870: 				return fmt.Errorf("unable to decode updateStickerSetsOrder#bb2d201: field order: %w", err)
		tl_update_gen.go#L7048: 		return fmt.Errorf("can't encode updateStickerSets#31c24808 as nil")
		tl_update_gen.go#L7057: 		return fmt.Errorf("can't encode updateStickerSets#31c24808 as nil")
		tl_update_gen.go#L7061: 		return fmt.Errorf("unable to encode updateStickerSets#31c24808: field flags: %w", err)
		tl_update_gen.go#L7069: 		return fmt.Errorf("can't decode updateStickerSets#31c24808 to nil")
		tl_update_gen.go#L7072: 		return fmt.Errorf("unable to decode updateStickerSets#31c24808: %w", err)
		tl_update_gen.go#L7080: 		return fmt.Errorf("can't decode updateStickerSets#31c24808 to nil")
		tl_update_gen.go#L7084: 			return fmt.Errorf("unable to decode updateStickerSets#31c24808: field flags: %w", err)
		tl_update_gen.go#L7203: 		return fmt.Errorf("can't encode updateSavedGifs#9375341e as nil")
		tl_update_gen.go#L7212: 		return fmt.Errorf("can't encode updateSavedGifs#9375341e as nil")
		tl_update_gen.go#L7220: 		return fmt.Errorf("can't decode updateSavedGifs#9375341e to nil")
		tl_update_gen.go#L7223: 		return fmt.Errorf("unable to decode updateSavedGifs#9375341e: %w", err)
		tl_update_gen.go#L7231: 		return fmt.Errorf("can't decode updateSavedGifs#9375341e to nil")
		tl_update_gen.go#L7407: 		return fmt.Errorf("can't encode updateBotInlineQuery#496f379c as nil")
		tl_update_gen.go#L7416: 		return fmt.Errorf("can't encode updateBotInlineQuery#496f379c as nil")
		tl_update_gen.go#L7420: 		return fmt.Errorf("unable to encode updateBotInlineQuery#496f379c: field flags: %w", err)
		tl_update_gen.go#L7427: 			return fmt.Errorf("unable to encode updateBotInlineQuery#496f379c: field geo is nil")
		tl_update_gen.go#L7430: 			return fmt.Errorf("unable to encode updateBotInlineQuery#496f379c: field geo: %w", err)
		tl_update_gen.go#L7435: 			return fmt.Errorf("unable to encode updateBotInlineQuery#496f379c: field peer_type is nil")
		tl_update_gen.go#L7438: 			return fmt.Errorf("unable to encode updateBotInlineQuery#496f379c: field peer_type: %w", err)
		tl_update_gen.go#L7448: 		return fmt.Errorf("can't decode updateBotInlineQuery#496f379c to nil")
		tl_update_gen.go#L7451: 		return fmt.Errorf("unable to decode updateBotInlineQuery#496f379c: %w", err)
		tl_update_gen.go#L7459: 		return fmt.Errorf("can't decode updateBotInlineQuery#496f379c to nil")
		tl_update_gen.go#L7463: 			return fmt.Errorf("unable to decode updateBotInlineQuery#496f379c: field flags: %w", err)
		tl_update_gen.go#L7469: 			return fmt.Errorf("unable to decode updateBotInlineQuery#496f379c: field query_id: %w", err)
		tl_update_gen.go#L7476: 			return fmt.Errorf("unable to decode updateBotInlineQuery#496f379c: field user_id: %w", err)
		tl_update_gen.go#L7483: 			return fmt.Errorf("unable to decode updateBotInlineQuery#496f379c: field query: %w", err)
		tl_update_gen.go#L7490: 			return fmt.Errorf("unable to decode updateBotInlineQuery#496f379c: field geo: %w", err)
		tl_update_gen.go#L7497: 			return fmt.Errorf("unable to decode updateBotInlineQuery#496f379c: field peer_type: %w", err)
		tl_update_gen.go#L7504: 			return fmt.Errorf("unable to decode updateBotInlineQuery#496f379c: field offset: %w", err)
		tl_update_gen.go#L7746: 		return fmt.Errorf("can't encode updateBotInlineSend#12f12a07 as nil")
		tl_update_gen.go#L7755: 		return fmt.Errorf("can't encode updateBotInlineSend#12f12a07 as nil")
		tl_update_gen.go#L7759: 		return fmt.Errorf("unable to encode updateBotInlineSend#12f12a07: field flags: %w", err)
		tl_update_gen.go#L7765: 			return fmt.Errorf("unable to encode updateBotInlineSend#12f12a07: field geo is nil")
		tl_update_gen.go#L7768: 			return fmt.Errorf("unable to encode updateBotInlineSend#12f12a07: field geo: %w", err)
		tl_update_gen.go#L7774: 			return fmt.Errorf("unable to encode updateBotInlineSend#12f12a07: field msg_id is nil")
		tl_update_gen.go#L7777: 			return fmt.Errorf("unable to encode updateBotInlineSend#12f12a07: field msg_id: %w", err)
		tl_update_gen.go#L7786: 		return fmt.Errorf("can't decode updateBotInlineSend#12f12a07 to nil")
		tl_update_gen.go#L7789: 		return fmt.Errorf("unable to decode updateBotInlineSend#12f12a07: %w", err)
		tl_update_gen.go#L7797: 		return fmt.Errorf("can't decode updateBotInlineSend#12f12a07 to nil")
		tl_update_gen.go#L7801: 			return fmt.Errorf("unable to decode updateBotInlineSend#12f12a07: field flags: %w", err)
		tl_update_gen.go#L7807: 			return fmt.Errorf("unable to decode updateBotInlineSend#12f12a07: field user_id: %w", err)
		tl_update_gen.go#L7814: 			return fmt.Errorf("unable to decode updateBotInlineSend#12f12a07: field query: %w", err)
		tl_update_gen.go#L7821: 			return fmt.Errorf("unable to decode updateBotInlineSend#12f12a07: field geo: %w", err)
		tl_update_gen.go#L7828: 			return fmt.Errorf("unable to decode updateBotInlineSend#12f12a07: field id: %w", err)
		tl_update_gen.go#L7835: 			return fmt.Errorf("unable to decode updateBotInlineSend#12f12a07: field msg_id: %w", err)
		tl_update_gen.go#L8019: 		return fmt.Errorf("can't encode updateEditChannelMessage#1b3f4df7 as nil")
		tl_update_gen.go#L8028: 		return fmt.Errorf("can't encode updateEditChannelMessage#1b3f4df7 as nil")
		tl_update_gen.go#L8031: 		return fmt.Errorf("unable to encode updateEditChannelMessage#1b3f4df7: field message is nil")
		tl_update_gen.go#L8034: 		return fmt.Errorf("unable to encode updateEditChannelMessage#1b3f4df7: field message: %w", err)
		tl_update_gen.go#L8044: 		return fmt.Errorf("can't decode updateEditChannelMessage#1b3f4df7 to nil")
		tl_update_gen.go#L8047: 		return fmt.Errorf("unable to decode updateEditChannelMessage#1b3f4df7: %w", err)
		tl_update_gen.go#L8055: 		return fmt.Errorf("can't decode updateEditChannelMessage#1b3f4df7 to nil")
		tl_update_gen.go#L8060: 			return fmt.Errorf("unable to decode updateEditChannelMessage#1b3f4df7: field message: %w", err)
		tl_update_gen.go#L8067: 			return fmt.Errorf("unable to decode updateEditChannelMessage#1b3f4df7: field pts: %w", err)
		tl_update_gen.go#L8074: 			return fmt.Errorf("unable to decode updateEditChannelMessage#1b3f4df7: field pts_count: %w", err)
		tl_update_gen.go#L8289: 		return fmt.Errorf("can't encode updateBotCallbackQuery#b9cfc48d as nil")
		tl_update_gen.go#L8298: 		return fmt.Errorf("can't encode updateBotCallbackQuery#b9cfc48d as nil")
		tl_update_gen.go#L8302: 		return fmt.Errorf("unable to encode updateBotCallbackQuery#b9cfc48d: field flags: %w", err)
		tl_update_gen.go#L8307: 		return fmt.Errorf("unable to encode updateBotCallbackQuery#b9cfc48d: field peer is nil")
		tl_update_gen.go#L8310: 		return fmt.Errorf("unable to encode updateBotCallbackQuery#b9cfc48d: field peer: %w", err)
		tl_update_gen.go#L8326: 		return fmt.Errorf("can't decode updateBotCallbackQuery#b9cfc48d to nil")
		tl_update_gen.go#L8329: 		return fmt.Errorf("unable to decode updateBotCallbackQuery#b9cfc48d: %w", err)
		tl_update_gen.go#L8337: 		return fmt.Errorf("can't decode updateBotCallbackQuery#b9cfc48d to nil")
		tl_update_gen.go#L8341: 			return fmt.Errorf("unable to decode updateBotCallbackQuery#b9cfc48d: field flags: %w", err)
		tl_update_gen.go#L8347: 			return fmt.Errorf("unable to decode updateBotCallbackQuery#b9cfc48d: field query_id: %w", err)
		tl_update_gen.go#L8354: 			return fmt.Errorf("unable to decode updateBotCallbackQuery#b9cfc48d: field user_id: %w", err)
		tl_update_gen.go#L8361: 			return fmt.Errorf("unable to decode updateBotCallbackQuery#b9cfc48d: field peer: %w", err)
		tl_update_gen.go#L8368: 			return fmt.Errorf("unable to decode updateBotCallbackQuery#b9cfc48d: field msg_id: %w", err)
		tl_update_gen.go#L8375: 			return fmt.Errorf("unable to decode updateBotCallbackQuery#b9cfc48d: field chat_instance: %w", err)
		tl_update_gen.go#L8382: 			return fmt.Errorf("unable to decode updateBotCallbackQuery#b9cfc48d: field data: %w", err)
		tl_update_gen.go#L8389: 			return fmt.Errorf("unable to decode updateBotCallbackQuery#b9cfc48d: field game_short_name: %w", err)
		tl_update_gen.go#L8586: 		return fmt.Errorf("can't encode updateEditMessage#e40370a3 as nil")
		tl_update_gen.go#L8595: 		return fmt.Errorf("can't encode updateEditMessage#e40370a3 as nil")
		tl_update_gen.go#L8598: 		return fmt.Errorf("unable to encode updateEditMessage#e40370a3: field message is nil")
		tl_update_gen.go#L8601: 		return fmt.Errorf("unable to encode updateEditMessage#e40370a3: field message: %w", err)
		tl_update_gen.go#L8611: 		return fmt.Errorf("can't decode updateEditMessage#e40370a3 to nil")
		tl_update_gen.go#L8614: 		return fmt.Errorf("unable to decode updateEditMessage#e40370a3: %w", err)
		tl_update_gen.go#L8622: 		return fmt.Errorf("can't decode updateEditMessage#e40370a3 to nil")
		tl_update_gen.go#L8627: 			return fmt.Errorf("unable to decode updateEditMessage#e40370a3: field message: %w", err)
		tl_update_gen.go#L8634: 			return fmt.Errorf("unable to decode updateEditMessage#e40370a3: field pts: %w", err)
		tl_update_gen.go#L8641: 			return fmt.Errorf("unable to decode updateEditMessage#e40370a3: field pts_count: %w", err)
		tl_update_gen.go#L8845: 		return fmt.Errorf("can't encode updateInlineBotCallbackQuery#691e9052 as nil")
		tl_update_gen.go#L8854: 		return fmt.Errorf("can't encode updateInlineBotCallbackQuery#691e9052 as nil")
		tl_update_gen.go#L8858: 		return fmt.Errorf("unable to encode updateInlineBotCallbackQuery#691e9052: field flags: %w", err)
		tl_update_gen.go#L8863: 		return fmt.Errorf("unable to encode updateInlineBotCallbackQuery#691e9052: field msg_id is nil")
		tl_update_gen.go#L8866: 		return fmt.Errorf("unable to encode updateInlineBotCallbackQuery#691e9052: field msg_id: %w", err)
		tl_update_gen.go#L8881: 		return fmt.Errorf("can't decode updateInlineBotCallbackQuery#691e9052 to nil")
		tl_update_gen.go#L8884: 		return fmt.Errorf("unable to decode updateInlineBotCallbackQuery#691e9052: %w", err)
		tl_update_gen.go#L8892: 		return fmt.Errorf("can't decode updateInlineBotCallbackQuery#691e9052 to nil")
		tl_update_gen.go#L8896: 			return fmt.Errorf("unable to decode updateInlineBotCallbackQuery#691e9052: field flags: %w", err)
		tl_update_gen.go#L8902: 			return fmt.Errorf("unable to decode updateInlineBotCallbackQuery#691e9052: field query_id: %w", err)
		tl_update_gen.go#L8909: 			return fmt.Errorf("unable to decode updateInlineBotCallbackQuery#691e9052: field user_id: %w", err)
		tl_update_gen.go#L8916: 			return fmt.Errorf("unable to decode updateInlineBotCallbackQuery#691e9052: field msg_id: %w", err)
		tl_update_gen.go#L8923: 			return fmt.Errorf("unable to decode updateInlineBotCallbackQuery#691e9052: field chat_instance: %w", err)
		tl_update_gen.go#L8930: 			return fmt.Errorf("unable to decode updateInlineBotCallbackQuery#691e9052: field data: %w", err)
		tl_update_gen.go#L8937: 			return fmt.Errorf("unable to decode updateInlineBotCallbackQuery#691e9052: field game_short_name: %w", err)
		tl_update_gen.go#L9112: 		return fmt.Errorf("can't encode updateReadChannelOutbox#b75f99a9 as nil")
		tl_update_gen.go#L9121: 		return fmt.Errorf("can't encode updateReadChannelOutbox#b75f99a9 as nil")
		tl_update_gen.go#L9131: 		return fmt.Errorf("can't decode updateReadChannelOutbox#b75f99a9 to nil")
		tl_update_gen.go#L9134: 		return fmt.Errorf("unable to decode updateReadChannelOutbox#b75f99a9: %w", err)
		tl_update_gen.go#L9142: 		return fmt.Errorf("can't decode updateReadChannelOutbox#b75f99a9 to nil")
		tl_update_gen.go#L9147: 			return fmt.Errorf("unable to decode updateReadChannelOutbox#b75f99a9: field channel_id: %w", err)
		tl_update_gen.go#L9154: 			return fmt.Errorf("unable to decode updateReadChannelOutbox#b75f99a9: field max_id: %w", err)
		tl_update_gen.go#L9312: 		return fmt.Errorf("can't encode updateDraftMessage#1b49ec6d as nil")
		tl_update_gen.go#L9321: 		return fmt.Errorf("can't encode updateDraftMessage#1b49ec6d as nil")
		tl_update_gen.go#L9325: 		return fmt.Errorf("unable to encode updateDraftMessage#1b49ec6d: field flags: %w", err)
		tl_update_gen.go#L9328: 		return fmt.Errorf("unable to encode updateDraftMessage#1b49ec6d: field peer is nil")
		tl_update_gen.go#L9331: 		return fmt.Errorf("unable to encode updateDraftMessage#1b49ec6d: field peer: %w", err)
		tl_update_gen.go#L9337: 		return fmt.Errorf("unable to encode updateDraftMessage#1b49ec6d: field draft is nil")
		tl_update_gen.go#L9340: 		return fmt.Errorf("unable to encode updateDraftMessage#1b49ec6d: field draft: %w", err)
		tl_update_gen.go#L9348: 		return fmt.Errorf("can't decode updateDraftMessage#1b49ec6d to nil")
		tl_update_gen.go#L9351: 		return fmt.Errorf("unable to decode updateDraftMessage#1b49ec6d: %w", err)
		tl_update_gen.go#L9359: 		return fmt.Errorf("can't decode updateDraftMessage#1b49ec6d to nil")
		tl_update_gen.go#L9363: 			return fmt.Errorf("unable to decode updateDraftMessage#1b49ec6d: field flags: %w", err)
		tl_update_gen.go#L9369: 			return fmt.Errorf("unable to decode updateDraftMessage#1b49ec6d: field peer: %w", err)
		tl_update_gen.go#L9376: 			return fmt.Errorf("unable to decode updateDraftMessage#1b49ec6d: field top_msg_id: %w", err)
		tl_update_gen.go#L9383: 			return fmt.Errorf("unable to decode updateDraftMessage#1b49ec6d: field draft: %w", err)
		tl_update_gen.go#L9493: 		return fmt.Errorf("can't encode updateReadFeaturedStickers#571d2742 as nil")
		tl_update_gen.go#L9502: 		return fmt.Errorf("can't encode updateReadFeaturedStickers#571d2742 as nil")
		tl_update_gen.go#L9510: 		return fmt.Errorf("can't decode updateReadFeaturedStickers#571d2742 to nil")
		tl_update_gen.go#L9513: 		return fmt.Errorf("unable to decode updateReadFeaturedStickers#571d2742: %w", err)
		tl_update_gen.go#L9521: 		return fmt.Errorf("can't decode updateReadFeaturedStickers#571d2742 to nil")
		tl_update_gen.go#L9595: 		return fmt.Errorf("can't encode updateRecentStickers#9a422c20 as nil")
		tl_update_gen.go#L9604: 		return fmt.Errorf("can't encode updateRecentStickers#9a422c20 as nil")
		tl_update_gen.go#L9612: 		return fmt.Errorf("can't decode updateRecentStickers#9a422c20 to nil")
		tl_update_gen.go#L9615: 		return fmt.Errorf("unable to decode updateRecentStickers#9a422c20: %w", err)
		tl_update_gen.go#L9623: 		return fmt.Errorf("can't decode updateRecentStickers#9a422c20 to nil")
		tl_update_gen.go#L9701: 		return fmt.Errorf("can't encode updateConfig#a229dd06 as nil")
		tl_update_gen.go#L9710: 		return fmt.Errorf("can't encode updateConfig#a229dd06 as nil")
		tl_update_gen.go#L9718: 		return fmt.Errorf("can't decode updateConfig#a229dd06 to nil")
		tl_update_gen.go#L9721: 		return fmt.Errorf("unable to decode updateConfig#a229dd06: %w", err)
		tl_update_gen.go#L9729: 		return fmt.Errorf("can't decode updateConfig#a229dd06 to nil")
		tl_update_gen.go#L9808: 		return fmt.Errorf("can't encode updatePtsChanged#3354678f as nil")
		tl_update_gen.go#L9817: 		return fmt.Errorf("can't encode updatePtsChanged#3354678f as nil")
		tl_update_gen.go#L9825: 		return fmt.Errorf("can't decode updatePtsChanged#3354678f to nil")
		tl_update_gen.go#L9828: 		return fmt.Errorf("unable to decode updatePtsChanged#3354678f: %w", err)
		tl_update_gen.go#L9836: 		return fmt.Errorf("can't decode updatePtsChanged#3354678f to nil")
		tl_update_gen.go#L9972: 		return fmt.Errorf("can't encode updateChannelWebPage#2f2ba99f as nil")
		tl_update_gen.go#L9981: 		return fmt.Errorf("can't encode updateChannelWebPage#2f2ba99f as nil")
		tl_update_gen.go#L9985: 		return fmt.Errorf("unable to encode updateChannelWebPage#2f2ba99f: field webpage is nil")
		tl_update_gen.go#L9988: 		return fmt.Errorf("unable to encode updateChannelWebPage#2f2ba99f: field webpage: %w", err)
		tl_update_gen.go#L9998: 		return fmt.Errorf("can't decode updateChannelWebPage#2f2ba99f to nil")
		tl_update_gen.go#L10001: 		return fmt.Errorf("unable to decode updateChannelWebPage#2f2ba99f: %w", err)
		tl_update_gen.go#L10009: 		return fmt.Errorf("can't decode updateChannelWebPage#2f2ba99f to nil")
		tl_update_gen.go#L10014: 			return fmt.Errorf("unable to decode updateChannelWebPage#2f2ba99f: field channel_id: %w", err)
		tl_update_gen.go#L10021: 			return fmt.Errorf("unable to decode updateChannelWebPage#2f2ba99f: field webpage: %w", err)
		tl_update_gen.go#L10028: 			return fmt.Errorf("unable to decode updateChannelWebPage#2f2ba99f: field pts: %w", err)
		tl_update_gen.go#L10035: 			return fmt.Errorf("unable to decode updateChannelWebPage#2f2ba99f: field pts_count: %w", err)
		tl_update_gen.go#L10210: 		return fmt.Errorf("can't encode updateDialogPinned#6e6fe51c as nil")
		tl_update_gen.go#L10219: 		return fmt.Errorf("can't encode updateDialogPinned#6e6fe51c as nil")
		tl_update_gen.go#L10223: 		return fmt.Errorf("unable to encode updateDialogPinned#6e6fe51c: field flags: %w", err)
		tl_update_gen.go#L10229: 		return fmt.Errorf("unable to encode updateDialogPinned#6e6fe51c: field peer is nil")
		tl_update_gen.go#L10232: 		return fmt.Errorf("unable to encode updateDialogPinned#6e6fe51c: field peer: %w", err)
		tl_update_gen.go#L10240: 		return fmt.Errorf("can't decode updateDialogPinned#6e6fe51c to nil")
		tl_update_gen.go#L10243: 		return fmt.Errorf("unable to decode updateDialogPinned#6e6fe51c: %w", err)
		tl_update_gen.go#L10251: 		return fmt.Errorf("can't decode updateDialogPinned#6e6fe51c to nil")
		tl_update_gen.go#L10255: 			return fmt.Errorf("unable to decode updateDialogPinned#6e6fe51c: field flags: %w", err)
		tl_update_gen.go#L10262: 			return fmt.Errorf("unable to decode updateDialogPinned#6e6fe51c: field folder_id: %w", err)
		tl_update_gen.go#L10269: 			return fmt.Errorf("unable to decode updateDialogPinned#6e6fe51c: field peer: %w", err)
		tl_update_gen.go#L10451: 		return fmt.Errorf("can't encode updatePinnedDialogs#fa0f3ca2 as nil")
		tl_update_gen.go#L10460: 		return fmt.Errorf("can't encode updatePinnedDialogs#fa0f3ca2 as nil")
		tl_update_gen.go#L10464: 		return fmt.Errorf("unable to encode updatePinnedDialogs#fa0f3ca2: field flags: %w", err)
		tl_update_gen.go#L10473: 				return fmt.Errorf("unable to encode updatePinnedDialogs#fa0f3ca2: field order element with index %d is nil", idx)
		tl_update_gen.go#L10476: 				return fmt.Errorf("unable to encode updatePinnedDialogs#fa0f3ca2: field order element with index %d: %w", idx, err)
		tl_update_gen.go#L10486: 		return fmt.Errorf("can't decode updatePinnedDialogs#fa0f3ca2 to nil")
		tl_update_gen.go#L10489: 		return fmt.Errorf("unable to decode updatePinnedDialogs#fa0f3ca2: %w", err)
		tl_update_gen.go#L10497: 		return fmt.Errorf("can't decode updatePinnedDialogs#fa0f3ca2 to nil")
		tl_update_gen.go#L10501: 			return fmt.Errorf("unable to decode updatePinnedDialogs#fa0f3ca2: field flags: %w", err)
		tl_update_gen.go#L10507: 			return fmt.Errorf("unable to decode updatePinnedDialogs#fa0f3ca2: field folder_id: %w", err)
		tl_update_gen.go#L10514: 			return fmt.Errorf("unable to decode updatePinnedDialogs#fa0f3ca2: field order: %w", err)
		tl_update_gen.go#L10523: 				return fmt.Errorf("unable to decode updatePinnedDialogs#fa0f3ca2: field order: %w", err)
		tl_update_gen.go#L10661: 		return fmt.Errorf("can't encode updateBotWebhookJSON#8317c0c3 as nil")
		tl_update_gen.go#L10670: 		return fmt.Errorf("can't encode updateBotWebhookJSON#8317c0c3 as nil")
		tl_update_gen.go#L10673: 		return fmt.Errorf("unable to encode updateBotWebhookJSON#8317c0c3: field data: %w", err)
		tl_update_gen.go#L10681: 		return fmt.Errorf("can't decode updateBotWebhookJSON#8317c0c3 to nil")
		tl_update_gen.go#L10684: 		return fmt.Errorf("unable to decode updateBotWebhookJSON#8317c0c3: %w", err)
		tl_update_gen.go#L10692: 		return fmt.Errorf("can't decode updateBotWebhookJSON#8317c0c3 to nil")
		tl_update_gen.go#L10696: 			return fmt.Errorf("unable to decode updateBotWebhookJSON#8317c0c3: field data: %w", err)
		tl_update_gen.go#L10818: 		return fmt.Errorf("can't encode updateBotWebhookJSONQuery#9b9240a6 as nil")
		tl_update_gen.go#L10827: 		return fmt.Errorf("can't encode updateBotWebhookJSONQuery#9b9240a6 as nil")
		tl_update_gen.go#L10831: 		return fmt.Errorf("unable to encode updateBotWebhookJSONQuery#9b9240a6: field data: %w", err)
		tl_update_gen.go#L10840: 		return fmt.Errorf("can't decode updateBotWebhookJSONQuery#9b9240a6 to nil")
		tl_update_gen.go#L10843: 		return fmt.Errorf("unable to decode updateBotWebhookJSONQuery#9b9240a6: %w", err)
		tl_update_gen.go#L10851: 		return fmt.Errorf("can't decode updateBotWebhookJSONQuery#9b9240a6 to nil")
		tl_update_gen.go#L10856: 			return fmt.Errorf("unable to decode updateBotWebhookJSONQuery#9b9240a6: field query_id: %w", err)
		tl_update_gen.go#L10862: 			return fmt.Errorf("unable to decode updateBotWebhookJSONQuery#9b9240a6: field data: %w", err)
		tl_update_gen.go#L10868: 			return fmt.Errorf("unable to decode updateBotWebhookJSONQuery#9b9240a6: field timeout: %w", err)
		tl_update_gen.go#L11018: 		return fmt.Errorf("can't encode updateBotShippingQuery#b5aefd7d as nil")
		tl_update_gen.go#L11027: 		return fmt.Errorf("can't encode updateBotShippingQuery#b5aefd7d as nil")
		tl_update_gen.go#L11033: 		return fmt.Errorf("unable to encode updateBotShippingQuery#b5aefd7d: field shipping_address: %w", err)
		tl_update_gen.go#L11041: 		return fmt.Errorf("can't decode updateBotShippingQuery#b5aefd7d to nil")
		tl_update_gen.go#L11044: 		return fmt.Errorf("unable to decode updateBotShippingQuery#b5aefd7d: %w", err)
		tl_update_gen.go#L11052: 		return fmt.Errorf("can't decode updateBotShippingQuery#b5aefd7d to nil")
		tl_update_gen.go#L11057: 			return fmt.Errorf("unable to decode updateBotShippingQuery#b5aefd7d: field query_id: %w", err)
		tl_update_gen.go#L11064: 			return fmt.Errorf("unable to decode updateBotShippingQuery#b5aefd7d: field user_id: %w", err)
		tl_update_gen.go#L11071: 			return fmt.Errorf("unable to decode updateBotShippingQuery#b5aefd7d: field payload: %w", err)
		tl_update_gen.go#L11077: 			return fmt.Errorf("unable to decode updateBotShippingQuery#b5aefd7d: field shipping_address: %w", err)
		tl_update_gen.go#L11306: 		return fmt.Errorf("can't encode updateBotPrecheckoutQuery#8caa9a96 as nil")
		tl_update_gen.go#L11315: 		return fmt.Errorf("can't encode updateBotPrecheckoutQuery#8caa9a96 as nil")
		tl_update_gen.go#L11319: 		return fmt.Errorf("unable to encode updateBotPrecheckoutQuery#8caa9a96: field flags: %w", err)
		tl_update_gen.go#L11326: 			return fmt.Errorf("unable to encode updateBotPrecheckoutQuery#8caa9a96: field info: %w", err)
		tl_update_gen.go#L11340: 		return fmt.Errorf("can't decode updateBotPrecheckoutQuery#8caa9a96 to nil")
		tl_update_gen.go#L11343: 		return fmt.Errorf("unable to decode updateBotPrecheckoutQuery#8caa9a96: %w", err)
		tl_update_gen.go#L11351: 		return fmt.Errorf("can't decode updateBotPrecheckoutQuery#8caa9a96 to nil")
		tl_update_gen.go#L11355: 			return fmt.Errorf("unable to decode updateBotPrecheckoutQuery#8caa9a96: field flags: %w", err)
		tl_update_gen.go#L11361: 			return fmt.Errorf("unable to decode updateBotPrecheckoutQuery#8caa9a96: field query_id: %w", err)
		tl_update_gen.go#L11368: 			return fmt.Errorf("unable to decode updateBotPrecheckoutQuery#8caa9a96: field user_id: %w", err)
		tl_update_gen.go#L11375: 			return fmt.Errorf("unable to decode updateBotPrecheckoutQuery#8caa9a96: field payload: %w", err)
		tl_update_gen.go#L11381: 			return fmt.Errorf("unable to decode updateBotPrecheckoutQuery#8caa9a96: field info: %w", err)
		tl_update_gen.go#L11387: 			return fmt.Errorf("unable to decode updateBotPrecheckoutQuery#8caa9a96: field shipping_option_id: %w", err)
		tl_update_gen.go#L11394: 			return fmt.Errorf("unable to decode updateBotPrecheckoutQuery#8caa9a96: field currency: %w", err)
		tl_update_gen.go#L11401: 			return fmt.Errorf("unable to decode updateBotPrecheckoutQuery#8caa9a96: field total_amount: %w", err)
		tl_update_gen.go#L11570: 		return fmt.Errorf("can't encode updatePhoneCall#ab0f6b1e as nil")
		tl_update_gen.go#L11579: 		return fmt.Errorf("can't encode updatePhoneCall#ab0f6b1e as nil")
		tl_update_gen.go#L11582: 		return fmt.Errorf("unable to encode updatePhoneCall#ab0f6b1e: field phone_call is nil")
		tl_update_gen.go#L11585: 		return fmt.Errorf("unable to encode updatePhoneCall#ab0f6b1e: field phone_call: %w", err)
		tl_update_gen.go#L11593: 		return fmt.Errorf("can't decode updatePhoneCall#ab0f6b1e to nil")
		tl_update_gen.go#L11596: 		return fmt.Errorf("unable to decode updatePhoneCall#ab0f6b1e: %w", err)
		tl_update_gen.go#L11604: 		return fmt.Errorf("can't decode updatePhoneCall#ab0f6b1e to nil")
		tl_update_gen.go#L11609: 			return fmt.Errorf("unable to decode updatePhoneCall#ab0f6b1e: field phone_call: %w", err)
		tl_update_gen.go#L11714: 		return fmt.Errorf("can't encode updateLangPackTooLong#46560264 as nil")
		tl_update_gen.go#L11723: 		return fmt.Errorf("can't encode updateLangPackTooLong#46560264 as nil")
		tl_update_gen.go#L11732: 		return fmt.Errorf("can't decode updateLangPackTooLong#46560264 to nil")
		tl_update_gen.go#L11735: 		return fmt.Errorf("unable to decode updateLangPackTooLong#46560264: %w", err)
		tl_update_gen.go#L11743: 		return fmt.Errorf("can't decode updateLangPackTooLong#46560264 to nil")
		tl_update_gen.go#L11748: 			return fmt.Errorf("unable to decode updateLangPackTooLong#46560264: field lang_code: %w", err)
		tl_update_gen.go#L11849: 		return fmt.Errorf("can't encode updateLangPack#56022f4d as nil")
		tl_update_gen.go#L11858: 		return fmt.Errorf("can't encode updateLangPack#56022f4d as nil")
		tl_update_gen.go#L11861: 		return fmt.Errorf("unable to encode updateLangPack#56022f4d: field difference: %w", err)
		tl_update_gen.go#L11869: 		return fmt.Errorf("can't decode updateLangPack#56022f4d to nil")
		tl_update_gen.go#L11872: 		return fmt.Errorf("unable to decode updateLangPack#56022f4d: %w", err)
		tl_update_gen.go#L11880: 		return fmt.Errorf("can't decode updateLangPack#56022f4d to nil")
		tl_update_gen.go#L11884: 			return fmt.Errorf("unable to decode updateLangPack#56022f4d: field difference: %w", err)
		tl_update_gen.go#L11971: 		return fmt.Errorf("can't encode updateFavedStickers#e511996d as nil")
		tl_update_gen.go#L11980: 		return fmt.Errorf("can't encode updateFavedStickers#e511996d as nil")
		tl_update_gen.go#L11988: 		return fmt.Errorf("can't decode updateFavedStickers#e511996d to nil")
		tl_update_gen.go#L11991: 		return fmt.Errorf("unable to decode updateFavedStickers#e511996d: %w", err)
		tl_update_gen.go#L11999: 		return fmt.Errorf("can't decode updateFavedStickers#e511996d to nil")
		tl_update_gen.go#L12142: 		return fmt.Errorf("can't encode updateChannelReadMessagesContents#ea29055d as nil")
		tl_update_gen.go#L12151: 		return fmt.Errorf("can't encode updateChannelReadMessagesContents#ea29055d as nil")
		tl_update_gen.go#L12155: 		return fmt.Errorf("unable to encode updateChannelReadMessagesContents#ea29055d: field flags: %w", err)
		tl_update_gen.go#L12171: 		return fmt.Errorf("can't decode updateChannelReadMessagesContents#ea29055d to nil")
		tl_update_gen.go#L12174: 		return fmt.Errorf("unable to decode updateChannelReadMessagesContents#ea29055d: %w", err)
		tl_update_gen.go#L12182: 		return fmt.Errorf("can't decode updateChannelReadMessagesContents#ea29055d to nil")
		tl_update_gen.go#L12186: 			return fmt.Errorf("unable to decode updateChannelReadMessagesContents#ea29055d: field flags: %w", err)
		tl_update_gen.go#L12192: 			return fmt.Errorf("unable to decode updateChannelReadMessagesContents#ea29055d: field channel_id: %w", err)
		tl_update_gen.go#L12199: 			return fmt.Errorf("unable to decode updateChannelReadMessagesContents#ea29055d: field top_msg_id: %w", err)
		tl_update_gen.go#L12206: 			return fmt.Errorf("unable to decode updateChannelReadMessagesContents#ea29055d: field messages: %w", err)
		tl_update_gen.go#L12215: 				return fmt.Errorf("unable to decode updateChannelReadMessagesContents#ea29055d: field messages: %w", err)
		tl_update_gen.go#L12326: 		return fmt.Errorf("can't encode updateContactsReset#7084a7be as nil")
		tl_update_gen.go#L12335: 		return fmt.Errorf("can't encode updateContactsReset#7084a7be as nil")
		tl_update_gen.go#L12343: 		return fmt.Errorf("can't decode updateContactsReset#7084a7be to nil")
		tl_update_gen.go#L12346: 		return fmt.Errorf("unable to decode updateContactsReset#7084a7be: %w", err)
		tl_update_gen.go#L12354: 		return fmt.Errorf("can't decode updateContactsReset#7084a7be to nil")
		tl_update_gen.go#L12459: 		return fmt.Errorf("can't encode updateChannelAvailableMessages#b23fc698 as nil")
		tl_update_gen.go#L12468: 		return fmt.Errorf("can't encode updateChannelAvailableMessages#b23fc698 as nil")
		tl_update_gen.go#L12478: 		return fmt.Errorf("can't decode updateChannelAvailableMessages#b23fc698 to nil")
		tl_update_gen.go#L12481: 		return fmt.Errorf("unable to decode updateChannelAvailableMessages#b23fc698: %w", err)
		tl_update_gen.go#L12489: 		return fmt.Errorf("can't decode updateChannelAvailableMessages#b23fc698 to nil")
		tl_update_gen.go#L12494: 			return fmt.Errorf("unable to decode updateChannelAvailableMessages#b23fc698: field channel_id: %w", err)
		tl_update_gen.go#L12501: 			return fmt.Errorf("unable to decode updateChannelAvailableMessages#b23fc698: field available_min_id: %w", err)
		tl_update_gen.go#L12637: 		return fmt.Errorf("can't encode updateDialogUnreadMark#e16459c3 as nil")
		tl_update_gen.go#L12646: 		return fmt.Errorf("can't encode updateDialogUnreadMark#e16459c3 as nil")
		tl_update_gen.go#L12650: 		return fmt.Errorf("unable to encode updateDialogUnreadMark#e16459c3: field flags: %w", err)
		tl_update_gen.go#L12653: 		return fmt.Errorf("unable to encode updateDialogUnreadMark#e16459c3: field peer is nil")
		tl_update_gen.go#L12656: 		return fmt.Errorf("unable to encode updateDialogUnreadMark#e16459c3: field peer: %w", err)
		tl_update_gen.go#L12664: 		return fmt.Errorf("can't decode updateDialogUnreadMark#e16459c3 to nil")
		tl_update_gen.go#L12667: 		return fmt.Errorf("unable to decode updateDialogUnreadMark#e16459c3: %w", err)
		tl_update_gen.go#L12675: 		return fmt.Errorf("can't decode updateDialogUnreadMark#e16459c3 to nil")
		tl_update_gen.go#L12679: 			return fmt.Errorf("unable to decode updateDialogUnreadMark#e16459c3: field flags: %w", err)
		tl_update_gen.go#L12686: 			return fmt.Errorf("unable to decode updateDialogUnreadMark#e16459c3: field peer: %w", err)
		tl_update_gen.go#L12849: 		return fmt.Errorf("can't encode updateMessagePoll#aca1657b as nil")
		tl_update_gen.go#L12858: 		return fmt.Errorf("can't encode updateMessagePoll#aca1657b as nil")
		tl_update_gen.go#L12862: 		return fmt.Errorf("unable to encode updateMessagePoll#aca1657b: field flags: %w", err)
		tl_update_gen.go#L12867: 			return fmt.Errorf("unable to encode updateMessagePoll#aca1657b: field poll: %w", err)
		tl_update_gen.go#L12871: 		return fmt.Errorf("unable to encode updateMessagePoll#aca1657b: field results: %w", err)
		tl_update_gen.go#L12879: 		return fmt.Errorf("can't decode updateMessagePoll#aca1657b to nil")
		tl_update_gen.go#L12882: 		return fmt.Errorf("unable to decode updateMessagePoll#aca1657b: %w", err)
		tl_update_gen.go#L12890: 		return fmt.Errorf("can't decode updateMessagePoll#aca1657b to nil")
		tl_update_gen.go#L12894: 			return fmt.Errorf("unable to decode updateMessagePoll#aca1657b: field flags: %w", err)
		tl_update_gen.go#L12900: 			return fmt.Errorf("unable to decode updateMessagePoll#aca1657b: field poll_id: %w", err)
		tl_update_gen.go#L12906: 			return fmt.Errorf("unable to decode updateMessagePoll#aca1657b: field poll: %w", err)
		tl_update_gen.go#L12911: 			return fmt.Errorf("unable to decode updateMessagePoll#aca1657b: field results: %w", err)
		tl_update_gen.go#L13062: 		return fmt.Errorf("can't encode updateChatDefaultBannedRights#54c01850 as nil")
		tl_update_gen.go#L13071: 		return fmt.Errorf("can't encode updateChatDefaultBannedRights#54c01850 as nil")
		tl_update_gen.go#L13074: 		return fmt.Errorf("unable to encode updateChatDefaultBannedRights#54c01850: field peer is nil")
		tl_update_gen.go#L13077: 		return fmt.Errorf("unable to encode updateChatDefaultBannedRights#54c01850: field peer: %w", err)
		tl_update_gen.go#L13080: 		return fmt.Errorf("unable to encode updateChatDefaultBannedRights#54c01850: field default_banned_rights: %w", err)
		tl_update_gen.go#L13089: 		return fmt.Errorf("can't decode updateChatDefaultBannedRights#54c01850 to nil")
		tl_update_gen.go#L13092: 		return fmt.Errorf("unable to decode updateChatDefaultBannedRights#54c01850: %w", err)
		tl_update_gen.go#L13100: 		return fmt.Errorf("can't decode updateChatDefaultBannedRights#54c01850 to nil")
		tl_update_gen.go#L13105: 			return fmt.Errorf("unable to decode updateChatDefaultBannedRights#54c01850: field peer: %w", err)
		tl_update_gen.go#L13111: 			return fmt.Errorf("unable to decode updateChatDefaultBannedRights#54c01850: field default_banned_rights: %w", err)
		tl_update_gen.go#L13117: 			return fmt.Errorf("unable to decode updateChatDefaultBannedRights#54c01850: field version: %w", err)
		tl_update_gen.go#L13265: 		return fmt.Errorf("can't encode updateFolderPeers#19360dc0 as nil")
		tl_update_gen.go#L13274: 		return fmt.Errorf("can't encode updateFolderPeers#19360dc0 as nil")
		tl_update_gen.go#L13279: 			return fmt.Errorf("unable to encode updateFolderPeers#19360dc0: field folder_peers element with index %d: %w", idx, err)
		tl_update_gen.go#L13290: 		return fmt.Errorf("can't decode updateFolderPeers#19360dc0 to nil")
		tl_update_gen.go#L13293: 		return fmt.Errorf("unable to decode updateFolderPeers#19360dc0: %w", err)
		tl_update_gen.go#L13301: 		return fmt.Errorf("can't decode updateFolderPeers#19360dc0 to nil")
		tl_update_gen.go#L13306: 			return fmt.Errorf("unable to decode updateFolderPeers#19360dc0: field folder_peers: %w", err)
		tl_update_gen.go#L13315: 				return fmt.Errorf("unable to decode updateFolderPeers#19360dc0: field folder_peers: %w", err)
		tl_update_gen.go#L13323: 			return fmt.Errorf("unable to decode updateFolderPeers#19360dc0: field pts: %w", err)
		tl_update_gen.go#L13330: 			return fmt.Errorf("unable to decode updateFolderPeers#19360dc0: field pts_count: %w", err)
		tl_update_gen.go#L13458: 		return fmt.Errorf("can't encode updatePeerSettings#6a7e7366 as nil")
		tl_update_gen.go#L13467: 		return fmt.Errorf("can't encode updatePeerSettings#6a7e7366 as nil")
		tl_update_gen.go#L13470: 		return fmt.Errorf("unable to encode updatePeerSettings#6a7e7366: field peer is nil")
		tl_update_gen.go#L13473: 		return fmt.Errorf("unable to encode updatePeerSettings#6a7e7366: field peer: %w", err)
		tl_update_gen.go#L13476: 		return fmt.Errorf("unable to encode updatePeerSettings#6a7e7366: field settings: %w", err)
		tl_update_gen.go#L13484: 		return fmt.Errorf("can't decode updatePeerSettings#6a7e7366 to nil")
		tl_update_gen.go#L13487: 		return fmt.Errorf("unable to decode updatePeerSettings#6a7e7366: %w", err)
		tl_update_gen.go#L13495: 		return fmt.Errorf("can't decode updatePeerSettings#6a7e7366 to nil")
		tl_update_gen.go#L13500: 			return fmt.Errorf("unable to decode updatePeerSettings#6a7e7366: field peer: %w", err)
		tl_update_gen.go#L13506: 			return fmt.Errorf("unable to decode updatePeerSettings#6a7e7366: field settings: %w", err)
		tl_update_gen.go#L13614: 		return fmt.Errorf("can't encode updatePeerLocated#b4afcfb0 as nil")
		tl_update_gen.go#L13623: 		return fmt.Errorf("can't encode updatePeerLocated#b4afcfb0 as nil")
		tl_update_gen.go#L13628: 			return fmt.Errorf("unable to encode updatePeerLocated#b4afcfb0: field peers element with index %d is nil", idx)
		tl_update_gen.go#L13631: 			return fmt.Errorf("unable to encode updatePeerLocated#b4afcfb0: field peers element with index %d: %w", idx, err)
		tl_update_gen.go#L13640: 		return fmt.Errorf("can't decode updatePeerLocated#b4afcfb0 to nil")
		tl_update_gen.go#L13643: 		return fmt.Errorf("unable to decode updatePeerLocated#b4afcfb0: %w", err)
		tl_update_gen.go#L13651: 		return fmt.Errorf("can't decode updatePeerLocated#b4afcfb0 to nil")
		tl_update_gen.go#L13656: 			return fmt.Errorf("unable to decode updatePeerLocated#b4afcfb0: field peers: %w", err)
		tl_update_gen.go#L13665: 				return fmt.Errorf("unable to decode updatePeerLocated#b4afcfb0: field peers: %w", err)
		tl_update_gen.go#L13775: 		return fmt.Errorf("can't encode updateNewScheduledMessage#39a51dfb as nil")
		tl_update_gen.go#L13784: 		return fmt.Errorf("can't encode updateNewScheduledMessage#39a51dfb as nil")
		tl_update_gen.go#L13787: 		return fmt.Errorf("unable to encode updateNewScheduledMessage#39a51dfb: field message is nil")
		tl_update_gen.go#L13790: 		return fmt.Errorf("unable to encode updateNewScheduledMessage#39a51dfb: field message: %w", err)
		tl_update_gen.go#L13798: 		return fmt.Errorf("can't decode updateNewScheduledMessage#39a51dfb to nil")
		tl_update_gen.go#L13801: 		return fmt.Errorf("unable to decode updateNewScheduledMessage#39a51dfb: %w", err)
		tl_update_gen.go#L13809: 		return fmt.Errorf("can't decode updateNewScheduledMessage#39a51dfb to nil")
		tl_update_gen.go#L13814: 			return fmt.Errorf("unable to decode updateNewScheduledMessage#39a51dfb: field message: %w", err)
		tl_update_gen.go#L13929: 		return fmt.Errorf("can't encode updateDeleteScheduledMessages#90866cee as nil")
		tl_update_gen.go#L13938: 		return fmt.Errorf("can't encode updateDeleteScheduledMessages#90866cee as nil")
		tl_update_gen.go#L13941: 		return fmt.Errorf("unable to encode updateDeleteScheduledMessages#90866cee: field peer is nil")
		tl_update_gen.go#L13944: 		return fmt.Errorf("unable to encode updateDeleteScheduledMessages#90866cee: field peer: %w", err)
		tl_update_gen.go#L13956: 		return fmt.Errorf("can't decode updateDeleteScheduledMessages#90866cee to nil")
		tl_update_gen.go#L13959: 		return fmt.Errorf("unable to decode updateDeleteScheduledMessages#90866cee: %w", err)
		tl_update_gen.go#L13967: 		return fmt.Errorf("can't decode updateDeleteScheduledMessages#90866cee to nil")
		tl_update_gen.go#L13972: 			return fmt.Errorf("unable to decode updateDeleteScheduledMessages#90866cee: field peer: %w", err)
		tl_update_gen.go#L13979: 			return fmt.Errorf("unable to decode updateDeleteScheduledMessages#90866cee: field messages: %w", err)
		tl_update_gen.go#L13988: 				return fmt.Errorf("unable to decode updateDeleteScheduledMessages#90866cee: field messages: %w", err)
		tl_update_gen.go#L14098: 		return fmt.Errorf("can't encode updateTheme#8216fba3 as nil")
		tl_update_gen.go#L14107: 		return fmt.Errorf("can't encode updateTheme#8216fba3 as nil")
		tl_update_gen.go#L14110: 		return fmt.Errorf("unable to encode updateTheme#8216fba3: field theme: %w", err)
		tl_update_gen.go#L14118: 		return fmt.Errorf("can't decode updateTheme#8216fba3 to nil")
		tl_update_gen.go#L14121: 		return fmt.Errorf("unable to decode updateTheme#8216fba3: %w", err)
		tl_update_gen.go#L14129: 		return fmt.Errorf("can't decode updateTheme#8216fba3 to nil")
		tl_update_gen.go#L14133: 			return fmt.Errorf("unable to decode updateTheme#8216fba3: field theme: %w", err)
		tl_update_gen.go#L14244: 		return fmt.Errorf("can't encode updateGeoLiveViewed#871fb939 as nil")
		tl_update_gen.go#L14253: 		return fmt.Errorf("can't encode updateGeoLiveViewed#871fb939 as nil")
		tl_update_gen.go#L14256: 		return fmt.Errorf("unable to encode updateGeoLiveViewed#871fb939: field peer is nil")
		tl_update_gen.go#L14259: 		return fmt.Errorf("unable to encode updateGeoLiveViewed#871fb939: field peer: %w", err)
		tl_update_gen.go#L14268: 		return fmt.Errorf("can't decode updateGeoLiveViewed#871fb939 to nil")
		tl_update_gen.go#L14271: 		return fmt.Errorf("unable to decode updateGeoLiveViewed#871fb939: %w", err)
		tl_update_gen.go#L14279: 		return fmt.Errorf("can't decode updateGeoLiveViewed#871fb939 to nil")
		tl_update_gen.go#L14284: 			return fmt.Errorf("unable to decode updateGeoLiveViewed#871fb939: field peer: %w", err)
		tl_update_gen.go#L14291: 			return fmt.Errorf("unable to decode updateGeoLiveViewed#871fb939: field msg_id: %w", err)
		tl_update_gen.go#L14383: 		return fmt.Errorf("can't encode updateLoginToken#564fe691 as nil")
		tl_update_gen.go#L14392: 		return fmt.Errorf("can't encode updateLoginToken#564fe691 as nil")
		tl_update_gen.go#L14400: 		return fmt.Errorf("can't decode updateLoginToken#564fe691 to nil")
		tl_update_gen.go#L14403: 		return fmt.Errorf("unable to decode updateLoginToken#564fe691: %w", err)
		tl_update_gen.go#L14411: 		return fmt.Errorf("can't decode updateLoginToken#564fe691 to nil")
		tl_update_gen.go#L14538: 		return fmt.Errorf("can't encode updateMessagePollVote#24f40e77 as nil")
		tl_update_gen.go#L14547: 		return fmt.Errorf("can't encode updateMessagePollVote#24f40e77 as nil")
		tl_update_gen.go#L14551: 		return fmt.Errorf("unable to encode updateMessagePollVote#24f40e77: field peer is nil")
		tl_update_gen.go#L14554: 		return fmt.Errorf("unable to encode updateMessagePollVote#24f40e77: field peer: %w", err)
		tl_update_gen.go#L14567: 		return fmt.Errorf("can't decode updateMessagePollVote#24f40e77 to nil")
		tl_update_gen.go#L14570: 		return fmt.Errorf("unable to decode updateMessagePollVote#24f40e77: %w", err)
		tl_update_gen.go#L14578: 		return fmt.Errorf("can't decode updateMessagePollVote#24f40e77 to nil")
		tl_update_gen.go#L14583: 			return fmt.Errorf("unable to decode updateMessagePollVote#24f40e77: field poll_id: %w", err)
		tl_update_gen.go#L14590: 			return fmt.Errorf("unable to decode updateMessagePollVote#24f40e77: field peer: %w", err)
		tl_update_gen.go#L14597: 			return fmt.Errorf("unable to decode updateMessagePollVote#24f40e77: field options: %w", err)
		tl_update_gen.go#L14606: 				return fmt.Errorf("unable to decode updateMessagePollVote#24f40e77: field options: %w", err)
		tl_update_gen.go#L14614: 			return fmt.Errorf("unable to decode updateMessagePollVote#24f40e77: field qts: %w", err)
		tl_update_gen.go#L14780: 		return fmt.Errorf("can't encode updateDialogFilter#26ffde7d as nil")
		tl_update_gen.go#L14789: 		return fmt.Errorf("can't encode updateDialogFilter#26ffde7d as nil")
		tl_update_gen.go#L14793: 		return fmt.Errorf("unable to encode updateDialogFilter#26ffde7d: field flags: %w", err)
		tl_update_gen.go#L14798: 			return fmt.Errorf("unable to encode updateDialogFilter#26ffde7d: field filter is nil")
		tl_update_gen.go#L14801: 			return fmt.Errorf("unable to encode updateDialogFilter#26ffde7d: field filter: %w", err)
		tl_update_gen.go#L14810: 		return fmt.Errorf("can't decode updateDialogFilter#26ffde7d to nil")
		tl_update_gen.go#L14813: 		return fmt.Errorf("unable to decode updateDialogFilter#26ffde7d: %w", err)
		tl_update_gen.go#L14821: 		return fmt.Errorf("can't decode updateDialogFilter#26ffde7d to nil")
		tl_update_gen.go#L14825: 			return fmt.Errorf("unable to decode updateDialogFilter#26ffde7d: field flags: %w", err)
		tl_update_gen.go#L14831: 			return fmt.Errorf("unable to decode updateDialogFilter#26ffde7d: field id: %w", err)
		tl_update_gen.go#L14838: 			return fmt.Errorf("unable to decode updateDialogFilter#26ffde7d: field filter: %w", err)
		tl_update_gen.go#L14963: 		return fmt.Errorf("can't encode updateDialogFilterOrder#a5d72105 as nil")
		tl_update_gen.go#L14972: 		return fmt.Errorf("can't encode updateDialogFilterOrder#a5d72105 as nil")
		tl_update_gen.go#L14984: 		return fmt.Errorf("can't decode updateDialogFilterOrder#a5d72105 to nil")
		tl_update_gen.go#L14987: 		return fmt.Errorf("unable to decode updateDialogFilterOrder#a5d72105: %w", err)
		tl_update_gen.go#L14995: 		return fmt.Errorf("can't decode updateDialogFilterOrder#a5d72105 to nil")
		tl_update_gen.go#L15000: 			return fmt.Errorf("unable to decode updateDialogFilterOrder#a5d72105: field order: %w", err)
		tl_update_gen.go#L15009: 				return fmt.Errorf("unable to decode updateDialogFilterOrder#a5d72105: field order: %w", err)
		tl_update_gen.go#L15097: 		return fmt.Errorf("can't encode updateDialogFilters#3504914f as nil")
		tl_update_gen.go#L15106: 		return fmt.Errorf("can't encode updateDialogFilters#3504914f as nil")
		tl_update_gen.go#L15114: 		return fmt.Errorf("can't decode updateDialogFilters#3504914f to nil")
		tl_update_gen.go#L15117: 		return fmt.Errorf("unable to decode updateDialogFilters#3504914f: %w", err)
		tl_update_gen.go#L15125: 		return fmt.Errorf("can't decode updateDialogFilters#3504914f to nil")
		tl_update_gen.go#L15227: 		return fmt.Errorf("can't encode updatePhoneCallSignalingData#2661bf09 as nil")
		tl_update_gen.go#L15236: 		return fmt.Errorf("can't encode updatePhoneCallSignalingData#2661bf09 as nil")
		tl_update_gen.go#L15246: 		return fmt.Errorf("can't decode updatePhoneCallSignalingData#2661bf09 to nil")
		tl_update_gen.go#L15249: 		return fmt.Errorf("unable to decode updatePhoneCallSignalingData#2661bf09: %w", err)
		tl_update_gen.go#L15257: 		return fmt.Errorf("can't decode updatePhoneCallSignalingData#2661bf09 to nil")
		tl_update_gen.go#L15262: 			return fmt.Errorf("unable to decode updatePhoneCallSignalingData#2661bf09: field phone_call_id: %w", err)
		tl_update_gen.go#L15269: 			return fmt.Errorf("unable to decode updatePhoneCallSignalingData#2661bf09: field data: %w", err)
		tl_update_gen.go#L15400: 		return fmt.Errorf("can't encode updateChannelMessageForwards#d29a27f4 as nil")
		tl_update_gen.go#L15409: 		return fmt.Errorf("can't encode updateChannelMessageForwards#d29a27f4 as nil")
		tl_update_gen.go#L15420: 		return fmt.Errorf("can't decode updateChannelMessageForwards#d29a27f4 to nil")
		tl_update_gen.go#L15423: 		return fmt.Errorf("unable to decode updateChannelMessageForwards#d29a27f4: %w", err)
		tl_update_gen.go#L15431: 		return fmt.Errorf("can't decode updateChannelMessageForwards#d29a27f4 to nil")
		tl_update_gen.go#L15436: 			return fmt.Errorf("unable to decode updateChannelMessageForwards#d29a27f4: field channel_id: %w", err)
		tl_update_gen.go#L15443: 			return fmt.Errorf("unable to decode updateChannelMessageForwards#d29a27f4: field id: %w", err)
		tl_update_gen.go#L15450: 			return fmt.Errorf("unable to decode updateChannelMessageForwards#d29a27f4: field forwards: %w", err)
		tl_update_gen.go#L15661: 		return fmt.Errorf("can't encode updateReadChannelDiscussionInbox#d6b19546 as nil")
		tl_update_gen.go#L15670: 		return fmt.Errorf("can't encode updateReadChannelDiscussionInbox#d6b19546 as nil")
		tl_update_gen.go#L15674: 		return fmt.Errorf("unable to encode updateReadChannelDiscussionInbox#d6b19546: field flags: %w", err)
		tl_update_gen.go#L15691: 		return fmt.Errorf("can't decode updateReadChannelDiscussionInbox#d6b19546 to nil")
		tl_update_gen.go#L15694: 		return fmt.Errorf("unable to decode updateReadChannelDiscussionInbox#d6b19546: %w", err)
		tl_update_gen.go#L15702: 		return fmt.Errorf("can't decode updateReadChannelDiscussionInbox#d6b19546 to nil")
		tl_update_gen.go#L15706: 			return fmt.Errorf("unable to decode updateReadChannelDiscussionInbox#d6b19546: field flags: %w", err)
		tl_update_gen.go#L15712: 			return fmt.Errorf("unable to decode updateReadChannelDiscussionInbox#d6b19546: field channel_id: %w", err)
		tl_update_gen.go#L15719: 			return fmt.Errorf("unable to decode updateReadChannelDiscussionInbox#d6b19546: field top_msg_id: %w", err)
		tl_update_gen.go#L15726: 			return fmt.Errorf("unable to decode updateReadChannelDiscussionInbox#d6b19546: field read_max_id: %w", err)
		tl_update_gen.go#L15733: 			return fmt.Errorf("unable to decode updateReadChannelDiscussionInbox#d6b19546: field broadcast_id: %w", err)
		tl_update_gen.go#L15740: 			return fmt.Errorf("unable to decode updateReadChannelDiscussionInbox#d6b19546: field broadcast_post: %w", err)
		tl_update_gen.go#L15927: 		return fmt.Errorf("can't encode updateReadChannelDiscussionOutbox#695c9e7c as nil")
		tl_update_gen.go#L15936: 		return fmt.Errorf("can't encode updateReadChannelDiscussionOutbox#695c9e7c as nil")
		tl_update_gen.go#L15947: 		return fmt.Errorf("can't decode updateReadChannelDiscussionOutbox#695c9e7c to nil")
		tl_update_gen.go#L15950: 		return fmt.Errorf("unable to decode updateReadChannelDiscussionOutbox#695c9e7c: %w", err)
		tl_update_gen.go#L15958: 		return fmt.Errorf("can't decode updateReadChannelDiscussionOutbox#695c9e7c to nil")
		tl_update_gen.go#L15963: 			return fmt.Errorf("unable to decode updateReadChannelDiscussionOutbox#695c9e7c: field channel_id: %w", err)
		tl_update_gen.go#L15970: 			return fmt.Errorf("unable to decode updateReadChannelDiscussionOutbox#695c9e7c: field top_msg_id: %w", err)
		tl_update_gen.go#L15977: 			return fmt.Errorf("unable to decode updateReadChannelDiscussionOutbox#695c9e7c: field read_max_id: %w", err)
		tl_update_gen.go#L16143: 		return fmt.Errorf("can't encode updatePeerBlocked#ebe07752 as nil")
		tl_update_gen.go#L16152: 		return fmt.Errorf("can't encode updatePeerBlocked#ebe07752 as nil")
		tl_update_gen.go#L16156: 		return fmt.Errorf("unable to encode updatePeerBlocked#ebe07752: field flags: %w", err)
		tl_update_gen.go#L16159: 		return fmt.Errorf("unable to encode updatePeerBlocked#ebe07752: field peer_id is nil")
		tl_update_gen.go#L16162: 		return fmt.Errorf("unable to encode updatePeerBlocked#ebe07752: field peer_id: %w", err)
		tl_update_gen.go#L16170: 		return fmt.Errorf("can't decode updatePeerBlocked#ebe07752 to nil")
		tl_update_gen.go#L16173: 		return fmt.Errorf("unable to decode updatePeerBlocked#ebe07752: %w", err)
		tl_update_gen.go#L16181: 		return fmt.Errorf("can't decode updatePeerBlocked#ebe07752 to nil")
		tl_update_gen.go#L16185: 			return fmt.Errorf("unable to decode updatePeerBlocked#ebe07752: field flags: %w", err)
		tl_update_gen.go#L16193: 			return fmt.Errorf("unable to decode updatePeerBlocked#ebe07752: field peer_id: %w", err)
		tl_update_gen.go#L16393: 		return fmt.Errorf("can't encode updateChannelUserTyping#8c88c923 as nil")
		tl_update_gen.go#L16402: 		return fmt.Errorf("can't encode updateChannelUserTyping#8c88c923 as nil")
		tl_update_gen.go#L16406: 		return fmt.Errorf("unable to encode updateChannelUserTyping#8c88c923: field flags: %w", err)
		tl_update_gen.go#L16413: 		return fmt.Errorf("unable to encode updateChannelUserTyping#8c88c923: field from_id is nil")
		tl_update_gen.go#L16416: 		return fmt.Errorf("unable to encode updateChannelUserTyping#8c88c923: field from_id: %w", err)
		tl_update_gen.go#L16419: 		return fmt.Errorf("unable to encode updateChannelUserTyping#8c88c923: field action is nil")
		tl_update_gen.go#L16422: 		return fmt.Errorf("unable to encode updateChannelUserTyping#8c88c923: field action: %w", err)
		tl_update_gen.go#L16430: 		return fmt.Errorf("can't decode updateChannelUserTyping#8c88c923 to nil")
		tl_update_gen.go#L16433: 		return fmt.Errorf("unable to decode updateChannelUserTyping#8c88c923: %w", err)
		tl_update_gen.go#L16441: 		return fmt.Errorf("can't decode updateChannelUserTyping#8c88c923 to nil")
		tl_update_gen.go#L16445: 			return fmt.Errorf("unable to decode updateChannelUserTyping#8c88c923: field flags: %w", err)
		tl_update_gen.go#L16451: 			return fmt.Errorf("unable to decode updateChannelUserTyping#8c88c923: field channel_id: %w", err)
		tl_update_gen.go#L16458: 			return fmt.Errorf("unable to decode updateChannelUserTyping#8c88c923: field top_msg_id: %w", err)
		tl_update_gen.go#L16465: 			return fmt.Errorf("unable to decode updateChannelUserTyping#8c88c923: field from_id: %w", err)
		tl_update_gen.go#L16472: 			return fmt.Errorf("unable to decode updateChannelUserTyping#8c88c923: field action: %w", err)
		tl_update_gen.go#L16673: 		return fmt.Errorf("can't encode updatePinnedMessages#ed85eab5 as nil")
		tl_update_gen.go#L16682: 		return fmt.Errorf("can't encode updatePinnedMessages#ed85eab5 as nil")
		tl_update_gen.go#L16686: 		return fmt.Errorf("unable to encode updatePinnedMessages#ed85eab5: field flags: %w", err)
		tl_update_gen.go#L16689: 		return fmt.Errorf("unable to encode updatePinnedMessages#ed85eab5: field peer is nil")
		tl_update_gen.go#L16692: 		return fmt.Errorf("unable to encode updatePinnedMessages#ed85eab5: field peer: %w", err)
		tl_update_gen.go#L16706: 		return fmt.Errorf("can't decode updatePinnedMessages#ed85eab5 to nil")
		tl_update_gen.go#L16709: 		return fmt.Errorf("unable to decode updatePinnedMessages#ed85eab5: %w", err)
		tl_update_gen.go#L16717: 		return fmt.Errorf("can't decode updatePinnedMessages#ed85eab5 to nil")
		tl_update_gen.go#L16721: 			return fmt.Errorf("unable to decode updatePinnedMessages#ed85eab5: field flags: %w", err)
		tl_update_gen.go#L16728: 			return fmt.Errorf("unable to decode updatePinnedMessages#ed85eab5: field peer: %w", err)
		tl_update_gen.go#L16735: 			return fmt.Errorf("unable to decode updatePinnedMessages#ed85eab5: field messages: %w", err)
		tl_update_gen.go#L16744: 				return fmt.Errorf("unable to decode updatePinnedMessages#ed85eab5: field messages: %w", err)
		tl_update_gen.go#L16752: 			return fmt.Errorf("unable to decode updatePinnedMessages#ed85eab5: field pts: %w", err)
		tl_update_gen.go#L16759: 			return fmt.Errorf("unable to decode updatePinnedMessages#ed85eab5: field pts_count: %w", err)
		tl_update_gen.go#L16972: 		return fmt.Errorf("can't encode updatePinnedChannelMessages#5bb98608 as nil")
		tl_update_gen.go#L16981: 		return fmt.Errorf("can't encode updatePinnedChannelMessages#5bb98608 as nil")
		tl_update_gen.go#L16985: 		return fmt.Errorf("unable to encode updatePinnedChannelMessages#5bb98608: field flags: %w", err)
		tl_update_gen.go#L17000: 		return fmt.Errorf("can't decode updatePinnedChannelMessages#5bb98608 to nil")
		tl_update_gen.go#L17003: 		return fmt.Errorf("unable to decode updatePinnedChannelMessages#5bb98608: %w", err)
		tl_update_gen.go#L17011: 		return fmt.Errorf("can't decode updatePinnedChannelMessages#5bb98608 to nil")
		tl_update_gen.go#L17015: 			return fmt.Errorf("unable to decode updatePinnedChannelMessages#5bb98608: field flags: %w", err)
		tl_update_gen.go#L17022: 			return fmt.Errorf("unable to decode updatePinnedChannelMessages#5bb98608: field channel_id: %w", err)
		tl_update_gen.go#L17029: 			return fmt.Errorf("unable to decode updatePinnedChannelMessages#5bb98608: field messages: %w", err)
		tl_update_gen.go#L17038: 				return fmt.Errorf("unable to decode updatePinnedChannelMessages#5bb98608: field messages: %w", err)
		tl_update_gen.go#L17046: 			return fmt.Errorf("unable to decode updatePinnedChannelMessages#5bb98608: field pts: %w", err)
		tl_update_gen.go#L17053: 			return fmt.Errorf("unable to decode updatePinnedChannelMessages#5bb98608: field pts_count: %w", err)
		tl_update_gen.go#L17197: 		return fmt.Errorf("can't encode updateChat#f89a6a4e as nil")
		tl_update_gen.go#L17206: 		return fmt.Errorf("can't encode updateChat#f89a6a4e as nil")
		tl_update_gen.go#L17215: 		return fmt.Errorf("can't decode updateChat#f89a6a4e to nil")
		tl_update_gen.go#L17218: 		return fmt.Errorf("unable to decode updateChat#f89a6a4e: %w", err)
		tl_update_gen.go#L17226: 		return fmt.Errorf("can't decode updateChat#f89a6a4e to nil")
		tl_update_gen.go#L17231: 			return fmt.Errorf("unable to decode updateChat#f89a6a4e: field chat_id: %w", err)
		tl_update_gen.go#L17354: 		return fmt.Errorf("can't encode updateGroupCallParticipants#f2ebdb4e as nil")
		tl_update_gen.go#L17363: 		return fmt.Errorf("can't encode updateGroupCallParticipants#f2ebdb4e as nil")
		tl_update_gen.go#L17366: 		return fmt.Errorf("unable to encode updateGroupCallParticipants#f2ebdb4e: field call: %w", err)
		tl_update_gen.go#L17371: 			return fmt.Errorf("unable to encode updateGroupCallParticipants#f2ebdb4e: field participants element with index %d: %w", idx, err)
		tl_update_gen.go#L17381: 		return fmt.Errorf("can't decode updateGroupCallParticipants#f2ebdb4e to nil")
		tl_update_gen.go#L17384: 		return fmt.Errorf("unable to decode updateGroupCallParticipants#f2ebdb4e: %w", err)
		tl_update_gen.go#L17392: 		return fmt.Errorf("can't decode updateGroupCallParticipants#f2ebdb4e to nil")
		tl_update_gen.go#L17396: 			return fmt.Errorf("unable to decode updateGroupCallParticipants#f2ebdb4e: field call: %w", err)
		tl_update_gen.go#L17402: 			return fmt.Errorf("unable to decode updateGroupCallParticipants#f2ebdb4e: field participants: %w", err)
		tl_update_gen.go#L17411: 				return fmt.Errorf("unable to decode updateGroupCallParticipants#f2ebdb4e: field participants: %w", err)
		tl_update_gen.go#L17419: 			return fmt.Errorf("unable to decode updateGroupCallParticipants#f2ebdb4e: field version: %w", err)
		tl_update_gen.go#L17550: 		return fmt.Errorf("can't encode updateGroupCall#14b24500 as nil")
		tl_update_gen.go#L17559: 		return fmt.Errorf("can't encode updateGroupCall#14b24500 as nil")
		tl_update_gen.go#L17563: 		return fmt.Errorf("unable to encode updateGroupCall#14b24500: field call is nil")
		tl_update_gen.go#L17566: 		return fmt.Errorf("unable to encode updateGroupCall#14b24500: field call: %w", err)
		tl_update_gen.go#L17574: 		return fmt.Errorf("can't decode updateGroupCall#14b24500 to nil")
		tl_update_gen.go#L17577: 		return fmt.Errorf("unable to decode updateGroupCall#14b24500: %w", err)
		tl_update_gen.go#L17585: 		return fmt.Errorf("can't decode updateGroupCall#14b24500 to nil")
		tl_update_gen.go#L17590: 			return fmt.Errorf("unable to decode updateGroupCall#14b24500: field chat_id: %w", err)
		tl_update_gen.go#L17597: 			return fmt.Errorf("unable to decode updateGroupCall#14b24500: field call: %w", err)
		tl_update_gen.go#L17738: 		return fmt.Errorf("can't encode updatePeerHistoryTTL#bb9bb9a5 as nil")
		tl_update_gen.go#L17747: 		return fmt.Errorf("can't encode updatePeerHistoryTTL#bb9bb9a5 as nil")
		tl_update_gen.go#L17751: 		return fmt.Errorf("unable to encode updatePeerHistoryTTL#bb9bb9a5: field flags: %w", err)
		tl_update_gen.go#L17754: 		return fmt.Errorf("unable to encode updatePeerHistoryTTL#bb9bb9a5: field peer is nil")
		tl_update_gen.go#L17757: 		return fmt.Errorf("unable to encode updatePeerHistoryTTL#bb9bb9a5: field peer: %w", err)
		tl_update_gen.go#L17768: 		return fmt.Errorf("can't decode updatePeerHistoryTTL#bb9bb9a5 to nil")
		tl_update_gen.go#L17771: 		return fmt.Errorf("unable to decode updatePeerHistoryTTL#bb9bb9a5: %w", err)
		tl_update_gen.go#L17779: 		return fmt.Errorf("can't decode updatePeerHistoryTTL#bb9bb9a5 to nil")
		tl_update_gen.go#L17783: 			return fmt.Errorf("unable to decode updatePeerHistoryTTL#bb9bb9a5: field flags: %w", err)
		tl_update_gen.go#L17789: 			return fmt.Errorf("unable to decode updatePeerHistoryTTL#bb9bb9a5: field peer: %w", err)
		tl_update_gen.go#L17796: 			return fmt.Errorf("unable to decode updatePeerHistoryTTL#bb9bb9a5: field ttl_period: %w", err)
		tl_update_gen.go#L18038: 		return fmt.Errorf("can't encode updateChatParticipant#d087663a as nil")
		tl_update_gen.go#L18047: 		return fmt.Errorf("can't encode updateChatParticipant#d087663a as nil")
		tl_update_gen.go#L18051: 		return fmt.Errorf("unable to encode updateChatParticipant#d087663a: field flags: %w", err)
		tl_update_gen.go#L18059: 			return fmt.Errorf("unable to encode updateChatParticipant#d087663a: field prev_participant is nil")
		tl_update_gen.go#L18062: 			return fmt.Errorf("unable to encode updateChatParticipant#d087663a: field prev_participant: %w", err)
		tl_update_gen.go#L18067: 			return fmt.Errorf("unable to encode updateChatParticipant#d087663a: field new_participant is nil")
		tl_update_gen.go#L18070: 			return fmt.Errorf("unable to encode updateChatParticipant#d087663a: field new_participant: %w", err)
		tl_update_gen.go#L18075: 			return fmt.Errorf("unable to encode updateChatParticipant#d087663a: field invite is nil")
		tl_update_gen.go#L18078: 			return fmt.Errorf("unable to encode updateChatParticipant#d087663a: field invite: %w", err)
		tl_update_gen.go#L18088: 		return fmt.Errorf("can't decode updateChatParticipant#d087663a to nil")
		tl_update_gen.go#L18091: 		return fmt.Errorf("unable to decode updateChatParticipant#d087663a: %w", err)
		tl_update_gen.go#L18099: 		return fmt.Errorf("can't decode updateChatParticipant#d087663a to nil")
		tl_update_gen.go#L18103: 			return fmt.Errorf("unable to decode updateChatParticipant#d087663a: field flags: %w", err)
		tl_update_gen.go#L18109: 			return fmt.Errorf("unable to decode updateChatParticipant#d087663a: field chat_id: %w", err)
		tl_update_gen.go#L18116: 			return fmt.Errorf("unable to decode updateChatParticipant#d087663a: field date: %w", err)
		tl_update_gen.go#L18123: 			return fmt.Errorf("unable to decode updateChatParticipant#d087663a: field actor_id: %w", err)
		tl_update_gen.go#L18130: 			return fmt.Errorf("unable to decode updateChatParticipant#d087663a: field user_id: %w", err)
		tl_update_gen.go#L18137: 			return fmt.Errorf("unable to decode updateChatParticipant#d087663a: field prev_participant: %w", err)
		tl_update_gen.go#L18144: 			return fmt.Errorf("unable to decode updateChatParticipant#d087663a: field new_participant: %w", err)
		tl_update_gen.go#L18151: 			return fmt.Errorf("unable to decode updateChatParticipant#d087663a: field invite: %w", err)
		tl_update_gen.go#L18158: 			return fmt.Errorf("unable to decode updateChatParticipant#d087663a: field qts: %w", err)
		tl_update_gen.go#L18489: 		return fmt.Errorf("can't encode updateChannelParticipant#985d3abb as nil")
		tl_update_gen.go#L18498: 		return fmt.Errorf("can't encode updateChannelParticipant#985d3abb as nil")
		tl_update_gen.go#L18502: 		return fmt.Errorf("unable to encode updateChannelParticipant#985d3abb: field flags: %w", err)
		tl_update_gen.go#L18510: 			return fmt.Errorf("unable to encode updateChannelParticipant#985d3abb: field prev_participant is nil")
		tl_update_gen.go#L18513: 			return fmt.Errorf("unable to encode updateChannelParticipant#985d3abb: field prev_participant: %w", err)
		tl_update_gen.go#L18518: 			return fmt.Errorf("unable to encode updateChannelParticipant#985d3abb: field new_participant is nil")
		tl_update_gen.go#L18521: 			return fmt.Errorf("unable to encode updateChannelParticipant#985d3abb: field new_participant: %w", err)
		tl_update_gen.go#L18526: 			return fmt.Errorf("unable to encode updateChannelParticipant#985d3abb: field invite is nil")
		tl_update_gen.go#L18529: 			return fmt.Errorf("unable to encode updateChannelParticipant#985d3abb: field invite: %w", err)
		tl_update_gen.go#L18539: 		return fmt.Errorf("can't decode updateChannelParticipant#985d3abb to nil")
		tl_update_gen.go#L18542: 		return fmt.Errorf("unable to decode updateChannelParticipant#985d3abb: %w", err)
		tl_update_gen.go#L18550: 		return fmt.Errorf("can't decode updateChannelParticipant#985d3abb to nil")
		tl_update_gen.go#L18554: 			return fmt.Errorf("unable to decode updateChannelParticipant#985d3abb: field flags: %w", err)
		tl_update_gen.go#L18561: 			return fmt.Errorf("unable to decode updateChannelParticipant#985d3abb: field channel_id: %w", err)
		tl_update_gen.go#L18568: 			return fmt.Errorf("unable to decode updateChannelParticipant#985d3abb: field date: %w", err)
		tl_update_gen.go#L18575: 			return fmt.Errorf("unable to decode updateChannelParticipant#985d3abb: field actor_id: %w", err)
		tl_update_gen.go#L18582: 			return fmt.Errorf("unable to decode updateChannelParticipant#985d3abb: field user_id: %w", err)
		tl_update_gen.go#L18589: 			return fmt.Errorf("unable to decode updateChannelParticipant#985d3abb: field prev_participant: %w", err)
		tl_update_gen.go#L18596: 			return fmt.Errorf("unable to decode updateChannelParticipant#985d3abb: field new_participant: %w", err)
		tl_update_gen.go#L18603: 			return fmt.Errorf("unable to decode updateChannelParticipant#985d3abb: field invite: %w", err)
		tl_update_gen.go#L18610: 			return fmt.Errorf("unable to decode updateChannelParticipant#985d3abb: field qts: %w", err)
		tl_update_gen.go#L18852: 		return fmt.Errorf("can't encode updateBotStopped#c4870a49 as nil")
		tl_update_gen.go#L18861: 		return fmt.Errorf("can't encode updateBotStopped#c4870a49 as nil")
		tl_update_gen.go#L18873: 		return fmt.Errorf("can't decode updateBotStopped#c4870a49 to nil")
		tl_update_gen.go#L18876: 		return fmt.Errorf("unable to decode updateBotStopped#c4870a49: %w", err)
		tl_update_gen.go#L18884: 		return fmt.Errorf("can't decode updateBotStopped#c4870a49 to nil")
		tl_update_gen.go#L18889: 			return fmt.Errorf("unable to decode updateBotStopped#c4870a49: field user_id: %w", err)
		tl_update_gen.go#L18896: 			return fmt.Errorf("unable to decode updateBotStopped#c4870a49: field date: %w", err)
		tl_update_gen.go#L18903: 			return fmt.Errorf("unable to decode updateBotStopped#c4870a49: field stopped: %w", err)
		tl_update_gen.go#L18910: 			return fmt.Errorf("unable to decode updateBotStopped#c4870a49: field qts: %w", err)
		tl_update_gen.go#L19062: 		return fmt.Errorf("can't encode updateGroupCallConnection#b783982 as nil")
		tl_update_gen.go#L19071: 		return fmt.Errorf("can't encode updateGroupCallConnection#b783982 as nil")
		tl_update_gen.go#L19075: 		return fmt.Errorf("unable to encode updateGroupCallConnection#b783982: field flags: %w", err)
		tl_update_gen.go#L19078: 		return fmt.Errorf("unable to encode updateGroupCallConnection#b783982: field params: %w", err)
		tl_update_gen.go#L19086: 		return fmt.Errorf("can't decode updateGroupCallConnection#b783982 to nil")
		tl_update_gen.go#L19089: 		return fmt.Errorf("unable to decode updateGroupCallConnection#b783982: %w", err)
		tl_update_gen.go#L19097: 		return fmt.Errorf("can't decode updateGroupCallConnection#b783982 to nil")
		tl_update_gen.go#L19101: 			return fmt.Errorf("unable to decode updateGroupCallConnection#b783982: field flags: %w", err)
		tl_update_gen.go#L19107: 			return fmt.Errorf("unable to decode updateGroupCallConnection#b783982: field params: %w", err)
		tl_update_gen.go#L19251: 		return fmt.Errorf("can't encode updateBotCommands#4d712f2e as nil")
		tl_update_gen.go#L19260: 		return fmt.Errorf("can't encode updateBotCommands#4d712f2e as nil")
		tl_update_gen.go#L19263: 		return fmt.Errorf("unable to encode updateBotCommands#4d712f2e: field peer is nil")
		tl_update_gen.go#L19266: 		return fmt.Errorf("unable to encode updateBotCommands#4d712f2e: field peer: %w", err)
		tl_update_gen.go#L19272: 			return fmt.Errorf("unable to encode updateBotCommands#4d712f2e: field commands element with index %d: %w", idx, err)
		tl_update_gen.go#L19281: 		return fmt.Errorf("can't decode updateBotCommands#4d712f2e to nil")
		tl_update_gen.go#L19284: 		return fmt.Errorf("unable to decode updateBotCommands#4d712f2e: %w", err)
		tl_update_gen.go#L19292: 		return fmt.Errorf("can't decode updateBotCommands#4d712f2e to nil")
		tl_update_gen.go#L19297: 			return fmt.Errorf("unable to decode updateBotCommands#4d712f2e: field peer: %w", err)
		tl_update_gen.go#L19304: 			return fmt.Errorf("unable to decode updateBotCommands#4d712f2e: field bot_id: %w", err)
		tl_update_gen.go#L19311: 			return fmt.Errorf("unable to decode updateBotCommands#4d712f2e: field commands: %w", err)
		tl_update_gen.go#L19320: 				return fmt.Errorf("unable to decode updateBotCommands#4d712f2e: field commands: %w", err)
		tl_update_gen.go#L19463: 		return fmt.Errorf("can't encode updatePendingJoinRequests#7063c3db as nil")
		tl_update_gen.go#L19472: 		return fmt.Errorf("can't encode updatePendingJoinRequests#7063c3db as nil")
		tl_update_gen.go#L19475: 		return fmt.Errorf("unable to encode updatePendingJoinRequests#7063c3db: field peer is nil")
		tl_update_gen.go#L19478: 		return fmt.Errorf("unable to encode updatePendingJoinRequests#7063c3db: field peer: %w", err)
		tl_update_gen.go#L19491: 		return fmt.Errorf("can't decode updatePendingJoinRequests#7063c3db to nil")
		tl_update_gen.go#L19494: 		return fmt.Errorf("unable to decode updatePendingJoinRequests#7063c3db: %w", err)
		tl_update_gen.go#L19502: 		return fmt.Errorf("can't decode updatePendingJoinRequests#7063c3db to nil")
		tl_update_gen.go#L19507: 			return fmt.Errorf("unable to decode updatePendingJoinRequests#7063c3db: field peer: %w", err)
		tl_update_gen.go#L19514: 			return fmt.Errorf("unable to decode updatePendingJoinRequests#7063c3db: field requests_pending: %w", err)
		tl_update_gen.go#L19521: 			return fmt.Errorf("unable to decode updatePendingJoinRequests#7063c3db: field recent_requesters: %w", err)
		tl_update_gen.go#L19530: 				return fmt.Errorf("unable to decode updatePendingJoinRequests#7063c3db: field recent_requesters: %w", err)
		tl_update_gen.go#L19716: 		return fmt.Errorf("can't encode updateBotChatInviteRequester#11dfa986 as nil")
		tl_update_gen.go#L19725: 		return fmt.Errorf("can't encode updateBotChatInviteRequester#11dfa986 as nil")
		tl_update_gen.go#L19728: 		return fmt.Errorf("unable to encode updateBotChatInviteRequester#11dfa986: field peer is nil")
		tl_update_gen.go#L19731: 		return fmt.Errorf("unable to encode updateBotChatInviteRequester#11dfa986: field peer: %w", err)
		tl_update_gen.go#L19737: 		return fmt.Errorf("unable to encode updateBotChatInviteRequester#11dfa986: field invite is nil")
		tl_update_gen.go#L19740: 		return fmt.Errorf("unable to encode updateBotChatInviteRequester#11dfa986: field invite: %w", err)
		tl_update_gen.go#L19749: 		return fmt.Errorf("can't decode updateBotChatInviteRequester#11dfa986 to nil")
		tl_update_gen.go#L19752: 		return fmt.Errorf("unable to decode updateBotChatInviteRequester#11dfa986: %w", err)
		tl_update_gen.go#L19760: 		return fmt.Errorf("can't decode updateBotChatInviteRequester#11dfa986 to nil")
		tl_update_gen.go#L19765: 			return fmt.Errorf("unable to decode updateBotChatInviteRequester#11dfa986: field peer: %w", err)
		tl_update_gen.go#L19772: 			return fmt.Errorf("unable to decode updateBotChatInviteRequester#11dfa986: field date: %w", err)
		tl_update_gen.go#L19779: 			return fmt.Errorf("unable to decode updateBotChatInviteRequester#11dfa986: field user_id: %w", err)
		tl_update_gen.go#L19786: 			return fmt.Errorf("unable to decode updateBotChatInviteRequester#11dfa986: field about: %w", err)
		tl_update_gen.go#L19793: 			return fmt.Errorf("unable to decode updateBotChatInviteRequester#11dfa986: field invite: %w", err)
		tl_update_gen.go#L19800: 			return fmt.Errorf("unable to decode updateBotChatInviteRequester#11dfa986: field qts: %w", err)
		tl_update_gen.go#L20001: 		return fmt.Errorf("can't encode updateMessageReactions#5e1b3cb8 as nil")
		tl_update_gen.go#L20010: 		return fmt.Errorf("can't encode updateMessageReactions#5e1b3cb8 as nil")
		tl_update_gen.go#L20014: 		return fmt.Errorf("unable to encode updateMessageReactions#5e1b3cb8: field flags: %w", err)
		tl_update_gen.go#L20017: 		return fmt.Errorf("unable to encode updateMessageReactions#5e1b3cb8: field peer is nil")
		tl_update_gen.go#L20020: 		return fmt.Errorf("unable to encode updateMessageReactions#5e1b3cb8: field peer: %w", err)
		tl_update_gen.go#L20027: 		return fmt.Errorf("unable to encode updateMessageReactions#5e1b3cb8: field reactions: %w", err)
		tl_update_gen.go#L20035: 		return fmt.Errorf("can't decode updateMessageReactions#5e1b3cb8 to nil")
		tl_update_gen.go#L20038: 		return fmt.Errorf("unable to decode updateMessageReactions#5e1b3cb8: %w", err)
		tl_update_gen.go#L20046: 		return fmt.Errorf("can't decode updateMessageReactions#5e1b3cb8 to nil")
		tl_update_gen.go#L20050: 			return fmt.Errorf("unable to decode updateMessageReactions#5e1b3cb8: field flags: %w", err)
		tl_update_gen.go#L20056: 			return fmt.Errorf("unable to decode updateMessageReactions#5e1b3cb8: field peer: %w", err)
		tl_update_gen.go#L20063: 			return fmt.Errorf("unable to decode updateMessageReactions#5e1b3cb8: field msg_id: %w", err)
		tl_update_gen.go#L20070: 			return fmt.Errorf("unable to decode updateMessageReactions#5e1b3cb8: field top_msg_id: %w", err)
		tl_update_gen.go#L20076: 			return fmt.Errorf("unable to decode updateMessageReactions#5e1b3cb8: field reactions: %w", err)
		tl_update_gen.go#L20198: 		return fmt.Errorf("can't encode updateAttachMenuBots#17b7a20b as nil")
		tl_update_gen.go#L20207: 		return fmt.Errorf("can't encode updateAttachMenuBots#17b7a20b as nil")
		tl_update_gen.go#L20215: 		return fmt.Errorf("can't decode updateAttachMenuBots#17b7a20b to nil")
		tl_update_gen.go#L20218: 		return fmt.Errorf("unable to decode updateAttachMenuBots#17b7a20b: %w", err)
		tl_update_gen.go#L20226: 		return fmt.Errorf("can't decode updateAttachMenuBots#17b7a20b to nil")
		tl_update_gen.go#L20321: 		return fmt.Errorf("can't encode updateWebViewResultSent#1592b79d as nil")
		tl_update_gen.go#L20330: 		return fmt.Errorf("can't encode updateWebViewResultSent#1592b79d as nil")
		tl_update_gen.go#L20339: 		return fmt.Errorf("can't decode updateWebViewResultSent#1592b79d to nil")
		tl_update_gen.go#L20342: 		return fmt.Errorf("unable to decode updateWebViewResultSent#1592b79d: %w", err)
		tl_update_gen.go#L20350: 		return fmt.Errorf("can't decode updateWebViewResultSent#1592b79d to nil")
		tl_update_gen.go#L20355: 			return fmt.Errorf("unable to decode updateWebViewResultSent#1592b79d: field query_id: %w", err)
		tl_update_gen.go#L20467: 		return fmt.Errorf("can't encode updateBotMenuButton#14b85813 as nil")
		tl_update_gen.go#L20476: 		return fmt.Errorf("can't encode updateBotMenuButton#14b85813 as nil")
		tl_update_gen.go#L20480: 		return fmt.Errorf("unable to encode updateBotMenuButton#14b85813: field button is nil")
		tl_update_gen.go#L20483: 		return fmt.Errorf("unable to encode updateBotMenuButton#14b85813: field button: %w", err)
		tl_update_gen.go#L20491: 		return fmt.Errorf("can't decode updateBotMenuButton#14b85813 to nil")
		tl_update_gen.go#L20494: 		return fmt.Errorf("unable to decode updateBotMenuButton#14b85813: %w", err)
		tl_update_gen.go#L20502: 		return fmt.Errorf("can't decode updateBotMenuButton#14b85813 to nil")
		tl_update_gen.go#L20507: 			return fmt.Errorf("unable to decode updateBotMenuButton#14b85813: field bot_id: %w", err)
		tl_update_gen.go#L20514: 			return fmt.Errorf("unable to decode updateBotMenuButton#14b85813: field button: %w", err)
		tl_update_gen.go#L20610: 		return fmt.Errorf("can't encode updateSavedRingtones#74d8be99 as nil")
		tl_update_gen.go#L20619: 		return fmt.Errorf("can't encode updateSavedRingtones#74d8be99 as nil")
		tl_update_gen.go#L20627: 		return fmt.Errorf("can't decode updateSavedRingtones#74d8be99 to nil")
		tl_update_gen.go#L20630: 		return fmt.Errorf("unable to decode updateSavedRingtones#74d8be99: %w", err)
		tl_update_gen.go#L20638: 		return fmt.Errorf("can't decode updateSavedRingtones#74d8be99 to nil")
		tl_update_gen.go#L20798: 		return fmt.Errorf("can't encode updateTranscribedAudio#84cd5a as nil")
		tl_update_gen.go#L20807: 		return fmt.Errorf("can't encode updateTranscribedAudio#84cd5a as nil")
		tl_update_gen.go#L20811: 		return fmt.Errorf("unable to encode updateTranscribedAudio#84cd5a: field flags: %w", err)
		tl_update_gen.go#L20814: 		return fmt.Errorf("unable to encode updateTranscribedAudio#84cd5a: field peer is nil")
		tl_update_gen.go#L20817: 		return fmt.Errorf("unable to encode updateTranscribedAudio#84cd5a: field peer: %w", err)
		tl_update_gen.go#L20828: 		return fmt.Errorf("can't decode updateTranscribedAudio#84cd5a to nil")
		tl_update_gen.go#L20831: 		return fmt.Errorf("unable to decode updateTranscribedAudio#84cd5a: %w", err)
		tl_update_gen.go#L20839: 		return fmt.Errorf("can't decode updateTranscribedAudio#84cd5a to nil")
		tl_update_gen.go#L20843: 			return fmt.Errorf("unable to decode updateTranscribedAudio#84cd5a: field flags: %w", err)
		tl_update_gen.go#L20850: 			return fmt.Errorf("unable to decode updateTranscribedAudio#84cd5a: field peer: %w", err)
		tl_update_gen.go#L20857: 			return fmt.Errorf("unable to decode updateTranscribedAudio#84cd5a: field msg_id: %w", err)
		tl_update_gen.go#L20864: 			return fmt.Errorf("unable to decode updateTranscribedAudio#84cd5a: field transcription_id: %w", err)
		tl_update_gen.go#L20871: 			return fmt.Errorf("unable to decode updateTranscribedAudio#84cd5a: field text: %w", err)
		tl_update_gen.go#L21001: 		return fmt.Errorf("can't encode updateReadFeaturedEmojiStickers#fb4c496c as nil")
		tl_update_gen.go#L21010: 		return fmt.Errorf("can't encode updateReadFeaturedEmojiStickers#fb4c496c as nil")
		tl_update_gen.go#L21018: 		return fmt.Errorf("can't decode updateReadFeaturedEmojiStickers#fb4c496c to nil")
		tl_update_gen.go#L21021: 		return fmt.Errorf("unable to decode updateReadFeaturedEmojiStickers#fb4c496c: %w", err)
		tl_update_gen.go#L21029: 		return fmt.Errorf("can't decode updateReadFeaturedEmojiStickers#fb4c496c to nil")
		tl_update_gen.go#L21137: 		return fmt.Errorf("can't encode updateUserEmojiStatus#28373599 as nil")
		tl_update_gen.go#L21146: 		return fmt.Errorf("can't encode updateUserEmojiStatus#28373599 as nil")
		tl_update_gen.go#L21150: 		return fmt.Errorf("unable to encode updateUserEmojiStatus#28373599: field emoji_status is nil")
		tl_update_gen.go#L21153: 		return fmt.Errorf("unable to encode updateUserEmojiStatus#28373599: field emoji_status: %w", err)
		tl_update_gen.go#L21161: 		return fmt.Errorf("can't decode updateUserEmojiStatus#28373599 to nil")
		tl_update_gen.go#L21164: 		return fmt.Errorf("unable to decode updateUserEmojiStatus#28373599: %w", err)
		tl_update_gen.go#L21172: 		return fmt.Errorf("can't decode updateUserEmojiStatus#28373599 to nil")
		tl_update_gen.go#L21177: 			return fmt.Errorf("unable to decode updateUserEmojiStatus#28373599: field user_id: %w", err)
		tl_update_gen.go#L21184: 			return fmt.Errorf("unable to decode updateUserEmojiStatus#28373599: field emoji_status: %w", err)
		tl_update_gen.go#L21279: 		return fmt.Errorf("can't encode updateRecentEmojiStatuses#30f443db as nil")
		tl_update_gen.go#L21288: 		return fmt.Errorf("can't encode updateRecentEmojiStatuses#30f443db as nil")
		tl_update_gen.go#L21296: 		return fmt.Errorf("can't decode updateRecentEmojiStatuses#30f443db to nil")
		tl_update_gen.go#L21299: 		return fmt.Errorf("unable to decode updateRecentEmojiStatuses#30f443db: %w", err)
		tl_update_gen.go#L21307: 		return fmt.Errorf("can't decode updateRecentEmojiStatuses#30f443db to nil")
		tl_update_gen.go#L21384: 		return fmt.Errorf("can't encode updateRecentReactions#6f7863f4 as nil")
		tl_update_gen.go#L21393: 		return fmt.Errorf("can't encode updateRecentReactions#6f7863f4 as nil")
		tl_update_gen.go#L21401: 		return fmt.Errorf("can't decode updateRecentReactions#6f7863f4 to nil")
		tl_update_gen.go#L21404: 		return fmt.Errorf("unable to decode updateRecentReactions#6f7863f4: %w", err)
		tl_update_gen.go#L21412: 		return fmt.Errorf("can't decode updateRecentReactions#6f7863f4 to nil")
		tl_update_gen.go#L21557: 		return fmt.Errorf("can't encode updateMoveStickerSetToTop#86fccf85 as nil")
		tl_update_gen.go#L21566: 		return fmt.Errorf("can't encode updateMoveStickerSetToTop#86fccf85 as nil")
		tl_update_gen.go#L21570: 		return fmt.Errorf("unable to encode updateMoveStickerSetToTop#86fccf85: field flags: %w", err)
		tl_update_gen.go#L21579: 		return fmt.Errorf("can't decode updateMoveStickerSetToTop#86fccf85 to nil")
		tl_update_gen.go#L21582: 		return fmt.Errorf("unable to decode updateMoveStickerSetToTop#86fccf85: %w", err)
		tl_update_gen.go#L21590: 		return fmt.Errorf("can't decode updateMoveStickerSetToTop#86fccf85 to nil")
		tl_update_gen.go#L21594: 			return fmt.Errorf("unable to decode updateMoveStickerSetToTop#86fccf85: field flags: %w", err)
		tl_update_gen.go#L21602: 			return fmt.Errorf("unable to decode updateMoveStickerSetToTop#86fccf85: field stickerset: %w", err)
		tl_update_gen.go#L21763: 		return fmt.Errorf("can't encode updateMessageExtendedMedia#5a73a98c as nil")
		tl_update_gen.go#L21772: 		return fmt.Errorf("can't encode updateMessageExtendedMedia#5a73a98c as nil")
		tl_update_gen.go#L21775: 		return fmt.Errorf("unable to encode updateMessageExtendedMedia#5a73a98c: field peer is nil")
		tl_update_gen.go#L21778: 		return fmt.Errorf("unable to encode updateMessageExtendedMedia#5a73a98c: field peer: %w", err)
		tl_update_gen.go#L21782: 		return fmt.Errorf("unable to encode updateMessageExtendedMedia#5a73a98c: field extended_media is nil")
		tl_update_gen.go#L21785: 		return fmt.Errorf("unable to encode updateMessageExtendedMedia#5a73a98c: field extended_media: %w", err)
		tl_update_gen.go#L21793: 		return fmt.Errorf("can't decode updateMessageExtendedMedia#5a73a98c to nil")
		tl_update_gen.go#L21796: 		return fmt.Errorf("unable to decode updateMessageExtendedMedia#5a73a98c: %w", err)
		tl_update_gen.go#L21804: 		return fmt.Errorf("can't decode updateMessageExtendedMedia#5a73a98c to nil")
		tl_update_gen.go#L21809: 			return fmt.Errorf("unable to decode updateMessageExtendedMedia#5a73a98c: field peer: %w", err)
		tl_update_gen.go#L21816: 			return fmt.Errorf("unable to decode updateMessageExtendedMedia#5a73a98c: field msg_id: %w", err)
		tl_update_gen.go#L21823: 			return fmt.Errorf("unable to decode updateMessageExtendedMedia#5a73a98c: field extended_media: %w", err)
		tl_update_gen.go#L21981: 		return fmt.Errorf("can't encode updateChannelPinnedTopic#192efbe3 as nil")
		tl_update_gen.go#L21990: 		return fmt.Errorf("can't encode updateChannelPinnedTopic#192efbe3 as nil")
		tl_update_gen.go#L21994: 		return fmt.Errorf("unable to encode updateChannelPinnedTopic#192efbe3: field flags: %w", err)
		tl_update_gen.go#L22004: 		return fmt.Errorf("can't decode updateChannelPinnedTopic#192efbe3 to nil")
		tl_update_gen.go#L22007: 		return fmt.Errorf("unable to decode updateChannelPinnedTopic#192efbe3: %w", err)
		tl_update_gen.go#L22015: 		return fmt.Errorf("can't decode updateChannelPinnedTopic#192efbe3 to nil")
		tl_update_gen.go#L22019: 			return fmt.Errorf("unable to decode updateChannelPinnedTopic#192efbe3: field flags: %w", err)
		tl_update_gen.go#L22026: 			return fmt.Errorf("unable to decode updateChannelPinnedTopic#192efbe3: field channel_id: %w", err)
		tl_update_gen.go#L22033: 			return fmt.Errorf("unable to decode updateChannelPinnedTopic#192efbe3: field topic_id: %w", err)
		tl_update_gen.go#L22196: 		return fmt.Errorf("can't encode updateChannelPinnedTopics#fe198602 as nil")
		tl_update_gen.go#L22205: 		return fmt.Errorf("can't encode updateChannelPinnedTopics#fe198602 as nil")
		tl_update_gen.go#L22209: 		return fmt.Errorf("unable to encode updateChannelPinnedTopics#fe198602: field flags: %w", err)
		tl_update_gen.go#L22224: 		return fmt.Errorf("can't decode updateChannelPinnedTopics#fe198602 to nil")
		tl_update_gen.go#L22227: 		return fmt.Errorf("unable to decode updateChannelPinnedTopics#fe198602: %w", err)
		tl_update_gen.go#L22235: 		return fmt.Errorf("can't decode updateChannelPinnedTopics#fe198602 to nil")
		tl_update_gen.go#L22239: 			return fmt.Errorf("unable to decode updateChannelPinnedTopics#fe198602: field flags: %w", err)
		tl_update_gen.go#L22245: 			return fmt.Errorf("unable to decode updateChannelPinnedTopics#fe198602: field channel_id: %w", err)
		tl_update_gen.go#L22252: 			return fmt.Errorf("unable to decode updateChannelPinnedTopics#fe198602: field order: %w", err)
		tl_update_gen.go#L22261: 				return fmt.Errorf("unable to decode updateChannelPinnedTopics#fe198602: field order: %w", err)
		tl_update_gen.go#L22384: 		return fmt.Errorf("can't encode updateUser#20529438 as nil")
		tl_update_gen.go#L22393: 		return fmt.Errorf("can't encode updateUser#20529438 as nil")
		tl_update_gen.go#L22402: 		return fmt.Errorf("can't decode updateUser#20529438 to nil")
		tl_update_gen.go#L22405: 		return fmt.Errorf("unable to decode updateUser#20529438: %w", err)
		tl_update_gen.go#L22413: 		return fmt.Errorf("can't decode updateUser#20529438 to nil")
		tl_update_gen.go#L22418: 			return fmt.Errorf("unable to decode updateUser#20529438: field user_id: %w", err)
		tl_update_gen.go#L22506: 		return fmt.Errorf("can't encode updateAutoSaveSettings#ec05b097 as nil")
		tl_update_gen.go#L22515: 		return fmt.Errorf("can't encode updateAutoSaveSettings#ec05b097 as nil")
		tl_update_gen.go#L22523: 		return fmt.Errorf("can't decode updateAutoSaveSettings#ec05b097 to nil")
		tl_update_gen.go#L22526: 		return fmt.Errorf("unable to decode updateAutoSaveSettings#ec05b097: %w", err)
		tl_update_gen.go#L22534: 		return fmt.Errorf("can't decode updateAutoSaveSettings#ec05b097 to nil")
		tl_update_gen.go#L22634: 		return fmt.Errorf("can't encode updateGroupInvitePrivacyForbidden#ccf08ad6 as nil")
		tl_update_gen.go#L22643: 		return fmt.Errorf("can't encode updateGroupInvitePrivacyForbidden#ccf08ad6 as nil")
		tl_update_gen.go#L22652: 		return fmt.Errorf("can't decode updateGroupInvitePrivacyForbidden#ccf08ad6 to nil")
		tl_update_gen.go#L22655: 		return fmt.Errorf("unable to decode updateGroupInvitePrivacyForbidden#ccf08ad6: %w", err)
		tl_update_gen.go#L22663: 		return fmt.Errorf("can't decode updateGroupInvitePrivacyForbidden#ccf08ad6 to nil")
		tl_update_gen.go#L22668: 			return fmt.Errorf("unable to decode updateGroupInvitePrivacyForbidden#ccf08ad6: field user_id: %w", err)
		tl_update_gen.go#L22780: 		return fmt.Errorf("can't encode updateStory#75b3b798 as nil")
		tl_update_gen.go#L22789: 		return fmt.Errorf("can't encode updateStory#75b3b798 as nil")
		tl_update_gen.go#L22792: 		return fmt.Errorf("unable to encode updateStory#75b3b798: field peer is nil")
		tl_update_gen.go#L22795: 		return fmt.Errorf("unable to encode updateStory#75b3b798: field peer: %w", err)
		tl_update_gen.go#L22798: 		return fmt.Errorf("unable to encode updateStory#75b3b798: field story is nil")
		tl_update_gen.go#L22801: 		return fmt.Errorf("unable to encode updateStory#75b3b798: field story: %w", err)
		tl_update_gen.go#L22809: 		return fmt.Errorf("can't decode updateStory#75b3b798 to nil")
		tl_update_gen.go#L22812: 		return fmt.Errorf("unable to decode updateStory#75b3b798: %w", err)
		tl_update_gen.go#L22820: 		return fmt.Errorf("can't decode updateStory#75b3b798 to nil")
		tl_update_gen.go#L22825: 			return fmt.Errorf("unable to decode updateStory#75b3b798: field peer: %w", err)
		tl_update_gen.go#L22832: 			return fmt.Errorf("unable to decode updateStory#75b3b798: field story: %w", err)
		tl_update_gen.go#L22952: 		return fmt.Errorf("can't encode updateReadStories#f74e932b as nil")
		tl_update_gen.go#L22961: 		return fmt.Errorf("can't encode updateReadStories#f74e932b as nil")
		tl_update_gen.go#L22964: 		return fmt.Errorf("unable to encode updateReadStories#f74e932b: field peer is nil")
		tl_update_gen.go#L22967: 		return fmt.Errorf("unable to encode updateReadStories#f74e932b: field peer: %w", err)
		tl_update_gen.go#L22976: 		return fmt.Errorf("can't decode updateReadStories#f74e932b to nil")
		tl_update_gen.go#L22979: 		return fmt.Errorf("unable to decode updateReadStories#f74e932b: %w", err)
		tl_update_gen.go#L22987: 		return fmt.Errorf("can't decode updateReadStories#f74e932b to nil")
		tl_update_gen.go#L22992: 			return fmt.Errorf("unable to decode updateReadStories#f74e932b: field peer: %w", err)
		tl_update_gen.go#L22999: 			return fmt.Errorf("unable to decode updateReadStories#f74e932b: field max_id: %w", err)
		tl_update_gen.go#L23132: 		return fmt.Errorf("can't encode updateStoryID#1bf335b9 as nil")
		tl_update_gen.go#L23141: 		return fmt.Errorf("can't encode updateStoryID#1bf335b9 as nil")
		tl_update_gen.go#L23151: 		return fmt.Errorf("can't decode updateStoryID#1bf335b9 to nil")
		tl_update_gen.go#L23154: 		return fmt.Errorf("unable to decode updateStoryID#1bf335b9: %w", err)
		tl_update_gen.go#L23162: 		return fmt.Errorf("can't decode updateStoryID#1bf335b9 to nil")
		tl_update_gen.go#L23167: 			return fmt.Errorf("unable to decode updateStoryID#1bf335b9: field id: %w", err)
		tl_update_gen.go#L23174: 			return fmt.Errorf("unable to decode updateStoryID#1bf335b9: field random_id: %w", err)
		tl_update_gen.go#L23289: 		return fmt.Errorf("can't encode updateStoriesStealthMode#2c084dc1 as nil")
		tl_update_gen.go#L23298: 		return fmt.Errorf("can't encode updateStoriesStealthMode#2c084dc1 as nil")
		tl_update_gen.go#L23301: 		return fmt.Errorf("unable to encode updateStoriesStealthMode#2c084dc1: field stealth_mode: %w", err)
		tl_update_gen.go#L23309: 		return fmt.Errorf("can't decode updateStoriesStealthMode#2c084dc1 to nil")
		tl_update_gen.go#L23312: 		return fmt.Errorf("unable to decode updateStoriesStealthMode#2c084dc1: %w", err)
		tl_update_gen.go#L23320: 		return fmt.Errorf("can't decode updateStoriesStealthMode#2c084dc1 to nil")
		tl_update_gen.go#L23324: 			return fmt.Errorf("unable to decode updateStoriesStealthMode#2c084dc1: field stealth_mode: %w", err)
		tl_update_gen.go#L23449: 		return fmt.Errorf("can't encode updateSentStoryReaction#7d627683 as nil")
		tl_update_gen.go#L23458: 		return fmt.Errorf("can't encode updateSentStoryReaction#7d627683 as nil")
		tl_update_gen.go#L23461: 		return fmt.Errorf("unable to encode updateSentStoryReaction#7d627683: field peer is nil")
		tl_update_gen.go#L23464: 		return fmt.Errorf("unable to encode updateSentStoryReaction#7d627683: field peer: %w", err)
		tl_update_gen.go#L23468: 		return fmt.Errorf("unable to encode updateSentStoryReaction#7d627683: field reaction is nil")
		tl_update_gen.go#L23471: 		return fmt.Errorf("unable to encode updateSentStoryReaction#7d627683: field reaction: %w", err)
		tl_update_gen.go#L23479: 		return fmt.Errorf("can't decode updateSentStoryReaction#7d627683 to nil")
		tl_update_gen.go#L23482: 		return fmt.Errorf("unable to decode updateSentStoryReaction#7d627683: %w", err)
		tl_update_gen.go#L23490: 		return fmt.Errorf("can't decode updateSentStoryReaction#7d627683 to nil")
		tl_update_gen.go#L23495: 			return fmt.Errorf("unable to decode updateSentStoryReaction#7d627683: field peer: %w", err)
		tl_update_gen.go#L23502: 			return fmt.Errorf("unable to decode updateSentStoryReaction#7d627683: field story_id: %w", err)
		tl_update_gen.go#L23509: 			return fmt.Errorf("unable to decode updateSentStoryReaction#7d627683: field reaction: %w", err)
		tl_update_gen.go#L23654: 		return fmt.Errorf("can't encode updateBotChatBoost#904dd49c as nil")
		tl_update_gen.go#L23663: 		return fmt.Errorf("can't encode updateBotChatBoost#904dd49c as nil")
		tl_update_gen.go#L23666: 		return fmt.Errorf("unable to encode updateBotChatBoost#904dd49c: field peer is nil")
		tl_update_gen.go#L23669: 		return fmt.Errorf("unable to encode updateBotChatBoost#904dd49c: field peer: %w", err)
		tl_update_gen.go#L23672: 		return fmt.Errorf("unable to encode updateBotChatBoost#904dd49c: field boost: %w", err)
		tl_update_gen.go#L23681: 		return fmt.Errorf("can't decode updateBotChatBoost#904dd49c to nil")
		tl_update_gen.go#L23684: 		return fmt.Errorf("unable to decode updateBotChatBoost#904dd49c: %w", err)
		tl_update_gen.go#L23692: 		return fmt.Errorf("can't decode updateBotChatBoost#904dd49c to nil")
		tl_update_gen.go#L23697: 			return fmt.Errorf("unable to decode updateBotChatBoost#904dd49c: field peer: %w", err)
		tl_update_gen.go#L23703: 			return fmt.Errorf("unable to decode updateBotChatBoost#904dd49c: field boost: %w", err)
		tl_update_gen.go#L23709: 			return fmt.Errorf("unable to decode updateBotChatBoost#904dd49c: field qts: %w", err)
		tl_update_gen.go#L23848: 		return fmt.Errorf("can't encode updateChannelViewForumAsMessages#7b68920 as nil")
		tl_update_gen.go#L23857: 		return fmt.Errorf("can't encode updateChannelViewForumAsMessages#7b68920 as nil")
		tl_update_gen.go#L23867: 		return fmt.Errorf("can't decode updateChannelViewForumAsMessages#7b68920 to nil")
		tl_update_gen.go#L23870: 		return fmt.Errorf("unable to decode updateChannelViewForumAsMessages#7b68920: %w", err)
		tl_update_gen.go#L23878: 		return fmt.Errorf("can't decode updateChannelViewForumAsMessages#7b68920 to nil")
		tl_update_gen.go#L23883: 			return fmt.Errorf("unable to decode updateChannelViewForumAsMessages#7b68920: field channel_id: %w", err)
		tl_update_gen.go#L23890: 			return fmt.Errorf("unable to decode updateChannelViewForumAsMessages#7b68920: field enabled: %w", err)
		tl_update_gen.go#L24055: 		return fmt.Errorf("can't encode updatePeerWallpaper#ae3f101d as nil")
		tl_update_gen.go#L24064: 		return fmt.Errorf("can't encode updatePeerWallpaper#ae3f101d as nil")
		tl_update_gen.go#L24068: 		return fmt.Errorf("unable to encode updatePeerWallpaper#ae3f101d: field flags: %w", err)
		tl_update_gen.go#L24071: 		return fmt.Errorf("unable to encode updatePeerWallpaper#ae3f101d: field peer is nil")
		tl_update_gen.go#L24074: 		return fmt.Errorf("unable to encode updatePeerWallpaper#ae3f101d: field peer: %w", err)
		tl_update_gen.go#L24078: 			return fmt.Errorf("unable to encode updatePeerWallpaper#ae3f101d: field wallpaper is nil")
		tl_update_gen.go#L24081: 			return fmt.Errorf("unable to encode updatePeerWallpaper#ae3f101d: field wallpaper: %w", err)
		tl_update_gen.go#L24090: 		return fmt.Errorf("can't decode updatePeerWallpaper#ae3f101d to nil")
		tl_update_gen.go#L24093: 		return fmt.Errorf("unable to decode updatePeerWallpaper#ae3f101d: %w", err)
		tl_update_gen.go#L24101: 		return fmt.Errorf("can't decode updatePeerWallpaper#ae3f101d to nil")
		tl_update_gen.go#L24105: 			return fmt.Errorf("unable to decode updatePeerWallpaper#ae3f101d: field flags: %w", err)
		tl_update_gen.go#L24112: 			return fmt.Errorf("unable to decode updatePeerWallpaper#ae3f101d: field peer: %w", err)
		tl_update_gen.go#L24119: 			return fmt.Errorf("unable to decode updatePeerWallpaper#ae3f101d: field wallpaper: %w", err)
		tl_update_gen.go#L24322: 		return fmt.Errorf("can't encode updateBotMessageReaction#ac21d3ce as nil")
		tl_update_gen.go#L24331: 		return fmt.Errorf("can't encode updateBotMessageReaction#ac21d3ce as nil")
		tl_update_gen.go#L24334: 		return fmt.Errorf("unable to encode updateBotMessageReaction#ac21d3ce: field peer is nil")
		tl_update_gen.go#L24337: 		return fmt.Errorf("unable to encode updateBotMessageReaction#ac21d3ce: field peer: %w", err)
		tl_update_gen.go#L24342: 		return fmt.Errorf("unable to encode updateBotMessageReaction#ac21d3ce: field actor is nil")
		tl_update_gen.go#L24345: 		return fmt.Errorf("unable to encode updateBotMessageReaction#ac21d3ce: field actor: %w", err)
		tl_update_gen.go#L24350: 			return fmt.Errorf("unable to encode updateBotMessageReaction#ac21d3ce: field old_reactions element with index %d is nil", idx)
		tl_update_gen.go#L24353: 			return fmt.Errorf("unable to encode updateBotMessageReaction#ac21d3ce: field old_reactions element with index %d: %w", idx, err)
		tl_update_gen.go#L24359: 			return fmt.Errorf("unable to encode updateBotMessageReaction#ac21d3ce: field new_reactions element with index %d is nil", idx)
		tl_update_gen.go#L24362: 			return fmt.Errorf("unable to encode updateBotMessageReaction#ac21d3ce: field new_reactions element with index %d: %w", idx, err)
		tl_update_gen.go#L24372: 		return fmt.Errorf("can't decode updateBotMessageReaction#ac21d3ce to nil")
		tl_update_gen.go#L24375: 		return fmt.Errorf("unable to decode updateBotMessageReaction#ac21d3ce: %w", err)
		tl_update_gen.go#L24383: 		return fmt.Errorf("can't decode updateBotMessageReaction#ac21d3ce to nil")
		tl_update_gen.go#L24388: 			return fmt.Errorf("unable to decode updateBotMessageReaction#ac21d3ce: field peer: %w", err)
		tl_update_gen.go#L24395: 			return fmt.Errorf("unable to decode updateBotMessageReaction#ac21d3ce: field msg_id: %w", err)
		tl_update_gen.go#L24402: 			return fmt.Errorf("unable to decode updateBotMessageReaction#ac21d3ce: field date: %w", err)
		tl_update_gen.go#L24409: 			return fmt.Errorf("unable to decode updateBotMessageReaction#ac21d3ce: field actor: %w", err)
		tl_update_gen.go#L24416: 			return fmt.Errorf("unable to decode updateBotMessageReaction#ac21d3ce: field old_reactions: %w", err)
		tl_update_gen.go#L24425: 				return fmt.Errorf("unable to decode updateBotMessageReaction#ac21d3ce: field old_reactions: %w", err)
		tl_update_gen.go#L24433: 			return fmt.Errorf("unable to decode updateBotMessageReaction#ac21d3ce: field new_reactions: %w", err)
		tl_update_gen.go#L24442: 				return fmt.Errorf("unable to decode updateBotMessageReaction#ac21d3ce: field new_reactions: %w", err)
		tl_update_gen.go#L24450: 			return fmt.Errorf("unable to decode updateBotMessageReaction#ac21d3ce: field qts: %w", err)
		tl_update_gen.go#L24652: 		return fmt.Errorf("can't encode updateBotMessageReactions#9cb7759 as nil")
		tl_update_gen.go#L24661: 		return fmt.Errorf("can't encode updateBotMessageReactions#9cb7759 as nil")
		tl_update_gen.go#L24664: 		return fmt.Errorf("unable to encode updateBotMessageReactions#9cb7759: field peer is nil")
		tl_update_gen.go#L24667: 		return fmt.Errorf("unable to encode updateBotMessageReactions#9cb7759: field peer: %w", err)
		tl_update_gen.go#L24674: 			return fmt.Errorf("unable to encode updateBotMessageReactions#9cb7759: field reactions element with index %d: %w", idx, err)
		tl_update_gen.go#L24684: 		return fmt.Errorf("can't decode updateBotMessageReactions#9cb7759 to nil")
		tl_update_gen.go#L24687: 		return fmt.Errorf("unable to decode updateBotMessageReactions#9cb7759: %w", err)
		tl_update_gen.go#L24695: 		return fmt.Errorf("can't decode updateBotMessageReactions#9cb7759 to nil")
		tl_update_gen.go#L24700: 			return fmt.Errorf("unable to decode updateBotMessageReactions#9cb7759: field peer: %w", err)
		tl_update_gen.go#L24707: 			return fmt.Errorf("unable to decode updateBotMessageReactions#9cb7759: field msg_id: %w", err)
		tl_update_gen.go#L24714: 			return fmt.Errorf("unable to decode updateBotMessageReactions#9cb7759: field date: %w", err)
		tl_update_gen.go#L24721: 			return fmt.Errorf("unable to decode updateBotMessageReactions#9cb7759: field reactions: %w", err)
		tl_update_gen.go#L24730: 				return fmt.Errorf("unable to decode updateBotMessageReactions#9cb7759: field reactions: %w", err)
		tl_update_gen.go#L24738: 			return fmt.Errorf("unable to decode updateBotMessageReactions#9cb7759: field qts: %w", err)
		tl_update_gen.go#L24953: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L24960: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L24967: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L24974: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L24981: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L24988: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L24995: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25002: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25009: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25016: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25023: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25030: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25037: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25044: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25051: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25058: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25065: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25072: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25079: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25086: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25093: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25100: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25107: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25114: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25121: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25128: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25135: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25142: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25149: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25156: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25163: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25170: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25177: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25184: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25191: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25198: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25205: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25212: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25219: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25226: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25233: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25240: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25247: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25254: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25261: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25268: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25275: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25282: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25289: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25296: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25303: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25310: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25317: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25324: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25331: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25338: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25345: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25352: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25359: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25366: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25373: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25380: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25387: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25394: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25401: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25408: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25415: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25422: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25429: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25436: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25443: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25450: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25457: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25464: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25471: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25478: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25485: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25492: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25499: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25506: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25513: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25520: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25527: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25534: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25541: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25548: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25555: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25562: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25569: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25576: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25583: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25590: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25597: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25604: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25611: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25618: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25625: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25632: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25639: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25646: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25653: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25660: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25667: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25674: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25681: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25688: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25695: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25702: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25709: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25716: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25723: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25730: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25737: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25744: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25751: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25758: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25765: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25772: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25779: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25786: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25793: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25800: 			return nil, fmt.Errorf("unable to decode UpdateClass: %w", err)
		tl_update_gen.go#L25804: 		return nil, fmt.Errorf("unable to decode UpdateClass: %w", bin.NewUnexpectedID(id))
		tl_update_gen.go#L25816: 		return fmt.Errorf("unable to decode UpdateBox to nil")
		tl_update_gen.go#L25820: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_update_gen.go#L25829: 		return fmt.Errorf("unable to encode UpdateClass as nil")
		tl_updates_channel_difference_gen.go#L171: 		return fmt.Errorf("can't encode updates.channelDifferenceEmpty#3e11affb as nil")
		tl_updates_channel_difference_gen.go#L180: 		return fmt.Errorf("can't encode updates.channelDifferenceEmpty#3e11affb as nil")
		tl_updates_channel_difference_gen.go#L184: 		return fmt.Errorf("unable to encode updates.channelDifferenceEmpty#3e11affb: field flags: %w", err)
		tl_updates_channel_difference_gen.go#L196: 		return fmt.Errorf("can't decode updates.channelDifferenceEmpty#3e11affb to nil")
		tl_updates_channel_difference_gen.go#L199: 		return fmt.Errorf("unable to decode updates.channelDifferenceEmpty#3e11affb: %w", err)
		tl_updates_channel_difference_gen.go#L207: 		return fmt.Errorf("can't decode updates.channelDifferenceEmpty#3e11affb to nil")
		tl_updates_channel_difference_gen.go#L211: 			return fmt.Errorf("unable to decode updates.channelDifferenceEmpty#3e11affb: field flags: %w", err)
		tl_updates_channel_difference_gen.go#L218: 			return fmt.Errorf("unable to decode updates.channelDifferenceEmpty#3e11affb: field pts: %w", err)
		tl_updates_channel_difference_gen.go#L225: 			return fmt.Errorf("unable to decode updates.channelDifferenceEmpty#3e11affb: field timeout: %w", err)
		tl_updates_channel_difference_gen.go#L452: 		return fmt.Errorf("can't encode updates.channelDifferenceTooLong#a4bcc6fe as nil")
		tl_updates_channel_difference_gen.go#L461: 		return fmt.Errorf("can't encode updates.channelDifferenceTooLong#a4bcc6fe as nil")
		tl_updates_channel_difference_gen.go#L465: 		return fmt.Errorf("unable to encode updates.channelDifferenceTooLong#a4bcc6fe: field flags: %w", err)
		tl_updates_channel_difference_gen.go#L471: 		return fmt.Errorf("unable to encode updates.channelDifferenceTooLong#a4bcc6fe: field dialog is nil")
		tl_updates_channel_difference_gen.go#L474: 		return fmt.Errorf("unable to encode updates.channelDifferenceTooLong#a4bcc6fe: field dialog: %w", err)
		tl_updates_channel_difference_gen.go#L479: 			return fmt.Errorf("unable to encode updates.channelDifferenceTooLong#a4bcc6fe: field messages element with index %d is nil", idx)
		tl_updates_channel_difference_gen.go#L482: 			return fmt.Errorf("unable to encode updates.channelDifferenceTooLong#a4bcc6fe: field messages element with index %d: %w", idx, err)
		tl_updates_channel_difference_gen.go#L488: 			return fmt.Errorf("unable to encode updates.channelDifferenceTooLong#a4bcc6fe: field chats element with index %d is nil", idx)
		tl_updates_channel_difference_gen.go#L491: 			return fmt.Errorf("unable to encode updates.channelDifferenceTooLong#a4bcc6fe: field chats element with index %d: %w", idx, err)
		tl_updates_channel_difference_gen.go#L497: 			return fmt.Errorf("unable to encode updates.channelDifferenceTooLong#a4bcc6fe: field users element with index %d is nil", idx)
		tl_updates_channel_difference_gen.go#L500: 			return fmt.Errorf("unable to encode updates.channelDifferenceTooLong#a4bcc6fe: field users element with index %d: %w", idx, err)
		tl_updates_channel_difference_gen.go#L509: 		return fmt.Errorf("can't decode updates.channelDifferenceTooLong#a4bcc6fe to nil")
		tl_updates_channel_difference_gen.go#L512: 		return fmt.Errorf("unable to decode updates.channelDifferenceTooLong#a4bcc6fe: %w", err)
		tl_updates_channel_difference_gen.go#L520: 		return fmt.Errorf("can't decode updates.channelDifferenceTooLong#a4bcc6fe to nil")
		tl_updates_channel_difference_gen.go#L524: 			return fmt.Errorf("unable to decode updates.channelDifferenceTooLong#a4bcc6fe: field flags: %w", err)
		tl_updates_channel_difference_gen.go#L531: 			return fmt.Errorf("unable to decode updates.channelDifferenceTooLong#a4bcc6fe: field timeout: %w", err)
		tl_updates_channel_difference_gen.go#L538: 			return fmt.Errorf("unable to decode updates.channelDifferenceTooLong#a4bcc6fe: field dialog: %w", err)
		tl_updates_channel_difference_gen.go#L545: 			return fmt.Errorf("unable to decode updates.channelDifferenceTooLong#a4bcc6fe: field messages: %w", err)
		tl_updates_channel_difference_gen.go#L554: 				return fmt.Errorf("unable to decode updates.channelDifferenceTooLong#a4bcc6fe: field messages: %w", err)
		tl_updates_channel_difference_gen.go#L562: 			return fmt.Errorf("unable to decode updates.channelDifferenceTooLong#a4bcc6fe: field chats: %w", err)
		tl_updates_channel_difference_gen.go#L571: 				return fmt.Errorf("unable to decode updates.channelDifferenceTooLong#a4bcc6fe: field chats: %w", err)
		tl_updates_channel_difference_gen.go#L579: 			return fmt.Errorf("unable to decode updates.channelDifferenceTooLong#a4bcc6fe: field users: %w", err)
		tl_updates_channel_difference_gen.go#L588: 				return fmt.Errorf("unable to decode updates.channelDifferenceTooLong#a4bcc6fe: field users: %w", err)
		tl_updates_channel_difference_gen.go#L862: 		return fmt.Errorf("can't encode updates.channelDifference#2064674e as nil")
		tl_updates_channel_difference_gen.go#L871: 		return fmt.Errorf("can't encode updates.channelDifference#2064674e as nil")
		tl_updates_channel_difference_gen.go#L875: 		return fmt.Errorf("unable to encode updates.channelDifference#2064674e: field flags: %w", err)
		tl_updates_channel_difference_gen.go#L884: 			return fmt.Errorf("unable to encode updates.channelDifference#2064674e: field new_messages element with index %d is nil", idx)
		tl_updates_channel_difference_gen.go#L887: 			return fmt.Errorf("unable to encode updates.channelDifference#2064674e: field new_messages element with index %d: %w", idx, err)
		tl_updates_channel_difference_gen.go#L893: 			return fmt.Errorf("unable to encode updates.channelDifference#2064674e: field other_updates element with index %d is nil", idx)
		tl_updates_channel_difference_gen.go#L896: 			return fmt.Errorf("unable to encode updates.channelDifference#2064674e: field other_updates element with index %d: %w", idx, err)
		tl_updates_channel_difference_gen.go#L902: 			return fmt.Errorf("unable to encode updates.channelDifference#2064674e: field chats element with index %d is nil", idx)
		tl_updates_channel_difference_gen.go#L905: 			return fmt.Errorf("unable to encode updates.channelDifference#2064674e: field chats element with index %d: %w", idx, err)
		tl_updates_channel_difference_gen.go#L911: 			return fmt.Errorf("unable to encode updates.channelDifference#2064674e: field users element with index %d is nil", idx)
		tl_updates_channel_difference_gen.go#L914: 			return fmt.Errorf("unable to encode updates.channelDifference#2064674e: field users element with index %d: %w", idx, err)
		tl_updates_channel_difference_gen.go#L923: 		return fmt.Errorf("can't decode updates.channelDifference#2064674e to nil")
		tl_updates_channel_difference_gen.go#L926: 		return fmt.Errorf("unable to decode updates.channelDifference#2064674e: %w", err)
		tl_updates_channel_difference_gen.go#L934: 		return fmt.Errorf("can't decode updates.channelDifference#2064674e to nil")
		tl_updates_channel_difference_gen.go#L938: 			return fmt.Errorf("unable to decode updates.channelDifference#2064674e: field flags: %w", err)
		tl_updates_channel_difference_gen.go#L945: 			return fmt.Errorf("unable to decode updates.channelDifference#2064674e: field pts: %w", err)
		tl_updates_channel_difference_gen.go#L952: 			return fmt.Errorf("unable to decode updates.channelDifference#2064674e: field timeout: %w", err)
		tl_updates_channel_difference_gen.go#L959: 			return fmt.Errorf("unable to decode updates.channelDifference#2064674e: field new_messages: %w", err)
		tl_updates_channel_difference_gen.go#L968: 				return fmt.Errorf("unable to decode updates.channelDifference#2064674e: field new_messages: %w", err)
		tl_updates_channel_difference_gen.go#L976: 			return fmt.Errorf("unable to decode updates.channelDifference#2064674e: field other_updates: %w", err)
		tl_updates_channel_difference_gen.go#L985: 				return fmt.Errorf("unable to decode updates.channelDifference#2064674e: field other_updates: %w", err)
		tl_updates_channel_difference_gen.go#L993: 			return fmt.Errorf("unable to decode updates.channelDifference#2064674e: field chats: %w", err)
		tl_updates_channel_difference_gen.go#L1002: 				return fmt.Errorf("unable to decode updates.channelDifference#2064674e: field chats: %w", err)
		tl_updates_channel_difference_gen.go#L1010: 			return fmt.Errorf("unable to decode updates.channelDifference#2064674e: field users: %w", err)
		tl_updates_channel_difference_gen.go#L1019: 				return fmt.Errorf("unable to decode updates.channelDifference#2064674e: field users: %w", err)
		tl_updates_channel_difference_gen.go#L1234: 			return nil, fmt.Errorf("unable to decode UpdatesChannelDifferenceClass: %w", err)
		tl_updates_channel_difference_gen.go#L1241: 			return nil, fmt.Errorf("unable to decode UpdatesChannelDifferenceClass: %w", err)
		tl_updates_channel_difference_gen.go#L1248: 			return nil, fmt.Errorf("unable to decode UpdatesChannelDifferenceClass: %w", err)
		tl_updates_channel_difference_gen.go#L1252: 		return nil, fmt.Errorf("unable to decode UpdatesChannelDifferenceClass: %w", bin.NewUnexpectedID(id))
		tl_updates_channel_difference_gen.go#L1264: 		return fmt.Errorf("unable to decode UpdatesChannelDifferenceBox to nil")
		tl_updates_channel_difference_gen.go#L1268: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_updates_channel_difference_gen.go#L1277: 		return fmt.Errorf("unable to encode UpdatesChannelDifferenceClass as nil")
		tl_updates_difference_gen.go#L131: 		return fmt.Errorf("can't encode updates.differenceEmpty#5d75a138 as nil")
		tl_updates_difference_gen.go#L140: 		return fmt.Errorf("can't encode updates.differenceEmpty#5d75a138 as nil")
		tl_updates_difference_gen.go#L150: 		return fmt.Errorf("can't decode updates.differenceEmpty#5d75a138 to nil")
		tl_updates_difference_gen.go#L153: 		return fmt.Errorf("unable to decode updates.differenceEmpty#5d75a138: %w", err)
		tl_updates_difference_gen.go#L161: 		return fmt.Errorf("can't decode updates.differenceEmpty#5d75a138 to nil")
		tl_updates_difference_gen.go#L166: 			return fmt.Errorf("unable to decode updates.differenceEmpty#5d75a138: field date: %w", err)
		tl_updates_difference_gen.go#L173: 			return fmt.Errorf("unable to decode updates.differenceEmpty#5d75a138: field seq: %w", err)
		tl_updates_difference_gen.go#L337: 		return fmt.Errorf("can't encode updates.difference#f49ca0 as nil")
		tl_updates_difference_gen.go#L346: 		return fmt.Errorf("can't encode updates.difference#f49ca0 as nil")
		tl_updates_difference_gen.go#L351: 			return fmt.Errorf("unable to encode updates.difference#f49ca0: field new_messages element with index %d is nil", idx)
		tl_updates_difference_gen.go#L354: 			return fmt.Errorf("unable to encode updates.difference#f49ca0: field new_messages element with index %d: %w", idx, err)
		tl_updates_difference_gen.go#L360: 			return fmt.Errorf("unable to encode updates.difference#f49ca0: field new_encrypted_messages element with index %d is nil", idx)
		tl_updates_difference_gen.go#L363: 			return fmt.Errorf("unable to encode updates.difference#f49ca0: field new_encrypted_messages element with index %d: %w", idx, err)
		tl_updates_difference_gen.go#L369: 			return fmt.Errorf("unable to encode updates.difference#f49ca0: field other_updates element with index %d is nil", idx)
		tl_updates_difference_gen.go#L372: 			return fmt.Errorf("unable to encode updates.difference#f49ca0: field other_updates element with index %d: %w", idx, err)
		tl_updates_difference_gen.go#L378: 			return fmt.Errorf("unable to encode updates.difference#f49ca0: field chats element with index %d is nil", idx)
		tl_updates_difference_gen.go#L381: 			return fmt.Errorf("unable to encode updates.difference#f49ca0: field chats element with index %d: %w", idx, err)
		tl_updates_difference_gen.go#L387: 			return fmt.Errorf("unable to encode updates.difference#f49ca0: field users element with index %d is nil", idx)
		tl_updates_difference_gen.go#L390: 			return fmt.Errorf("unable to encode updates.difference#f49ca0: field users element with index %d: %w", idx, err)
		tl_updates_difference_gen.go#L394: 		return fmt.Errorf("unable to encode updates.difference#f49ca0: field state: %w", err)
		tl_updates_difference_gen.go#L402: 		return fmt.Errorf("can't decode updates.difference#f49ca0 to nil")
		tl_updates_difference_gen.go#L405: 		return fmt.Errorf("unable to decode updates.difference#f49ca0: %w", err)
		tl_updates_difference_gen.go#L413: 		return fmt.Errorf("can't decode updates.difference#f49ca0 to nil")
		tl_updates_difference_gen.go#L418: 			return fmt.Errorf("unable to decode updates.difference#f49ca0: field new_messages: %w", err)
		tl_updates_difference_gen.go#L427: 				return fmt.Errorf("unable to decode updates.difference#f49ca0: field new_messages: %w", err)
		tl_updates_difference_gen.go#L435: 			return fmt.Errorf("unable to decode updates.difference#f49ca0: field new_encrypted_messages: %w", err)
		tl_updates_difference_gen.go#L444: 				return fmt.Errorf("unable to decode updates.difference#f49ca0: field new_encrypted_messages: %w", err)
		tl_updates_difference_gen.go#L452: 			return fmt.Errorf("unable to decode updates.difference#f49ca0: field other_updates: %w", err)
		tl_updates_difference_gen.go#L461: 				return fmt.Errorf("unable to decode updates.difference#f49ca0: field other_updates: %w", err)
		tl_updates_difference_gen.go#L469: 			return fmt.Errorf("unable to decode updates.difference#f49ca0: field chats: %w", err)
		tl_updates_difference_gen.go#L478: 				return fmt.Errorf("unable to decode updates.difference#f49ca0: field chats: %w", err)
		tl_updates_difference_gen.go#L486: 			return fmt.Errorf("unable to decode updates.difference#f49ca0: field users: %w", err)
		tl_updates_difference_gen.go#L495: 				return fmt.Errorf("unable to decode updates.difference#f49ca0: field users: %w", err)
		tl_updates_difference_gen.go#L502: 			return fmt.Errorf("unable to decode updates.difference#f49ca0: field state: %w", err)
		tl_updates_difference_gen.go#L725: 		return fmt.Errorf("can't encode updates.differenceSlice#a8fb1981 as nil")
		tl_updates_difference_gen.go#L734: 		return fmt.Errorf("can't encode updates.differenceSlice#a8fb1981 as nil")
		tl_updates_difference_gen.go#L739: 			return fmt.Errorf("unable to encode updates.differenceSlice#a8fb1981: field new_messages element with index %d is nil", idx)
		tl_updates_difference_gen.go#L742: 			return fmt.Errorf("unable to encode updates.differenceSlice#a8fb1981: field new_messages element with index %d: %w", idx, err)
		tl_updates_difference_gen.go#L748: 			return fmt.Errorf("unable to encode updates.differenceSlice#a8fb1981: field new_encrypted_messages element with index %d is nil", idx)
		tl_updates_difference_gen.go#L751: 			return fmt.Errorf("unable to encode updates.differenceSlice#a8fb1981: field new_encrypted_messages element with index %d: %w", idx, err)
		tl_updates_difference_gen.go#L757: 			return fmt.Errorf("unable to encode updates.differenceSlice#a8fb1981: field other_updates element with index %d is nil", idx)
		tl_updates_difference_gen.go#L760: 			return fmt.Errorf("unable to encode updates.differenceSlice#a8fb1981: field other_updates element with index %d: %w", idx, err)
		tl_updates_difference_gen.go#L766: 			return fmt.Errorf("unable to encode updates.differenceSlice#a8fb1981: field chats element with index %d is nil", idx)
		tl_updates_difference_gen.go#L769: 			return fmt.Errorf("unable to encode updates.differenceSlice#a8fb1981: field chats element with index %d: %w", idx, err)
		tl_updates_difference_gen.go#L775: 			return fmt.Errorf("unable to encode updates.differenceSlice#a8fb1981: field users element with index %d is nil", idx)
		tl_updates_difference_gen.go#L778: 			return fmt.Errorf("unable to encode updates.differenceSlice#a8fb1981: field users element with index %d: %w", idx, err)
		tl_updates_difference_gen.go#L782: 		return fmt.Errorf("unable to encode updates.differenceSlice#a8fb1981: field intermediate_state: %w", err)
		tl_updates_difference_gen.go#L790: 		return fmt.Errorf("can't decode updates.differenceSlice#a8fb1981 to nil")
		tl_updates_difference_gen.go#L793: 		return fmt.Errorf("unable to decode updates.differenceSlice#a8fb1981: %w", err)
		tl_updates_difference_gen.go#L801: 		return fmt.Errorf("can't decode updates.differenceSlice#a8fb1981 to nil")
		tl_updates_difference_gen.go#L806: 			return fmt.Errorf("unable to decode updates.differenceSlice#a8fb1981: field new_messages: %w", err)
		tl_updates_difference_gen.go#L815: 				return fmt.Errorf("unable to decode updates.differenceSlice#a8fb1981: field new_messages: %w", err)
		tl_updates_difference_gen.go#L823: 			return fmt.Errorf("unable to decode updates.differenceSlice#a8fb1981: field new_encrypted_messages: %w", err)
		tl_updates_difference_gen.go#L832: 				return fmt.Errorf("unable to decode updates.differenceSlice#a8fb1981: field new_encrypted_messages: %w", err)
		tl_updates_difference_gen.go#L840: 			return fmt.Errorf("unable to decode updates.differenceSlice#a8fb1981: field other_updates: %w", err)
		tl_updates_difference_gen.go#L849: 				return fmt.Errorf("unable to decode updates.differenceSlice#a8fb1981: field other_updates: %w", err)
		tl_updates_difference_gen.go#L857: 			return fmt.Errorf("unable to decode updates.differenceSlice#a8fb1981: field chats: %w", err)
		tl_updates_difference_gen.go#L866: 				return fmt.Errorf("unable to decode updates.differenceSlice#a8fb1981: field chats: %w", err)
		tl_updates_difference_gen.go#L874: 			return fmt.Errorf("unable to decode updates.differenceSlice#a8fb1981: field users: %w", err)
		tl_updates_difference_gen.go#L883: 				return fmt.Errorf("unable to decode updates.differenceSlice#a8fb1981: field users: %w", err)
		tl_updates_difference_gen.go#L890: 			return fmt.Errorf("unable to decode updates.differenceSlice#a8fb1981: field intermediate_state: %w", err)
		tl_updates_difference_gen.go#L1058: 		return fmt.Errorf("can't encode updates.differenceTooLong#4afe8f6d as nil")
		tl_updates_difference_gen.go#L1067: 		return fmt.Errorf("can't encode updates.differenceTooLong#4afe8f6d as nil")
		tl_updates_difference_gen.go#L1076: 		return fmt.Errorf("can't decode updates.differenceTooLong#4afe8f6d to nil")
		tl_updates_difference_gen.go#L1079: 		return fmt.Errorf("unable to decode updates.differenceTooLong#4afe8f6d: %w", err)
		tl_updates_difference_gen.go#L1087: 		return fmt.Errorf("can't decode updates.differenceTooLong#4afe8f6d to nil")
		tl_updates_difference_gen.go#L1092: 			return fmt.Errorf("unable to decode updates.differenceTooLong#4afe8f6d: field pts: %w", err)
		tl_updates_difference_gen.go#L1157: 			return nil, fmt.Errorf("unable to decode UpdatesDifferenceClass: %w", err)
		tl_updates_difference_gen.go#L1164: 			return nil, fmt.Errorf("unable to decode UpdatesDifferenceClass: %w", err)
		tl_updates_difference_gen.go#L1171: 			return nil, fmt.Errorf("unable to decode UpdatesDifferenceClass: %w", err)
		tl_updates_difference_gen.go#L1178: 			return nil, fmt.Errorf("unable to decode UpdatesDifferenceClass: %w", err)
		tl_updates_difference_gen.go#L1182: 		return nil, fmt.Errorf("unable to decode UpdatesDifferenceClass: %w", bin.NewUnexpectedID(id))
		tl_updates_difference_gen.go#L1194: 		return fmt.Errorf("unable to decode UpdatesDifferenceBox to nil")
		tl_updates_difference_gen.go#L1198: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_updates_difference_gen.go#L1207: 		return fmt.Errorf("unable to encode UpdatesDifferenceClass as nil")
		tl_updates_gen.go#L106: 		return fmt.Errorf("can't encode updatesTooLong#e317af7e as nil")
		tl_updates_gen.go#L115: 		return fmt.Errorf("can't encode updatesTooLong#e317af7e as nil")
		tl_updates_gen.go#L123: 		return fmt.Errorf("can't decode updatesTooLong#e317af7e to nil")
		tl_updates_gen.go#L126: 		return fmt.Errorf("unable to decode updatesTooLong#e317af7e: %w", err)
		tl_updates_gen.go#L134: 		return fmt.Errorf("can't decode updatesTooLong#e317af7e to nil")
		tl_updates_gen.go#L468: 		return fmt.Errorf("can't encode updateShortMessage#313bc7f8 as nil")
		tl_updates_gen.go#L477: 		return fmt.Errorf("can't encode updateShortMessage#313bc7f8 as nil")
		tl_updates_gen.go#L481: 		return fmt.Errorf("unable to encode updateShortMessage#313bc7f8: field flags: %w", err)
		tl_updates_gen.go#L491: 			return fmt.Errorf("unable to encode updateShortMessage#313bc7f8: field fwd_from: %w", err)
		tl_updates_gen.go#L499: 			return fmt.Errorf("unable to encode updateShortMessage#313bc7f8: field reply_to is nil")
		tl_updates_gen.go#L502: 			return fmt.Errorf("unable to encode updateShortMessage#313bc7f8: field reply_to: %w", err)
		tl_updates_gen.go#L509: 				return fmt.Errorf("unable to encode updateShortMessage#313bc7f8: field entities element with index %d is nil", idx)
		tl_updates_gen.go#L512: 				return fmt.Errorf("unable to encode updateShortMessage#313bc7f8: field entities element with index %d: %w", idx, err)
		tl_updates_gen.go#L525: 		return fmt.Errorf("can't decode updateShortMessage#313bc7f8 to nil")
		tl_updates_gen.go#L528: 		return fmt.Errorf("unable to decode updateShortMessage#313bc7f8: %w", err)
		tl_updates_gen.go#L536: 		return fmt.Errorf("can't decode updateShortMessage#313bc7f8 to nil")
		tl_updates_gen.go#L540: 			return fmt.Errorf("unable to decode updateShortMessage#313bc7f8: field flags: %w", err)
		tl_updates_gen.go#L550: 			return fmt.Errorf("unable to decode updateShortMessage#313bc7f8: field id: %w", err)
		tl_updates_gen.go#L557: 			return fmt.Errorf("unable to decode updateShortMessage#313bc7f8: field user_id: %w", err)
		tl_updates_gen.go#L564: 			return fmt.Errorf("unable to decode updateShortMessage#313bc7f8: field message: %w", err)
		tl_updates_gen.go#L571: 			return fmt.Errorf("unable to decode updateShortMessage#313bc7f8: field pts: %w", err)
		tl_updates_gen.go#L578: 			return fmt.Errorf("unable to decode updateShortMessage#313bc7f8: field pts_count: %w", err)
		tl_updates_gen.go#L585: 			return fmt.Errorf("unable to decode updateShortMessage#313bc7f8: field date: %w", err)
		tl_updates_gen.go#L591: 			return fmt.Errorf("unable to decode updateShortMessage#313bc7f8: field fwd_from: %w", err)
		tl_updates_gen.go#L597: 			return fmt.Errorf("unable to decode updateShortMessage#313bc7f8: field via_bot_id: %w", err)
		tl_updates_gen.go#L604: 			return fmt.Errorf("unable to decode updateShortMessage#313bc7f8: field reply_to: %w", err)
		tl_updates_gen.go#L611: 			return fmt.Errorf("unable to decode updateShortMessage#313bc7f8: field entities: %w", err)
		tl_updates_gen.go#L620: 				return fmt.Errorf("unable to decode updateShortMessage#313bc7f8: field entities: %w", err)
		tl_updates_gen.go#L628: 			return fmt.Errorf("unable to decode updateShortMessage#313bc7f8: field ttl_period: %w", err)
		tl_updates_gen.go#L1195: 		return fmt.Errorf("can't encode updateShortChatMessage#4d6deea5 as nil")
		tl_updates_gen.go#L1204: 		return fmt.Errorf("can't encode updateShortChatMessage#4d6deea5 as nil")
		tl_updates_gen.go#L1208: 		return fmt.Errorf("unable to encode updateShortChatMessage#4d6deea5: field flags: %w", err)
		tl_updates_gen.go#L1219: 			return fmt.Errorf("unable to encode updateShortChatMessage#4d6deea5: field fwd_from: %w", err)
		tl_updates_gen.go#L1227: 			return fmt.Errorf("unable to encode updateShortChatMessage#4d6deea5: field reply_to is nil")
		tl_updates_gen.go#L1230: 			return fmt.Errorf("unable to encode updateShortChatMessage#4d6deea5: field reply_to: %w", err)
		tl_updates_gen.go#L1237: 				return fmt.Errorf("unable to encode updateShortChatMessage#4d6deea5: field entities element with index %d is nil", idx)
		tl_updates_gen.go#L1240: 				return fmt.Errorf("unable to encode updateShortChatMessage#4d6deea5: field entities element with index %d: %w", idx, err)
		tl_updates_gen.go#L1253: 		return fmt.Errorf("can't decode updateShortChatMessage#4d6deea5 to nil")
		tl_updates_gen.go#L1256: 		return fmt.Errorf("unable to decode updateShortChatMessage#4d6deea5: %w", err)
		tl_updates_gen.go#L1264: 		return fmt.Errorf("can't decode updateShortChatMessage#4d6deea5 to nil")
		tl_updates_gen.go#L1268: 			return fmt.Errorf("unable to decode updateShortChatMessage#4d6deea5: field flags: %w", err)
		tl_updates_gen.go#L1278: 			return fmt.Errorf("unable to decode updateShortChatMessage#4d6deea5: field id: %w", err)
		tl_updates_gen.go#L1285: 			return fmt.Errorf("unable to decode updateShortChatMessage#4d6deea5: field from_id: %w", err)
		tl_updates_gen.go#L1292: 			return fmt.Errorf("unable to decode updateShortChatMessage#4d6deea5: field chat_id: %w", err)
		tl_updates_gen.go#L1299: 			return fmt.Errorf("unable to decode updateShortChatMessage#4d6deea5: field message: %w", err)
		tl_updates_gen.go#L1306: 			return fmt.Errorf("unable to decode updateShortChatMessage#4d6deea5: field pts: %w", err)
		tl_updates_gen.go#L1313: 			return fmt.Errorf("unable to decode updateShortChatMessage#4d6deea5: field pts_count: %w", err)
		tl_updates_gen.go#L1320: 			return fmt.Errorf("unable to decode updateShortChatMessage#4d6deea5: field date: %w", err)
		tl_updates_gen.go#L1326: 			return fmt.Errorf("unable to decode updateShortChatMessage#4d6deea5: field fwd_from: %w", err)
		tl_updates_gen.go#L1332: 			return fmt.Errorf("unable to decode updateShortChatMessage#4d6deea5: field via_bot_id: %w", err)
		tl_updates_gen.go#L1339: 			return fmt.Errorf("unable to decode updateShortChatMessage#4d6deea5: field reply_to: %w", err)
		tl_updates_gen.go#L1346: 			return fmt.Errorf("unable to decode updateShortChatMessage#4d6deea5: field entities: %w", err)
		tl_updates_gen.go#L1355: 				return fmt.Errorf("unable to decode updateShortChatMessage#4d6deea5: field entities: %w", err)
		tl_updates_gen.go#L1363: 			return fmt.Errorf("unable to decode updateShortChatMessage#4d6deea5: field ttl_period: %w", err)
		tl_updates_gen.go#L1697: 		return fmt.Errorf("can't encode updateShort#78d4dec1 as nil")
		tl_updates_gen.go#L1706: 		return fmt.Errorf("can't encode updateShort#78d4dec1 as nil")
		tl_updates_gen.go#L1709: 		return fmt.Errorf("unable to encode updateShort#78d4dec1: field update is nil")
		tl_updates_gen.go#L1712: 		return fmt.Errorf("unable to encode updateShort#78d4dec1: field update: %w", err)
		tl_updates_gen.go#L1721: 		return fmt.Errorf("can't decode updateShort#78d4dec1 to nil")
		tl_updates_gen.go#L1724: 		return fmt.Errorf("unable to decode updateShort#78d4dec1: %w", err)
		tl_updates_gen.go#L1732: 		return fmt.Errorf("can't decode updateShort#78d4dec1 to nil")
		tl_updates_gen.go#L1737: 			return fmt.Errorf("unable to decode updateShort#78d4dec1: field update: %w", err)
		tl_updates_gen.go#L1744: 			return fmt.Errorf("unable to decode updateShort#78d4dec1: field date: %w", err)
		tl_updates_gen.go#L1908: 		return fmt.Errorf("can't encode updatesCombined#725b04c3 as nil")
		tl_updates_gen.go#L1917: 		return fmt.Errorf("can't encode updatesCombined#725b04c3 as nil")
		tl_updates_gen.go#L1922: 			return fmt.Errorf("unable to encode updatesCombined#725b04c3: field updates element with index %d is nil", idx)
		tl_updates_gen.go#L1925: 			return fmt.Errorf("unable to encode updatesCombined#725b04c3: field updates element with index %d: %w", idx, err)
		tl_updates_gen.go#L1931: 			return fmt.Errorf("unable to encode updatesCombined#725b04c3: field users element with index %d is nil", idx)
		tl_updates_gen.go#L1934: 			return fmt.Errorf("unable to encode updatesCombined#725b04c3: field users element with index %d: %w", idx, err)
		tl_updates_gen.go#L1940: 			return fmt.Errorf("unable to encode updatesCombined#725b04c3: field chats element with index %d is nil", idx)
		tl_updates_gen.go#L1943: 			return fmt.Errorf("unable to encode updatesCombined#725b04c3: field chats element with index %d: %w", idx, err)
		tl_updates_gen.go#L1955: 		return fmt.Errorf("can't decode updatesCombined#725b04c3 to nil")
		tl_updates_gen.go#L1958: 		return fmt.Errorf("unable to decode updatesCombined#725b04c3: %w", err)
		tl_updates_gen.go#L1966: 		return fmt.Errorf("can't decode updatesCombined#725b04c3 to nil")
		tl_updates_gen.go#L1971: 			return fmt.Errorf("unable to decode updatesCombined#725b04c3: field updates: %w", err)
		tl_updates_gen.go#L1980: 				return fmt.Errorf("unable to decode updatesCombined#725b04c3: field updates: %w", err)
		tl_updates_gen.go#L1988: 			return fmt.Errorf("unable to decode updatesCombined#725b04c3: field users: %w", err)
		tl_updates_gen.go#L1997: 				return fmt.Errorf("unable to decode updatesCombined#725b04c3: field users: %w", err)
		tl_updates_gen.go#L2005: 			return fmt.Errorf("unable to decode updatesCombined#725b04c3: field chats: %w", err)
		tl_updates_gen.go#L2014: 				return fmt.Errorf("unable to decode updatesCombined#725b04c3: field chats: %w", err)
		tl_updates_gen.go#L2022: 			return fmt.Errorf("unable to decode updatesCombined#725b04c3: field date: %w", err)
		tl_updates_gen.go#L2029: 			return fmt.Errorf("unable to decode updatesCombined#725b04c3: field seq_start: %w", err)
		tl_updates_gen.go#L2036: 			return fmt.Errorf("unable to decode updatesCombined#725b04c3: field seq: %w", err)
		tl_updates_gen.go#L2235: 		return fmt.Errorf("can't encode updates#74ae4240 as nil")
		tl_updates_gen.go#L2244: 		return fmt.Errorf("can't encode updates#74ae4240 as nil")
		tl_updates_gen.go#L2249: 			return fmt.Errorf("unable to encode updates#74ae4240: field updates element with index %d is nil", idx)
		tl_updates_gen.go#L2252: 			return fmt.Errorf("unable to encode updates#74ae4240: field updates element with index %d: %w", idx, err)
		tl_updates_gen.go#L2258: 			return fmt.Errorf("unable to encode updates#74ae4240: field users element with index %d is nil", idx)
		tl_updates_gen.go#L2261: 			return fmt.Errorf("unable to encode updates#74ae4240: field users element with index %d: %w", idx, err)
		tl_updates_gen.go#L2267: 			return fmt.Errorf("unable to encode updates#74ae4240: field chats element with index %d is nil", idx)
		tl_updates_gen.go#L2270: 			return fmt.Errorf("unable to encode updates#74ae4240: field chats element with index %d: %w", idx, err)
		tl_updates_gen.go#L2281: 		return fmt.Errorf("can't decode updates#74ae4240 to nil")
		tl_updates_gen.go#L2284: 		return fmt.Errorf("unable to decode updates#74ae4240: %w", err)
		tl_updates_gen.go#L2292: 		return fmt.Errorf("can't decode updates#74ae4240 to nil")
		tl_updates_gen.go#L2297: 			return fmt.Errorf("unable to decode updates#74ae4240: field updates: %w", err)
		tl_updates_gen.go#L2306: 				return fmt.Errorf("unable to decode updates#74ae4240: field updates: %w", err)
		tl_updates_gen.go#L2314: 			return fmt.Errorf("unable to decode updates#74ae4240: field users: %w", err)
		tl_updates_gen.go#L2323: 				return fmt.Errorf("unable to decode updates#74ae4240: field users: %w", err)
		tl_updates_gen.go#L2331: 			return fmt.Errorf("unable to decode updates#74ae4240: field chats: %w", err)
		tl_updates_gen.go#L2340: 				return fmt.Errorf("unable to decode updates#74ae4240: field chats: %w", err)
		tl_updates_gen.go#L2348: 			return fmt.Errorf("unable to decode updates#74ae4240: field date: %w", err)
		tl_updates_gen.go#L2355: 			return fmt.Errorf("unable to decode updates#74ae4240: field seq: %w", err)
		tl_updates_gen.go#L2637: 		return fmt.Errorf("can't encode updateShortSentMessage#9015e101 as nil")
		tl_updates_gen.go#L2646: 		return fmt.Errorf("can't encode updateShortSentMessage#9015e101 as nil")
		tl_updates_gen.go#L2650: 		return fmt.Errorf("unable to encode updateShortSentMessage#9015e101: field flags: %w", err)
		tl_updates_gen.go#L2658: 			return fmt.Errorf("unable to encode updateShortSentMessage#9015e101: field media is nil")
		tl_updates_gen.go#L2661: 			return fmt.Errorf("unable to encode updateShortSentMessage#9015e101: field media: %w", err)
		tl_updates_gen.go#L2668: 				return fmt.Errorf("unable to encode updateShortSentMessage#9015e101: field entities element with index %d is nil", idx)
		tl_updates_gen.go#L2671: 				return fmt.Errorf("unable to encode updateShortSentMessage#9015e101: field entities element with index %d: %w", idx, err)
		tl_updates_gen.go#L2684: 		return fmt.Errorf("can't decode updateShortSentMessage#9015e101 to nil")
		tl_updates_gen.go#L2687: 		return fmt.Errorf("unable to decode updateShortSentMessage#9015e101: %w", err)
		tl_updates_gen.go#L2695: 		return fmt.Errorf("can't decode updateShortSentMessage#9015e101 to nil")
		tl_updates_gen.go#L2699: 			return fmt.Errorf("unable to decode updateShortSentMessage#9015e101: field flags: %w", err)
		tl_updates_gen.go#L2706: 			return fmt.Errorf("unable to decode updateShortSentMessage#9015e101: field id: %w", err)
		tl_updates_gen.go#L2713: 			return fmt.Errorf("unable to decode updateShortSentMessage#9015e101: field pts: %w", err)
		tl_updates_gen.go#L2720: 			return fmt.Errorf("unable to decode updateShortSentMessage#9015e101: field pts_count: %w", err)
		tl_updates_gen.go#L2727: 			return fmt.Errorf("unable to decode updateShortSentMessage#9015e101: field date: %w", err)
		tl_updates_gen.go#L2734: 			return fmt.Errorf("unable to decode updateShortSentMessage#9015e101: field media: %w", err)
		tl_updates_gen.go#L2741: 			return fmt.Errorf("unable to decode updateShortSentMessage#9015e101: field entities: %w", err)
		tl_updates_gen.go#L2750: 				return fmt.Errorf("unable to decode updateShortSentMessage#9015e101: field entities: %w", err)
		tl_updates_gen.go#L2758: 			return fmt.Errorf("unable to decode updateShortSentMessage#9015e101: field ttl_period: %w", err)
		tl_updates_gen.go#L2931: 			return nil, fmt.Errorf("unable to decode UpdatesClass: %w", err)
		tl_updates_gen.go#L2938: 			return nil, fmt.Errorf("unable to decode UpdatesClass: %w", err)
		tl_updates_gen.go#L2945: 			return nil, fmt.Errorf("unable to decode UpdatesClass: %w", err)
		tl_updates_gen.go#L2952: 			return nil, fmt.Errorf("unable to decode UpdatesClass: %w", err)
		tl_updates_gen.go#L2959: 			return nil, fmt.Errorf("unable to decode UpdatesClass: %w", err)
		tl_updates_gen.go#L2966: 			return nil, fmt.Errorf("unable to decode UpdatesClass: %w", err)
		tl_updates_gen.go#L2973: 			return nil, fmt.Errorf("unable to decode UpdatesClass: %w", err)
		tl_updates_gen.go#L2977: 		return nil, fmt.Errorf("unable to decode UpdatesClass: %w", bin.NewUnexpectedID(id))
		tl_updates_gen.go#L2989: 		return fmt.Errorf("unable to decode UpdatesBox to nil")
		tl_updates_gen.go#L2993: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_updates_gen.go#L3002: 		return fmt.Errorf("unable to encode UpdatesClass as nil")
		tl_updates_get_channel_difference_gen.go#L180: 		return fmt.Errorf("can't encode updates.getChannelDifference#3173d78 as nil")
		tl_updates_get_channel_difference_gen.go#L189: 		return fmt.Errorf("can't encode updates.getChannelDifference#3173d78 as nil")
		tl_updates_get_channel_difference_gen.go#L193: 		return fmt.Errorf("unable to encode updates.getChannelDifference#3173d78: field flags: %w", err)
		tl_updates_get_channel_difference_gen.go#L196: 		return fmt.Errorf("unable to encode updates.getChannelDifference#3173d78: field channel is nil")
		tl_updates_get_channel_difference_gen.go#L199: 		return fmt.Errorf("unable to encode updates.getChannelDifference#3173d78: field channel: %w", err)
		tl_updates_get_channel_difference_gen.go#L202: 		return fmt.Errorf("unable to encode updates.getChannelDifference#3173d78: field filter is nil")
		tl_updates_get_channel_difference_gen.go#L205: 		return fmt.Errorf("unable to encode updates.getChannelDifference#3173d78: field filter: %w", err)
		tl_updates_get_channel_difference_gen.go#L215: 		return fmt.Errorf("can't decode updates.getChannelDifference#3173d78 to nil")
		tl_updates_get_channel_difference_gen.go#L218: 		return fmt.Errorf("unable to decode updates.getChannelDifference#3173d78: %w", err)
		tl_updates_get_channel_difference_gen.go#L226: 		return fmt.Errorf("can't decode updates.getChannelDifference#3173d78 to nil")
		tl_updates_get_channel_difference_gen.go#L230: 			return fmt.Errorf("unable to decode updates.getChannelDifference#3173d78: field flags: %w", err)
		tl_updates_get_channel_difference_gen.go#L237: 			return fmt.Errorf("unable to decode updates.getChannelDifference#3173d78: field channel: %w", err)
		tl_updates_get_channel_difference_gen.go#L244: 			return fmt.Errorf("unable to decode updates.getChannelDifference#3173d78: field filter: %w", err)
		tl_updates_get_channel_difference_gen.go#L251: 			return fmt.Errorf("unable to decode updates.getChannelDifference#3173d78: field pts: %w", err)
		tl_updates_get_channel_difference_gen.go#L258: 			return fmt.Errorf("unable to decode updates.getChannelDifference#3173d78: field limit: %w", err)
		tl_updates_get_difference_gen.go#L227: 		return fmt.Errorf("can't encode updates.getDifference#19c2f763 as nil")
		tl_updates_get_difference_gen.go#L236: 		return fmt.Errorf("can't encode updates.getDifference#19c2f763 as nil")
		tl_updates_get_difference_gen.go#L240: 		return fmt.Errorf("unable to encode updates.getDifference#19c2f763: field flags: %w", err)
		tl_updates_get_difference_gen.go#L260: 		return fmt.Errorf("can't decode updates.getDifference#19c2f763 to nil")
		tl_updates_get_difference_gen.go#L263: 		return fmt.Errorf("unable to decode updates.getDifference#19c2f763: %w", err)
		tl_updates_get_difference_gen.go#L271: 		return fmt.Errorf("can't decode updates.getDifference#19c2f763 to nil")
		tl_updates_get_difference_gen.go#L275: 			return fmt.Errorf("unable to decode updates.getDifference#19c2f763: field flags: %w", err)
		tl_updates_get_difference_gen.go#L281: 			return fmt.Errorf("unable to decode updates.getDifference#19c2f763: field pts: %w", err)
		tl_updates_get_difference_gen.go#L288: 			return fmt.Errorf("unable to decode updates.getDifference#19c2f763: field pts_limit: %w", err)
		tl_updates_get_difference_gen.go#L295: 			return fmt.Errorf("unable to decode updates.getDifference#19c2f763: field pts_total_limit: %w", err)
		tl_updates_get_difference_gen.go#L302: 			return fmt.Errorf("unable to decode updates.getDifference#19c2f763: field date: %w", err)
		tl_updates_get_difference_gen.go#L309: 			return fmt.Errorf("unable to decode updates.getDifference#19c2f763: field qts: %w", err)
		tl_updates_get_difference_gen.go#L316: 			return fmt.Errorf("unable to decode updates.getDifference#19c2f763: field qts_limit: %w", err)
		tl_updates_get_state_gen.go#L98: 		return fmt.Errorf("can't encode updates.getState#edd4882a as nil")
		tl_updates_get_state_gen.go#L107: 		return fmt.Errorf("can't encode updates.getState#edd4882a as nil")
		tl_updates_get_state_gen.go#L115: 		return fmt.Errorf("can't decode updates.getState#edd4882a to nil")
		tl_updates_get_state_gen.go#L118: 		return fmt.Errorf("unable to decode updates.getState#edd4882a: %w", err)
		tl_updates_get_state_gen.go#L126: 		return fmt.Errorf("can't decode updates.getState#edd4882a to nil")
		tl_updates_state_gen.go#L163: 		return fmt.Errorf("can't encode updates.state#a56c2a3e as nil")
		tl_updates_state_gen.go#L172: 		return fmt.Errorf("can't encode updates.state#a56c2a3e as nil")
		tl_updates_state_gen.go#L185: 		return fmt.Errorf("can't decode updates.state#a56c2a3e to nil")
		tl_updates_state_gen.go#L188: 		return fmt.Errorf("unable to decode updates.state#a56c2a3e: %w", err)
		tl_updates_state_gen.go#L196: 		return fmt.Errorf("can't decode updates.state#a56c2a3e to nil")
		tl_updates_state_gen.go#L201: 			return fmt.Errorf("unable to decode updates.state#a56c2a3e: field pts: %w", err)
		tl_updates_state_gen.go#L208: 			return fmt.Errorf("unable to decode updates.state#a56c2a3e: field qts: %w", err)
		tl_updates_state_gen.go#L215: 			return fmt.Errorf("unable to decode updates.state#a56c2a3e: field date: %w", err)
		tl_updates_state_gen.go#L222: 			return fmt.Errorf("unable to decode updates.state#a56c2a3e: field seq: %w", err)
		tl_updates_state_gen.go#L229: 			return fmt.Errorf("unable to decode updates.state#a56c2a3e: field unread_count: %w", err)
		tl_upload_cdn_file_gen.go#L127: 		return fmt.Errorf("can't encode upload.cdnFileReuploadNeeded#eea8e46e as nil")
		tl_upload_cdn_file_gen.go#L136: 		return fmt.Errorf("can't encode upload.cdnFileReuploadNeeded#eea8e46e as nil")
		tl_upload_cdn_file_gen.go#L145: 		return fmt.Errorf("can't decode upload.cdnFileReuploadNeeded#eea8e46e to nil")
		tl_upload_cdn_file_gen.go#L148: 		return fmt.Errorf("unable to decode upload.cdnFileReuploadNeeded#eea8e46e: %w", err)
		tl_upload_cdn_file_gen.go#L156: 		return fmt.Errorf("can't decode upload.cdnFileReuploadNeeded#eea8e46e to nil")
		tl_upload_cdn_file_gen.go#L161: 			return fmt.Errorf("unable to decode upload.cdnFileReuploadNeeded#eea8e46e: field request_token: %w", err)
		tl_upload_cdn_file_gen.go#L265: 		return fmt.Errorf("can't encode upload.cdnFile#a99fca4f as nil")
		tl_upload_cdn_file_gen.go#L274: 		return fmt.Errorf("can't encode upload.cdnFile#a99fca4f as nil")
		tl_upload_cdn_file_gen.go#L283: 		return fmt.Errorf("can't decode upload.cdnFile#a99fca4f to nil")
		tl_upload_cdn_file_gen.go#L286: 		return fmt.Errorf("unable to decode upload.cdnFile#a99fca4f: %w", err)
		tl_upload_cdn_file_gen.go#L294: 		return fmt.Errorf("can't decode upload.cdnFile#a99fca4f to nil")
		tl_upload_cdn_file_gen.go#L299: 			return fmt.Errorf("unable to decode upload.cdnFile#a99fca4f: field bytes: %w", err)
		tl_upload_cdn_file_gen.go#L362: 			return nil, fmt.Errorf("unable to decode UploadCDNFileClass: %w", err)
		tl_upload_cdn_file_gen.go#L369: 			return nil, fmt.Errorf("unable to decode UploadCDNFileClass: %w", err)
		tl_upload_cdn_file_gen.go#L373: 		return nil, fmt.Errorf("unable to decode UploadCDNFileClass: %w", bin.NewUnexpectedID(id))
		tl_upload_cdn_file_gen.go#L385: 		return fmt.Errorf("unable to decode UploadCDNFileBox to nil")
		tl_upload_cdn_file_gen.go#L389: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_upload_cdn_file_gen.go#L398: 		return fmt.Errorf("unable to encode UploadCDNFileClass as nil")
		tl_upload_file_gen.go#L142: 		return fmt.Errorf("can't encode upload.file#96a18d5 as nil")
		tl_upload_file_gen.go#L151: 		return fmt.Errorf("can't encode upload.file#96a18d5 as nil")
		tl_upload_file_gen.go#L154: 		return fmt.Errorf("unable to encode upload.file#96a18d5: field type is nil")
		tl_upload_file_gen.go#L157: 		return fmt.Errorf("unable to encode upload.file#96a18d5: field type: %w", err)
		tl_upload_file_gen.go#L167: 		return fmt.Errorf("can't decode upload.file#96a18d5 to nil")
		tl_upload_file_gen.go#L170: 		return fmt.Errorf("unable to decode upload.file#96a18d5: %w", err)
		tl_upload_file_gen.go#L178: 		return fmt.Errorf("can't decode upload.file#96a18d5 to nil")
		tl_upload_file_gen.go#L183: 			return fmt.Errorf("unable to decode upload.file#96a18d5: field type: %w", err)
		tl_upload_file_gen.go#L190: 			return fmt.Errorf("unable to decode upload.file#96a18d5: field mtime: %w", err)
		tl_upload_file_gen.go#L197: 			return fmt.Errorf("unable to decode upload.file#96a18d5: field bytes: %w", err)
		tl_upload_file_gen.go#L376: 		return fmt.Errorf("can't encode upload.fileCdnRedirect#f18cda44 as nil")
		tl_upload_file_gen.go#L385: 		return fmt.Errorf("can't encode upload.fileCdnRedirect#f18cda44 as nil")
		tl_upload_file_gen.go#L394: 			return fmt.Errorf("unable to encode upload.fileCdnRedirect#f18cda44: field file_hashes element with index %d: %w", idx, err)
		tl_upload_file_gen.go#L403: 		return fmt.Errorf("can't decode upload.fileCdnRedirect#f18cda44 to nil")
		tl_upload_file_gen.go#L406: 		return fmt.Errorf("unable to decode upload.fileCdnRedirect#f18cda44: %w", err)
		tl_upload_file_gen.go#L414: 		return fmt.Errorf("can't decode upload.fileCdnRedirect#f18cda44 to nil")
		tl_upload_file_gen.go#L419: 			return fmt.Errorf("unable to decode upload.fileCdnRedirect#f18cda44: field dc_id: %w", err)
		tl_upload_file_gen.go#L426: 			return fmt.Errorf("unable to decode upload.fileCdnRedirect#f18cda44: field file_token: %w", err)
		tl_upload_file_gen.go#L433: 			return fmt.Errorf("unable to decode upload.fileCdnRedirect#f18cda44: field encryption_key: %w", err)
		tl_upload_file_gen.go#L440: 			return fmt.Errorf("unable to decode upload.fileCdnRedirect#f18cda44: field encryption_iv: %w", err)
		tl_upload_file_gen.go#L447: 			return fmt.Errorf("unable to decode upload.fileCdnRedirect#f18cda44: field file_hashes: %w", err)
		tl_upload_file_gen.go#L456: 				return fmt.Errorf("unable to decode upload.fileCdnRedirect#f18cda44: field file_hashes: %w", err)
		tl_upload_file_gen.go#L552: 			return nil, fmt.Errorf("unable to decode UploadFileClass: %w", err)
		tl_upload_file_gen.go#L559: 			return nil, fmt.Errorf("unable to decode UploadFileClass: %w", err)
		tl_upload_file_gen.go#L563: 		return nil, fmt.Errorf("unable to decode UploadFileClass: %w", bin.NewUnexpectedID(id))
		tl_upload_file_gen.go#L575: 		return fmt.Errorf("unable to decode UploadFileBox to nil")
		tl_upload_file_gen.go#L579: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_upload_file_gen.go#L588: 		return fmt.Errorf("unable to encode UploadFileClass as nil")
		tl_upload_get_cdn_file_gen.go#L140: 		return fmt.Errorf("can't encode upload.getCdnFile#395f69da as nil")
		tl_upload_get_cdn_file_gen.go#L149: 		return fmt.Errorf("can't encode upload.getCdnFile#395f69da as nil")
		tl_upload_get_cdn_file_gen.go#L160: 		return fmt.Errorf("can't decode upload.getCdnFile#395f69da to nil")
		tl_upload_get_cdn_file_gen.go#L163: 		return fmt.Errorf("unable to decode upload.getCdnFile#395f69da: %w", err)
		tl_upload_get_cdn_file_gen.go#L171: 		return fmt.Errorf("can't decode upload.getCdnFile#395f69da to nil")
		tl_upload_get_cdn_file_gen.go#L176: 			return fmt.Errorf("unable to decode upload.getCdnFile#395f69da: field file_token: %w", err)
		tl_upload_get_cdn_file_gen.go#L183: 			return fmt.Errorf("unable to decode upload.getCdnFile#395f69da: field offset: %w", err)
		tl_upload_get_cdn_file_gen.go#L190: 			return fmt.Errorf("unable to decode upload.getCdnFile#395f69da: field limit: %w", err)
		tl_upload_get_cdn_file_hashes_gen.go#L129: 		return fmt.Errorf("can't encode upload.getCdnFileHashes#91dc3f31 as nil")
		tl_upload_get_cdn_file_hashes_gen.go#L138: 		return fmt.Errorf("can't encode upload.getCdnFileHashes#91dc3f31 as nil")
		tl_upload_get_cdn_file_hashes_gen.go#L148: 		return fmt.Errorf("can't decode upload.getCdnFileHashes#91dc3f31 to nil")
		tl_upload_get_cdn_file_hashes_gen.go#L151: 		return fmt.Errorf("unable to decode upload.getCdnFileHashes#91dc3f31: %w", err)
		tl_upload_get_cdn_file_hashes_gen.go#L159: 		return fmt.Errorf("can't decode upload.getCdnFileHashes#91dc3f31 to nil")
		tl_upload_get_cdn_file_hashes_gen.go#L164: 			return fmt.Errorf("unable to decode upload.getCdnFileHashes#91dc3f31: field file_token: %w", err)
		tl_upload_get_cdn_file_hashes_gen.go#L171: 			return fmt.Errorf("unable to decode upload.getCdnFileHashes#91dc3f31: field offset: %w", err)
		tl_upload_get_file_gen.go#L183: 		return fmt.Errorf("can't encode upload.getFile#be5335be as nil")
		tl_upload_get_file_gen.go#L192: 		return fmt.Errorf("can't encode upload.getFile#be5335be as nil")
		tl_upload_get_file_gen.go#L196: 		return fmt.Errorf("unable to encode upload.getFile#be5335be: field flags: %w", err)
		tl_upload_get_file_gen.go#L199: 		return fmt.Errorf("unable to encode upload.getFile#be5335be: field location is nil")
		tl_upload_get_file_gen.go#L202: 		return fmt.Errorf("unable to encode upload.getFile#be5335be: field location: %w", err)
		tl_upload_get_file_gen.go#L212: 		return fmt.Errorf("can't decode upload.getFile#be5335be to nil")
		tl_upload_get_file_gen.go#L215: 		return fmt.Errorf("unable to decode upload.getFile#be5335be: %w", err)
		tl_upload_get_file_gen.go#L223: 		return fmt.Errorf("can't decode upload.getFile#be5335be to nil")
		tl_upload_get_file_gen.go#L227: 			return fmt.Errorf("unable to decode upload.getFile#be5335be: field flags: %w", err)
		tl_upload_get_file_gen.go#L235: 			return fmt.Errorf("unable to decode upload.getFile#be5335be: field location: %w", err)
		tl_upload_get_file_gen.go#L242: 			return fmt.Errorf("unable to decode upload.getFile#be5335be: field offset: %w", err)
		tl_upload_get_file_gen.go#L249: 			return fmt.Errorf("unable to decode upload.getFile#be5335be: field limit: %w", err)
		tl_upload_get_file_hashes_gen.go#L126: 		return fmt.Errorf("can't encode upload.getFileHashes#9156982a as nil")
		tl_upload_get_file_hashes_gen.go#L135: 		return fmt.Errorf("can't encode upload.getFileHashes#9156982a as nil")
		tl_upload_get_file_hashes_gen.go#L138: 		return fmt.Errorf("unable to encode upload.getFileHashes#9156982a: field location is nil")
		tl_upload_get_file_hashes_gen.go#L141: 		return fmt.Errorf("unable to encode upload.getFileHashes#9156982a: field location: %w", err)
		tl_upload_get_file_hashes_gen.go#L150: 		return fmt.Errorf("can't decode upload.getFileHashes#9156982a to nil")
		tl_upload_get_file_hashes_gen.go#L153: 		return fmt.Errorf("unable to decode upload.getFileHashes#9156982a: %w", err)
		tl_upload_get_file_hashes_gen.go#L161: 		return fmt.Errorf("can't decode upload.getFileHashes#9156982a to nil")
		tl_upload_get_file_hashes_gen.go#L166: 			return fmt.Errorf("unable to decode upload.getFileHashes#9156982a: field location: %w", err)
		tl_upload_get_file_hashes_gen.go#L173: 			return fmt.Errorf("unable to decode upload.getFileHashes#9156982a: field offset: %w", err)
		tl_upload_get_web_file_gen.go#L136: 		return fmt.Errorf("can't encode upload.getWebFile#24e6818d as nil")
		tl_upload_get_web_file_gen.go#L145: 		return fmt.Errorf("can't encode upload.getWebFile#24e6818d as nil")
		tl_upload_get_web_file_gen.go#L148: 		return fmt.Errorf("unable to encode upload.getWebFile#24e6818d: field location is nil")
		tl_upload_get_web_file_gen.go#L151: 		return fmt.Errorf("unable to encode upload.getWebFile#24e6818d: field location: %w", err)
		tl_upload_get_web_file_gen.go#L161: 		return fmt.Errorf("can't decode upload.getWebFile#24e6818d to nil")
		tl_upload_get_web_file_gen.go#L164: 		return fmt.Errorf("unable to decode upload.getWebFile#24e6818d: %w", err)
		tl_upload_get_web_file_gen.go#L172: 		return fmt.Errorf("can't decode upload.getWebFile#24e6818d to nil")
		tl_upload_get_web_file_gen.go#L177: 			return fmt.Errorf("unable to decode upload.getWebFile#24e6818d: field location: %w", err)
		tl_upload_get_web_file_gen.go#L184: 			return fmt.Errorf("unable to decode upload.getWebFile#24e6818d: field offset: %w", err)
		tl_upload_get_web_file_gen.go#L191: 			return fmt.Errorf("unable to decode upload.getWebFile#24e6818d: field limit: %w", err)
		tl_upload_reupload_cdn_file_gen.go#L129: 		return fmt.Errorf("can't encode upload.reuploadCdnFile#9b2754a8 as nil")
		tl_upload_reupload_cdn_file_gen.go#L138: 		return fmt.Errorf("can't encode upload.reuploadCdnFile#9b2754a8 as nil")
		tl_upload_reupload_cdn_file_gen.go#L148: 		return fmt.Errorf("can't decode upload.reuploadCdnFile#9b2754a8 to nil")
		tl_upload_reupload_cdn_file_gen.go#L151: 		return fmt.Errorf("unable to decode upload.reuploadCdnFile#9b2754a8: %w", err)
		tl_upload_reupload_cdn_file_gen.go#L159: 		return fmt.Errorf("can't decode upload.reuploadCdnFile#9b2754a8 to nil")
		tl_upload_reupload_cdn_file_gen.go#L164: 			return fmt.Errorf("unable to decode upload.reuploadCdnFile#9b2754a8: field file_token: %w", err)
		tl_upload_reupload_cdn_file_gen.go#L171: 			return fmt.Errorf("unable to decode upload.reuploadCdnFile#9b2754a8: field request_token: %w", err)
		tl_upload_save_big_file_part_gen.go#L149: 		return fmt.Errorf("can't encode upload.saveBigFilePart#de7b673d as nil")
		tl_upload_save_big_file_part_gen.go#L158: 		return fmt.Errorf("can't encode upload.saveBigFilePart#de7b673d as nil")
		tl_upload_save_big_file_part_gen.go#L170: 		return fmt.Errorf("can't decode upload.saveBigFilePart#de7b673d to nil")
		tl_upload_save_big_file_part_gen.go#L173: 		return fmt.Errorf("unable to decode upload.saveBigFilePart#de7b673d: %w", err)
		tl_upload_save_big_file_part_gen.go#L181: 		return fmt.Errorf("can't decode upload.saveBigFilePart#de7b673d to nil")
		tl_upload_save_big_file_part_gen.go#L186: 			return fmt.Errorf("unable to decode upload.saveBigFilePart#de7b673d: field file_id: %w", err)
		tl_upload_save_big_file_part_gen.go#L193: 			return fmt.Errorf("unable to decode upload.saveBigFilePart#de7b673d: field file_part: %w", err)
		tl_upload_save_big_file_part_gen.go#L200: 			return fmt.Errorf("unable to decode upload.saveBigFilePart#de7b673d: field file_total_parts: %w", err)
		tl_upload_save_big_file_part_gen.go#L207: 			return fmt.Errorf("unable to decode upload.saveBigFilePart#de7b673d: field bytes: %w", err)
		tl_upload_save_file_part_gen.go#L137: 		return fmt.Errorf("can't encode upload.saveFilePart#b304a621 as nil")
		tl_upload_save_file_part_gen.go#L146: 		return fmt.Errorf("can't encode upload.saveFilePart#b304a621 as nil")
		tl_upload_save_file_part_gen.go#L157: 		return fmt.Errorf("can't decode upload.saveFilePart#b304a621 to nil")
		tl_upload_save_file_part_gen.go#L160: 		return fmt.Errorf("unable to decode upload.saveFilePart#b304a621: %w", err)
		tl_upload_save_file_part_gen.go#L168: 		return fmt.Errorf("can't decode upload.saveFilePart#b304a621 to nil")
		tl_upload_save_file_part_gen.go#L173: 			return fmt.Errorf("unable to decode upload.saveFilePart#b304a621: field file_id: %w", err)
		tl_upload_save_file_part_gen.go#L180: 			return fmt.Errorf("unable to decode upload.saveFilePart#b304a621: field file_part: %w", err)
		tl_upload_save_file_part_gen.go#L187: 			return fmt.Errorf("unable to decode upload.saveFilePart#b304a621: field bytes: %w", err)
		tl_upload_web_file_gen.go#L163: 		return fmt.Errorf("can't encode upload.webFile#21e753bc as nil")
		tl_upload_web_file_gen.go#L172: 		return fmt.Errorf("can't encode upload.webFile#21e753bc as nil")
		tl_upload_web_file_gen.go#L177: 		return fmt.Errorf("unable to encode upload.webFile#21e753bc: field file_type is nil")
		tl_upload_web_file_gen.go#L180: 		return fmt.Errorf("unable to encode upload.webFile#21e753bc: field file_type: %w", err)
		tl_upload_web_file_gen.go#L190: 		return fmt.Errorf("can't decode upload.webFile#21e753bc to nil")
		tl_upload_web_file_gen.go#L193: 		return fmt.Errorf("unable to decode upload.webFile#21e753bc: %w", err)
		tl_upload_web_file_gen.go#L201: 		return fmt.Errorf("can't decode upload.webFile#21e753bc to nil")
		tl_upload_web_file_gen.go#L206: 			return fmt.Errorf("unable to decode upload.webFile#21e753bc: field size: %w", err)
		tl_upload_web_file_gen.go#L213: 			return fmt.Errorf("unable to decode upload.webFile#21e753bc: field mime_type: %w", err)
		tl_upload_web_file_gen.go#L220: 			return fmt.Errorf("unable to decode upload.webFile#21e753bc: field file_type: %w", err)
		tl_upload_web_file_gen.go#L227: 			return fmt.Errorf("unable to decode upload.webFile#21e753bc: field mtime: %w", err)
		tl_upload_web_file_gen.go#L234: 			return fmt.Errorf("unable to decode upload.webFile#21e753bc: field bytes: %w", err)
		tl_url_auth_result_gen.go#L166: 		return fmt.Errorf("can't encode urlAuthResultRequest#92d33a0e as nil")
		tl_url_auth_result_gen.go#L175: 		return fmt.Errorf("can't encode urlAuthResultRequest#92d33a0e as nil")
		tl_url_auth_result_gen.go#L179: 		return fmt.Errorf("unable to encode urlAuthResultRequest#92d33a0e: field flags: %w", err)
		tl_url_auth_result_gen.go#L182: 		return fmt.Errorf("unable to encode urlAuthResultRequest#92d33a0e: field bot is nil")
		tl_url_auth_result_gen.go#L185: 		return fmt.Errorf("unable to encode urlAuthResultRequest#92d33a0e: field bot: %w", err)
		tl_url_auth_result_gen.go#L194: 		return fmt.Errorf("can't decode urlAuthResultRequest#92d33a0e to nil")
		tl_url_auth_result_gen.go#L197: 		return fmt.Errorf("unable to decode urlAuthResultRequest#92d33a0e: %w", err)
		tl_url_auth_result_gen.go#L205: 		return fmt.Errorf("can't decode urlAuthResultRequest#92d33a0e to nil")
		tl_url_auth_result_gen.go#L209: 			return fmt.Errorf("unable to decode urlAuthResultRequest#92d33a0e: field flags: %w", err)
		tl_url_auth_result_gen.go#L216: 			return fmt.Errorf("unable to decode urlAuthResultRequest#92d33a0e: field bot: %w", err)
		tl_url_auth_result_gen.go#L223: 			return fmt.Errorf("unable to decode urlAuthResultRequest#92d33a0e: field domain: %w", err)
		tl_url_auth_result_gen.go#L354: 		return fmt.Errorf("can't encode urlAuthResultAccepted#8f8c0e4e as nil")
		tl_url_auth_result_gen.go#L363: 		return fmt.Errorf("can't encode urlAuthResultAccepted#8f8c0e4e as nil")
		tl_url_auth_result_gen.go#L372: 		return fmt.Errorf("can't decode urlAuthResultAccepted#8f8c0e4e to nil")
		tl_url_auth_result_gen.go#L375: 		return fmt.Errorf("unable to decode urlAuthResultAccepted#8f8c0e4e: %w", err)
		tl_url_auth_result_gen.go#L383: 		return fmt.Errorf("can't decode urlAuthResultAccepted#8f8c0e4e to nil")
		tl_url_auth_result_gen.go#L388: 			return fmt.Errorf("unable to decode urlAuthResultAccepted#8f8c0e4e: field url: %w", err)
		tl_url_auth_result_gen.go#L475: 		return fmt.Errorf("can't encode urlAuthResultDefault#a9d6db1f as nil")
		tl_url_auth_result_gen.go#L484: 		return fmt.Errorf("can't encode urlAuthResultDefault#a9d6db1f as nil")
		tl_url_auth_result_gen.go#L492: 		return fmt.Errorf("can't decode urlAuthResultDefault#a9d6db1f to nil")
		tl_url_auth_result_gen.go#L495: 		return fmt.Errorf("unable to decode urlAuthResultDefault#a9d6db1f: %w", err)
		tl_url_auth_result_gen.go#L503: 		return fmt.Errorf("can't decode urlAuthResultDefault#a9d6db1f to nil")
		tl_url_auth_result_gen.go#L557: 			return nil, fmt.Errorf("unable to decode URLAuthResultClass: %w", err)
		tl_url_auth_result_gen.go#L564: 			return nil, fmt.Errorf("unable to decode URLAuthResultClass: %w", err)
		tl_url_auth_result_gen.go#L571: 			return nil, fmt.Errorf("unable to decode URLAuthResultClass: %w", err)
		tl_url_auth_result_gen.go#L575: 		return nil, fmt.Errorf("unable to decode URLAuthResultClass: %w", bin.NewUnexpectedID(id))
		tl_url_auth_result_gen.go#L587: 		return fmt.Errorf("unable to decode URLAuthResultBox to nil")
		tl_url_auth_result_gen.go#L591: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_url_auth_result_gen.go#L600: 		return fmt.Errorf("unable to encode URLAuthResultClass as nil")
		tl_user_class_vector_gen.go#L112: 		return fmt.Errorf("can't encode Vector<User> as nil")
		tl_user_class_vector_gen.go#L121: 		return fmt.Errorf("can't encode Vector<User> as nil")
		tl_user_class_vector_gen.go#L126: 			return fmt.Errorf("unable to encode Vector<User>: field Elems element with index %d is nil", idx)
		tl_user_class_vector_gen.go#L129: 			return fmt.Errorf("unable to encode Vector<User>: field Elems element with index %d: %w", idx, err)
		tl_user_class_vector_gen.go#L138: 		return fmt.Errorf("can't decode Vector<User> to nil")
		tl_user_class_vector_gen.go#L147: 		return fmt.Errorf("can't decode Vector<User> to nil")
		tl_user_class_vector_gen.go#L152: 			return fmt.Errorf("unable to decode Vector<User>: field Elems: %w", err)
		tl_user_class_vector_gen.go#L161: 				return fmt.Errorf("unable to decode Vector<User>: field Elems: %w", err)
		tl_user_full_gen.go#L667: 		return fmt.Errorf("can't encode userFull#b9b12c6c as nil")
		tl_user_full_gen.go#L676: 		return fmt.Errorf("can't encode userFull#b9b12c6c as nil")
		tl_user_full_gen.go#L680: 		return fmt.Errorf("unable to encode userFull#b9b12c6c: field flags: %w", err)
		tl_user_full_gen.go#L687: 		return fmt.Errorf("unable to encode userFull#b9b12c6c: field settings: %w", err)
		tl_user_full_gen.go#L691: 			return fmt.Errorf("unable to encode userFull#b9b12c6c: field personal_photo is nil")
		tl_user_full_gen.go#L694: 			return fmt.Errorf("unable to encode userFull#b9b12c6c: field personal_photo: %w", err)
		tl_user_full_gen.go#L699: 			return fmt.Errorf("unable to encode userFull#b9b12c6c: field profile_photo is nil")
		tl_user_full_gen.go#L702: 			return fmt.Errorf("unable to encode userFull#b9b12c6c: field profile_photo: %w", err)
		tl_user_full_gen.go#L707: 			return fmt.Errorf("unable to encode userFull#b9b12c6c: field fallback_photo is nil")
		tl_user_full_gen.go#L710: 			return fmt.Errorf("unable to encode userFull#b9b12c6c: field fallback_photo: %w", err)
		tl_user_full_gen.go#L714: 		return fmt.Errorf("unable to encode userFull#b9b12c6c: field notify_settings: %w", err)
		tl_user_full_gen.go#L718: 			return fmt.Errorf("unable to encode userFull#b9b12c6c: field bot_info: %w", err)
		tl_user_full_gen.go#L739: 			return fmt.Errorf("unable to encode userFull#b9b12c6c: field bot_group_admin_rights: %w", err)
		tl_user_full_gen.go#L744: 			return fmt.Errorf("unable to encode userFull#b9b12c6c: field bot_broadcast_admin_rights: %w", err)
		tl_user_full_gen.go#L751: 				return fmt.Errorf("unable to encode userFull#b9b12c6c: field premium_gifts element with index %d: %w", idx, err)
		tl_user_full_gen.go#L757: 			return fmt.Errorf("unable to encode userFull#b9b12c6c: field wallpaper is nil")
		tl_user_full_gen.go#L760: 			return fmt.Errorf("unable to encode userFull#b9b12c6c: field wallpaper: %w", err)
		tl_user_full_gen.go#L765: 			return fmt.Errorf("unable to encode userFull#b9b12c6c: field stories: %w", err)
		tl_user_full_gen.go#L774: 		return fmt.Errorf("can't decode userFull#b9b12c6c to nil")
		tl_user_full_gen.go#L777: 		return fmt.Errorf("unable to decode userFull#b9b12c6c: %w", err)
		tl_user_full_gen.go#L785: 		return fmt.Errorf("can't decode userFull#b9b12c6c to nil")
		tl_user_full_gen.go#L789: 			return fmt.Errorf("unable to decode userFull#b9b12c6c: field flags: %w", err)
		tl_user_full_gen.go#L806: 			return fmt.Errorf("unable to decode userFull#b9b12c6c: field id: %w", err)
		tl_user_full_gen.go#L813: 			return fmt.Errorf("unable to decode userFull#b9b12c6c: field about: %w", err)
		tl_user_full_gen.go#L819: 			return fmt.Errorf("unable to decode userFull#b9b12c6c: field settings: %w", err)
		tl_user_full_gen.go#L825: 			return fmt.Errorf("unable to decode userFull#b9b12c6c: field personal_photo: %w", err)
		tl_user_full_gen.go#L832: 			return fmt.Errorf("unable to decode userFull#b9b12c6c: field profile_photo: %w", err)
		tl_user_full_gen.go#L839: 			return fmt.Errorf("unable to decode userFull#b9b12c6c: field fallback_photo: %w", err)
		tl_user_full_gen.go#L845: 			return fmt.Errorf("unable to decode userFull#b9b12c6c: field notify_settings: %w", err)
		tl_user_full_gen.go#L850: 			return fmt.Errorf("unable to decode userFull#b9b12c6c: field bot_info: %w", err)
		tl_user_full_gen.go#L856: 			return fmt.Errorf("unable to decode userFull#b9b12c6c: field pinned_msg_id: %w", err)
		tl_user_full_gen.go#L863: 			return fmt.Errorf("unable to decode userFull#b9b12c6c: field common_chats_count: %w", err)
		tl_user_full_gen.go#L870: 			return fmt.Errorf("unable to decode userFull#b9b12c6c: field folder_id: %w", err)
		tl_user_full_gen.go#L877: 			return fmt.Errorf("unable to decode userFull#b9b12c6c: field ttl_period: %w", err)
		tl_user_full_gen.go#L884: 			return fmt.Errorf("unable to decode userFull#b9b12c6c: field theme_emoticon: %w", err)
		tl_user_full_gen.go#L891: 			return fmt.Errorf("unable to decode userFull#b9b12c6c: field private_forward_name: %w", err)
		tl_user_full_gen.go#L897: 			return fmt.Errorf("unable to decode userFull#b9b12c6c: field bot_group_admin_rights: %w", err)
		tl_user_full_gen.go#L902: 			return fmt.Errorf("unable to decode userFull#b9b12c6c: field bot_broadcast_admin_rights: %w", err)
		tl_user_full_gen.go#L908: 			return fmt.Errorf("unable to decode userFull#b9b12c6c: field premium_gifts: %w", err)
		tl_user_full_gen.go#L917: 				return fmt.Errorf("unable to decode userFull#b9b12c6c: field premium_gifts: %w", err)
		tl_user_full_gen.go#L925: 			return fmt.Errorf("unable to decode userFull#b9b12c6c: field wallpaper: %w", err)
		tl_user_full_gen.go#L931: 			return fmt.Errorf("unable to decode userFull#b9b12c6c: field stories: %w", err)
		tl_user_gen.go#L120: 		return fmt.Errorf("can't encode userEmpty#d3bc4b7a as nil")
		tl_user_gen.go#L129: 		return fmt.Errorf("can't encode userEmpty#d3bc4b7a as nil")
		tl_user_gen.go#L138: 		return fmt.Errorf("can't decode userEmpty#d3bc4b7a to nil")
		tl_user_gen.go#L141: 		return fmt.Errorf("unable to decode userEmpty#d3bc4b7a: %w", err)
		tl_user_gen.go#L149: 		return fmt.Errorf("can't decode userEmpty#d3bc4b7a to nil")
		tl_user_gen.go#L154: 			return fmt.Errorf("unable to decode userEmpty#d3bc4b7a: field id: %w", err)
		tl_user_gen.go#L957: 		return fmt.Errorf("can't encode user#215c4438 as nil")
		tl_user_gen.go#L966: 		return fmt.Errorf("can't encode user#215c4438 as nil")
		tl_user_gen.go#L970: 		return fmt.Errorf("unable to encode user#215c4438: field flags: %w", err)
		tl_user_gen.go#L973: 		return fmt.Errorf("unable to encode user#215c4438: field flags2: %w", err)
		tl_user_gen.go#L993: 			return fmt.Errorf("unable to encode user#215c4438: field photo is nil")
		tl_user_gen.go#L996: 			return fmt.Errorf("unable to encode user#215c4438: field photo: %w", err)
		tl_user_gen.go#L1001: 			return fmt.Errorf("unable to encode user#215c4438: field status is nil")
		tl_user_gen.go#L1004: 			return fmt.Errorf("unable to encode user#215c4438: field status: %w", err)
		tl_user_gen.go#L1014: 				return fmt.Errorf("unable to encode user#215c4438: field restriction_reason element with index %d: %w", idx, err)
		tl_user_gen.go#L1026: 			return fmt.Errorf("unable to encode user#215c4438: field emoji_status is nil")
		tl_user_gen.go#L1029: 			return fmt.Errorf("unable to encode user#215c4438: field emoji_status: %w", err)
		tl_user_gen.go#L1036: 				return fmt.Errorf("unable to encode user#215c4438: field usernames element with index %d: %w", idx, err)
		tl_user_gen.go#L1045: 			return fmt.Errorf("unable to encode user#215c4438: field color: %w", err)
		tl_user_gen.go#L1050: 			return fmt.Errorf("unable to encode user#215c4438: field profile_color: %w", err)
		tl_user_gen.go#L1059: 		return fmt.Errorf("can't decode user#215c4438 to nil")
		tl_user_gen.go#L1062: 		return fmt.Errorf("unable to decode user#215c4438: %w", err)
		tl_user_gen.go#L1070: 		return fmt.Errorf("can't decode user#215c4438 to nil")
		tl_user_gen.go#L1074: 			return fmt.Errorf("unable to decode user#215c4438: field flags: %w", err)
		tl_user_gen.go#L1097: 			return fmt.Errorf("unable to decode user#215c4438: field flags2: %w", err)
		tl_user_gen.go#L1107: 			return fmt.Errorf("unable to decode user#215c4438: field id: %w", err)
		tl_user_gen.go#L1114: 			return fmt.Errorf("unable to decode user#215c4438: field access_hash: %w", err)
		tl_user_gen.go#L1121: 			return fmt.Errorf("unable to decode user#215c4438: field first_name: %w", err)
		tl_user_gen.go#L1128: 			return fmt.Errorf("unable to decode user#215c4438: field last_name: %w", err)
		tl_user_gen.go#L1135: 			return fmt.Errorf("unable to decode user#215c4438: field username: %w", err)
		tl_user_gen.go#L1142: 			return fmt.Errorf("unable to decode user#215c4438: field phone: %w", err)
		tl_user_gen.go#L1149: 			return fmt.Errorf("unable to decode user#215c4438: field photo: %w", err)
		tl_user_gen.go#L1156: 			return fmt.Errorf("unable to decode user#215c4438: field status: %w", err)
		tl_user_gen.go#L1163: 			return fmt.Errorf("unable to decode user#215c4438: field bot_info_version: %w", err)
		tl_user_gen.go#L1170: 			return fmt.Errorf("unable to decode user#215c4438: field restriction_reason: %w", err)
		tl_user_gen.go#L1179: 				return fmt.Errorf("unable to decode user#215c4438: field restriction_reason: %w", err)
		tl_user_gen.go#L1187: 			return fmt.Errorf("unable to decode user#215c4438: field bot_inline_placeholder: %w", err)
		tl_user_gen.go#L1194: 			return fmt.Errorf("unable to decode user#215c4438: field lang_code: %w", err)
		tl_user_gen.go#L1201: 			return fmt.Errorf("unable to decode user#215c4438: field emoji_status: %w", err)
		tl_user_gen.go#L1208: 			return fmt.Errorf("unable to decode user#215c4438: field usernames: %w", err)
		tl_user_gen.go#L1217: 				return fmt.Errorf("unable to decode user#215c4438: field usernames: %w", err)
		tl_user_gen.go#L1225: 			return fmt.Errorf("unable to decode user#215c4438: field stories_max_id: %w", err)
		tl_user_gen.go#L1231: 			return fmt.Errorf("unable to decode user#215c4438: field color: %w", err)
		tl_user_gen.go#L1236: 			return fmt.Errorf("unable to decode user#215c4438: field profile_color: %w", err)
		tl_user_gen.go#L2042: 			return nil, fmt.Errorf("unable to decode UserClass: %w", err)
		tl_user_gen.go#L2049: 			return nil, fmt.Errorf("unable to decode UserClass: %w", err)
		tl_user_gen.go#L2053: 		return nil, fmt.Errorf("unable to decode UserClass: %w", bin.NewUnexpectedID(id))
		tl_user_gen.go#L2065: 		return fmt.Errorf("unable to decode UserBox to nil")
		tl_user_gen.go#L2069: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_user_gen.go#L2078: 		return fmt.Errorf("unable to encode UserClass as nil")
		tl_user_profile_photo_gen.go#L103: 		return fmt.Errorf("can't encode userProfilePhotoEmpty#4f11bae1 as nil")
		tl_user_profile_photo_gen.go#L112: 		return fmt.Errorf("can't encode userProfilePhotoEmpty#4f11bae1 as nil")
		tl_user_profile_photo_gen.go#L120: 		return fmt.Errorf("can't decode userProfilePhotoEmpty#4f11bae1 to nil")
		tl_user_profile_photo_gen.go#L123: 		return fmt.Errorf("unable to decode userProfilePhotoEmpty#4f11bae1: %w", err)
		tl_user_profile_photo_gen.go#L131: 		return fmt.Errorf("can't decode userProfilePhotoEmpty#4f11bae1 to nil")
		tl_user_profile_photo_gen.go#L305: 		return fmt.Errorf("can't encode userProfilePhoto#82d1f706 as nil")
		tl_user_profile_photo_gen.go#L314: 		return fmt.Errorf("can't encode userProfilePhoto#82d1f706 as nil")
		tl_user_profile_photo_gen.go#L318: 		return fmt.Errorf("unable to encode userProfilePhoto#82d1f706: field flags: %w", err)
		tl_user_profile_photo_gen.go#L331: 		return fmt.Errorf("can't decode userProfilePhoto#82d1f706 to nil")
		tl_user_profile_photo_gen.go#L334: 		return fmt.Errorf("unable to decode userProfilePhoto#82d1f706: %w", err)
		tl_user_profile_photo_gen.go#L342: 		return fmt.Errorf("can't decode userProfilePhoto#82d1f706 to nil")
		tl_user_profile_photo_gen.go#L346: 			return fmt.Errorf("unable to decode userProfilePhoto#82d1f706: field flags: %w", err)
		tl_user_profile_photo_gen.go#L354: 			return fmt.Errorf("unable to decode userProfilePhoto#82d1f706: field photo_id: %w", err)
		tl_user_profile_photo_gen.go#L361: 			return fmt.Errorf("unable to decode userProfilePhoto#82d1f706: field stripped_thumb: %w", err)
		tl_user_profile_photo_gen.go#L368: 			return fmt.Errorf("unable to decode userProfilePhoto#82d1f706: field dc_id: %w", err)
		tl_user_profile_photo_gen.go#L508: 			return nil, fmt.Errorf("unable to decode UserProfilePhotoClass: %w", err)
		tl_user_profile_photo_gen.go#L515: 			return nil, fmt.Errorf("unable to decode UserProfilePhotoClass: %w", err)
		tl_user_profile_photo_gen.go#L519: 		return nil, fmt.Errorf("unable to decode UserProfilePhotoClass: %w", bin.NewUnexpectedID(id))
		tl_user_profile_photo_gen.go#L531: 		return fmt.Errorf("unable to decode UserProfilePhotoBox to nil")
		tl_user_profile_photo_gen.go#L535: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_user_profile_photo_gen.go#L544: 		return fmt.Errorf("unable to encode UserProfilePhotoClass as nil")
		tl_user_status_gen.go#L103: 		return fmt.Errorf("can't encode userStatusEmpty#9d05049 as nil")
		tl_user_status_gen.go#L112: 		return fmt.Errorf("can't encode userStatusEmpty#9d05049 as nil")
		tl_user_status_gen.go#L120: 		return fmt.Errorf("can't decode userStatusEmpty#9d05049 to nil")
		tl_user_status_gen.go#L123: 		return fmt.Errorf("unable to decode userStatusEmpty#9d05049: %w", err)
		tl_user_status_gen.go#L131: 		return fmt.Errorf("can't decode userStatusEmpty#9d05049 to nil")
		tl_user_status_gen.go#L222: 		return fmt.Errorf("can't encode userStatusOnline#edb93949 as nil")
		tl_user_status_gen.go#L231: 		return fmt.Errorf("can't encode userStatusOnline#edb93949 as nil")
		tl_user_status_gen.go#L240: 		return fmt.Errorf("can't decode userStatusOnline#edb93949 to nil")
		tl_user_status_gen.go#L243: 		return fmt.Errorf("unable to decode userStatusOnline#edb93949: %w", err)
		tl_user_status_gen.go#L251: 		return fmt.Errorf("can't decode userStatusOnline#edb93949 to nil")
		tl_user_status_gen.go#L256: 			return fmt.Errorf("unable to decode userStatusOnline#edb93949: field expires: %w", err)
		tl_user_status_gen.go#L357: 		return fmt.Errorf("can't encode userStatusOffline#8c703f as nil")
		tl_user_status_gen.go#L366: 		return fmt.Errorf("can't encode userStatusOffline#8c703f as nil")
		tl_user_status_gen.go#L375: 		return fmt.Errorf("can't decode userStatusOffline#8c703f to nil")
		tl_user_status_gen.go#L378: 		return fmt.Errorf("unable to decode userStatusOffline#8c703f: %w", err)
		tl_user_status_gen.go#L386: 		return fmt.Errorf("can't decode userStatusOffline#8c703f to nil")
		tl_user_status_gen.go#L391: 			return fmt.Errorf("unable to decode userStatusOffline#8c703f: field was_online: %w", err)
		tl_user_status_gen.go#L475: 		return fmt.Errorf("can't encode userStatusRecently#e26f42f1 as nil")
		tl_user_status_gen.go#L484: 		return fmt.Errorf("can't encode userStatusRecently#e26f42f1 as nil")
		tl_user_status_gen.go#L492: 		return fmt.Errorf("can't decode userStatusRecently#e26f42f1 to nil")
		tl_user_status_gen.go#L495: 		return fmt.Errorf("unable to decode userStatusRecently#e26f42f1: %w", err)
		tl_user_status_gen.go#L503: 		return fmt.Errorf("can't decode userStatusRecently#e26f42f1 to nil")
		tl_user_status_gen.go#L577: 		return fmt.Errorf("can't encode userStatusLastWeek#7bf09fc as nil")
		tl_user_status_gen.go#L586: 		return fmt.Errorf("can't encode userStatusLastWeek#7bf09fc as nil")
		tl_user_status_gen.go#L594: 		return fmt.Errorf("can't decode userStatusLastWeek#7bf09fc to nil")
		tl_user_status_gen.go#L597: 		return fmt.Errorf("unable to decode userStatusLastWeek#7bf09fc: %w", err)
		tl_user_status_gen.go#L605: 		return fmt.Errorf("can't decode userStatusLastWeek#7bf09fc to nil")
		tl_user_status_gen.go#L679: 		return fmt.Errorf("can't encode userStatusLastMonth#77ebc742 as nil")
		tl_user_status_gen.go#L688: 		return fmt.Errorf("can't encode userStatusLastMonth#77ebc742 as nil")
		tl_user_status_gen.go#L696: 		return fmt.Errorf("can't decode userStatusLastMonth#77ebc742 to nil")
		tl_user_status_gen.go#L699: 		return fmt.Errorf("unable to decode userStatusLastMonth#77ebc742: %w", err)
		tl_user_status_gen.go#L707: 		return fmt.Errorf("can't decode userStatusLastMonth#77ebc742 to nil")
		tl_user_status_gen.go#L764: 			return nil, fmt.Errorf("unable to decode UserStatusClass: %w", err)
		tl_user_status_gen.go#L771: 			return nil, fmt.Errorf("unable to decode UserStatusClass: %w", err)
		tl_user_status_gen.go#L778: 			return nil, fmt.Errorf("unable to decode UserStatusClass: %w", err)
		tl_user_status_gen.go#L785: 			return nil, fmt.Errorf("unable to decode UserStatusClass: %w", err)
		tl_user_status_gen.go#L792: 			return nil, fmt.Errorf("unable to decode UserStatusClass: %w", err)
		tl_user_status_gen.go#L799: 			return nil, fmt.Errorf("unable to decode UserStatusClass: %w", err)
		tl_user_status_gen.go#L803: 		return nil, fmt.Errorf("unable to decode UserStatusClass: %w", bin.NewUnexpectedID(id))
		tl_user_status_gen.go#L815: 		return fmt.Errorf("unable to decode UserStatusBox to nil")
		tl_user_status_gen.go#L819: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_user_status_gen.go#L828: 		return fmt.Errorf("unable to encode UserStatusClass as nil")
		tl_username_gen.go#L160: 		return fmt.Errorf("can't encode username#b4073647 as nil")
		tl_username_gen.go#L169: 		return fmt.Errorf("can't encode username#b4073647 as nil")
		tl_username_gen.go#L173: 		return fmt.Errorf("unable to encode username#b4073647: field flags: %w", err)
		tl_username_gen.go#L182: 		return fmt.Errorf("can't decode username#b4073647 to nil")
		tl_username_gen.go#L185: 		return fmt.Errorf("unable to decode username#b4073647: %w", err)
		tl_username_gen.go#L193: 		return fmt.Errorf("can't decode username#b4073647 to nil")
		tl_username_gen.go#L197: 			return fmt.Errorf("unable to decode username#b4073647: field flags: %w", err)
		tl_username_gen.go#L205: 			return fmt.Errorf("unable to decode username#b4073647: field username: %w", err)
		tl_users_get_full_user_gen.go#L115: 		return fmt.Errorf("can't encode users.getFullUser#b60f5918 as nil")
		tl_users_get_full_user_gen.go#L124: 		return fmt.Errorf("can't encode users.getFullUser#b60f5918 as nil")
		tl_users_get_full_user_gen.go#L127: 		return fmt.Errorf("unable to encode users.getFullUser#b60f5918: field id is nil")
		tl_users_get_full_user_gen.go#L130: 		return fmt.Errorf("unable to encode users.getFullUser#b60f5918: field id: %w", err)
		tl_users_get_full_user_gen.go#L138: 		return fmt.Errorf("can't decode users.getFullUser#b60f5918 to nil")
		tl_users_get_full_user_gen.go#L141: 		return fmt.Errorf("unable to decode users.getFullUser#b60f5918: %w", err)
		tl_users_get_full_user_gen.go#L149: 		return fmt.Errorf("can't decode users.getFullUser#b60f5918 to nil")
		tl_users_get_full_user_gen.go#L154: 			return fmt.Errorf("unable to decode users.getFullUser#b60f5918: field id: %w", err)
		tl_users_get_users_gen.go#L115: 		return fmt.Errorf("can't encode users.getUsers#d91a548 as nil")
		tl_users_get_users_gen.go#L124: 		return fmt.Errorf("can't encode users.getUsers#d91a548 as nil")
		tl_users_get_users_gen.go#L129: 			return fmt.Errorf("unable to encode users.getUsers#d91a548: field id element with index %d is nil", idx)
		tl_users_get_users_gen.go#L132: 			return fmt.Errorf("unable to encode users.getUsers#d91a548: field id element with index %d: %w", idx, err)
		tl_users_get_users_gen.go#L141: 		return fmt.Errorf("can't decode users.getUsers#d91a548 to nil")
		tl_users_get_users_gen.go#L144: 		return fmt.Errorf("unable to decode users.getUsers#d91a548: %w", err)
		tl_users_get_users_gen.go#L152: 		return fmt.Errorf("can't decode users.getUsers#d91a548 to nil")
		tl_users_get_users_gen.go#L157: 			return fmt.Errorf("unable to decode users.getUsers#d91a548: field id: %w", err)
		tl_users_get_users_gen.go#L166: 				return fmt.Errorf("unable to decode users.getUsers#d91a548: field id: %w", err)
		tl_users_set_secure_value_errors_gen.go#L135: 		return fmt.Errorf("can't encode users.setSecureValueErrors#90c894b5 as nil")
		tl_users_set_secure_value_errors_gen.go#L144: 		return fmt.Errorf("can't encode users.setSecureValueErrors#90c894b5 as nil")
		tl_users_set_secure_value_errors_gen.go#L147: 		return fmt.Errorf("unable to encode users.setSecureValueErrors#90c894b5: field id is nil")
		tl_users_set_secure_value_errors_gen.go#L150: 		return fmt.Errorf("unable to encode users.setSecureValueErrors#90c894b5: field id: %w", err)
		tl_users_set_secure_value_errors_gen.go#L155: 			return fmt.Errorf("unable to encode users.setSecureValueErrors#90c894b5: field errors element with index %d is nil", idx)
		tl_users_set_secure_value_errors_gen.go#L158: 			return fmt.Errorf("unable to encode users.setSecureValueErrors#90c894b5: field errors element with index %d: %w", idx, err)
		tl_users_set_secure_value_errors_gen.go#L167: 		return fmt.Errorf("can't decode users.setSecureValueErrors#90c894b5 to nil")
		tl_users_set_secure_value_errors_gen.go#L170: 		return fmt.Errorf("unable to decode users.setSecureValueErrors#90c894b5: %w", err)
		tl_users_set_secure_value_errors_gen.go#L178: 		return fmt.Errorf("can't decode users.setSecureValueErrors#90c894b5 to nil")
		tl_users_set_secure_value_errors_gen.go#L183: 			return fmt.Errorf("unable to decode users.setSecureValueErrors#90c894b5: field id: %w", err)
		tl_users_set_secure_value_errors_gen.go#L190: 			return fmt.Errorf("unable to decode users.setSecureValueErrors#90c894b5: field errors: %w", err)
		tl_users_set_secure_value_errors_gen.go#L199: 				return fmt.Errorf("unable to decode users.setSecureValueErrors#90c894b5: field errors: %w", err)
		tl_users_user_full_gen.go#L137: 		return fmt.Errorf("can't encode users.userFull#3b6d152e as nil")
		tl_users_user_full_gen.go#L146: 		return fmt.Errorf("can't encode users.userFull#3b6d152e as nil")
		tl_users_user_full_gen.go#L149: 		return fmt.Errorf("unable to encode users.userFull#3b6d152e: field full_user: %w", err)
		tl_users_user_full_gen.go#L154: 			return fmt.Errorf("unable to encode users.userFull#3b6d152e: field chats element with index %d is nil", idx)
		tl_users_user_full_gen.go#L157: 			return fmt.Errorf("unable to encode users.userFull#3b6d152e: field chats element with index %d: %w", idx, err)
		tl_users_user_full_gen.go#L163: 			return fmt.Errorf("unable to encode users.userFull#3b6d152e: field users element with index %d is nil", idx)
		tl_users_user_full_gen.go#L166: 			return fmt.Errorf("unable to encode users.userFull#3b6d152e: field users element with index %d: %w", idx, err)
		tl_users_user_full_gen.go#L175: 		return fmt.Errorf("can't decode users.userFull#3b6d152e to nil")
		tl_users_user_full_gen.go#L178: 		return fmt.Errorf("unable to decode users.userFull#3b6d152e: %w", err)
		tl_users_user_full_gen.go#L186: 		return fmt.Errorf("can't decode users.userFull#3b6d152e to nil")
		tl_users_user_full_gen.go#L190: 			return fmt.Errorf("unable to decode users.userFull#3b6d152e: field full_user: %w", err)
		tl_users_user_full_gen.go#L196: 			return fmt.Errorf("unable to decode users.userFull#3b6d152e: field chats: %w", err)
		tl_users_user_full_gen.go#L205: 				return fmt.Errorf("unable to decode users.userFull#3b6d152e: field chats: %w", err)
		tl_users_user_full_gen.go#L213: 			return fmt.Errorf("unable to decode users.userFull#3b6d152e: field users: %w", err)
		tl_users_user_full_gen.go#L222: 				return fmt.Errorf("unable to decode users.userFull#3b6d152e: field users: %w", err)
		tl_video_size_gen.go#L188: 		return fmt.Errorf("can't encode videoSize#de33b094 as nil")
		tl_video_size_gen.go#L197: 		return fmt.Errorf("can't encode videoSize#de33b094 as nil")
		tl_video_size_gen.go#L201: 		return fmt.Errorf("unable to encode videoSize#de33b094: field flags: %w", err)
		tl_video_size_gen.go#L216: 		return fmt.Errorf("can't decode videoSize#de33b094 to nil")
		tl_video_size_gen.go#L219: 		return fmt.Errorf("unable to decode videoSize#de33b094: %w", err)
		tl_video_size_gen.go#L227: 		return fmt.Errorf("can't decode videoSize#de33b094 to nil")
		tl_video_size_gen.go#L231: 			return fmt.Errorf("unable to decode videoSize#de33b094: field flags: %w", err)
		tl_video_size_gen.go#L237: 			return fmt.Errorf("unable to decode videoSize#de33b094: field type: %w", err)
		tl_video_size_gen.go#L244: 			return fmt.Errorf("unable to decode videoSize#de33b094: field w: %w", err)
		tl_video_size_gen.go#L251: 			return fmt.Errorf("unable to decode videoSize#de33b094: field h: %w", err)
		tl_video_size_gen.go#L258: 			return fmt.Errorf("unable to decode videoSize#de33b094: field size: %w", err)
		tl_video_size_gen.go#L265: 			return fmt.Errorf("unable to decode videoSize#de33b094: field video_start_ts: %w", err)
		tl_video_size_gen.go#L432: 		return fmt.Errorf("can't encode videoSizeEmojiMarkup#f85c413c as nil")
		tl_video_size_gen.go#L441: 		return fmt.Errorf("can't encode videoSizeEmojiMarkup#f85c413c as nil")
		tl_video_size_gen.go#L454: 		return fmt.Errorf("can't decode videoSizeEmojiMarkup#f85c413c to nil")
		tl_video_size_gen.go#L457: 		return fmt.Errorf("unable to decode videoSizeEmojiMarkup#f85c413c: %w", err)
		tl_video_size_gen.go#L465: 		return fmt.Errorf("can't decode videoSizeEmojiMarkup#f85c413c to nil")
		tl_video_size_gen.go#L470: 			return fmt.Errorf("unable to decode videoSizeEmojiMarkup#f85c413c: field emoji_id: %w", err)
		tl_video_size_gen.go#L477: 			return fmt.Errorf("unable to decode videoSizeEmojiMarkup#f85c413c: field background_colors: %w", err)
		tl_video_size_gen.go#L486: 				return fmt.Errorf("unable to decode videoSizeEmojiMarkup#f85c413c: field background_colors: %w", err)
		tl_video_size_gen.go#L627: 		return fmt.Errorf("can't encode videoSizeStickerMarkup#da082fe as nil")
		tl_video_size_gen.go#L636: 		return fmt.Errorf("can't encode videoSizeStickerMarkup#da082fe as nil")
		tl_video_size_gen.go#L639: 		return fmt.Errorf("unable to encode videoSizeStickerMarkup#da082fe: field stickerset is nil")
		tl_video_size_gen.go#L642: 		return fmt.Errorf("unable to encode videoSizeStickerMarkup#da082fe: field stickerset: %w", err)
		tl_video_size_gen.go#L655: 		return fmt.Errorf("can't decode videoSizeStickerMarkup#da082fe to nil")
		tl_video_size_gen.go#L658: 		return fmt.Errorf("unable to decode videoSizeStickerMarkup#da082fe: %w", err)
		tl_video_size_gen.go#L666: 		return fmt.Errorf("can't decode videoSizeStickerMarkup#da082fe to nil")
		tl_video_size_gen.go#L671: 			return fmt.Errorf("unable to decode videoSizeStickerMarkup#da082fe: field stickerset: %w", err)
		tl_video_size_gen.go#L678: 			return fmt.Errorf("unable to decode videoSizeStickerMarkup#da082fe: field sticker_id: %w", err)
		tl_video_size_gen.go#L685: 			return fmt.Errorf("unable to decode videoSizeStickerMarkup#da082fe: field background_colors: %w", err)
		tl_video_size_gen.go#L694: 				return fmt.Errorf("unable to decode videoSizeStickerMarkup#da082fe: field background_colors: %w", err)
		tl_video_size_gen.go#L775: 			return nil, fmt.Errorf("unable to decode VideoSizeClass: %w", err)
		tl_video_size_gen.go#L782: 			return nil, fmt.Errorf("unable to decode VideoSizeClass: %w", err)
		tl_video_size_gen.go#L789: 			return nil, fmt.Errorf("unable to decode VideoSizeClass: %w", err)
		tl_video_size_gen.go#L793: 		return nil, fmt.Errorf("unable to decode VideoSizeClass: %w", bin.NewUnexpectedID(id))
		tl_video_size_gen.go#L805: 		return fmt.Errorf("unable to decode VideoSizeBox to nil")
		tl_video_size_gen.go#L809: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_video_size_gen.go#L818: 		return fmt.Errorf("unable to encode VideoSizeClass as nil")
		tl_wall_paper_class_vector_gen.go#L112: 		return fmt.Errorf("can't encode Vector<WallPaper> as nil")
		tl_wall_paper_class_vector_gen.go#L121: 		return fmt.Errorf("can't encode Vector<WallPaper> as nil")
		tl_wall_paper_class_vector_gen.go#L126: 			return fmt.Errorf("unable to encode Vector<WallPaper>: field Elems element with index %d is nil", idx)
		tl_wall_paper_class_vector_gen.go#L129: 			return fmt.Errorf("unable to encode Vector<WallPaper>: field Elems element with index %d: %w", idx, err)
		tl_wall_paper_class_vector_gen.go#L138: 		return fmt.Errorf("can't decode Vector<WallPaper> to nil")
		tl_wall_paper_class_vector_gen.go#L147: 		return fmt.Errorf("can't decode Vector<WallPaper> to nil")
		tl_wall_paper_class_vector_gen.go#L152: 			return fmt.Errorf("unable to decode Vector<WallPaper>: field Elems: %w", err)
		tl_wall_paper_class_vector_gen.go#L161: 				return fmt.Errorf("unable to decode Vector<WallPaper>: field Elems: %w", err)
		tl_wall_paper_gen.go#L259: 		return fmt.Errorf("can't encode wallPaper#a437c3ed as nil")
		tl_wall_paper_gen.go#L268: 		return fmt.Errorf("can't encode wallPaper#a437c3ed as nil")
		tl_wall_paper_gen.go#L273: 		return fmt.Errorf("unable to encode wallPaper#a437c3ed: field flags: %w", err)
		tl_wall_paper_gen.go#L278: 		return fmt.Errorf("unable to encode wallPaper#a437c3ed: field document is nil")
		tl_wall_paper_gen.go#L281: 		return fmt.Errorf("unable to encode wallPaper#a437c3ed: field document: %w", err)
		tl_wall_paper_gen.go#L285: 			return fmt.Errorf("unable to encode wallPaper#a437c3ed: field settings: %w", err)
		tl_wall_paper_gen.go#L294: 		return fmt.Errorf("can't decode wallPaper#a437c3ed to nil")
		tl_wall_paper_gen.go#L297: 		return fmt.Errorf("unable to decode wallPaper#a437c3ed: %w", err)
		tl_wall_paper_gen.go#L305: 		return fmt.Errorf("can't decode wallPaper#a437c3ed to nil")
		tl_wall_paper_gen.go#L310: 			return fmt.Errorf("unable to decode wallPaper#a437c3ed: field id: %w", err)
		tl_wall_paper_gen.go#L316: 			return fmt.Errorf("unable to decode wallPaper#a437c3ed: field flags: %w", err)
		tl_wall_paper_gen.go#L326: 			return fmt.Errorf("unable to decode wallPaper#a437c3ed: field access_hash: %w", err)
		tl_wall_paper_gen.go#L333: 			return fmt.Errorf("unable to decode wallPaper#a437c3ed: field slug: %w", err)
		tl_wall_paper_gen.go#L340: 			return fmt.Errorf("unable to decode wallPaper#a437c3ed: field document: %w", err)
		tl_wall_paper_gen.go#L346: 			return fmt.Errorf("unable to decode wallPaper#a437c3ed: field settings: %w", err)
		tl_wall_paper_gen.go#L629: 		return fmt.Errorf("can't encode wallPaperNoFile#e0804116 as nil")
		tl_wall_paper_gen.go#L638: 		return fmt.Errorf("can't encode wallPaperNoFile#e0804116 as nil")
		tl_wall_paper_gen.go#L643: 		return fmt.Errorf("unable to encode wallPaperNoFile#e0804116: field flags: %w", err)
		tl_wall_paper_gen.go#L647: 			return fmt.Errorf("unable to encode wallPaperNoFile#e0804116: field settings: %w", err)
		tl_wall_paper_gen.go#L656: 		return fmt.Errorf("can't decode wallPaperNoFile#e0804116 to nil")
		tl_wall_paper_gen.go#L659: 		return fmt.Errorf("unable to decode wallPaperNoFile#e0804116: %w", err)
		tl_wall_paper_gen.go#L667: 		return fmt.Errorf("can't decode wallPaperNoFile#e0804116 to nil")
		tl_wall_paper_gen.go#L672: 			return fmt.Errorf("unable to decode wallPaperNoFile#e0804116: field id: %w", err)
		tl_wall_paper_gen.go#L678: 			return fmt.Errorf("unable to decode wallPaperNoFile#e0804116: field flags: %w", err)
		tl_wall_paper_gen.go#L685: 			return fmt.Errorf("unable to decode wallPaperNoFile#e0804116: field settings: %w", err)
		tl_wall_paper_gen.go#L851: 			return nil, fmt.Errorf("unable to decode WallPaperClass: %w", err)
		tl_wall_paper_gen.go#L858: 			return nil, fmt.Errorf("unable to decode WallPaperClass: %w", err)
		tl_wall_paper_gen.go#L862: 		return nil, fmt.Errorf("unable to decode WallPaperClass: %w", bin.NewUnexpectedID(id))
		tl_wall_paper_gen.go#L874: 		return fmt.Errorf("unable to decode WallPaperBox to nil")
		tl_wall_paper_gen.go#L878: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_wall_paper_gen.go#L887: 		return fmt.Errorf("unable to encode WallPaperClass as nil")
		tl_wall_paper_settings_gen.go#L312: 		return fmt.Errorf("can't encode wallPaperSettings#372efcd0 as nil")
		tl_wall_paper_settings_gen.go#L321: 		return fmt.Errorf("can't encode wallPaperSettings#372efcd0 as nil")
		tl_wall_paper_settings_gen.go#L325: 		return fmt.Errorf("unable to encode wallPaperSettings#372efcd0: field flags: %w", err)
		tl_wall_paper_settings_gen.go#L354: 		return fmt.Errorf("can't decode wallPaperSettings#372efcd0 to nil")
		tl_wall_paper_settings_gen.go#L357: 		return fmt.Errorf("unable to decode wallPaperSettings#372efcd0: %w", err)
		tl_wall_paper_settings_gen.go#L365: 		return fmt.Errorf("can't decode wallPaperSettings#372efcd0 to nil")
		tl_wall_paper_settings_gen.go#L369: 			return fmt.Errorf("unable to decode wallPaperSettings#372efcd0: field flags: %w", err)
		tl_wall_paper_settings_gen.go#L377: 			return fmt.Errorf("unable to decode wallPaperSettings#372efcd0: field background_color: %w", err)
		tl_wall_paper_settings_gen.go#L384: 			return fmt.Errorf("unable to decode wallPaperSettings#372efcd0: field second_background_color: %w", err)
		tl_wall_paper_settings_gen.go#L391: 			return fmt.Errorf("unable to decode wallPaperSettings#372efcd0: field third_background_color: %w", err)
		tl_wall_paper_settings_gen.go#L398: 			return fmt.Errorf("unable to decode wallPaperSettings#372efcd0: field fourth_background_color: %w", err)
		tl_wall_paper_settings_gen.go#L405: 			return fmt.Errorf("unable to decode wallPaperSettings#372efcd0: field intensity: %w", err)
		tl_wall_paper_settings_gen.go#L412: 			return fmt.Errorf("unable to decode wallPaperSettings#372efcd0: field rotation: %w", err)
		tl_wall_paper_settings_gen.go#L419: 			return fmt.Errorf("unable to decode wallPaperSettings#372efcd0: field emoticon: %w", err)
		tl_web_authorization_gen.go#L206: 		return fmt.Errorf("can't encode webAuthorization#a6f8f452 as nil")
		tl_web_authorization_gen.go#L215: 		return fmt.Errorf("can't encode webAuthorization#a6f8f452 as nil")
		tl_web_authorization_gen.go#L232: 		return fmt.Errorf("can't decode webAuthorization#a6f8f452 to nil")
		tl_web_authorization_gen.go#L235: 		return fmt.Errorf("unable to decode webAuthorization#a6f8f452: %w", err)
		tl_web_authorization_gen.go#L243: 		return fmt.Errorf("can't decode webAuthorization#a6f8f452 to nil")
		tl_web_authorization_gen.go#L248: 			return fmt.Errorf("unable to decode webAuthorization#a6f8f452: field hash: %w", err)
		tl_web_authorization_gen.go#L255: 			return fmt.Errorf("unable to decode webAuthorization#a6f8f452: field bot_id: %w", err)
		tl_web_authorization_gen.go#L262: 			return fmt.Errorf("unable to decode webAuthorization#a6f8f452: field domain: %w", err)
		tl_web_authorization_gen.go#L269: 			return fmt.Errorf("unable to decode webAuthorization#a6f8f452: field browser: %w", err)
		tl_web_authorization_gen.go#L276: 			return fmt.Errorf("unable to decode webAuthorization#a6f8f452: field platform: %w", err)
		tl_web_authorization_gen.go#L283: 			return fmt.Errorf("unable to decode webAuthorization#a6f8f452: field date_created: %w", err)
		tl_web_authorization_gen.go#L290: 			return fmt.Errorf("unable to decode webAuthorization#a6f8f452: field date_active: %w", err)
		tl_web_authorization_gen.go#L297: 			return fmt.Errorf("unable to decode webAuthorization#a6f8f452: field ip: %w", err)
		tl_web_authorization_gen.go#L304: 			return fmt.Errorf("unable to decode webAuthorization#a6f8f452: field region: %w", err)
		tl_web_document_gen.go#L164: 		return fmt.Errorf("can't encode webDocument#1c570ed1 as nil")
		tl_web_document_gen.go#L173: 		return fmt.Errorf("can't encode webDocument#1c570ed1 as nil")
		tl_web_document_gen.go#L182: 			return fmt.Errorf("unable to encode webDocument#1c570ed1: field attributes element with index %d is nil", idx)
		tl_web_document_gen.go#L185: 			return fmt.Errorf("unable to encode webDocument#1c570ed1: field attributes element with index %d: %w", idx, err)
		tl_web_document_gen.go#L194: 		return fmt.Errorf("can't decode webDocument#1c570ed1 to nil")
		tl_web_document_gen.go#L197: 		return fmt.Errorf("unable to decode webDocument#1c570ed1: %w", err)
		tl_web_document_gen.go#L205: 		return fmt.Errorf("can't decode webDocument#1c570ed1 to nil")
		tl_web_document_gen.go#L210: 			return fmt.Errorf("unable to decode webDocument#1c570ed1: field url: %w", err)
		tl_web_document_gen.go#L217: 			return fmt.Errorf("unable to decode webDocument#1c570ed1: field access_hash: %w", err)
		tl_web_document_gen.go#L224: 			return fmt.Errorf("unable to decode webDocument#1c570ed1: field size: %w", err)
		tl_web_document_gen.go#L231: 			return fmt.Errorf("unable to decode webDocument#1c570ed1: field mime_type: %w", err)
		tl_web_document_gen.go#L238: 			return fmt.Errorf("unable to decode webDocument#1c570ed1: field attributes: %w", err)
		tl_web_document_gen.go#L247: 				return fmt.Errorf("unable to decode webDocument#1c570ed1: field attributes: %w", err)
		tl_web_document_gen.go#L422: 		return fmt.Errorf("can't encode webDocumentNoProxy#f9c8bcc6 as nil")
		tl_web_document_gen.go#L431: 		return fmt.Errorf("can't encode webDocumentNoProxy#f9c8bcc6 as nil")
		tl_web_document_gen.go#L439: 			return fmt.Errorf("unable to encode webDocumentNoProxy#f9c8bcc6: field attributes element with index %d is nil", idx)
		tl_web_document_gen.go#L442: 			return fmt.Errorf("unable to encode webDocumentNoProxy#f9c8bcc6: field attributes element with index %d: %w", idx, err)
		tl_web_document_gen.go#L451: 		return fmt.Errorf("can't decode webDocumentNoProxy#f9c8bcc6 to nil")
		tl_web_document_gen.go#L454: 		return fmt.Errorf("unable to decode webDocumentNoProxy#f9c8bcc6: %w", err)
		tl_web_document_gen.go#L462: 		return fmt.Errorf("can't decode webDocumentNoProxy#f9c8bcc6 to nil")
		tl_web_document_gen.go#L467: 			return fmt.Errorf("unable to decode webDocumentNoProxy#f9c8bcc6: field url: %w", err)
		tl_web_document_gen.go#L474: 			return fmt.Errorf("unable to decode webDocumentNoProxy#f9c8bcc6: field size: %w", err)
		tl_web_document_gen.go#L481: 			return fmt.Errorf("unable to decode webDocumentNoProxy#f9c8bcc6: field mime_type: %w", err)
		tl_web_document_gen.go#L488: 			return fmt.Errorf("unable to decode webDocumentNoProxy#f9c8bcc6: field attributes: %w", err)
		tl_web_document_gen.go#L497: 				return fmt.Errorf("unable to decode webDocumentNoProxy#f9c8bcc6: field attributes: %w", err)
		tl_web_document_gen.go#L615: 			return nil, fmt.Errorf("unable to decode WebDocumentClass: %w", err)
		tl_web_document_gen.go#L622: 			return nil, fmt.Errorf("unable to decode WebDocumentClass: %w", err)
		tl_web_document_gen.go#L626: 		return nil, fmt.Errorf("unable to decode WebDocumentClass: %w", bin.NewUnexpectedID(id))
		tl_web_document_gen.go#L638: 		return fmt.Errorf("unable to decode WebDocumentBox to nil")
		tl_web_document_gen.go#L642: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_web_document_gen.go#L651: 		return fmt.Errorf("unable to encode WebDocumentClass as nil")
		tl_web_page_attribute_gen.go#L161: 		return fmt.Errorf("can't encode webPageAttributeTheme#54b56617 as nil")
		tl_web_page_attribute_gen.go#L170: 		return fmt.Errorf("can't encode webPageAttributeTheme#54b56617 as nil")
		tl_web_page_attribute_gen.go#L174: 		return fmt.Errorf("unable to encode webPageAttributeTheme#54b56617: field flags: %w", err)
		tl_web_page_attribute_gen.go#L180: 				return fmt.Errorf("unable to encode webPageAttributeTheme#54b56617: field documents element with index %d is nil", idx)
		tl_web_page_attribute_gen.go#L183: 				return fmt.Errorf("unable to encode webPageAttributeTheme#54b56617: field documents element with index %d: %w", idx, err)
		tl_web_page_attribute_gen.go#L189: 			return fmt.Errorf("unable to encode webPageAttributeTheme#54b56617: field settings: %w", err)
		tl_web_page_attribute_gen.go#L198: 		return fmt.Errorf("can't decode webPageAttributeTheme#54b56617 to nil")
		tl_web_page_attribute_gen.go#L201: 		return fmt.Errorf("unable to decode webPageAttributeTheme#54b56617: %w", err)
		tl_web_page_attribute_gen.go#L209: 		return fmt.Errorf("can't decode webPageAttributeTheme#54b56617 to nil")
		tl_web_page_attribute_gen.go#L213: 			return fmt.Errorf("unable to decode webPageAttributeTheme#54b56617: field flags: %w", err)
		tl_web_page_attribute_gen.go#L219: 			return fmt.Errorf("unable to decode webPageAttributeTheme#54b56617: field documents: %w", err)
		tl_web_page_attribute_gen.go#L228: 				return fmt.Errorf("unable to decode webPageAttributeTheme#54b56617: field documents: %w", err)
		tl_web_page_attribute_gen.go#L235: 			return fmt.Errorf("unable to decode webPageAttributeTheme#54b56617: field settings: %w", err)
		tl_web_page_attribute_gen.go#L421: 		return fmt.Errorf("can't encode webPageAttributeStory#2e94c3e7 as nil")
		tl_web_page_attribute_gen.go#L430: 		return fmt.Errorf("can't encode webPageAttributeStory#2e94c3e7 as nil")
		tl_web_page_attribute_gen.go#L434: 		return fmt.Errorf("unable to encode webPageAttributeStory#2e94c3e7: field flags: %w", err)
		tl_web_page_attribute_gen.go#L437: 		return fmt.Errorf("unable to encode webPageAttributeStory#2e94c3e7: field peer is nil")
		tl_web_page_attribute_gen.go#L440: 		return fmt.Errorf("unable to encode webPageAttributeStory#2e94c3e7: field peer: %w", err)
		tl_web_page_attribute_gen.go#L445: 			return fmt.Errorf("unable to encode webPageAttributeStory#2e94c3e7: field story is nil")
		tl_web_page_attribute_gen.go#L448: 			return fmt.Errorf("unable to encode webPageAttributeStory#2e94c3e7: field story: %w", err)
		tl_web_page_attribute_gen.go#L457: 		return fmt.Errorf("can't decode webPageAttributeStory#2e94c3e7 to nil")
		tl_web_page_attribute_gen.go#L460: 		return fmt.Errorf("unable to decode webPageAttributeStory#2e94c3e7: %w", err)
		tl_web_page_attribute_gen.go#L468: 		return fmt.Errorf("can't decode webPageAttributeStory#2e94c3e7 to nil")
		tl_web_page_attribute_gen.go#L472: 			return fmt.Errorf("unable to decode webPageAttributeStory#2e94c3e7: field flags: %w", err)
		tl_web_page_attribute_gen.go#L478: 			return fmt.Errorf("unable to decode webPageAttributeStory#2e94c3e7: field peer: %w", err)
		tl_web_page_attribute_gen.go#L485: 			return fmt.Errorf("unable to decode webPageAttributeStory#2e94c3e7: field id: %w", err)
		tl_web_page_attribute_gen.go#L492: 			return fmt.Errorf("unable to decode webPageAttributeStory#2e94c3e7: field story: %w", err)
		tl_web_page_attribute_gen.go#L581: 			return nil, fmt.Errorf("unable to decode WebPageAttributeClass: %w", err)
		tl_web_page_attribute_gen.go#L588: 			return nil, fmt.Errorf("unable to decode WebPageAttributeClass: %w", err)
		tl_web_page_attribute_gen.go#L592: 		return nil, fmt.Errorf("unable to decode WebPageAttributeClass: %w", bin.NewUnexpectedID(id))
		tl_web_page_attribute_gen.go#L604: 		return fmt.Errorf("unable to decode WebPageAttributeBox to nil")
		tl_web_page_attribute_gen.go#L608: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_web_page_attribute_gen.go#L617: 		return fmt.Errorf("unable to encode WebPageAttributeClass as nil")
		tl_web_page_gen.go#L152: 		return fmt.Errorf("can't encode webPageEmpty#211a1788 as nil")
		tl_web_page_gen.go#L161: 		return fmt.Errorf("can't encode webPageEmpty#211a1788 as nil")
		tl_web_page_gen.go#L165: 		return fmt.Errorf("unable to encode webPageEmpty#211a1788: field flags: %w", err)
		tl_web_page_gen.go#L177: 		return fmt.Errorf("can't decode webPageEmpty#211a1788 to nil")
		tl_web_page_gen.go#L180: 		return fmt.Errorf("unable to decode webPageEmpty#211a1788: %w", err)
		tl_web_page_gen.go#L188: 		return fmt.Errorf("can't decode webPageEmpty#211a1788 to nil")
		tl_web_page_gen.go#L192: 			return fmt.Errorf("unable to decode webPageEmpty#211a1788: field flags: %w", err)
		tl_web_page_gen.go#L198: 			return fmt.Errorf("unable to decode webPageEmpty#211a1788: field id: %w", err)
		tl_web_page_gen.go#L205: 			return fmt.Errorf("unable to decode webPageEmpty#211a1788: field url: %w", err)
		tl_web_page_gen.go#L367: 		return fmt.Errorf("can't encode webPagePending#b0d13e47 as nil")
		tl_web_page_gen.go#L376: 		return fmt.Errorf("can't encode webPagePending#b0d13e47 as nil")
		tl_web_page_gen.go#L380: 		return fmt.Errorf("unable to encode webPagePending#b0d13e47: field flags: %w", err)
		tl_web_page_gen.go#L393: 		return fmt.Errorf("can't decode webPagePending#b0d13e47 to nil")
		tl_web_page_gen.go#L396: 		return fmt.Errorf("unable to decode webPagePending#b0d13e47: %w", err)
		tl_web_page_gen.go#L404: 		return fmt.Errorf("can't decode webPagePending#b0d13e47 to nil")
		tl_web_page_gen.go#L408: 			return fmt.Errorf("unable to decode webPagePending#b0d13e47: field flags: %w", err)
		tl_web_page_gen.go#L414: 			return fmt.Errorf("unable to decode webPagePending#b0d13e47: field id: %w", err)
		tl_web_page_gen.go#L421: 			return fmt.Errorf("unable to decode webPagePending#b0d13e47: field url: %w", err)
		tl_web_page_gen.go#L428: 			return fmt.Errorf("unable to decode webPagePending#b0d13e47: field date: %w", err)
		tl_web_page_gen.go#L902: 		return fmt.Errorf("can't encode webPage#e89c45b2 as nil")
		tl_web_page_gen.go#L911: 		return fmt.Errorf("can't encode webPage#e89c45b2 as nil")
		tl_web_page_gen.go#L915: 		return fmt.Errorf("unable to encode webPage#e89c45b2: field flags: %w", err)
		tl_web_page_gen.go#L935: 			return fmt.Errorf("unable to encode webPage#e89c45b2: field photo is nil")
		tl_web_page_gen.go#L938: 			return fmt.Errorf("unable to encode webPage#e89c45b2: field photo: %w", err)
		tl_web_page_gen.go#L961: 			return fmt.Errorf("unable to encode webPage#e89c45b2: field document is nil")
		tl_web_page_gen.go#L964: 			return fmt.Errorf("unable to encode webPage#e89c45b2: field document: %w", err)
		tl_web_page_gen.go#L969: 			return fmt.Errorf("unable to encode webPage#e89c45b2: field cached_page: %w", err)
		tl_web_page_gen.go#L976: 				return fmt.Errorf("unable to encode webPage#e89c45b2: field attributes element with index %d is nil", idx)
		tl_web_page_gen.go#L979: 				return fmt.Errorf("unable to encode webPage#e89c45b2: field attributes element with index %d: %w", idx, err)
		tl_web_page_gen.go#L989: 		return fmt.Errorf("can't decode webPage#e89c45b2 to nil")
		tl_web_page_gen.go#L992: 		return fmt.Errorf("unable to decode webPage#e89c45b2: %w", err)
		tl_web_page_gen.go#L1000: 		return fmt.Errorf("can't decode webPage#e89c45b2 to nil")
		tl_web_page_gen.go#L1004: 			return fmt.Errorf("unable to decode webPage#e89c45b2: field flags: %w", err)
		tl_web_page_gen.go#L1011: 			return fmt.Errorf("unable to decode webPage#e89c45b2: field id: %w", err)
		tl_web_page_gen.go#L1018: 			return fmt.Errorf("unable to decode webPage#e89c45b2: field url: %w", err)
		tl_web_page_gen.go#L1025: 			return fmt.Errorf("unable to decode webPage#e89c45b2: field display_url: %w", err)
		tl_web_page_gen.go#L1032: 			return fmt.Errorf("unable to decode webPage#e89c45b2: field hash: %w", err)
		tl_web_page_gen.go#L1039: 			return fmt.Errorf("unable to decode webPage#e89c45b2: field type: %w", err)
		tl_web_page_gen.go#L1046: 			return fmt.Errorf("unable to decode webPage#e89c45b2: field site_name: %w", err)
		tl_web_page_gen.go#L1053: 			return fmt.Errorf("unable to decode webPage#e89c45b2: field title: %w", err)
		tl_web_page_gen.go#L1060: 			return fmt.Errorf("unable to decode webPage#e89c45b2: field description: %w", err)
		tl_web_page_gen.go#L1067: 			return fmt.Errorf("unable to decode webPage#e89c45b2: field photo: %w", err)
		tl_web_page_gen.go#L1074: 			return fmt.Errorf("unable to decode webPage#e89c45b2: field embed_url: %w", err)
		tl_web_page_gen.go#L1081: 			return fmt.Errorf("unable to decode webPage#e89c45b2: field embed_type: %w", err)
		tl_web_page_gen.go#L1088: 			return fmt.Errorf("unable to decode webPage#e89c45b2: field embed_width: %w", err)
		tl_web_page_gen.go#L1095: 			return fmt.Errorf("unable to decode webPage#e89c45b2: field embed_height: %w", err)
		tl_web_page_gen.go#L1102: 			return fmt.Errorf("unable to decode webPage#e89c45b2: field duration: %w", err)
		tl_web_page_gen.go#L1109: 			return fmt.Errorf("unable to decode webPage#e89c45b2: field author: %w", err)
		tl_web_page_gen.go#L1116: 			return fmt.Errorf("unable to decode webPage#e89c45b2: field document: %w", err)
		tl_web_page_gen.go#L1122: 			return fmt.Errorf("unable to decode webPage#e89c45b2: field cached_page: %w", err)
		tl_web_page_gen.go#L1128: 			return fmt.Errorf("unable to decode webPage#e89c45b2: field attributes: %w", err)
		tl_web_page_gen.go#L1137: 				return fmt.Errorf("unable to decode webPage#e89c45b2: field attributes: %w", err)
		tl_web_page_gen.go#L1563: 		return fmt.Errorf("can't encode webPageNotModified#7311ca11 as nil")
		tl_web_page_gen.go#L1572: 		return fmt.Errorf("can't encode webPageNotModified#7311ca11 as nil")
		tl_web_page_gen.go#L1576: 		return fmt.Errorf("unable to encode webPageNotModified#7311ca11: field flags: %w", err)
		tl_web_page_gen.go#L1587: 		return fmt.Errorf("can't decode webPageNotModified#7311ca11 to nil")
		tl_web_page_gen.go#L1590: 		return fmt.Errorf("unable to decode webPageNotModified#7311ca11: %w", err)
		tl_web_page_gen.go#L1598: 		return fmt.Errorf("can't decode webPageNotModified#7311ca11 to nil")
		tl_web_page_gen.go#L1602: 			return fmt.Errorf("unable to decode webPageNotModified#7311ca11: field flags: %w", err)
		tl_web_page_gen.go#L1608: 			return fmt.Errorf("unable to decode webPageNotModified#7311ca11: field cached_page_views: %w", err)
		tl_web_page_gen.go#L1733: 			return nil, fmt.Errorf("unable to decode WebPageClass: %w", err)
		tl_web_page_gen.go#L1740: 			return nil, fmt.Errorf("unable to decode WebPageClass: %w", err)
		tl_web_page_gen.go#L1747: 			return nil, fmt.Errorf("unable to decode WebPageClass: %w", err)
		tl_web_page_gen.go#L1754: 			return nil, fmt.Errorf("unable to decode WebPageClass: %w", err)
		tl_web_page_gen.go#L1758: 		return nil, fmt.Errorf("unable to decode WebPageClass: %w", bin.NewUnexpectedID(id))
		tl_web_page_gen.go#L1770: 		return fmt.Errorf("unable to decode WebPageBox to nil")
		tl_web_page_gen.go#L1774: 		return fmt.Errorf("unable to decode boxed value: %w", err)
		tl_web_page_gen.go#L1783: 		return fmt.Errorf("unable to encode WebPageClass as nil")
		tl_web_view_message_sent_gen.go#L136: 		return fmt.Errorf("can't encode webViewMessageSent#c94511c as nil")
		tl_web_view_message_sent_gen.go#L145: 		return fmt.Errorf("can't encode webViewMessageSent#c94511c as nil")
		tl_web_view_message_sent_gen.go#L149: 		return fmt.Errorf("unable to encode webViewMessageSent#c94511c: field flags: %w", err)
		tl_web_view_message_sent_gen.go#L153: 			return fmt.Errorf("unable to encode webViewMessageSent#c94511c: field msg_id is nil")
		tl_web_view_message_sent_gen.go#L156: 			return fmt.Errorf("unable to encode webViewMessageSent#c94511c: field msg_id: %w", err)
		tl_web_view_message_sent_gen.go#L165: 		return fmt.Errorf("can't decode webViewMessageSent#c94511c to nil")
		tl_web_view_message_sent_gen.go#L168: 		return fmt.Errorf("unable to decode webViewMessageSent#c94511c: %w", err)
		tl_web_view_message_sent_gen.go#L176: 		return fmt.Errorf("can't decode webViewMessageSent#c94511c to nil")
		tl_web_view_message_sent_gen.go#L180: 			return fmt.Errorf("unable to decode webViewMessageSent#c94511c: field flags: %w", err)
		tl_web_view_message_sent_gen.go#L186: 			return fmt.Errorf("unable to decode webViewMessageSent#c94511c: field msg_id: %w", err)
		tl_web_view_result_url_gen.go#L126: 		return fmt.Errorf("can't encode webViewResultUrl#c14557c as nil")
		tl_web_view_result_url_gen.go#L135: 		return fmt.Errorf("can't encode webViewResultUrl#c14557c as nil")
		tl_web_view_result_url_gen.go#L145: 		return fmt.Errorf("can't decode webViewResultUrl#c14557c to nil")
		tl_web_view_result_url_gen.go#L148: 		return fmt.Errorf("unable to decode webViewResultUrl#c14557c: %w", err)
		tl_web_view_result_url_gen.go#L156: 		return fmt.Errorf("can't decode webViewResultUrl#c14557c to nil")
		tl_web_view_result_url_gen.go#L161: 			return fmt.Errorf("unable to decode webViewResultUrl#c14557c: field query_id: %w", err)
		tl_web_view_result_url_gen.go#L168: 			return fmt.Errorf("unable to decode webViewResultUrl#c14557c: field url: %w", err)

	github.com/klauspost/compress/flate
		deflate.go#L844: 		return fmt.Errorf("flate: invalid compression level %d: want value in range [-2, 9]", level)
		token.go#L267: 			panic(fmt.Errorf("invalid length: %v", xlength))
		token.go#L270: 			panic(fmt.Errorf("invalid offset: %v", xoffset))
		token.go#L287: 			panic(fmt.Errorf("invalid offset: %v", xoffset))

	github.com/klauspost/compress/gzip
		gzip.go#L70: 		return nil, fmt.Errorf("gzip: invalid compression level: %d", level)

	go.opentelemetry.io/otel/codes
		codes.go#L77: 		return fmt.Errorf("nil receiver passed to UnmarshalJSON")
		codes.go#L90: 		return fmt.Errorf("invalid code: %q", string(b))
		codes.go#L94: 				return fmt.Errorf("invalid code: %q", ci)
		codes.go#L100: 		return fmt.Errorf("invalid code: %q", string(b))
		codes.go#L102: 		return fmt.Errorf("invalid code: %q", string(b))
		codes.go#L113: 		return nil, fmt.Errorf("invalid code: %d", *c)

	go.opentelemetry.io/otel/trace
		tracestate.go#L56: 		return member{}, fmt.Errorf("%w: %s", errInvalidKey, key)
		tracestate.go#L60: 			return member{}, fmt.Errorf("%w: %s", errInvalidKey, key)
		tracestate.go#L64: 			return member{}, fmt.Errorf("%w: %s", errInvalidKey, key)
		tracestate.go#L68: 		return member{}, fmt.Errorf("%w: %s", errInvalidValue, value)
		tracestate.go#L76: 		return member{}, fmt.Errorf("%w: %s", errInvalidMember, m)
		tracestate.go#L80: 		return member{}, fmt.Errorf("%w: %s", errInvalidMember, m)
		tracestate.go#L118: 		return fmt.Errorf("failed to parse tracestate: %w", err)

	go.uber.org/zap
		encoder.go#L58: 		return fmt.Errorf("encoder already registered for name %q", name)
		encoder.go#L76: 		return nil, fmt.Errorf("no encoder registered for name %q", name)
		global.go#L158: 	return nil, fmt.Errorf("unrecognized level: %q", lvl)
		http_handler.go#L134: 		return 0, fmt.Errorf("malformed request body: %v", err)
		sink.go#L84: 		return fmt.Errorf("%q is not a valid scheme: %v", scheme, err)
		sink.go#L87: 		return fmt.Errorf("sink factory already registered for scheme %q", normalized)
		sink.go#L104: 		return nil, fmt.Errorf("can't parse %q as a URL: %v", rawURL, err)
		sink.go#L132: 		return nil, fmt.Errorf("user and password not allowed with file URLs: got %v", u)
		sink.go#L135: 		return nil, fmt.Errorf("fragments not allowed with file URLs: got %v", u)
		sink.go#L138: 		return nil, fmt.Errorf("query parameters not allowed with file URLs: got %v", u)
		sink.go#L142: 		return nil, fmt.Errorf("ports not allowed with file URLs: got %v", u)
		sink.go#L145: 		return nil, fmt.Errorf("file URLs must leave host empty or use localhost: got %v", u)
		sink.go#L177: 		return "", fmt.Errorf("may not contain %q", c)
		writer.go#L73: 			openErr = multierr.Append(openErr, fmt.Errorf("open sink %q: %w", path, err))

	go.uber.org/zap/zapcore
		error.go#L60: 			retErr = fmt.Errorf("PANIC=%v", rerr)
		field.go#L227: 			retErr = fmt.Errorf("PANIC=%v", err)
		increase_level.go#L42: 			return nil, fmt.Errorf("invalid increase level, as level %q is allowed by increased level, but not by existing core", l)
		level.go#L175: 		return fmt.Errorf("unrecognized level: %q", text)

	golang.org/x/sync/errgroup
		errgroup.go#L129: 		panic(fmt.Errorf("errgroup: modify limit while %v goroutines in the group are still active", len(g.sem)))

	math/big
		floatconv.go#L129: 		err = fmt.Errorf("exponent overflow")
		floatconv.go#L277: 		err = fmt.Errorf("expected end of string, found %q", ch)
		floatmarsh.go#L76: 		return fmt.Errorf("Float.GobDecode: encoding version %d not supported", buf[0])
		floatmarsh.go#L128: 		err = fmt.Errorf("math/big: cannot unmarshal %q into a *big.Float (%v)", text, err)
		intconv.go#L222: 		err = fmt.Errorf("invalid rune %#U", ch)
		intmarsh.go#L41: 		return fmt.Errorf("Int.GobDecode: encoding version %d not supported", b>>1)
		intmarsh.go#L59: 		return fmt.Errorf("math/big: cannot unmarshal %q into a *big.Int", text)
		ratmarsh.go#L54: 		return fmt.Errorf("Rat.GobDecode: encoding version %d not supported", b>>1)
		ratmarsh.go#L83: 		return fmt.Errorf("math/big: cannot unmarshal %q into a *big.Rat", text)

	mime
		encodedword.go#L333: 			return fmt.Errorf("mime: unhandled charset %q", charset)
		encodedword.go#L413: 	return 0, fmt.Errorf("mime: invalid hex byte %#02x", b)
		mediatype.go#L363: 			return "", fmt.Errorf("mime: bogus characters after %%: %q", s)
		type.go#L169: 		return fmt.Errorf("mime: extension %q missing leading dot", ext)

	mime/multipart
		multipart.go#L389: 		return nil, fmt.Errorf("multipart: boundary is empty")
		multipart.go#L404: 			return nil, fmt.Errorf("multipart: NextPart: %w", err)
		multipart.go#L423: 			return nil, fmt.Errorf("multipart: expecting a new Part; got line %q", string(line))
		multipart.go#L440: 		return nil, fmt.Errorf("multipart: unexpected line in Next(): %q", line)

	mime/quotedprintable
		reader.go#L40: 	return 0, fmt.Errorf("quotedprintable: invalid hex byte 0x%02x", b)
		reader.go#L99: 					r.rerr = fmt.Errorf("quotedprintable: invalid bytes after =: %q", rightStripped)
		reader.go#L131: 			return n, fmt.Errorf("quotedprintable: invalid unescaped byte 0x%02x in body", b)

	net/http
		client.go#L277: 		return nil, didTimeout, fmt.Errorf("http: RoundTripper implementation (%T) returned a nil *Response with a nil error", rt)
		client.go#L291: 			return nil, didTimeout, fmt.Errorf("http: RoundTripper implementation (%T) returned a *Response with content length %d but a nil Body", rt, resp.ContentLength)
		client.go#L649: 				return nil, uerr(fmt.Errorf("failed to parse Location header %q: %v", loc, err))
		cookie.go#L255: 			return fmt.Errorf("http: invalid byte %q in Cookie.Value", c.Value[i])
		cookie.go#L261: 				return fmt.Errorf("http: invalid byte %q in Cookie.Path", c.Path[i])
		h2_bundle.go#L4094: 			return fmt.Errorf("http2: TLSConfig.CipherSuites is missing an HTTP/2-required AES_128_GCM_SHA256 cipher (need at least one of TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 or TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256)")
		h2_bundle.go#L4883: 			errc <- fmt.Errorf("bogus greeting %q", buf)
		h2_bundle.go#L5634: 		st.body.CloseWithError(fmt.Errorf("sender tried to send more than declared Content-Length of %d bytes", st.declBodyBytes))
		h2_bundle.go#L5702: 		st.body.CloseWithError(fmt.Errorf("request declared a Content-Length of %d but only wrote %d bytes",
		h2_bundle.go#L5727: 	st.body.CloseWithError(fmt.Errorf("%w", os.ErrDeadlineExceeded))
		h2_bundle.go#L6877: 			return fmt.Errorf("target must be an absolute URL or an absolute path: %q", target)
		h2_bundle.go#L6883: 			return fmt.Errorf("cannot push URL with scheme %q from request with scheme %q", u.Scheme, wantScheme)
		h2_bundle.go#L6891: 			return fmt.Errorf("promised request headers cannot include pseudo header %q", k)
		h2_bundle.go#L6903: 			return fmt.Errorf("promised request headers cannot include %q", k)
		h2_bundle.go#L6914: 		return fmt.Errorf("method %q must be GET or HEAD", opts.Method)
		h2_bundle.go#L7066: 			return fmt.Errorf("request header %q is not valid in HTTP/2", k)
		h2_bundle.go#L7728: 	return nil, fmt.Errorf("http2: Transport: cannot retry err [%v] after Request.Body was written; define Request.GetBody to avoid this error", err)
		h2_bundle.go#L7784: 		return nil, fmt.Errorf("http2: unexpected ALPN protocol %q; want %q", p, http2NextProtoTLS)
		h2_bundle.go#L8239: 			return "", fmt.Errorf("invalid Trailer key %q", k)
		h2_bundle.go#L8266: 		return fmt.Errorf("http2: invalid Upgrade request header: %q", req.Header["Upgrade"])
		h2_bundle.go#L8269: 		return fmt.Errorf("http2: invalid Transfer-Encoding request header: %q", vv)
		h2_bundle.go#L8272: 		return fmt.Errorf("http2: invalid Connection request header: %q", vv)
		h2_bundle.go#L8971: 					return nil, fmt.Errorf("invalid request :path %q from URL.Opaque = %q", orig, req.URL.Opaque)
		h2_bundle.go#L8973: 					return nil, fmt.Errorf("invalid request :path %q", orig)
		h2_bundle.go#L8984: 			return nil, fmt.Errorf("invalid HTTP header name %q", k)
		h2_bundle.go#L8989: 				return nil, fmt.Errorf("invalid HTTP header value for header %q", k)
		h2_bundle.go#L10189: 			err = fmt.Errorf("%v", e)
		h2_bundle.go#L11415: 		panic(fmt.Errorf("stream %d already opened", streamID))
		request.go#L94: func badStringError(what, val string) error { return fmt.Errorf("%s %q", what, val) }
		request.go#L872: 		return nil, fmt.Errorf("net/http: invalid method %q", method)
		request.go#L1093: 		return nil, fmt.Errorf("too many Host headers")
		responsecontroller.go#L146: 	return fmt.Errorf("%w", ErrNotSupported)
		server.go#L329: 			return nil, nil, fmt.Errorf("unexpected Peek failure reading buffered byte: %v", err)
		transfer.go#L84: 			return nil, fmt.Errorf("http: Request.ContentLength=%d with nil Body", rr.ContentLength)
		transfer.go#L390: 		return fmt.Errorf("http: ContentLength=%d with Body length %d",
		transfer.go#L682: 				return 0, fmt.Errorf("http: message cannot contain multiple Content-Length headers; got %q", contentLens)
		transport.go#L532: 				return nil, fmt.Errorf("net/http: invalid header field name %q", k)
		transport.go#L538: 					return nil, fmt.Errorf("net/http: invalid header field value for %q", k)
		transport.go#L564: 		return nil, fmt.Errorf("net/http: invalid method %q", req.Method)
		transport.go#L1949: 		return 0, fmt.Errorf("read limit of %d bytes exhausted", pc.maxHeaderResponseSize())
		transport.go#L2073: 		return fmt.Errorf("net/http: HTTP/1.x transport connection broken: %w", err)
		transport.go#L2141: 				err = fmt.Errorf("net/http: server response headers exceeded %d bytes; aborted", pc.maxHeaderResponseSize())
		transport.go#L2280: 		pc.closeLocked(fmt.Errorf("readLoopPeekFailLocked: %w", peekErr))
		transport.go#L2658: 				pc.close(fmt.Errorf("write error: %w", err))

	net/textproto
		reader.go#L125: 		return nil, fmt.Errorf("missing validateFirstLine func")

	net/url
		url.go#L626: 			return "", fmt.Errorf("invalid port %q after host", colonPort)
		url.go#L654: 			return "", fmt.Errorf("invalid port %q after host", colonPort)
		url.go#L937: 			err = fmt.Errorf("invalid semicolon separator in query")

	nhooyr.io/websocket
		accept.go#L141: 		err = fmt.Errorf("failed to hijack connection: %w", err)
		accept.go#L164: 		return http.StatusUpgradeRequired, fmt.Errorf("WebSocket protocol violation: handshake request must be at least HTTP/1.1: %q", r.Proto)
		accept.go#L170: 		return http.StatusUpgradeRequired, fmt.Errorf("WebSocket protocol violation: Connection header %q does not contain Upgrade", r.Header.Get("Connection"))
		accept.go#L176: 		return http.StatusUpgradeRequired, fmt.Errorf("WebSocket protocol violation: Upgrade header %q does not contain websocket", r.Header.Get("Upgrade"))
		accept.go#L180: 		return http.StatusMethodNotAllowed, fmt.Errorf("WebSocket protocol violation: handshake request method is not GET but %q", r.Method)
		accept.go#L185: 		return http.StatusBadRequest, fmt.Errorf("unsupported WebSocket protocol version (only 13 is supported): %q", r.Header.Get("Sec-WebSocket-Version"))
		accept.go#L200: 		return http.StatusBadRequest, fmt.Errorf("WebSocket protocol violation: invalid Sec-WebSocket-Key %q, must be a 16 byte base64 encoded string", websocketSecKey)
		accept.go#L214: 		return fmt.Errorf("failed to parse Origin header %q: %w", origin, err)
		accept.go#L224: 			return fmt.Errorf("failed to parse filepath pattern %q: %w", hostPattern, err)
		accept.go#L231: 		return fmt.Errorf("request Origin %q is not a valid URL with a host", origin)
		accept.go#L233: 	return fmt.Errorf("request Origin %q is not authorized for Host %q", u.Host, r.Host)
		close.go#L164: 	c.setCloseErr(fmt.Errorf("sent close frame: %w", ce))
		close.go#L218: 		return CloseError{}, fmt.Errorf("close payload %q too small, cannot even contain the 2 byte status code", p)
		close.go#L227: 		return CloseError{}, fmt.Errorf("invalid status code %v", ce.Code)
		close.go#L254: 		err = fmt.Errorf("failed to marshal close frame: %w", err)
		close.go#L267: 		return nil, fmt.Errorf("reason string max is %v but got %q with length %v", maxCloseReason, ce.Reason, len(ce.Reason))
		close.go#L271: 		return nil, fmt.Errorf("status code %v cannot be set", ce.Code)
		close.go#L288: 		c.closeErr = fmt.Errorf("WebSocket closed: %w", err)
		conn.go#L190: 			c.setCloseErr(fmt.Errorf("read timed out: %w", readCtx.Err()))
		conn.go#L197: 			c.close(fmt.Errorf("write timed out: %w", writeCtx.Err()))
		conn.go#L219: 		return fmt.Errorf("failed to ping: %w", err)
		conn.go#L246: 		err := fmt.Errorf("failed to wait for pong: %w", ctx.Err())
		conn.go#L284: 		err := fmt.Errorf("failed to acquire lock: %w", ctx.Err())
		dial.go#L120: 		return nil, nil, fmt.Errorf("failed to generate Sec-WebSocket-Key: %w", err)
		dial.go#L157: 		return nil, resp, fmt.Errorf("response body is not a io.ReadWriteCloser: %T", respBody)
		dial.go#L174: 		return nil, fmt.Errorf("failed to parse url: %w", err)
		dial.go#L184: 		return nil, fmt.Errorf("unexpected url scheme: %q", u.Scheme)
		dial.go#L189: 		return nil, fmt.Errorf("failed to create new http request: %w", err)
		dial.go#L208: 		return nil, fmt.Errorf("failed to send handshake request: %w", err)
		dial.go#L220: 		return "", fmt.Errorf("failed to read random data from rand.Reader: %w", err)
		dial.go#L227: 		return nil, fmt.Errorf("expected handshake response status code %v but got %v", http.StatusSwitchingProtocols, resp.StatusCode)
		dial.go#L231: 		return nil, fmt.Errorf("WebSocket protocol violation: Connection header %q does not contain Upgrade", resp.Header.Get("Connection"))
		dial.go#L235: 		return nil, fmt.Errorf("WebSocket protocol violation: Upgrade header %q does not contain websocket", resp.Header.Get("Upgrade"))
		dial.go#L239: 		return nil, fmt.Errorf("WebSocket protocol violation: invalid Sec-WebSocket-Accept %q, key %q",
		dial.go#L265: 	return fmt.Errorf("WebSocket protocol violation: unexpected Sec-WebSocket-Protocol from server: %q", proto)
		dial.go#L276: 		return nil, fmt.Errorf("WebSocket protcol violation: unsupported extensions from server: %+v", exts[1:])
		dial.go#L296: 		return nil, fmt.Errorf("unsupported permessage-deflate parameter: %q", p)
		frame.go#L91: 		return header{}, fmt.Errorf("received negative payload length: %v", h.payloadLength)
		netconn.go#L130: 		return 0, fmt.Errorf("failed to write: %w", context.DeadlineExceeded)
		netconn.go#L158: 		return 0, fmt.Errorf("failed to read: %w", context.DeadlineExceeded)
		netconn.go#L176: 			err := fmt.Errorf("unexpected frame type read (expected %v): %v", nc.msgType, typ)
		read.go#L181: 			err := fmt.Errorf("received header with unexpected rsv bits set: %v:%v:%v", h.rsv1, h.rsv2, h.rsv3)
		read.go#L198: 				return header{}, fmt.Errorf("failed to handle control frame %v: %w", h.opcode, err)
		read.go#L203: 			err := fmt.Errorf("received unknown opcode %v", h.opcode)
		read.go#L254: 			err = fmt.Errorf("failed to read frame payload: %w", err)
		read.go#L271: 		err := fmt.Errorf("received control frame payload with invalid length: %d", h.payloadLength)
		read.go#L317: 		err = fmt.Errorf("received invalid close payload: %w", err)
		read.go#L322: 	err = fmt.Errorf("received close frame: %w", ce)
		read.go#L340: 		c.close(fmt.Errorf("failed to get reader: %w", err))
		read.go#L400: 		return 0, fmt.Errorf("failed to read: %w", err)
		read.go#L414: 		err = fmt.Errorf("failed to read: %w", err)
		read.go#L490: 		err := fmt.Errorf("read limited at %v bytes", lr.limit.Load())
		write.go#L33: 		return nil, fmt.Errorf("failed to get writer: %w", err)
		write.go#L47: 		return fmt.Errorf("failed to write msg: %w", err)
		write.go#L151: 		return 0, fmt.Errorf("failed to write: %w", err)
		write.go#L161: 			err = fmt.Errorf("failed to write: %w", err)
		write.go#L184: 		return n, fmt.Errorf("failed to write data frame: %w", err)
		write.go#L208: 			return fmt.Errorf("failed to flush flate: %w", err)
		write.go#L214: 		return fmt.Errorf("failed to write fin frame: %w", err)
		write.go#L240: 		return fmt.Errorf("failed to write control frame %v: %w", opcode, err)
		write.go#L287: 			err = fmt.Errorf("failed to write frame: %w", err)
		write.go#L299: 			return 0, fmt.Errorf("failed to generate masking key: %w", err)
		write.go#L322: 			return n, fmt.Errorf("failed to flush: %w", err)

	nhooyr.io/websocket/internal/errd
		wrap.go#L12: 		*err = fmt.Errorf(f+": %w", append(v, *err)...)

	nhooyr.io/websocket/internal/xsync
		go.go#L17: 				case errs <- fmt.Errorf("panic in go fn: %v, %s", r, debug.Stack()):

	rsc.io/qr/coding
		qr.go#L123: 			return fmt.Errorf("non-numeric string %#q", string(s))
		qr.go#L166: 			return fmt.Errorf("non-alphanumeric string %#q", string(s))
		qr.go#L440: 		return nil, fmt.Errorf("cannot encode %d bits into %d-bit code", b.Bits(), p.DataBytes*8)
		qr.go#L539: 		return nil, fmt.Errorf("invalid QR version %d", int(v))

	runtime/debug
		mod.go#L153: 			err = fmt.Errorf("could not parse Go build info: line %d: %w", lineNum, err)
		mod.go#L169: 			return Module{}, fmt.Errorf("expected 2 or 3 columns; got %d", len(elem))
		mod.go#L217: 				return nil, fmt.Errorf("expected 3 columns for replacement; got %d", len(elem))
		mod.go#L220: 				return nil, fmt.Errorf("replacement with no module on previous line")
		mod.go#L231: 				return nil, fmt.Errorf("build line missing '='")
		mod.go#L237: 				return nil, fmt.Errorf("build line with missing key")
		mod.go#L242: 					return nil, fmt.Errorf("invalid quoted key in build line")
		mod.go#L245: 					return nil, fmt.Errorf("build line missing '=' after quoted key")
		mod.go#L248: 					return nil, fmt.Errorf("unexpected character after quoted key: %q", c)
		mod.go#L257: 					return nil, fmt.Errorf("build line missing '=' after key")
		mod.go#L260: 					return nil, fmt.Errorf("unquoted key %q must be quoted", key)
		mod.go#L271: 						return nil, fmt.Errorf("invalid quoted value in build line")
		mod.go#L277: 						return nil, fmt.Errorf("unquoted value %q must be quoted", value)

	vendor/golang.org/x/crypto/cryptobyte
		asn1.go#L112: 		b.err = fmt.Errorf("cryptobyte: cannot represent %v as a GeneralizedTime", t)
		asn1.go#L126: 			b.err = fmt.Errorf("cryptobyte: cannot represent %v as a UTCTime", t)
		asn1.go#L184: 			b.err = fmt.Errorf("cryptobyte: invalid OID: %v", oid)
		asn1.go#L237: 		b.err = fmt.Errorf("cryptobyte: high-tag number identifier octects not supported: 0x%x", tag)
		builder.go#L278: 		b.err = fmt.Errorf("cryptobyte: pending child length %d exceeds %d-byte length prefix", length, child.pendingLenLen)

	vendor/golang.org/x/net/http/httpproxy
		proxy.go#L164: 		return nil, fmt.Errorf("invalid proxy address %q: %v", proxy, err)

	vendor/golang.org/x/text/unicode/bidi
		core.go#L1016: 		return fmt.Errorf("types is null")
		core.go#L1020: 			return fmt.Errorf("B type before end of paragraph at index: %d", i)
		core.go#L1030: 		return fmt.Errorf("illegal paragraph embedding level: %d", embeddingLevel)
		core.go#L1039: 			return fmt.Errorf("bad linebreak: %d at index: %d", next, i)
		core.go#L1044: 		return fmt.Errorf("last linebreak was %d, want %d", prev, textLength)
		core.go#L1051: 		return fmt.Errorf("pairTypes is null")
		core.go#L1057: 			return fmt.Errorf("illegal pairType value at %d: %v", i, pairTypes[i])
		core.go#L1065: 		return fmt.Errorf("pairValues is null")
		core.go#L1068: 		return fmt.Errorf("pairTypes is different length from pairValues")

	vendor/golang.org/x/text/unicode/norm
		iter.go#L76: 		return 0, fmt.Errorf("norm: invalid whence")
		iter.go#L79: 		return 0, fmt.Errorf("norm: negative position")