slidge-whatsapp 0.2.2__cp312-cp312-manylinux_2_36_aarch64.whl → 0.2.5__cp312-cp312-manylinux_2_36_aarch64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of slidge-whatsapp might be problematic. Click here for more details.

Files changed (1134) hide show
  1. slidge_whatsapp/__init__.py +26 -8
  2. slidge_whatsapp/__main__.py +3 -0
  3. slidge_whatsapp/contact.py +1 -1
  4. slidge_whatsapp/event.go +56 -0
  5. slidge_whatsapp/generated/_whatsapp.cpython-312-aarch64-linux-gnu.h +188 -151
  6. slidge_whatsapp/generated/_whatsapp.cpython-312-aarch64-linux-gnu.so +0 -0
  7. slidge_whatsapp/generated/build.py +157 -132
  8. slidge_whatsapp/generated/go.py +1 -1
  9. slidge_whatsapp/generated/whatsapp.c +1624 -1153
  10. slidge_whatsapp/generated/whatsapp.go +1095 -850
  11. slidge_whatsapp/generated/whatsapp.py +1148 -828
  12. slidge_whatsapp/generated/whatsapp_go.h +188 -151
  13. slidge_whatsapp/go.mod +11 -9
  14. slidge_whatsapp/go.sum +16 -16
  15. slidge_whatsapp/group.py +7 -2
  16. slidge_whatsapp/media/__init__.py +0 -0
  17. slidge_whatsapp/media/media.go +8 -3
  18. slidge_whatsapp/session.go +4 -5
  19. slidge_whatsapp/session.py +53 -31
  20. slidge_whatsapp/vendor/filippo.io/edwards25519/LICENSE +27 -0
  21. slidge_whatsapp/vendor/filippo.io/edwards25519/README.md +14 -0
  22. slidge_whatsapp/vendor/filippo.io/edwards25519/doc.go +20 -0
  23. slidge_whatsapp/vendor/filippo.io/edwards25519/edwards25519.go +427 -0
  24. slidge_whatsapp/vendor/filippo.io/edwards25519/extra.go +349 -0
  25. slidge_whatsapp/vendor/filippo.io/edwards25519/field/fe.go +420 -0
  26. slidge_whatsapp/vendor/filippo.io/edwards25519/field/fe_amd64.go +16 -0
  27. slidge_whatsapp/vendor/filippo.io/edwards25519/field/fe_amd64.s +379 -0
  28. slidge_whatsapp/vendor/filippo.io/edwards25519/field/fe_amd64_noasm.go +12 -0
  29. slidge_whatsapp/vendor/filippo.io/edwards25519/field/fe_arm64.go +16 -0
  30. slidge_whatsapp/vendor/filippo.io/edwards25519/field/fe_arm64.s +42 -0
  31. slidge_whatsapp/vendor/filippo.io/edwards25519/field/fe_arm64_noasm.go +12 -0
  32. slidge_whatsapp/vendor/filippo.io/edwards25519/field/fe_extra.go +50 -0
  33. slidge_whatsapp/vendor/filippo.io/edwards25519/field/fe_generic.go +266 -0
  34. slidge_whatsapp/vendor/filippo.io/edwards25519/scalar.go +343 -0
  35. slidge_whatsapp/vendor/filippo.io/edwards25519/scalar_fiat.go +1147 -0
  36. slidge_whatsapp/vendor/filippo.io/edwards25519/scalarmult.go +214 -0
  37. slidge_whatsapp/vendor/filippo.io/edwards25519/tables.go +129 -0
  38. slidge_whatsapp/vendor/github.com/ebitengine/purego/.gitignore +1 -0
  39. slidge_whatsapp/vendor/github.com/ebitengine/purego/LICENSE +201 -0
  40. slidge_whatsapp/vendor/github.com/ebitengine/purego/README.md +97 -0
  41. slidge_whatsapp/vendor/github.com/ebitengine/purego/abi_amd64.h +99 -0
  42. slidge_whatsapp/vendor/github.com/ebitengine/purego/abi_arm64.h +39 -0
  43. slidge_whatsapp/vendor/github.com/ebitengine/purego/cgo.go +19 -0
  44. slidge_whatsapp/vendor/github.com/ebitengine/purego/dlerror.go +17 -0
  45. slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn.go +99 -0
  46. slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_android.go +34 -0
  47. slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_darwin.go +24 -0
  48. slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_freebsd.go +14 -0
  49. slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_linux.go +16 -0
  50. slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_nocgo_freebsd.go +11 -0
  51. slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_nocgo_linux.go +19 -0
  52. slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_playground.go +24 -0
  53. slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_stubs.s +26 -0
  54. slidge_whatsapp/vendor/github.com/ebitengine/purego/func.go +436 -0
  55. slidge_whatsapp/vendor/github.com/ebitengine/purego/go_runtime.go +13 -0
  56. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/cgo/dlfcn_cgo_unix.go +56 -0
  57. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/cgo/empty.go +6 -0
  58. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/cgo/syscall_cgo_unix.go +55 -0
  59. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/abi_amd64.h +99 -0
  60. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/abi_arm64.h +39 -0
  61. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/asm_amd64.s +39 -0
  62. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/asm_arm64.s +36 -0
  63. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/callbacks.go +93 -0
  64. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/doc.go +32 -0
  65. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/freebsd.go +27 -0
  66. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_darwin_amd64.go +73 -0
  67. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_darwin_arm64.go +88 -0
  68. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_freebsd_amd64.go +95 -0
  69. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_freebsd_arm64.go +98 -0
  70. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_libinit.go +69 -0
  71. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_linux_amd64.go +95 -0
  72. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_linux_arm64.go +98 -0
  73. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_setenv.go +18 -0
  74. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_util.go +37 -0
  75. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/iscgo.go +19 -0
  76. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/libcgo.go +39 -0
  77. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/libcgo_darwin.go +22 -0
  78. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/libcgo_freebsd.go +16 -0
  79. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/libcgo_linux.go +16 -0
  80. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/setenv.go +19 -0
  81. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/symbols.go +201 -0
  82. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/symbols_darwin.go +29 -0
  83. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/symbols_freebsd.go +29 -0
  84. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/symbols_linux.go +29 -0
  85. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/trampolines_amd64.s +104 -0
  86. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/trampolines_arm64.s +72 -0
  87. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/trampolines_stubs.s +90 -0
  88. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/strings/strings.go +40 -0
  89. slidge_whatsapp/vendor/github.com/ebitengine/purego/is_ios.go +13 -0
  90. slidge_whatsapp/vendor/github.com/ebitengine/purego/nocgo.go +25 -0
  91. slidge_whatsapp/vendor/github.com/ebitengine/purego/struct_amd64.go +260 -0
  92. slidge_whatsapp/vendor/github.com/ebitengine/purego/struct_arm64.go +274 -0
  93. slidge_whatsapp/vendor/github.com/ebitengine/purego/struct_other.go +16 -0
  94. slidge_whatsapp/vendor/github.com/ebitengine/purego/sys_amd64.s +164 -0
  95. slidge_whatsapp/vendor/github.com/ebitengine/purego/sys_arm64.s +92 -0
  96. slidge_whatsapp/vendor/github.com/ebitengine/purego/sys_unix_arm64.s +70 -0
  97. slidge_whatsapp/vendor/github.com/ebitengine/purego/syscall.go +53 -0
  98. slidge_whatsapp/vendor/github.com/ebitengine/purego/syscall_cgo_linux.go +21 -0
  99. slidge_whatsapp/vendor/github.com/ebitengine/purego/syscall_sysv.go +223 -0
  100. slidge_whatsapp/vendor/github.com/ebitengine/purego/syscall_windows.go +46 -0
  101. slidge_whatsapp/vendor/github.com/ebitengine/purego/zcallback_amd64.s +2014 -0
  102. slidge_whatsapp/vendor/github.com/ebitengine/purego/zcallback_arm64.s +4014 -0
  103. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/.gitattributes +6 -0
  104. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/AUTHORS +1 -0
  105. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/COPYING +661 -0
  106. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/README.md +71 -0
  107. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz.go +66 -0
  108. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz_cgo.go +596 -0
  109. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz_cgo_cgo.go +18 -0
  110. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz_cgo_extlib.go +11 -0
  111. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz_cgo_extlib_pkgconfig.go +9 -0
  112. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz_content_types.go +383 -0
  113. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz_nocgo.go +1098 -0
  114. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz_vendor.go +9 -0
  115. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/archive.h +444 -0
  116. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/band-writer.h +117 -0
  117. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/bidi.h +90 -0
  118. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/bitmap.h +175 -0
  119. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/buffer.h +250 -0
  120. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/color.h +427 -0
  121. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/compress.h +88 -0
  122. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/compressed-buffer.h +185 -0
  123. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/config.h +222 -0
  124. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/context.h +1006 -0
  125. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/crypt.h +270 -0
  126. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/device.h +654 -0
  127. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/display-list.h +142 -0
  128. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/document.h +1108 -0
  129. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/export.h +52 -0
  130. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/filter.h +263 -0
  131. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/font.h +815 -0
  132. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/geometry.h +818 -0
  133. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/getopt.h +128 -0
  134. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/glyph-cache.h +96 -0
  135. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/glyph.h +81 -0
  136. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/hash.h +126 -0
  137. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/heap-imp.h +163 -0
  138. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/heap.h +140 -0
  139. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/image.h +443 -0
  140. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/link.h +130 -0
  141. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/log.h +61 -0
  142. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/outline.h +228 -0
  143. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/output-svg.h +64 -0
  144. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/output.h +415 -0
  145. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/path.h +447 -0
  146. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/pixmap.h +501 -0
  147. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/pool.h +68 -0
  148. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/separation.h +138 -0
  149. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/shade.h +233 -0
  150. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/store.h +456 -0
  151. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/story-writer.h +209 -0
  152. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/story.h +232 -0
  153. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/stream.h +646 -0
  154. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/string-util.h +286 -0
  155. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/structured-text.h +365 -0
  156. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/system.h +459 -0
  157. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/text.h +209 -0
  158. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/track-usage.h +57 -0
  159. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/transition.h +76 -0
  160. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/tree.h +62 -0
  161. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/types.h +41 -0
  162. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/util.h +151 -0
  163. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/vendor.go +3 -0
  164. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/version.h +31 -0
  165. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/write-pixmap.h +499 -0
  166. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/writer.h +266 -0
  167. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/xml.h +397 -0
  168. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz.h +97 -0
  169. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/memento.h +423 -0
  170. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/vendor.go +3 -0
  171. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/libs/libmupdf_linux_arm64.a +0 -0
  172. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/libs/libmupdfthird_linux_arm64.a +0 -0
  173. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/libs/vendor.go +3 -0
  174. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/purego_darwin.go +23 -0
  175. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/purego_linux.go +22 -0
  176. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/purego_windows.go +22 -0
  177. slidge_whatsapp/vendor/github.com/go-python/gopy/LICENSE +23 -0
  178. slidge_whatsapp/vendor/github.com/go-python/gopy/gopyh/handle.go +210 -0
  179. slidge_whatsapp/vendor/github.com/google/uuid/CHANGELOG.md +41 -0
  180. slidge_whatsapp/vendor/github.com/google/uuid/CONTRIBUTING.md +26 -0
  181. slidge_whatsapp/vendor/github.com/google/uuid/CONTRIBUTORS +9 -0
  182. slidge_whatsapp/vendor/github.com/google/uuid/LICENSE +27 -0
  183. slidge_whatsapp/vendor/github.com/google/uuid/README.md +21 -0
  184. slidge_whatsapp/vendor/github.com/google/uuid/dce.go +80 -0
  185. slidge_whatsapp/vendor/github.com/google/uuid/doc.go +12 -0
  186. slidge_whatsapp/vendor/github.com/google/uuid/hash.go +59 -0
  187. slidge_whatsapp/vendor/github.com/google/uuid/marshal.go +38 -0
  188. slidge_whatsapp/vendor/github.com/google/uuid/node.go +90 -0
  189. slidge_whatsapp/vendor/github.com/google/uuid/node_js.go +12 -0
  190. slidge_whatsapp/vendor/github.com/google/uuid/node_net.go +33 -0
  191. slidge_whatsapp/vendor/github.com/google/uuid/null.go +118 -0
  192. slidge_whatsapp/vendor/github.com/google/uuid/sql.go +59 -0
  193. slidge_whatsapp/vendor/github.com/google/uuid/time.go +134 -0
  194. slidge_whatsapp/vendor/github.com/google/uuid/util.go +43 -0
  195. slidge_whatsapp/vendor/github.com/google/uuid/uuid.go +365 -0
  196. slidge_whatsapp/vendor/github.com/google/uuid/version1.go +44 -0
  197. slidge_whatsapp/vendor/github.com/google/uuid/version4.go +76 -0
  198. slidge_whatsapp/vendor/github.com/google/uuid/version6.go +56 -0
  199. slidge_whatsapp/vendor/github.com/google/uuid/version7.go +104 -0
  200. slidge_whatsapp/vendor/github.com/gorilla/websocket/.gitignore +25 -0
  201. slidge_whatsapp/vendor/github.com/gorilla/websocket/AUTHORS +9 -0
  202. slidge_whatsapp/vendor/github.com/gorilla/websocket/LICENSE +22 -0
  203. slidge_whatsapp/vendor/github.com/gorilla/websocket/README.md +33 -0
  204. slidge_whatsapp/vendor/github.com/gorilla/websocket/client.go +434 -0
  205. slidge_whatsapp/vendor/github.com/gorilla/websocket/compression.go +148 -0
  206. slidge_whatsapp/vendor/github.com/gorilla/websocket/conn.go +1238 -0
  207. slidge_whatsapp/vendor/github.com/gorilla/websocket/doc.go +227 -0
  208. slidge_whatsapp/vendor/github.com/gorilla/websocket/join.go +42 -0
  209. slidge_whatsapp/vendor/github.com/gorilla/websocket/json.go +60 -0
  210. slidge_whatsapp/vendor/github.com/gorilla/websocket/mask.go +55 -0
  211. slidge_whatsapp/vendor/github.com/gorilla/websocket/mask_safe.go +16 -0
  212. slidge_whatsapp/vendor/github.com/gorilla/websocket/prepared.go +102 -0
  213. slidge_whatsapp/vendor/github.com/gorilla/websocket/proxy.go +77 -0
  214. slidge_whatsapp/vendor/github.com/gorilla/websocket/server.go +365 -0
  215. slidge_whatsapp/vendor/github.com/gorilla/websocket/tls_handshake.go +21 -0
  216. slidge_whatsapp/vendor/github.com/gorilla/websocket/tls_handshake_116.go +21 -0
  217. slidge_whatsapp/vendor/github.com/gorilla/websocket/util.go +298 -0
  218. slidge_whatsapp/vendor/github.com/gorilla/websocket/x_net_proxy.go +473 -0
  219. slidge_whatsapp/vendor/github.com/h2non/filetype/.editorconfig +12 -0
  220. slidge_whatsapp/vendor/github.com/h2non/filetype/.gitignore +2 -0
  221. slidge_whatsapp/vendor/github.com/h2non/filetype/.travis.yml +16 -0
  222. slidge_whatsapp/vendor/github.com/h2non/filetype/History.md +163 -0
  223. slidge_whatsapp/vendor/github.com/h2non/filetype/LICENSE +24 -0
  224. slidge_whatsapp/vendor/github.com/h2non/filetype/README.md +294 -0
  225. slidge_whatsapp/vendor/github.com/h2non/filetype/filetype.go +102 -0
  226. slidge_whatsapp/vendor/github.com/h2non/filetype/kind.go +91 -0
  227. slidge_whatsapp/vendor/github.com/h2non/filetype/match.go +90 -0
  228. slidge_whatsapp/vendor/github.com/h2non/filetype/matchers/application.go +43 -0
  229. slidge_whatsapp/vendor/github.com/h2non/filetype/matchers/archive.go +211 -0
  230. slidge_whatsapp/vendor/github.com/h2non/filetype/matchers/audio.go +85 -0
  231. slidge_whatsapp/vendor/github.com/h2non/filetype/matchers/document.go +197 -0
  232. slidge_whatsapp/vendor/github.com/h2non/filetype/matchers/font.go +45 -0
  233. slidge_whatsapp/vendor/github.com/h2non/filetype/matchers/image.go +143 -0
  234. slidge_whatsapp/vendor/github.com/h2non/filetype/matchers/isobmff/isobmff.go +37 -0
  235. slidge_whatsapp/vendor/github.com/h2non/filetype/matchers/matchers.go +51 -0
  236. slidge_whatsapp/vendor/github.com/h2non/filetype/matchers/video.go +145 -0
  237. slidge_whatsapp/vendor/github.com/h2non/filetype/types/defaults.go +4 -0
  238. slidge_whatsapp/vendor/github.com/h2non/filetype/types/mime.go +14 -0
  239. slidge_whatsapp/vendor/github.com/h2non/filetype/types/split.go +11 -0
  240. slidge_whatsapp/vendor/github.com/h2non/filetype/types/type.go +16 -0
  241. slidge_whatsapp/vendor/github.com/h2non/filetype/types/types.go +23 -0
  242. slidge_whatsapp/vendor/github.com/h2non/filetype/version.go +4 -0
  243. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/.gitignore +21 -0
  244. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/CHANGELOG.md +56 -0
  245. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/COPYRIGHT.txt +147 -0
  246. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/LICENSE +21 -0
  247. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/README.md +162 -0
  248. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/abi.go +7 -0
  249. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/abi_amd64.go +7 -0
  250. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/ffi.go +272 -0
  251. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/fun.go +46 -0
  252. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/init.go +55 -0
  253. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/lib.go +82 -0
  254. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/lib_unix.go +63 -0
  255. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/lib_windows.go +68 -0
  256. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/tramp_amd64.go +5 -0
  257. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/tramp_arm64.go +5 -0
  258. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/tramp_darwin_arm64.go +5 -0
  259. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/types.go +34 -0
  260. slidge_whatsapp/vendor/github.com/mattn/go-colorable/LICENSE +21 -0
  261. slidge_whatsapp/vendor/github.com/mattn/go-colorable/README.md +48 -0
  262. slidge_whatsapp/vendor/github.com/mattn/go-colorable/colorable_others.go +38 -0
  263. slidge_whatsapp/vendor/github.com/mattn/go-colorable/colorable_windows.go +1047 -0
  264. slidge_whatsapp/vendor/github.com/mattn/go-colorable/go.test.sh +12 -0
  265. slidge_whatsapp/vendor/github.com/mattn/go-colorable/noncolorable.go +57 -0
  266. slidge_whatsapp/vendor/github.com/mattn/go-isatty/LICENSE +9 -0
  267. slidge_whatsapp/vendor/github.com/mattn/go-isatty/README.md +50 -0
  268. slidge_whatsapp/vendor/github.com/mattn/go-isatty/doc.go +2 -0
  269. slidge_whatsapp/vendor/github.com/mattn/go-isatty/go.test.sh +12 -0
  270. slidge_whatsapp/vendor/github.com/mattn/go-isatty/isatty_bsd.go +20 -0
  271. slidge_whatsapp/vendor/github.com/mattn/go-isatty/isatty_others.go +17 -0
  272. slidge_whatsapp/vendor/github.com/mattn/go-isatty/isatty_plan9.go +23 -0
  273. slidge_whatsapp/vendor/github.com/mattn/go-isatty/isatty_solaris.go +21 -0
  274. slidge_whatsapp/vendor/github.com/mattn/go-isatty/isatty_tcgets.go +20 -0
  275. slidge_whatsapp/vendor/github.com/mattn/go-isatty/isatty_windows.go +125 -0
  276. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/.codecov.yml +4 -0
  277. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/.gitignore +14 -0
  278. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/LICENSE +21 -0
  279. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/README.md +603 -0
  280. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/backup.go +85 -0
  281. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/callback.go +411 -0
  282. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/convert.go +299 -0
  283. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/doc.go +134 -0
  284. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/error.go +150 -0
  285. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3-binding.c +258039 -0
  286. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3-binding.h +13526 -0
  287. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3.go +2281 -0
  288. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_context.go +103 -0
  289. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_func_crypt.go +120 -0
  290. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_go18.go +54 -0
  291. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_libsqlite3.go +23 -0
  292. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_load_extension.go +85 -0
  293. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_load_extension_omit.go +25 -0
  294. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_allow_uri_authority.go +16 -0
  295. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_app_armor.go +16 -0
  296. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_column_metadata.go +22 -0
  297. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_foreign_keys.go +16 -0
  298. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_fts5.go +15 -0
  299. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_icu.go +20 -0
  300. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_introspect.go +16 -0
  301. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_math_functions.go +15 -0
  302. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_os_trace.go +15 -0
  303. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_preupdate.go +21 -0
  304. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_preupdate_hook.go +113 -0
  305. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_preupdate_omit.go +22 -0
  306. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_secure_delete.go +16 -0
  307. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_secure_delete_fast.go +16 -0
  308. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_serialize.go +83 -0
  309. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_serialize_omit.go +21 -0
  310. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_stat4.go +16 -0
  311. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_unlock_notify.c +85 -0
  312. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_unlock_notify.go +93 -0
  313. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_userauth.go +295 -0
  314. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_userauth_omit.go +158 -0
  315. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_vacuum_full.go +16 -0
  316. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_vacuum_incr.go +16 -0
  317. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_vtable.go +721 -0
  318. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_other.go +18 -0
  319. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_solaris.go +15 -0
  320. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_trace.go +288 -0
  321. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_type.go +108 -0
  322. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_usleep_windows.go +42 -0
  323. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_windows.go +18 -0
  324. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3ext.h +728 -0
  325. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/static_mock.go +38 -0
  326. slidge_whatsapp/vendor/github.com/rs/zerolog/.gitignore +25 -0
  327. slidge_whatsapp/vendor/github.com/rs/zerolog/CNAME +1 -0
  328. slidge_whatsapp/vendor/github.com/rs/zerolog/LICENSE +21 -0
  329. slidge_whatsapp/vendor/github.com/rs/zerolog/README.md +782 -0
  330. slidge_whatsapp/vendor/github.com/rs/zerolog/_config.yml +1 -0
  331. slidge_whatsapp/vendor/github.com/rs/zerolog/array.go +240 -0
  332. slidge_whatsapp/vendor/github.com/rs/zerolog/console.go +520 -0
  333. slidge_whatsapp/vendor/github.com/rs/zerolog/context.go +480 -0
  334. slidge_whatsapp/vendor/github.com/rs/zerolog/ctx.go +52 -0
  335. slidge_whatsapp/vendor/github.com/rs/zerolog/encoder.go +56 -0
  336. slidge_whatsapp/vendor/github.com/rs/zerolog/encoder_cbor.go +45 -0
  337. slidge_whatsapp/vendor/github.com/rs/zerolog/encoder_json.go +51 -0
  338. slidge_whatsapp/vendor/github.com/rs/zerolog/event.go +830 -0
  339. slidge_whatsapp/vendor/github.com/rs/zerolog/example.jsonl +7 -0
  340. slidge_whatsapp/vendor/github.com/rs/zerolog/fields.go +292 -0
  341. slidge_whatsapp/vendor/github.com/rs/zerolog/globals.go +190 -0
  342. slidge_whatsapp/vendor/github.com/rs/zerolog/go112.go +7 -0
  343. slidge_whatsapp/vendor/github.com/rs/zerolog/hook.go +64 -0
  344. slidge_whatsapp/vendor/github.com/rs/zerolog/internal/cbor/README.md +56 -0
  345. slidge_whatsapp/vendor/github.com/rs/zerolog/internal/cbor/base.go +19 -0
  346. slidge_whatsapp/vendor/github.com/rs/zerolog/internal/cbor/cbor.go +102 -0
  347. slidge_whatsapp/vendor/github.com/rs/zerolog/internal/cbor/decode_stream.go +654 -0
  348. slidge_whatsapp/vendor/github.com/rs/zerolog/internal/cbor/string.go +117 -0
  349. slidge_whatsapp/vendor/github.com/rs/zerolog/internal/cbor/time.go +93 -0
  350. slidge_whatsapp/vendor/github.com/rs/zerolog/internal/cbor/types.go +486 -0
  351. slidge_whatsapp/vendor/github.com/rs/zerolog/internal/json/base.go +19 -0
  352. slidge_whatsapp/vendor/github.com/rs/zerolog/internal/json/bytes.go +85 -0
  353. slidge_whatsapp/vendor/github.com/rs/zerolog/internal/json/string.go +149 -0
  354. slidge_whatsapp/vendor/github.com/rs/zerolog/internal/json/time.go +113 -0
  355. slidge_whatsapp/vendor/github.com/rs/zerolog/internal/json/types.go +435 -0
  356. slidge_whatsapp/vendor/github.com/rs/zerolog/log.go +518 -0
  357. slidge_whatsapp/vendor/github.com/rs/zerolog/not_go112.go +5 -0
  358. slidge_whatsapp/vendor/github.com/rs/zerolog/pretty.png +0 -0
  359. slidge_whatsapp/vendor/github.com/rs/zerolog/sampler.go +134 -0
  360. slidge_whatsapp/vendor/github.com/rs/zerolog/syslog.go +89 -0
  361. slidge_whatsapp/vendor/github.com/rs/zerolog/writer.go +346 -0
  362. slidge_whatsapp/vendor/go.mau.fi/libsignal/LICENSE +674 -0
  363. slidge_whatsapp/vendor/go.mau.fi/libsignal/cipher/Cbc.go +101 -0
  364. slidge_whatsapp/vendor/go.mau.fi/libsignal/cipher/Cipher.go +105 -0
  365. slidge_whatsapp/vendor/go.mau.fi/libsignal/ecc/Curve.go +109 -0
  366. slidge_whatsapp/vendor/go.mau.fi/libsignal/ecc/DjbECPublicKey.go +29 -0
  367. slidge_whatsapp/vendor/go.mau.fi/libsignal/ecc/DkbECPrivateKey.go +29 -0
  368. slidge_whatsapp/vendor/go.mau.fi/libsignal/ecc/Doc.go +3 -0
  369. slidge_whatsapp/vendor/go.mau.fi/libsignal/ecc/ECKeyPair.go +27 -0
  370. slidge_whatsapp/vendor/go.mau.fi/libsignal/ecc/ECPrivateKey.go +7 -0
  371. slidge_whatsapp/vendor/go.mau.fi/libsignal/ecc/ECPublicKey.go +11 -0
  372. slidge_whatsapp/vendor/go.mau.fi/libsignal/ecc/SignCurve25519.go +97 -0
  373. slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/GroupCipher.go +141 -0
  374. slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/GroupSessionBuilder.go +84 -0
  375. slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/ratchet/Doc.go +3 -0
  376. slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/ratchet/SenderChainKey.go +68 -0
  377. slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/ratchet/SenderMessageKey.go +89 -0
  378. slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/state/record/Doc.go +2 -0
  379. slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/state/record/SenderKeyRecord.go +149 -0
  380. slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/state/record/SenderKeyState.go +186 -0
  381. slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/state/store/Doc.go +3 -0
  382. slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/state/store/SenderKeyStore.go +11 -0
  383. slidge_whatsapp/vendor/go.mau.fi/libsignal/kdf/HKDF.go +47 -0
  384. slidge_whatsapp/vendor/go.mau.fi/libsignal/keys/chain/ChainKey.go +127 -0
  385. slidge_whatsapp/vendor/go.mau.fi/libsignal/keys/identity/IdentityKey.go +47 -0
  386. slidge_whatsapp/vendor/go.mau.fi/libsignal/keys/identity/IdentityKeyPair.go +39 -0
  387. slidge_whatsapp/vendor/go.mau.fi/libsignal/keys/message/MessageKey.go +91 -0
  388. slidge_whatsapp/vendor/go.mau.fi/libsignal/keys/prekey/PreKeyBundle.go +86 -0
  389. slidge_whatsapp/vendor/go.mau.fi/libsignal/keys/root/RootKey.go +66 -0
  390. slidge_whatsapp/vendor/go.mau.fi/libsignal/keys/session/DerivedSecrets.go +29 -0
  391. slidge_whatsapp/vendor/go.mau.fi/libsignal/keys/session/Pair.go +43 -0
  392. slidge_whatsapp/vendor/go.mau.fi/libsignal/logger/DefaultLogger.go +85 -0
  393. slidge_whatsapp/vendor/go.mau.fi/libsignal/logger/Logger.go +89 -0
  394. slidge_whatsapp/vendor/go.mau.fi/libsignal/protocol/CiphertextMessage.go +19 -0
  395. slidge_whatsapp/vendor/go.mau.fi/libsignal/protocol/Doc.go +3 -0
  396. slidge_whatsapp/vendor/go.mau.fi/libsignal/protocol/PreKeySignalMessage.go +152 -0
  397. slidge_whatsapp/vendor/go.mau.fi/libsignal/protocol/SenderKeyDistributionMessage.go +147 -0
  398. slidge_whatsapp/vendor/go.mau.fi/libsignal/protocol/SenderKeyMessage.go +168 -0
  399. slidge_whatsapp/vendor/go.mau.fi/libsignal/protocol/SenderKeyName.go +25 -0
  400. slidge_whatsapp/vendor/go.mau.fi/libsignal/protocol/SignalMessage.go +226 -0
  401. slidge_whatsapp/vendor/go.mau.fi/libsignal/protocol/SignalProtocolAddress.go +38 -0
  402. slidge_whatsapp/vendor/go.mau.fi/libsignal/ratchet/Ratchet.go +197 -0
  403. slidge_whatsapp/vendor/go.mau.fi/libsignal/ratchet/ReceiverParameters.go +106 -0
  404. slidge_whatsapp/vendor/go.mau.fi/libsignal/ratchet/SenderParameters.go +106 -0
  405. slidge_whatsapp/vendor/go.mau.fi/libsignal/ratchet/SymmetricParameters.go +18 -0
  406. slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/FingerprintProtocol.pb.go +245 -0
  407. slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/FingerprintProtocol.proto +14 -0
  408. slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/JSONSerializer.go +303 -0
  409. slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/LocalStorageProtocol.pb.go +1500 -0
  410. slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/LocalStorageProtocol.proto +114 -0
  411. slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/ProtoBufferSerializer.go +262 -0
  412. slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/Serializer.go +31 -0
  413. slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/WhisperTextProtocol.pb.go +640 -0
  414. slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/WhisperTextProtocol.proto +45 -0
  415. slidge_whatsapp/vendor/go.mau.fi/libsignal/session/Session.go +275 -0
  416. slidge_whatsapp/vendor/go.mau.fi/libsignal/session/SessionCipher.go +375 -0
  417. slidge_whatsapp/vendor/go.mau.fi/libsignal/signalerror/errors.go +37 -0
  418. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/record/ChainState.go +157 -0
  419. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/record/Doc.go +3 -0
  420. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/record/PendingKeyExchangeState.go +91 -0
  421. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/record/PendingPreKeyState.go +62 -0
  422. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/record/PreKeyRecord.go +90 -0
  423. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/record/SessionRecord.go +197 -0
  424. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/record/SessionState.go +531 -0
  425. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/record/SignedPreKeyRecord.go +112 -0
  426. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/record/UnacknowledgedPreKey.go +69 -0
  427. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/Doc.go +3 -0
  428. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/IdentityKeyStore.go +29 -0
  429. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/MessageKeyStore.go +21 -0
  430. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/PreKeyStore.go +21 -0
  431. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/SessionStore.go +17 -0
  432. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/SignalProtocolStore.go +15 -0
  433. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/SignedPreKeyStore.go +24 -0
  434. slidge_whatsapp/vendor/go.mau.fi/libsignal/util/bytehelper/ByteHelper.go +97 -0
  435. slidge_whatsapp/vendor/go.mau.fi/libsignal/util/errorhelper/ErrorHelper.go +40 -0
  436. slidge_whatsapp/vendor/go.mau.fi/libsignal/util/keyhelper/KeyHelper.go +95 -0
  437. slidge_whatsapp/vendor/go.mau.fi/libsignal/util/medium/Medium.go +4 -0
  438. slidge_whatsapp/vendor/go.mau.fi/libsignal/util/optional/Integer.go +17 -0
  439. slidge_whatsapp/vendor/go.mau.fi/util/LICENSE +373 -0
  440. slidge_whatsapp/vendor/go.mau.fi/util/fallocate/doc.go +9 -0
  441. slidge_whatsapp/vendor/go.mau.fi/util/fallocate/fallocate_darwin.go +29 -0
  442. slidge_whatsapp/vendor/go.mau.fi/util/fallocate/fallocate_linux.go +24 -0
  443. slidge_whatsapp/vendor/go.mau.fi/util/fallocate/fallocate_unknown.go +17 -0
  444. slidge_whatsapp/vendor/go.mau.fi/util/jsontime/duration.go +155 -0
  445. slidge_whatsapp/vendor/go.mau.fi/util/jsontime/helpers.go +59 -0
  446. slidge_whatsapp/vendor/go.mau.fi/util/jsontime/integer.go +170 -0
  447. slidge_whatsapp/vendor/go.mau.fi/util/jsontime/string.go +95 -0
  448. slidge_whatsapp/vendor/go.mau.fi/util/random/bytes.go +21 -0
  449. slidge_whatsapp/vendor/go.mau.fi/util/random/string.go +87 -0
  450. slidge_whatsapp/vendor/go.mau.fi/util/retryafter/retryafter.go +53 -0
  451. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/.editorconfig +13 -0
  452. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/.gitattributes +3 -0
  453. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/.pre-commit-config.yaml +31 -0
  454. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/LICENSE +374 -0
  455. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/README.md +35 -0
  456. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/decode.go +311 -0
  457. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/encode.go +322 -0
  458. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/errors.go +19 -0
  459. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/hash.go +97 -0
  460. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/keys.go +137 -0
  461. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/lthash/lthash.go +58 -0
  462. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate.go +407 -0
  463. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/armadillomessage.go +99 -0
  464. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/binary/attrs.go +218 -0
  465. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/binary/decoder.go +406 -0
  466. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/binary/encoder.go +308 -0
  467. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/binary/errors.go +12 -0
  468. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/binary/node.go +139 -0
  469. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/binary/token/token.go +94 -0
  470. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/binary/unpack.go +31 -0
  471. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/binary/xml.go +108 -0
  472. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/broadcast.go +142 -0
  473. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/call.go +112 -0
  474. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/client.go +851 -0
  475. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/connectionevents.go +196 -0
  476. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/download-to-file.go +201 -0
  477. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/download.go +370 -0
  478. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/errors.go +260 -0
  479. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/group.go +930 -0
  480. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/handshake.go +165 -0
  481. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/internals.go +660 -0
  482. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/keepalive.go +84 -0
  483. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/mediaconn.go +96 -0
  484. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/mediaretry.go +184 -0
  485. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/message.go +683 -0
  486. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/msgsecret.go +287 -0
  487. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/newsletter.go +376 -0
  488. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/notification.go +421 -0
  489. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/pair-code.go +242 -0
  490. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/pair.go +248 -0
  491. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/prekeys.go +251 -0
  492. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/presence.go +138 -0
  493. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/privacysettings.go +171 -0
  494. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/.gitignore +1 -0
  495. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/armadilloutil/decode.go +32 -0
  496. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/extra.go +36 -0
  497. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waAdv/WAAdv.pb.go +485 -0
  498. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waAdv/WAAdv.pb.raw +0 -0
  499. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waAdv/WAAdv.proto +43 -0
  500. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloApplication/WAArmadilloApplication.pb.go +2803 -0
  501. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloApplication/WAArmadilloApplication.pb.raw +0 -0
  502. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloApplication/WAArmadilloApplication.proto +258 -0
  503. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloApplication/extra.go +3 -0
  504. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloXMA/WAArmadilloXMA.pb.go +874 -0
  505. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloXMA/WAArmadilloXMA.pb.raw +0 -0
  506. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloXMA/WAArmadilloXMA.proto +139 -0
  507. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCert/WACert.pb.go +392 -0
  508. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCert/WACert.pb.raw +23 -0
  509. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCert/WACert.proto +34 -0
  510. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waChatLockSettings/WAProtobufsChatLockSettings.pb.go +134 -0
  511. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waChatLockSettings/WAProtobufsChatLockSettings.pb.raw +7 -0
  512. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waChatLockSettings/WAProtobufsChatLockSettings.proto +10 -0
  513. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCommon/WACommon.pb.go +456 -0
  514. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCommon/WACommon.pb.raw +0 -0
  515. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCommon/WACommon.proto +41 -0
  516. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCommon/legacy.go +11 -0
  517. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/WAWebProtobufsCompanionReg.pb.go +892 -0
  518. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/WAWebProtobufsCompanionReg.pb.raw +0 -0
  519. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/WAWebProtobufsCompanionReg.proto +100 -0
  520. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waConsumerApplication/WAConsumerApplication.pb.go +2653 -0
  521. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waConsumerApplication/WAConsumerApplication.pb.raw +0 -0
  522. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waConsumerApplication/WAConsumerApplication.proto +233 -0
  523. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waConsumerApplication/extra.go +82 -0
  524. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waDeviceCapabilities/WAProtobufsDeviceCapabilities.pb.go +185 -0
  525. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waDeviceCapabilities/WAProtobufsDeviceCapabilities.pb.raw +0 -0
  526. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waDeviceCapabilities/WAProtobufsDeviceCapabilities.proto +13 -0
  527. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.pb.go +22080 -0
  528. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.pb.raw +0 -0
  529. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.proto +2299 -0
  530. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/legacy.go +31 -0
  531. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.pb.go +2047 -0
  532. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.pb.raw +0 -0
  533. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.proto +217 -0
  534. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/legacy.go +11 -0
  535. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMediaTransport/WAMediaTransport.pb.go +1977 -0
  536. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMediaTransport/WAMediaTransport.pb.raw +0 -0
  537. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMediaTransport/WAMediaTransport.proto +190 -0
  538. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMmsRetry/WAMmsRetry.pb.go +249 -0
  539. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMmsRetry/WAMmsRetry.pb.raw +0 -0
  540. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMmsRetry/WAMmsRetry.proto +20 -0
  541. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgApplication/WAMsgApplication.pb.go +1016 -0
  542. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgApplication/WAMsgApplication.pb.raw +0 -0
  543. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgApplication/WAMsgApplication.proto +88 -0
  544. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgApplication/extra.go +41 -0
  545. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgTransport/WAMsgTransport.pb.go +808 -0
  546. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgTransport/WAMsgTransport.pb.raw +0 -0
  547. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgTransport/WAMsgTransport.proto +75 -0
  548. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgTransport/extra.go +19 -0
  549. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMultiDevice/WAMultiDevice.pb.go +702 -0
  550. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMultiDevice/WAMultiDevice.pb.raw +0 -0
  551. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMultiDevice/WAMultiDevice.proto +57 -0
  552. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMultiDevice/extra.go +3 -0
  553. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waServerSync/WAServerSync.pb.go +805 -0
  554. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waServerSync/WAServerSync.pb.raw +0 -0
  555. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waServerSync/WAServerSync.proto +72 -0
  556. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waServerSync/legacy.go +31 -0
  557. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.pb.go +4675 -0
  558. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.pb.raw +0 -0
  559. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.proto +461 -0
  560. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waUserPassword/WAProtobufsUserPassword.pb.go +410 -0
  561. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waUserPassword/WAProtobufsUserPassword.pb.raw +0 -0
  562. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waUserPassword/WAProtobufsUserPassword.proto +33 -0
  563. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waVnameCert/WAWebProtobufsVnameCert.pb.go +802 -0
  564. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waVnameCert/WAWebProtobufsVnameCert.pb.raw +0 -0
  565. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waVnameCert/WAWebProtobufsVnameCert.proto +72 -0
  566. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.pb.go +2021 -0
  567. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.pb.raw +0 -0
  568. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.proto +245 -0
  569. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.pb.go +3895 -0
  570. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.pb.raw +0 -0
  571. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.proto +577 -0
  572. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/legacy.go +1 -0
  573. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/push.go +110 -0
  574. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/qrchan.go +180 -0
  575. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/receipt.go +238 -0
  576. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/request.go +225 -0
  577. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/retry.go +440 -0
  578. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/send.go +1128 -0
  579. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/sendfb.go +646 -0
  580. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/socket/constants.go +43 -0
  581. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/socket/framesocket.go +235 -0
  582. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/socket/noisehandshake.go +124 -0
  583. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/socket/noisesocket.go +108 -0
  584. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/clientpayload.go +185 -0
  585. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/noop.go +214 -0
  586. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/signal.go +195 -0
  587. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/container.go +270 -0
  588. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/store.go +773 -0
  589. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrade.go +296 -0
  590. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/store.go +194 -0
  591. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/call.go +21 -0
  592. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/events/appstate.go +185 -0
  593. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/events/call.go +77 -0
  594. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/events/events.go +600 -0
  595. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/group.go +155 -0
  596. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/jid.go +263 -0
  597. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/message.go +98 -0
  598. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/newsletter.go +201 -0
  599. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/presence.go +78 -0
  600. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/user.go +195 -0
  601. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/update.go +63 -0
  602. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/upload.go +251 -0
  603. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/user.go +864 -0
  604. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/util/cbcutil/cbc.go +217 -0
  605. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/util/gcmutil/gcm.go +41 -0
  606. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/util/hkdfutil/hkdf.go +28 -0
  607. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/util/keys/keypair.go +68 -0
  608. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/util/log/log.go +83 -0
  609. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/util/log/zerolog.go +38 -0
  610. slidge_whatsapp/vendor/golang.org/x/crypto/LICENSE +27 -0
  611. slidge_whatsapp/vendor/golang.org/x/crypto/PATENTS +22 -0
  612. slidge_whatsapp/vendor/golang.org/x/crypto/curve25519/curve25519.go +90 -0
  613. slidge_whatsapp/vendor/golang.org/x/crypto/hkdf/hkdf.go +95 -0
  614. slidge_whatsapp/vendor/golang.org/x/crypto/pbkdf2/pbkdf2.go +77 -0
  615. slidge_whatsapp/vendor/golang.org/x/image/LICENSE +27 -0
  616. slidge_whatsapp/vendor/golang.org/x/image/PATENTS +22 -0
  617. slidge_whatsapp/vendor/golang.org/x/image/draw/draw.go +67 -0
  618. slidge_whatsapp/vendor/golang.org/x/image/draw/impl.go +8426 -0
  619. slidge_whatsapp/vendor/golang.org/x/image/draw/scale.go +525 -0
  620. slidge_whatsapp/vendor/golang.org/x/image/math/f64/f64.go +37 -0
  621. slidge_whatsapp/vendor/golang.org/x/image/riff/riff.go +193 -0
  622. slidge_whatsapp/vendor/golang.org/x/image/vp8/decode.go +403 -0
  623. slidge_whatsapp/vendor/golang.org/x/image/vp8/filter.go +273 -0
  624. slidge_whatsapp/vendor/golang.org/x/image/vp8/idct.go +98 -0
  625. slidge_whatsapp/vendor/golang.org/x/image/vp8/partition.go +129 -0
  626. slidge_whatsapp/vendor/golang.org/x/image/vp8/pred.go +201 -0
  627. slidge_whatsapp/vendor/golang.org/x/image/vp8/predfunc.go +553 -0
  628. slidge_whatsapp/vendor/golang.org/x/image/vp8/quant.go +98 -0
  629. slidge_whatsapp/vendor/golang.org/x/image/vp8/reconstruct.go +442 -0
  630. slidge_whatsapp/vendor/golang.org/x/image/vp8/token.go +381 -0
  631. slidge_whatsapp/vendor/golang.org/x/image/vp8l/decode.go +603 -0
  632. slidge_whatsapp/vendor/golang.org/x/image/vp8l/huffman.go +245 -0
  633. slidge_whatsapp/vendor/golang.org/x/image/vp8l/transform.go +299 -0
  634. slidge_whatsapp/vendor/golang.org/x/image/webp/decode.go +276 -0
  635. slidge_whatsapp/vendor/golang.org/x/image/webp/doc.go +9 -0
  636. slidge_whatsapp/vendor/golang.org/x/net/LICENSE +27 -0
  637. slidge_whatsapp/vendor/golang.org/x/net/PATENTS +22 -0
  638. slidge_whatsapp/vendor/golang.org/x/net/internal/socks/client.go +168 -0
  639. slidge_whatsapp/vendor/golang.org/x/net/internal/socks/socks.go +317 -0
  640. slidge_whatsapp/vendor/golang.org/x/net/proxy/dial.go +54 -0
  641. slidge_whatsapp/vendor/golang.org/x/net/proxy/direct.go +31 -0
  642. slidge_whatsapp/vendor/golang.org/x/net/proxy/per_host.go +153 -0
  643. slidge_whatsapp/vendor/golang.org/x/net/proxy/proxy.go +149 -0
  644. slidge_whatsapp/vendor/golang.org/x/net/proxy/socks5.go +42 -0
  645. slidge_whatsapp/vendor/golang.org/x/sys/LICENSE +27 -0
  646. slidge_whatsapp/vendor/golang.org/x/sys/PATENTS +22 -0
  647. slidge_whatsapp/vendor/golang.org/x/sys/unix/.gitignore +2 -0
  648. slidge_whatsapp/vendor/golang.org/x/sys/unix/README.md +184 -0
  649. slidge_whatsapp/vendor/golang.org/x/sys/unix/affinity_linux.go +86 -0
  650. slidge_whatsapp/vendor/golang.org/x/sys/unix/aliases.go +13 -0
  651. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_aix_ppc64.s +17 -0
  652. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_bsd_386.s +27 -0
  653. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_bsd_amd64.s +27 -0
  654. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_bsd_arm.s +27 -0
  655. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_bsd_arm64.s +27 -0
  656. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_bsd_ppc64.s +29 -0
  657. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_bsd_riscv64.s +27 -0
  658. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_linux_386.s +65 -0
  659. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_linux_amd64.s +57 -0
  660. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_linux_arm.s +56 -0
  661. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_linux_arm64.s +50 -0
  662. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_linux_loong64.s +51 -0
  663. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_linux_mips64x.s +54 -0
  664. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_linux_mipsx.s +52 -0
  665. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s +42 -0
  666. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_linux_riscv64.s +47 -0
  667. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_linux_s390x.s +54 -0
  668. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_openbsd_mips64.s +29 -0
  669. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_solaris_amd64.s +17 -0
  670. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_zos_s390x.s +382 -0
  671. slidge_whatsapp/vendor/golang.org/x/sys/unix/auxv.go +36 -0
  672. slidge_whatsapp/vendor/golang.org/x/sys/unix/auxv_unsupported.go +13 -0
  673. slidge_whatsapp/vendor/golang.org/x/sys/unix/bluetooth_linux.go +36 -0
  674. slidge_whatsapp/vendor/golang.org/x/sys/unix/bpxsvc_zos.go +657 -0
  675. slidge_whatsapp/vendor/golang.org/x/sys/unix/bpxsvc_zos.s +192 -0
  676. slidge_whatsapp/vendor/golang.org/x/sys/unix/cap_freebsd.go +195 -0
  677. slidge_whatsapp/vendor/golang.org/x/sys/unix/constants.go +13 -0
  678. slidge_whatsapp/vendor/golang.org/x/sys/unix/dev_aix_ppc.go +26 -0
  679. slidge_whatsapp/vendor/golang.org/x/sys/unix/dev_aix_ppc64.go +28 -0
  680. slidge_whatsapp/vendor/golang.org/x/sys/unix/dev_darwin.go +24 -0
  681. slidge_whatsapp/vendor/golang.org/x/sys/unix/dev_dragonfly.go +30 -0
  682. slidge_whatsapp/vendor/golang.org/x/sys/unix/dev_freebsd.go +30 -0
  683. slidge_whatsapp/vendor/golang.org/x/sys/unix/dev_linux.go +42 -0
  684. slidge_whatsapp/vendor/golang.org/x/sys/unix/dev_netbsd.go +29 -0
  685. slidge_whatsapp/vendor/golang.org/x/sys/unix/dev_openbsd.go +29 -0
  686. slidge_whatsapp/vendor/golang.org/x/sys/unix/dev_zos.go +28 -0
  687. slidge_whatsapp/vendor/golang.org/x/sys/unix/dirent.go +102 -0
  688. slidge_whatsapp/vendor/golang.org/x/sys/unix/endian_big.go +9 -0
  689. slidge_whatsapp/vendor/golang.org/x/sys/unix/endian_little.go +9 -0
  690. slidge_whatsapp/vendor/golang.org/x/sys/unix/env_unix.go +31 -0
  691. slidge_whatsapp/vendor/golang.org/x/sys/unix/fcntl.go +36 -0
  692. slidge_whatsapp/vendor/golang.org/x/sys/unix/fcntl_darwin.go +24 -0
  693. slidge_whatsapp/vendor/golang.org/x/sys/unix/fcntl_linux_32bit.go +13 -0
  694. slidge_whatsapp/vendor/golang.org/x/sys/unix/fdset.go +29 -0
  695. slidge_whatsapp/vendor/golang.org/x/sys/unix/gccgo.go +59 -0
  696. slidge_whatsapp/vendor/golang.org/x/sys/unix/gccgo_c.c +44 -0
  697. slidge_whatsapp/vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go +20 -0
  698. slidge_whatsapp/vendor/golang.org/x/sys/unix/ifreq_linux.go +141 -0
  699. slidge_whatsapp/vendor/golang.org/x/sys/unix/ioctl_linux.go +334 -0
  700. slidge_whatsapp/vendor/golang.org/x/sys/unix/ioctl_signed.go +69 -0
  701. slidge_whatsapp/vendor/golang.org/x/sys/unix/ioctl_unsigned.go +69 -0
  702. slidge_whatsapp/vendor/golang.org/x/sys/unix/ioctl_zos.go +71 -0
  703. slidge_whatsapp/vendor/golang.org/x/sys/unix/mkall.sh +249 -0
  704. slidge_whatsapp/vendor/golang.org/x/sys/unix/mkerrors.sh +805 -0
  705. slidge_whatsapp/vendor/golang.org/x/sys/unix/mmap_nomremap.go +13 -0
  706. slidge_whatsapp/vendor/golang.org/x/sys/unix/mremap.go +57 -0
  707. slidge_whatsapp/vendor/golang.org/x/sys/unix/pagesize_unix.go +15 -0
  708. slidge_whatsapp/vendor/golang.org/x/sys/unix/pledge_openbsd.go +111 -0
  709. slidge_whatsapp/vendor/golang.org/x/sys/unix/ptrace_darwin.go +11 -0
  710. slidge_whatsapp/vendor/golang.org/x/sys/unix/ptrace_ios.go +11 -0
  711. slidge_whatsapp/vendor/golang.org/x/sys/unix/race.go +30 -0
  712. slidge_whatsapp/vendor/golang.org/x/sys/unix/race0.go +25 -0
  713. slidge_whatsapp/vendor/golang.org/x/sys/unix/readdirent_getdents.go +12 -0
  714. slidge_whatsapp/vendor/golang.org/x/sys/unix/readdirent_getdirentries.go +19 -0
  715. slidge_whatsapp/vendor/golang.org/x/sys/unix/sockcmsg_dragonfly.go +16 -0
  716. slidge_whatsapp/vendor/golang.org/x/sys/unix/sockcmsg_linux.go +85 -0
  717. slidge_whatsapp/vendor/golang.org/x/sys/unix/sockcmsg_unix.go +106 -0
  718. slidge_whatsapp/vendor/golang.org/x/sys/unix/sockcmsg_unix_other.go +46 -0
  719. slidge_whatsapp/vendor/golang.org/x/sys/unix/sockcmsg_zos.go +58 -0
  720. slidge_whatsapp/vendor/golang.org/x/sys/unix/symaddr_zos_s390x.s +75 -0
  721. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall.go +86 -0
  722. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_aix.go +582 -0
  723. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_aix_ppc.go +52 -0
  724. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_aix_ppc64.go +83 -0
  725. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_bsd.go +609 -0
  726. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_darwin.go +707 -0
  727. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_darwin_amd64.go +50 -0
  728. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go +50 -0
  729. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_darwin_libSystem.go +26 -0
  730. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_dragonfly.go +359 -0
  731. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_dragonfly_amd64.go +56 -0
  732. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_freebsd.go +455 -0
  733. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_freebsd_386.go +64 -0
  734. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go +64 -0
  735. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go +60 -0
  736. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_freebsd_arm64.go +60 -0
  737. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_freebsd_riscv64.go +60 -0
  738. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_hurd.go +30 -0
  739. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_hurd_386.go +28 -0
  740. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_illumos.go +78 -0
  741. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux.go +2657 -0
  742. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_386.go +314 -0
  743. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_alarm.go +12 -0
  744. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_amd64.go +145 -0
  745. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_amd64_gc.go +12 -0
  746. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_arm.go +216 -0
  747. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_arm64.go +186 -0
  748. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_gc.go +14 -0
  749. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_gc_386.go +16 -0
  750. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_gc_arm.go +13 -0
  751. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_gccgo_386.go +30 -0
  752. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_gccgo_arm.go +20 -0
  753. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_loong64.go +218 -0
  754. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_mips64x.go +188 -0
  755. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_mipsx.go +174 -0
  756. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_ppc.go +204 -0
  757. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go +115 -0
  758. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_riscv64.go +191 -0
  759. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_s390x.go +296 -0
  760. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_sparc64.go +112 -0
  761. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_netbsd.go +371 -0
  762. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_netbsd_386.go +37 -0
  763. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_netbsd_amd64.go +37 -0
  764. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go +37 -0
  765. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_netbsd_arm64.go +37 -0
  766. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_openbsd.go +342 -0
  767. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_openbsd_386.go +41 -0
  768. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_openbsd_amd64.go +41 -0
  769. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_openbsd_arm.go +41 -0
  770. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_openbsd_arm64.go +41 -0
  771. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_openbsd_libc.go +26 -0
  772. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_openbsd_mips64.go +39 -0
  773. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_openbsd_ppc64.go +41 -0
  774. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_openbsd_riscv64.go +41 -0
  775. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_solaris.go +1191 -0
  776. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_solaris_amd64.go +27 -0
  777. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_unix.go +615 -0
  778. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_unix_gc.go +14 -0
  779. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_unix_gc_ppc64x.go +22 -0
  780. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go +3213 -0
  781. slidge_whatsapp/vendor/golang.org/x/sys/unix/sysvshm_linux.go +20 -0
  782. slidge_whatsapp/vendor/golang.org/x/sys/unix/sysvshm_unix.go +51 -0
  783. slidge_whatsapp/vendor/golang.org/x/sys/unix/sysvshm_unix_other.go +13 -0
  784. slidge_whatsapp/vendor/golang.org/x/sys/unix/timestruct.go +76 -0
  785. slidge_whatsapp/vendor/golang.org/x/sys/unix/unveil_openbsd.go +51 -0
  786. slidge_whatsapp/vendor/golang.org/x/sys/unix/vgetrandom_linux.go +13 -0
  787. slidge_whatsapp/vendor/golang.org/x/sys/unix/vgetrandom_unsupported.go +11 -0
  788. slidge_whatsapp/vendor/golang.org/x/sys/unix/xattr_bsd.go +280 -0
  789. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go +1384 -0
  790. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go +1385 -0
  791. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go +1922 -0
  792. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go +1922 -0
  793. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go +1737 -0
  794. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go +2042 -0
  795. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go +2039 -0
  796. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go +2033 -0
  797. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm64.go +2033 -0
  798. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_freebsd_riscv64.go +2147 -0
  799. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux.go +3752 -0
  800. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_386.go +873 -0
  801. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go +873 -0
  802. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go +878 -0
  803. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go +875 -0
  804. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_loong64.go +865 -0
  805. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go +879 -0
  806. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go +879 -0
  807. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go +879 -0
  808. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go +879 -0
  809. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go +931 -0
  810. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go +935 -0
  811. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go +935 -0
  812. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go +862 -0
  813. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go +934 -0
  814. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go +977 -0
  815. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go +1779 -0
  816. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_netbsd_amd64.go +1769 -0
  817. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go +1758 -0
  818. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm64.go +1769 -0
  819. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_openbsd_386.go +1905 -0
  820. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_openbsd_amd64.go +1905 -0
  821. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_openbsd_arm.go +1905 -0
  822. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_openbsd_arm64.go +1905 -0
  823. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_openbsd_mips64.go +1905 -0
  824. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_openbsd_ppc64.go +1904 -0
  825. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_openbsd_riscv64.go +1903 -0
  826. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go +1556 -0
  827. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go +990 -0
  828. slidge_whatsapp/vendor/golang.org/x/sys/unix/zptrace_armnn_linux.go +40 -0
  829. slidge_whatsapp/vendor/golang.org/x/sys/unix/zptrace_linux_arm64.go +17 -0
  830. slidge_whatsapp/vendor/golang.org/x/sys/unix/zptrace_mipsnn_linux.go +49 -0
  831. slidge_whatsapp/vendor/golang.org/x/sys/unix/zptrace_mipsnnle_linux.go +49 -0
  832. slidge_whatsapp/vendor/golang.org/x/sys/unix/zptrace_x86_linux.go +79 -0
  833. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsymaddr_zos_s390x.s +364 -0
  834. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc.go +1461 -0
  835. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64.go +1420 -0
  836. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gc.go +1188 -0
  837. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gccgo.go +1069 -0
  838. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go +2644 -0
  839. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.s +779 -0
  840. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go +2644 -0
  841. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.s +779 -0
  842. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_dragonfly_amd64.go +1666 -0
  843. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_freebsd_386.go +1886 -0
  844. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_freebsd_amd64.go +1886 -0
  845. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm.go +1886 -0
  846. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm64.go +1886 -0
  847. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_freebsd_riscv64.go +1886 -0
  848. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_illumos_amd64.go +101 -0
  849. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux.go +2240 -0
  850. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_386.go +486 -0
  851. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_amd64.go +653 -0
  852. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go +601 -0
  853. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_arm64.go +552 -0
  854. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_loong64.go +486 -0
  855. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_mips.go +653 -0
  856. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_mips64.go +647 -0
  857. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_mips64le.go +636 -0
  858. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_mipsle.go +653 -0
  859. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc.go +658 -0
  860. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go +704 -0
  861. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64le.go +704 -0
  862. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_riscv64.go +548 -0
  863. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_s390x.go +495 -0
  864. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_sparc64.go +648 -0
  865. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_netbsd_386.go +1848 -0
  866. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_netbsd_amd64.go +1848 -0
  867. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm.go +1848 -0
  868. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm64.go +1848 -0
  869. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go +2323 -0
  870. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.s +699 -0
  871. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go +2323 -0
  872. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.s +699 -0
  873. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.go +2323 -0
  874. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.s +699 -0
  875. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.go +2323 -0
  876. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.s +699 -0
  877. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.go +2323 -0
  878. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.s +699 -0
  879. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_ppc64.go +2323 -0
  880. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_ppc64.s +838 -0
  881. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_riscv64.go +2323 -0
  882. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_riscv64.s +699 -0
  883. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go +2217 -0
  884. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go +3458 -0
  885. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysctl_openbsd_386.go +280 -0
  886. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysctl_openbsd_amd64.go +280 -0
  887. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm.go +280 -0
  888. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm64.go +280 -0
  889. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysctl_openbsd_mips64.go +280 -0
  890. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysctl_openbsd_ppc64.go +280 -0
  891. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysctl_openbsd_riscv64.go +281 -0
  892. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_darwin_amd64.go +439 -0
  893. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm64.go +437 -0
  894. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go +316 -0
  895. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go +393 -0
  896. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go +393 -0
  897. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go +393 -0
  898. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm64.go +393 -0
  899. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_freebsd_riscv64.go +393 -0
  900. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go +465 -0
  901. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go +388 -0
  902. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go +429 -0
  903. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go +332 -0
  904. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_loong64.go +328 -0
  905. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go +449 -0
  906. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go +379 -0
  907. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go +379 -0
  908. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go +449 -0
  909. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc.go +456 -0
  910. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go +428 -0
  911. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go +428 -0
  912. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_riscv64.go +333 -0
  913. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go +394 -0
  914. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go +407 -0
  915. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go +274 -0
  916. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go +274 -0
  917. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go +274 -0
  918. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm64.go +274 -0
  919. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go +219 -0
  920. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_openbsd_amd64.go +219 -0
  921. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm.go +219 -0
  922. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm64.go +218 -0
  923. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_openbsd_mips64.go +221 -0
  924. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_openbsd_ppc64.go +217 -0
  925. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_openbsd_riscv64.go +218 -0
  926. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go +2852 -0
  927. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go +353 -0
  928. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_aix_ppc64.go +357 -0
  929. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go +878 -0
  930. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go +878 -0
  931. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go +473 -0
  932. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go +651 -0
  933. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go +656 -0
  934. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go +642 -0
  935. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm64.go +636 -0
  936. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_freebsd_riscv64.go +638 -0
  937. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux.go +6178 -0
  938. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_386.go +689 -0
  939. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go +703 -0
  940. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go +683 -0
  941. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go +682 -0
  942. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_loong64.go +683 -0
  943. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go +688 -0
  944. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go +685 -0
  945. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go +685 -0
  946. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go +688 -0
  947. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_ppc.go +696 -0
  948. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go +691 -0
  949. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go +691 -0
  950. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_riscv64.go +770 -0
  951. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go +705 -0
  952. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go +686 -0
  953. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go +585 -0
  954. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_netbsd_amd64.go +593 -0
  955. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go +590 -0
  956. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm64.go +593 -0
  957. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go +568 -0
  958. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_openbsd_amd64.go +568 -0
  959. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_openbsd_arm.go +575 -0
  960. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_openbsd_arm64.go +568 -0
  961. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_openbsd_mips64.go +568 -0
  962. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_openbsd_ppc64.go +570 -0
  963. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_openbsd_riscv64.go +570 -0
  964. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go +516 -0
  965. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_zos_s390x.go +552 -0
  966. slidge_whatsapp/vendor/golang.org/x/sys/windows/aliases.go +12 -0
  967. slidge_whatsapp/vendor/golang.org/x/sys/windows/dll_windows.go +415 -0
  968. slidge_whatsapp/vendor/golang.org/x/sys/windows/env_windows.go +57 -0
  969. slidge_whatsapp/vendor/golang.org/x/sys/windows/eventlog.go +20 -0
  970. slidge_whatsapp/vendor/golang.org/x/sys/windows/exec_windows.go +248 -0
  971. slidge_whatsapp/vendor/golang.org/x/sys/windows/memory_windows.go +48 -0
  972. slidge_whatsapp/vendor/golang.org/x/sys/windows/mkerrors.bash +70 -0
  973. slidge_whatsapp/vendor/golang.org/x/sys/windows/mkknownfolderids.bash +27 -0
  974. slidge_whatsapp/vendor/golang.org/x/sys/windows/mksyscall.go +9 -0
  975. slidge_whatsapp/vendor/golang.org/x/sys/windows/race.go +30 -0
  976. slidge_whatsapp/vendor/golang.org/x/sys/windows/race0.go +25 -0
  977. slidge_whatsapp/vendor/golang.org/x/sys/windows/security_windows.go +1458 -0
  978. slidge_whatsapp/vendor/golang.org/x/sys/windows/service.go +257 -0
  979. slidge_whatsapp/vendor/golang.org/x/sys/windows/setupapi_windows.go +1425 -0
  980. slidge_whatsapp/vendor/golang.org/x/sys/windows/str.go +22 -0
  981. slidge_whatsapp/vendor/golang.org/x/sys/windows/syscall.go +104 -0
  982. slidge_whatsapp/vendor/golang.org/x/sys/windows/syscall_windows.go +1932 -0
  983. slidge_whatsapp/vendor/golang.org/x/sys/windows/types_windows.go +3603 -0
  984. slidge_whatsapp/vendor/golang.org/x/sys/windows/types_windows_386.go +35 -0
  985. slidge_whatsapp/vendor/golang.org/x/sys/windows/types_windows_amd64.go +34 -0
  986. slidge_whatsapp/vendor/golang.org/x/sys/windows/types_windows_arm.go +35 -0
  987. slidge_whatsapp/vendor/golang.org/x/sys/windows/types_windows_arm64.go +34 -0
  988. slidge_whatsapp/vendor/golang.org/x/sys/windows/zerrors_windows.go +9468 -0
  989. slidge_whatsapp/vendor/golang.org/x/sys/windows/zknownfolderids_windows.go +149 -0
  990. slidge_whatsapp/vendor/golang.org/x/sys/windows/zsyscall_windows.go +4686 -0
  991. slidge_whatsapp/vendor/google.golang.org/protobuf/LICENSE +27 -0
  992. slidge_whatsapp/vendor/google.golang.org/protobuf/PATENTS +22 -0
  993. slidge_whatsapp/vendor/google.golang.org/protobuf/encoding/prototext/decode.go +767 -0
  994. slidge_whatsapp/vendor/google.golang.org/protobuf/encoding/prototext/doc.go +7 -0
  995. slidge_whatsapp/vendor/google.golang.org/protobuf/encoding/prototext/encode.go +380 -0
  996. slidge_whatsapp/vendor/google.golang.org/protobuf/encoding/protowire/wire.go +547 -0
  997. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/descfmt/stringer.go +414 -0
  998. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/descopts/options.go +29 -0
  999. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/detrand/rand.go +69 -0
  1000. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/editiondefaults/defaults.go +12 -0
  1001. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/editiondefaults/editions_defaults.binpb +0 -0
  1002. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/encoding/defval/default.go +213 -0
  1003. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/encoding/messageset/messageset.go +242 -0
  1004. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/encoding/tag/tag.go +201 -0
  1005. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/encoding/text/decode.go +686 -0
  1006. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/encoding/text/decode_number.go +211 -0
  1007. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/encoding/text/decode_string.go +161 -0
  1008. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/encoding/text/decode_token.go +373 -0
  1009. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/encoding/text/doc.go +29 -0
  1010. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/encoding/text/encode.go +272 -0
  1011. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/errors/errors.go +104 -0
  1012. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/build.go +157 -0
  1013. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/desc.go +748 -0
  1014. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/desc_init.go +560 -0
  1015. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/desc_lazy.go +694 -0
  1016. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/desc_list.go +457 -0
  1017. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/desc_list_gen.go +367 -0
  1018. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/editions.go +164 -0
  1019. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/placeholder.go +110 -0
  1020. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filetype/build.go +296 -0
  1021. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/flags/flags.go +24 -0
  1022. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/flags/proto_legacy_disable.go +10 -0
  1023. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/flags/proto_legacy_enable.go +10 -0
  1024. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/any_gen.go +34 -0
  1025. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/api_gen.go +106 -0
  1026. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/descriptor_gen.go +1270 -0
  1027. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/doc.go +11 -0
  1028. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/duration_gen.go +34 -0
  1029. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/empty_gen.go +19 -0
  1030. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/field_mask_gen.go +31 -0
  1031. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/go_features_gen.go +70 -0
  1032. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/goname.go +20 -0
  1033. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/map_entry.go +16 -0
  1034. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/name.go +12 -0
  1035. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/source_context_gen.go +31 -0
  1036. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/struct_gen.go +121 -0
  1037. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/timestamp_gen.go +34 -0
  1038. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/type_gen.go +228 -0
  1039. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/wrappers.go +13 -0
  1040. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/wrappers_gen.go +175 -0
  1041. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/api_export.go +177 -0
  1042. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/api_export_opaque.go +128 -0
  1043. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/bitmap.go +34 -0
  1044. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/bitmap_race.go +126 -0
  1045. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/checkinit.go +174 -0
  1046. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_extension.go +228 -0
  1047. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_field.go +788 -0
  1048. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_field_opaque.go +264 -0
  1049. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_gen.go +5724 -0
  1050. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_map.go +399 -0
  1051. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_message.go +230 -0
  1052. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_message_opaque.go +153 -0
  1053. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_messageset.go +145 -0
  1054. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_tables.go +557 -0
  1055. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_unsafe.go +15 -0
  1056. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/convert.go +495 -0
  1057. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/convert_list.go +141 -0
  1058. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/convert_map.go +121 -0
  1059. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/decode.go +333 -0
  1060. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/encode.go +315 -0
  1061. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/enum.go +21 -0
  1062. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/equal.go +224 -0
  1063. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/extension.go +156 -0
  1064. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/lazy.go +433 -0
  1065. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/legacy_enum.go +219 -0
  1066. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/legacy_export.go +92 -0
  1067. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/legacy_extension.go +177 -0
  1068. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/legacy_file.go +81 -0
  1069. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/legacy_message.go +569 -0
  1070. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/merge.go +203 -0
  1071. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/merge_gen.go +209 -0
  1072. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/message.go +283 -0
  1073. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/message_opaque.go +627 -0
  1074. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/message_opaque_gen.go +132 -0
  1075. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/message_reflect.go +462 -0
  1076. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/message_reflect_field.go +423 -0
  1077. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/message_reflect_field_gen.go +273 -0
  1078. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/message_reflect_gen.go +271 -0
  1079. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/pointer_unsafe.go +220 -0
  1080. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/pointer_unsafe_opaque.go +42 -0
  1081. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/presence.go +142 -0
  1082. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/validate.go +570 -0
  1083. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/order/order.go +89 -0
  1084. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/order/range.go +115 -0
  1085. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/pragma/pragma.go +29 -0
  1086. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/protolazy/bufferreader.go +364 -0
  1087. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/protolazy/lazy.go +359 -0
  1088. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/protolazy/pointer_unsafe.go +17 -0
  1089. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/set/ints.go +58 -0
  1090. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/strs/strings.go +196 -0
  1091. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/strs/strings_unsafe_go120.go +94 -0
  1092. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/strs/strings_unsafe_go121.go +73 -0
  1093. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/version/version.go +79 -0
  1094. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/checkinit.go +71 -0
  1095. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/decode.go +307 -0
  1096. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/decode_gen.go +603 -0
  1097. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/doc.go +86 -0
  1098. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/encode.go +355 -0
  1099. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/encode_gen.go +97 -0
  1100. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/equal.go +66 -0
  1101. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/extension.go +166 -0
  1102. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/merge.go +139 -0
  1103. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/messageset.go +98 -0
  1104. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/proto.go +45 -0
  1105. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/proto_methods.go +20 -0
  1106. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/proto_reflect.go +20 -0
  1107. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/reset.go +43 -0
  1108. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/size.go +111 -0
  1109. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/size_gen.go +55 -0
  1110. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/wrapperopaque.go +80 -0
  1111. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/wrappers.go +29 -0
  1112. slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/methods.go +88 -0
  1113. slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/proto.go +513 -0
  1114. slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/source.go +129 -0
  1115. slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/source_gen.go +573 -0
  1116. slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/type.go +666 -0
  1117. slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/value.go +285 -0
  1118. slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/value_equal.go +168 -0
  1119. slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/value_union.go +438 -0
  1120. slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/value_unsafe_go120.go +98 -0
  1121. slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/value_unsafe_go121.go +86 -0
  1122. slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoregistry/registry.go +882 -0
  1123. slidge_whatsapp/vendor/google.golang.org/protobuf/runtime/protoiface/legacy.go +15 -0
  1124. slidge_whatsapp/vendor/google.golang.org/protobuf/runtime/protoiface/methods.go +202 -0
  1125. slidge_whatsapp/vendor/google.golang.org/protobuf/runtime/protoimpl/impl.go +48 -0
  1126. slidge_whatsapp/vendor/google.golang.org/protobuf/runtime/protoimpl/version.go +60 -0
  1127. slidge_whatsapp/vendor/modules.txt +173 -0
  1128. slidge_whatsapp-0.2.5.dist-info/METADATA +63 -0
  1129. slidge_whatsapp-0.2.5.dist-info/RECORD +1140 -0
  1130. {slidge_whatsapp-0.2.2.dist-info → slidge_whatsapp-0.2.5.dist-info}/WHEEL +1 -1
  1131. slidge_whatsapp-0.2.2.dist-info/METADATA +0 -744
  1132. slidge_whatsapp-0.2.2.dist-info/RECORD +0 -31
  1133. {slidge_whatsapp-0.2.2.dist-info → slidge_whatsapp-0.2.5.dist-info}/LICENSE +0 -0
  1134. {slidge_whatsapp-0.2.2.dist-info → slidge_whatsapp-0.2.5.dist-info}/entry_points.txt +0 -0
@@ -0,0 +1,1977 @@
1
+ // Code generated by protoc-gen-go. DO NOT EDIT.
2
+ // versions:
3
+ // protoc-gen-go v1.36.1
4
+ // protoc v3.21.12
5
+ // source: waMediaTransport/WAMediaTransport.proto
6
+
7
+ package waMediaTransport
8
+
9
+ import (
10
+ reflect "reflect"
11
+ sync "sync"
12
+
13
+ protoreflect "google.golang.org/protobuf/reflect/protoreflect"
14
+ protoimpl "google.golang.org/protobuf/runtime/protoimpl"
15
+
16
+ waCommon "go.mau.fi/whatsmeow/proto/waCommon"
17
+
18
+ _ "embed"
19
+ )
20
+
21
+ const (
22
+ // Verify that this generated code is sufficiently up-to-date.
23
+ _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
24
+ // Verify that runtime/protoimpl is sufficiently up-to-date.
25
+ _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
26
+ )
27
+
28
+ type ImageTransport_Ancillary_HdType int32
29
+
30
+ const (
31
+ ImageTransport_Ancillary_NONE ImageTransport_Ancillary_HdType = 0
32
+ ImageTransport_Ancillary_LQ_4K ImageTransport_Ancillary_HdType = 1
33
+ ImageTransport_Ancillary_HQ_4K ImageTransport_Ancillary_HdType = 2
34
+ )
35
+
36
+ // Enum value maps for ImageTransport_Ancillary_HdType.
37
+ var (
38
+ ImageTransport_Ancillary_HdType_name = map[int32]string{
39
+ 0: "NONE",
40
+ 1: "LQ_4K",
41
+ 2: "HQ_4K",
42
+ }
43
+ ImageTransport_Ancillary_HdType_value = map[string]int32{
44
+ "NONE": 0,
45
+ "LQ_4K": 1,
46
+ "HQ_4K": 2,
47
+ }
48
+ )
49
+
50
+ func (x ImageTransport_Ancillary_HdType) Enum() *ImageTransport_Ancillary_HdType {
51
+ p := new(ImageTransport_Ancillary_HdType)
52
+ *p = x
53
+ return p
54
+ }
55
+
56
+ func (x ImageTransport_Ancillary_HdType) String() string {
57
+ return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
58
+ }
59
+
60
+ func (ImageTransport_Ancillary_HdType) Descriptor() protoreflect.EnumDescriptor {
61
+ return file_waMediaTransport_WAMediaTransport_proto_enumTypes[0].Descriptor()
62
+ }
63
+
64
+ func (ImageTransport_Ancillary_HdType) Type() protoreflect.EnumType {
65
+ return &file_waMediaTransport_WAMediaTransport_proto_enumTypes[0]
66
+ }
67
+
68
+ func (x ImageTransport_Ancillary_HdType) Number() protoreflect.EnumNumber {
69
+ return protoreflect.EnumNumber(x)
70
+ }
71
+
72
+ // Deprecated: Do not use.
73
+ func (x *ImageTransport_Ancillary_HdType) UnmarshalJSON(b []byte) error {
74
+ num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
75
+ if err != nil {
76
+ return err
77
+ }
78
+ *x = ImageTransport_Ancillary_HdType(num)
79
+ return nil
80
+ }
81
+
82
+ // Deprecated: Use ImageTransport_Ancillary_HdType.Descriptor instead.
83
+ func (ImageTransport_Ancillary_HdType) EnumDescriptor() ([]byte, []int) {
84
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{1, 0, 0}
85
+ }
86
+
87
+ type VideoTransport_Ancillary_Attribution int32
88
+
89
+ const (
90
+ VideoTransport_Ancillary_NONE VideoTransport_Ancillary_Attribution = 0
91
+ VideoTransport_Ancillary_GIPHY VideoTransport_Ancillary_Attribution = 1
92
+ VideoTransport_Ancillary_TENOR VideoTransport_Ancillary_Attribution = 2
93
+ )
94
+
95
+ // Enum value maps for VideoTransport_Ancillary_Attribution.
96
+ var (
97
+ VideoTransport_Ancillary_Attribution_name = map[int32]string{
98
+ 0: "NONE",
99
+ 1: "GIPHY",
100
+ 2: "TENOR",
101
+ }
102
+ VideoTransport_Ancillary_Attribution_value = map[string]int32{
103
+ "NONE": 0,
104
+ "GIPHY": 1,
105
+ "TENOR": 2,
106
+ }
107
+ )
108
+
109
+ func (x VideoTransport_Ancillary_Attribution) Enum() *VideoTransport_Ancillary_Attribution {
110
+ p := new(VideoTransport_Ancillary_Attribution)
111
+ *p = x
112
+ return p
113
+ }
114
+
115
+ func (x VideoTransport_Ancillary_Attribution) String() string {
116
+ return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
117
+ }
118
+
119
+ func (VideoTransport_Ancillary_Attribution) Descriptor() protoreflect.EnumDescriptor {
120
+ return file_waMediaTransport_WAMediaTransport_proto_enumTypes[1].Descriptor()
121
+ }
122
+
123
+ func (VideoTransport_Ancillary_Attribution) Type() protoreflect.EnumType {
124
+ return &file_waMediaTransport_WAMediaTransport_proto_enumTypes[1]
125
+ }
126
+
127
+ func (x VideoTransport_Ancillary_Attribution) Number() protoreflect.EnumNumber {
128
+ return protoreflect.EnumNumber(x)
129
+ }
130
+
131
+ // Deprecated: Do not use.
132
+ func (x *VideoTransport_Ancillary_Attribution) UnmarshalJSON(b []byte) error {
133
+ num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
134
+ if err != nil {
135
+ return err
136
+ }
137
+ *x = VideoTransport_Ancillary_Attribution(num)
138
+ return nil
139
+ }
140
+
141
+ // Deprecated: Use VideoTransport_Ancillary_Attribution.Descriptor instead.
142
+ func (VideoTransport_Ancillary_Attribution) EnumDescriptor() ([]byte, []int) {
143
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{2, 0, 0}
144
+ }
145
+
146
+ type AudioTransport_Ancillary_AvatarAudio_AnimationsType int32
147
+
148
+ const (
149
+ AudioTransport_Ancillary_AvatarAudio_TALKING_A AudioTransport_Ancillary_AvatarAudio_AnimationsType = 0
150
+ AudioTransport_Ancillary_AvatarAudio_IDLE_A AudioTransport_Ancillary_AvatarAudio_AnimationsType = 1
151
+ AudioTransport_Ancillary_AvatarAudio_TALKING_B AudioTransport_Ancillary_AvatarAudio_AnimationsType = 2
152
+ AudioTransport_Ancillary_AvatarAudio_IDLE_B AudioTransport_Ancillary_AvatarAudio_AnimationsType = 3
153
+ AudioTransport_Ancillary_AvatarAudio_BACKGROUND AudioTransport_Ancillary_AvatarAudio_AnimationsType = 4
154
+ )
155
+
156
+ // Enum value maps for AudioTransport_Ancillary_AvatarAudio_AnimationsType.
157
+ var (
158
+ AudioTransport_Ancillary_AvatarAudio_AnimationsType_name = map[int32]string{
159
+ 0: "TALKING_A",
160
+ 1: "IDLE_A",
161
+ 2: "TALKING_B",
162
+ 3: "IDLE_B",
163
+ 4: "BACKGROUND",
164
+ }
165
+ AudioTransport_Ancillary_AvatarAudio_AnimationsType_value = map[string]int32{
166
+ "TALKING_A": 0,
167
+ "IDLE_A": 1,
168
+ "TALKING_B": 2,
169
+ "IDLE_B": 3,
170
+ "BACKGROUND": 4,
171
+ }
172
+ )
173
+
174
+ func (x AudioTransport_Ancillary_AvatarAudio_AnimationsType) Enum() *AudioTransport_Ancillary_AvatarAudio_AnimationsType {
175
+ p := new(AudioTransport_Ancillary_AvatarAudio_AnimationsType)
176
+ *p = x
177
+ return p
178
+ }
179
+
180
+ func (x AudioTransport_Ancillary_AvatarAudio_AnimationsType) String() string {
181
+ return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
182
+ }
183
+
184
+ func (AudioTransport_Ancillary_AvatarAudio_AnimationsType) Descriptor() protoreflect.EnumDescriptor {
185
+ return file_waMediaTransport_WAMediaTransport_proto_enumTypes[2].Descriptor()
186
+ }
187
+
188
+ func (AudioTransport_Ancillary_AvatarAudio_AnimationsType) Type() protoreflect.EnumType {
189
+ return &file_waMediaTransport_WAMediaTransport_proto_enumTypes[2]
190
+ }
191
+
192
+ func (x AudioTransport_Ancillary_AvatarAudio_AnimationsType) Number() protoreflect.EnumNumber {
193
+ return protoreflect.EnumNumber(x)
194
+ }
195
+
196
+ // Deprecated: Do not use.
197
+ func (x *AudioTransport_Ancillary_AvatarAudio_AnimationsType) UnmarshalJSON(b []byte) error {
198
+ num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
199
+ if err != nil {
200
+ return err
201
+ }
202
+ *x = AudioTransport_Ancillary_AvatarAudio_AnimationsType(num)
203
+ return nil
204
+ }
205
+
206
+ // Deprecated: Use AudioTransport_Ancillary_AvatarAudio_AnimationsType.Descriptor instead.
207
+ func (AudioTransport_Ancillary_AvatarAudio_AnimationsType) EnumDescriptor() ([]byte, []int) {
208
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{3, 0, 0, 0}
209
+ }
210
+
211
+ type AudioTransport_Integral_AudioFormat int32
212
+
213
+ const (
214
+ AudioTransport_Integral_UNKNOWN AudioTransport_Integral_AudioFormat = 0
215
+ AudioTransport_Integral_OPUS AudioTransport_Integral_AudioFormat = 1
216
+ )
217
+
218
+ // Enum value maps for AudioTransport_Integral_AudioFormat.
219
+ var (
220
+ AudioTransport_Integral_AudioFormat_name = map[int32]string{
221
+ 0: "UNKNOWN",
222
+ 1: "OPUS",
223
+ }
224
+ AudioTransport_Integral_AudioFormat_value = map[string]int32{
225
+ "UNKNOWN": 0,
226
+ "OPUS": 1,
227
+ }
228
+ )
229
+
230
+ func (x AudioTransport_Integral_AudioFormat) Enum() *AudioTransport_Integral_AudioFormat {
231
+ p := new(AudioTransport_Integral_AudioFormat)
232
+ *p = x
233
+ return p
234
+ }
235
+
236
+ func (x AudioTransport_Integral_AudioFormat) String() string {
237
+ return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
238
+ }
239
+
240
+ func (AudioTransport_Integral_AudioFormat) Descriptor() protoreflect.EnumDescriptor {
241
+ return file_waMediaTransport_WAMediaTransport_proto_enumTypes[3].Descriptor()
242
+ }
243
+
244
+ func (AudioTransport_Integral_AudioFormat) Type() protoreflect.EnumType {
245
+ return &file_waMediaTransport_WAMediaTransport_proto_enumTypes[3]
246
+ }
247
+
248
+ func (x AudioTransport_Integral_AudioFormat) Number() protoreflect.EnumNumber {
249
+ return protoreflect.EnumNumber(x)
250
+ }
251
+
252
+ // Deprecated: Do not use.
253
+ func (x *AudioTransport_Integral_AudioFormat) UnmarshalJSON(b []byte) error {
254
+ num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
255
+ if err != nil {
256
+ return err
257
+ }
258
+ *x = AudioTransport_Integral_AudioFormat(num)
259
+ return nil
260
+ }
261
+
262
+ // Deprecated: Use AudioTransport_Integral_AudioFormat.Descriptor instead.
263
+ func (AudioTransport_Integral_AudioFormat) EnumDescriptor() ([]byte, []int) {
264
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{3, 1, 0}
265
+ }
266
+
267
+ type WAMediaTransport struct {
268
+ state protoimpl.MessageState `protogen:"open.v1"`
269
+ Integral *WAMediaTransport_Integral `protobuf:"bytes,1,opt,name=integral" json:"integral,omitempty"`
270
+ Ancillary *WAMediaTransport_Ancillary `protobuf:"bytes,2,opt,name=ancillary" json:"ancillary,omitempty"`
271
+ unknownFields protoimpl.UnknownFields
272
+ sizeCache protoimpl.SizeCache
273
+ }
274
+
275
+ func (x *WAMediaTransport) Reset() {
276
+ *x = WAMediaTransport{}
277
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[0]
278
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
279
+ ms.StoreMessageInfo(mi)
280
+ }
281
+
282
+ func (x *WAMediaTransport) String() string {
283
+ return protoimpl.X.MessageStringOf(x)
284
+ }
285
+
286
+ func (*WAMediaTransport) ProtoMessage() {}
287
+
288
+ func (x *WAMediaTransport) ProtoReflect() protoreflect.Message {
289
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[0]
290
+ if x != nil {
291
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
292
+ if ms.LoadMessageInfo() == nil {
293
+ ms.StoreMessageInfo(mi)
294
+ }
295
+ return ms
296
+ }
297
+ return mi.MessageOf(x)
298
+ }
299
+
300
+ // Deprecated: Use WAMediaTransport.ProtoReflect.Descriptor instead.
301
+ func (*WAMediaTransport) Descriptor() ([]byte, []int) {
302
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{0}
303
+ }
304
+
305
+ func (x *WAMediaTransport) GetIntegral() *WAMediaTransport_Integral {
306
+ if x != nil {
307
+ return x.Integral
308
+ }
309
+ return nil
310
+ }
311
+
312
+ func (x *WAMediaTransport) GetAncillary() *WAMediaTransport_Ancillary {
313
+ if x != nil {
314
+ return x.Ancillary
315
+ }
316
+ return nil
317
+ }
318
+
319
+ type ImageTransport struct {
320
+ state protoimpl.MessageState `protogen:"open.v1"`
321
+ Integral *ImageTransport_Integral `protobuf:"bytes,1,opt,name=integral" json:"integral,omitempty"`
322
+ Ancillary *ImageTransport_Ancillary `protobuf:"bytes,2,opt,name=ancillary" json:"ancillary,omitempty"`
323
+ unknownFields protoimpl.UnknownFields
324
+ sizeCache protoimpl.SizeCache
325
+ }
326
+
327
+ func (x *ImageTransport) Reset() {
328
+ *x = ImageTransport{}
329
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[1]
330
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
331
+ ms.StoreMessageInfo(mi)
332
+ }
333
+
334
+ func (x *ImageTransport) String() string {
335
+ return protoimpl.X.MessageStringOf(x)
336
+ }
337
+
338
+ func (*ImageTransport) ProtoMessage() {}
339
+
340
+ func (x *ImageTransport) ProtoReflect() protoreflect.Message {
341
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[1]
342
+ if x != nil {
343
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
344
+ if ms.LoadMessageInfo() == nil {
345
+ ms.StoreMessageInfo(mi)
346
+ }
347
+ return ms
348
+ }
349
+ return mi.MessageOf(x)
350
+ }
351
+
352
+ // Deprecated: Use ImageTransport.ProtoReflect.Descriptor instead.
353
+ func (*ImageTransport) Descriptor() ([]byte, []int) {
354
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{1}
355
+ }
356
+
357
+ func (x *ImageTransport) GetIntegral() *ImageTransport_Integral {
358
+ if x != nil {
359
+ return x.Integral
360
+ }
361
+ return nil
362
+ }
363
+
364
+ func (x *ImageTransport) GetAncillary() *ImageTransport_Ancillary {
365
+ if x != nil {
366
+ return x.Ancillary
367
+ }
368
+ return nil
369
+ }
370
+
371
+ type VideoTransport struct {
372
+ state protoimpl.MessageState `protogen:"open.v1"`
373
+ Integral *VideoTransport_Integral `protobuf:"bytes,1,opt,name=integral" json:"integral,omitempty"`
374
+ Ancillary *VideoTransport_Ancillary `protobuf:"bytes,2,opt,name=ancillary" json:"ancillary,omitempty"`
375
+ unknownFields protoimpl.UnknownFields
376
+ sizeCache protoimpl.SizeCache
377
+ }
378
+
379
+ func (x *VideoTransport) Reset() {
380
+ *x = VideoTransport{}
381
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[2]
382
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
383
+ ms.StoreMessageInfo(mi)
384
+ }
385
+
386
+ func (x *VideoTransport) String() string {
387
+ return protoimpl.X.MessageStringOf(x)
388
+ }
389
+
390
+ func (*VideoTransport) ProtoMessage() {}
391
+
392
+ func (x *VideoTransport) ProtoReflect() protoreflect.Message {
393
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[2]
394
+ if x != nil {
395
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
396
+ if ms.LoadMessageInfo() == nil {
397
+ ms.StoreMessageInfo(mi)
398
+ }
399
+ return ms
400
+ }
401
+ return mi.MessageOf(x)
402
+ }
403
+
404
+ // Deprecated: Use VideoTransport.ProtoReflect.Descriptor instead.
405
+ func (*VideoTransport) Descriptor() ([]byte, []int) {
406
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{2}
407
+ }
408
+
409
+ func (x *VideoTransport) GetIntegral() *VideoTransport_Integral {
410
+ if x != nil {
411
+ return x.Integral
412
+ }
413
+ return nil
414
+ }
415
+
416
+ func (x *VideoTransport) GetAncillary() *VideoTransport_Ancillary {
417
+ if x != nil {
418
+ return x.Ancillary
419
+ }
420
+ return nil
421
+ }
422
+
423
+ type AudioTransport struct {
424
+ state protoimpl.MessageState `protogen:"open.v1"`
425
+ Integral *AudioTransport_Integral `protobuf:"bytes,1,opt,name=integral" json:"integral,omitempty"`
426
+ Ancillary *AudioTransport_Ancillary `protobuf:"bytes,2,opt,name=ancillary" json:"ancillary,omitempty"`
427
+ unknownFields protoimpl.UnknownFields
428
+ sizeCache protoimpl.SizeCache
429
+ }
430
+
431
+ func (x *AudioTransport) Reset() {
432
+ *x = AudioTransport{}
433
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[3]
434
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
435
+ ms.StoreMessageInfo(mi)
436
+ }
437
+
438
+ func (x *AudioTransport) String() string {
439
+ return protoimpl.X.MessageStringOf(x)
440
+ }
441
+
442
+ func (*AudioTransport) ProtoMessage() {}
443
+
444
+ func (x *AudioTransport) ProtoReflect() protoreflect.Message {
445
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[3]
446
+ if x != nil {
447
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
448
+ if ms.LoadMessageInfo() == nil {
449
+ ms.StoreMessageInfo(mi)
450
+ }
451
+ return ms
452
+ }
453
+ return mi.MessageOf(x)
454
+ }
455
+
456
+ // Deprecated: Use AudioTransport.ProtoReflect.Descriptor instead.
457
+ func (*AudioTransport) Descriptor() ([]byte, []int) {
458
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{3}
459
+ }
460
+
461
+ func (x *AudioTransport) GetIntegral() *AudioTransport_Integral {
462
+ if x != nil {
463
+ return x.Integral
464
+ }
465
+ return nil
466
+ }
467
+
468
+ func (x *AudioTransport) GetAncillary() *AudioTransport_Ancillary {
469
+ if x != nil {
470
+ return x.Ancillary
471
+ }
472
+ return nil
473
+ }
474
+
475
+ type DocumentTransport struct {
476
+ state protoimpl.MessageState `protogen:"open.v1"`
477
+ Integral *DocumentTransport_Integral `protobuf:"bytes,1,opt,name=integral" json:"integral,omitempty"`
478
+ Ancillary *DocumentTransport_Ancillary `protobuf:"bytes,2,opt,name=ancillary" json:"ancillary,omitempty"`
479
+ unknownFields protoimpl.UnknownFields
480
+ sizeCache protoimpl.SizeCache
481
+ }
482
+
483
+ func (x *DocumentTransport) Reset() {
484
+ *x = DocumentTransport{}
485
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[4]
486
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
487
+ ms.StoreMessageInfo(mi)
488
+ }
489
+
490
+ func (x *DocumentTransport) String() string {
491
+ return protoimpl.X.MessageStringOf(x)
492
+ }
493
+
494
+ func (*DocumentTransport) ProtoMessage() {}
495
+
496
+ func (x *DocumentTransport) ProtoReflect() protoreflect.Message {
497
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[4]
498
+ if x != nil {
499
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
500
+ if ms.LoadMessageInfo() == nil {
501
+ ms.StoreMessageInfo(mi)
502
+ }
503
+ return ms
504
+ }
505
+ return mi.MessageOf(x)
506
+ }
507
+
508
+ // Deprecated: Use DocumentTransport.ProtoReflect.Descriptor instead.
509
+ func (*DocumentTransport) Descriptor() ([]byte, []int) {
510
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{4}
511
+ }
512
+
513
+ func (x *DocumentTransport) GetIntegral() *DocumentTransport_Integral {
514
+ if x != nil {
515
+ return x.Integral
516
+ }
517
+ return nil
518
+ }
519
+
520
+ func (x *DocumentTransport) GetAncillary() *DocumentTransport_Ancillary {
521
+ if x != nil {
522
+ return x.Ancillary
523
+ }
524
+ return nil
525
+ }
526
+
527
+ type StickerTransport struct {
528
+ state protoimpl.MessageState `protogen:"open.v1"`
529
+ Integral *StickerTransport_Integral `protobuf:"bytes,1,opt,name=integral" json:"integral,omitempty"`
530
+ Ancillary *StickerTransport_Ancillary `protobuf:"bytes,2,opt,name=ancillary" json:"ancillary,omitempty"`
531
+ unknownFields protoimpl.UnknownFields
532
+ sizeCache protoimpl.SizeCache
533
+ }
534
+
535
+ func (x *StickerTransport) Reset() {
536
+ *x = StickerTransport{}
537
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[5]
538
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
539
+ ms.StoreMessageInfo(mi)
540
+ }
541
+
542
+ func (x *StickerTransport) String() string {
543
+ return protoimpl.X.MessageStringOf(x)
544
+ }
545
+
546
+ func (*StickerTransport) ProtoMessage() {}
547
+
548
+ func (x *StickerTransport) ProtoReflect() protoreflect.Message {
549
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[5]
550
+ if x != nil {
551
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
552
+ if ms.LoadMessageInfo() == nil {
553
+ ms.StoreMessageInfo(mi)
554
+ }
555
+ return ms
556
+ }
557
+ return mi.MessageOf(x)
558
+ }
559
+
560
+ // Deprecated: Use StickerTransport.ProtoReflect.Descriptor instead.
561
+ func (*StickerTransport) Descriptor() ([]byte, []int) {
562
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{5}
563
+ }
564
+
565
+ func (x *StickerTransport) GetIntegral() *StickerTransport_Integral {
566
+ if x != nil {
567
+ return x.Integral
568
+ }
569
+ return nil
570
+ }
571
+
572
+ func (x *StickerTransport) GetAncillary() *StickerTransport_Ancillary {
573
+ if x != nil {
574
+ return x.Ancillary
575
+ }
576
+ return nil
577
+ }
578
+
579
+ type ContactTransport struct {
580
+ state protoimpl.MessageState `protogen:"open.v1"`
581
+ Integral *ContactTransport_Integral `protobuf:"bytes,1,opt,name=integral" json:"integral,omitempty"`
582
+ Ancillary *ContactTransport_Ancillary `protobuf:"bytes,2,opt,name=ancillary" json:"ancillary,omitempty"`
583
+ unknownFields protoimpl.UnknownFields
584
+ sizeCache protoimpl.SizeCache
585
+ }
586
+
587
+ func (x *ContactTransport) Reset() {
588
+ *x = ContactTransport{}
589
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[6]
590
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
591
+ ms.StoreMessageInfo(mi)
592
+ }
593
+
594
+ func (x *ContactTransport) String() string {
595
+ return protoimpl.X.MessageStringOf(x)
596
+ }
597
+
598
+ func (*ContactTransport) ProtoMessage() {}
599
+
600
+ func (x *ContactTransport) ProtoReflect() protoreflect.Message {
601
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[6]
602
+ if x != nil {
603
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
604
+ if ms.LoadMessageInfo() == nil {
605
+ ms.StoreMessageInfo(mi)
606
+ }
607
+ return ms
608
+ }
609
+ return mi.MessageOf(x)
610
+ }
611
+
612
+ // Deprecated: Use ContactTransport.ProtoReflect.Descriptor instead.
613
+ func (*ContactTransport) Descriptor() ([]byte, []int) {
614
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{6}
615
+ }
616
+
617
+ func (x *ContactTransport) GetIntegral() *ContactTransport_Integral {
618
+ if x != nil {
619
+ return x.Integral
620
+ }
621
+ return nil
622
+ }
623
+
624
+ func (x *ContactTransport) GetAncillary() *ContactTransport_Ancillary {
625
+ if x != nil {
626
+ return x.Ancillary
627
+ }
628
+ return nil
629
+ }
630
+
631
+ type WAMediaTransport_Ancillary struct {
632
+ state protoimpl.MessageState `protogen:"open.v1"`
633
+ FileLength *uint64 `protobuf:"varint,1,opt,name=fileLength" json:"fileLength,omitempty"`
634
+ Mimetype *string `protobuf:"bytes,2,opt,name=mimetype" json:"mimetype,omitempty"`
635
+ Thumbnail *WAMediaTransport_Ancillary_Thumbnail `protobuf:"bytes,3,opt,name=thumbnail" json:"thumbnail,omitempty"`
636
+ ObjectID *string `protobuf:"bytes,4,opt,name=objectID" json:"objectID,omitempty"`
637
+ unknownFields protoimpl.UnknownFields
638
+ sizeCache protoimpl.SizeCache
639
+ }
640
+
641
+ func (x *WAMediaTransport_Ancillary) Reset() {
642
+ *x = WAMediaTransport_Ancillary{}
643
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[7]
644
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
645
+ ms.StoreMessageInfo(mi)
646
+ }
647
+
648
+ func (x *WAMediaTransport_Ancillary) String() string {
649
+ return protoimpl.X.MessageStringOf(x)
650
+ }
651
+
652
+ func (*WAMediaTransport_Ancillary) ProtoMessage() {}
653
+
654
+ func (x *WAMediaTransport_Ancillary) ProtoReflect() protoreflect.Message {
655
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[7]
656
+ if x != nil {
657
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
658
+ if ms.LoadMessageInfo() == nil {
659
+ ms.StoreMessageInfo(mi)
660
+ }
661
+ return ms
662
+ }
663
+ return mi.MessageOf(x)
664
+ }
665
+
666
+ // Deprecated: Use WAMediaTransport_Ancillary.ProtoReflect.Descriptor instead.
667
+ func (*WAMediaTransport_Ancillary) Descriptor() ([]byte, []int) {
668
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{0, 0}
669
+ }
670
+
671
+ func (x *WAMediaTransport_Ancillary) GetFileLength() uint64 {
672
+ if x != nil && x.FileLength != nil {
673
+ return *x.FileLength
674
+ }
675
+ return 0
676
+ }
677
+
678
+ func (x *WAMediaTransport_Ancillary) GetMimetype() string {
679
+ if x != nil && x.Mimetype != nil {
680
+ return *x.Mimetype
681
+ }
682
+ return ""
683
+ }
684
+
685
+ func (x *WAMediaTransport_Ancillary) GetThumbnail() *WAMediaTransport_Ancillary_Thumbnail {
686
+ if x != nil {
687
+ return x.Thumbnail
688
+ }
689
+ return nil
690
+ }
691
+
692
+ func (x *WAMediaTransport_Ancillary) GetObjectID() string {
693
+ if x != nil && x.ObjectID != nil {
694
+ return *x.ObjectID
695
+ }
696
+ return ""
697
+ }
698
+
699
+ type WAMediaTransport_Integral struct {
700
+ state protoimpl.MessageState `protogen:"open.v1"`
701
+ FileSHA256 []byte `protobuf:"bytes,1,opt,name=fileSHA256" json:"fileSHA256,omitempty"`
702
+ MediaKey []byte `protobuf:"bytes,2,opt,name=mediaKey" json:"mediaKey,omitempty"`
703
+ FileEncSHA256 []byte `protobuf:"bytes,3,opt,name=fileEncSHA256" json:"fileEncSHA256,omitempty"`
704
+ DirectPath *string `protobuf:"bytes,4,opt,name=directPath" json:"directPath,omitempty"`
705
+ MediaKeyTimestamp *int64 `protobuf:"varint,5,opt,name=mediaKeyTimestamp" json:"mediaKeyTimestamp,omitempty"`
706
+ unknownFields protoimpl.UnknownFields
707
+ sizeCache protoimpl.SizeCache
708
+ }
709
+
710
+ func (x *WAMediaTransport_Integral) Reset() {
711
+ *x = WAMediaTransport_Integral{}
712
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[8]
713
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
714
+ ms.StoreMessageInfo(mi)
715
+ }
716
+
717
+ func (x *WAMediaTransport_Integral) String() string {
718
+ return protoimpl.X.MessageStringOf(x)
719
+ }
720
+
721
+ func (*WAMediaTransport_Integral) ProtoMessage() {}
722
+
723
+ func (x *WAMediaTransport_Integral) ProtoReflect() protoreflect.Message {
724
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[8]
725
+ if x != nil {
726
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
727
+ if ms.LoadMessageInfo() == nil {
728
+ ms.StoreMessageInfo(mi)
729
+ }
730
+ return ms
731
+ }
732
+ return mi.MessageOf(x)
733
+ }
734
+
735
+ // Deprecated: Use WAMediaTransport_Integral.ProtoReflect.Descriptor instead.
736
+ func (*WAMediaTransport_Integral) Descriptor() ([]byte, []int) {
737
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{0, 1}
738
+ }
739
+
740
+ func (x *WAMediaTransport_Integral) GetFileSHA256() []byte {
741
+ if x != nil {
742
+ return x.FileSHA256
743
+ }
744
+ return nil
745
+ }
746
+
747
+ func (x *WAMediaTransport_Integral) GetMediaKey() []byte {
748
+ if x != nil {
749
+ return x.MediaKey
750
+ }
751
+ return nil
752
+ }
753
+
754
+ func (x *WAMediaTransport_Integral) GetFileEncSHA256() []byte {
755
+ if x != nil {
756
+ return x.FileEncSHA256
757
+ }
758
+ return nil
759
+ }
760
+
761
+ func (x *WAMediaTransport_Integral) GetDirectPath() string {
762
+ if x != nil && x.DirectPath != nil {
763
+ return *x.DirectPath
764
+ }
765
+ return ""
766
+ }
767
+
768
+ func (x *WAMediaTransport_Integral) GetMediaKeyTimestamp() int64 {
769
+ if x != nil && x.MediaKeyTimestamp != nil {
770
+ return *x.MediaKeyTimestamp
771
+ }
772
+ return 0
773
+ }
774
+
775
+ type WAMediaTransport_Ancillary_Thumbnail struct {
776
+ state protoimpl.MessageState `protogen:"open.v1"`
777
+ JPEGThumbnail []byte `protobuf:"bytes,1,opt,name=JPEGThumbnail" json:"JPEGThumbnail,omitempty"`
778
+ DownloadableThumbnail *WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail `protobuf:"bytes,2,opt,name=downloadableThumbnail" json:"downloadableThumbnail,omitempty"`
779
+ ThumbnailWidth *uint32 `protobuf:"varint,3,opt,name=thumbnailWidth" json:"thumbnailWidth,omitempty"`
780
+ ThumbnailHeight *uint32 `protobuf:"varint,4,opt,name=thumbnailHeight" json:"thumbnailHeight,omitempty"`
781
+ unknownFields protoimpl.UnknownFields
782
+ sizeCache protoimpl.SizeCache
783
+ }
784
+
785
+ func (x *WAMediaTransport_Ancillary_Thumbnail) Reset() {
786
+ *x = WAMediaTransport_Ancillary_Thumbnail{}
787
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[9]
788
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
789
+ ms.StoreMessageInfo(mi)
790
+ }
791
+
792
+ func (x *WAMediaTransport_Ancillary_Thumbnail) String() string {
793
+ return protoimpl.X.MessageStringOf(x)
794
+ }
795
+
796
+ func (*WAMediaTransport_Ancillary_Thumbnail) ProtoMessage() {}
797
+
798
+ func (x *WAMediaTransport_Ancillary_Thumbnail) ProtoReflect() protoreflect.Message {
799
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[9]
800
+ if x != nil {
801
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
802
+ if ms.LoadMessageInfo() == nil {
803
+ ms.StoreMessageInfo(mi)
804
+ }
805
+ return ms
806
+ }
807
+ return mi.MessageOf(x)
808
+ }
809
+
810
+ // Deprecated: Use WAMediaTransport_Ancillary_Thumbnail.ProtoReflect.Descriptor instead.
811
+ func (*WAMediaTransport_Ancillary_Thumbnail) Descriptor() ([]byte, []int) {
812
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{0, 0, 0}
813
+ }
814
+
815
+ func (x *WAMediaTransport_Ancillary_Thumbnail) GetJPEGThumbnail() []byte {
816
+ if x != nil {
817
+ return x.JPEGThumbnail
818
+ }
819
+ return nil
820
+ }
821
+
822
+ func (x *WAMediaTransport_Ancillary_Thumbnail) GetDownloadableThumbnail() *WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail {
823
+ if x != nil {
824
+ return x.DownloadableThumbnail
825
+ }
826
+ return nil
827
+ }
828
+
829
+ func (x *WAMediaTransport_Ancillary_Thumbnail) GetThumbnailWidth() uint32 {
830
+ if x != nil && x.ThumbnailWidth != nil {
831
+ return *x.ThumbnailWidth
832
+ }
833
+ return 0
834
+ }
835
+
836
+ func (x *WAMediaTransport_Ancillary_Thumbnail) GetThumbnailHeight() uint32 {
837
+ if x != nil && x.ThumbnailHeight != nil {
838
+ return *x.ThumbnailHeight
839
+ }
840
+ return 0
841
+ }
842
+
843
+ type WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail struct {
844
+ state protoimpl.MessageState `protogen:"open.v1"`
845
+ FileSHA256 []byte `protobuf:"bytes,1,opt,name=fileSHA256" json:"fileSHA256,omitempty"`
846
+ FileEncSHA256 []byte `protobuf:"bytes,2,opt,name=fileEncSHA256" json:"fileEncSHA256,omitempty"`
847
+ DirectPath *string `protobuf:"bytes,3,opt,name=directPath" json:"directPath,omitempty"`
848
+ MediaKey []byte `protobuf:"bytes,4,opt,name=mediaKey" json:"mediaKey,omitempty"`
849
+ MediaKeyTimestamp *int64 `protobuf:"varint,5,opt,name=mediaKeyTimestamp" json:"mediaKeyTimestamp,omitempty"`
850
+ ObjectID *string `protobuf:"bytes,6,opt,name=objectID" json:"objectID,omitempty"`
851
+ ThumbnailScansSidecar []byte `protobuf:"bytes,7,opt,name=thumbnailScansSidecar" json:"thumbnailScansSidecar,omitempty"`
852
+ ThumbnailScanLengths []uint32 `protobuf:"varint,8,rep,name=thumbnailScanLengths" json:"thumbnailScanLengths,omitempty"`
853
+ unknownFields protoimpl.UnknownFields
854
+ sizeCache protoimpl.SizeCache
855
+ }
856
+
857
+ func (x *WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail) Reset() {
858
+ *x = WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail{}
859
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[10]
860
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
861
+ ms.StoreMessageInfo(mi)
862
+ }
863
+
864
+ func (x *WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail) String() string {
865
+ return protoimpl.X.MessageStringOf(x)
866
+ }
867
+
868
+ func (*WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail) ProtoMessage() {}
869
+
870
+ func (x *WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail) ProtoReflect() protoreflect.Message {
871
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[10]
872
+ if x != nil {
873
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
874
+ if ms.LoadMessageInfo() == nil {
875
+ ms.StoreMessageInfo(mi)
876
+ }
877
+ return ms
878
+ }
879
+ return mi.MessageOf(x)
880
+ }
881
+
882
+ // Deprecated: Use WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail.ProtoReflect.Descriptor instead.
883
+ func (*WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail) Descriptor() ([]byte, []int) {
884
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{0, 0, 0, 0}
885
+ }
886
+
887
+ func (x *WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail) GetFileSHA256() []byte {
888
+ if x != nil {
889
+ return x.FileSHA256
890
+ }
891
+ return nil
892
+ }
893
+
894
+ func (x *WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail) GetFileEncSHA256() []byte {
895
+ if x != nil {
896
+ return x.FileEncSHA256
897
+ }
898
+ return nil
899
+ }
900
+
901
+ func (x *WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail) GetDirectPath() string {
902
+ if x != nil && x.DirectPath != nil {
903
+ return *x.DirectPath
904
+ }
905
+ return ""
906
+ }
907
+
908
+ func (x *WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail) GetMediaKey() []byte {
909
+ if x != nil {
910
+ return x.MediaKey
911
+ }
912
+ return nil
913
+ }
914
+
915
+ func (x *WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail) GetMediaKeyTimestamp() int64 {
916
+ if x != nil && x.MediaKeyTimestamp != nil {
917
+ return *x.MediaKeyTimestamp
918
+ }
919
+ return 0
920
+ }
921
+
922
+ func (x *WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail) GetObjectID() string {
923
+ if x != nil && x.ObjectID != nil {
924
+ return *x.ObjectID
925
+ }
926
+ return ""
927
+ }
928
+
929
+ func (x *WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail) GetThumbnailScansSidecar() []byte {
930
+ if x != nil {
931
+ return x.ThumbnailScansSidecar
932
+ }
933
+ return nil
934
+ }
935
+
936
+ func (x *WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail) GetThumbnailScanLengths() []uint32 {
937
+ if x != nil {
938
+ return x.ThumbnailScanLengths
939
+ }
940
+ return nil
941
+ }
942
+
943
+ type ImageTransport_Ancillary struct {
944
+ state protoimpl.MessageState `protogen:"open.v1"`
945
+ Height *uint32 `protobuf:"varint,1,opt,name=height" json:"height,omitempty"`
946
+ Width *uint32 `protobuf:"varint,2,opt,name=width" json:"width,omitempty"`
947
+ ScansSidecar []byte `protobuf:"bytes,3,opt,name=scansSidecar" json:"scansSidecar,omitempty"`
948
+ ScanLengths []uint32 `protobuf:"varint,4,rep,name=scanLengths" json:"scanLengths,omitempty"`
949
+ MidQualityFileSHA256 []byte `protobuf:"bytes,5,opt,name=midQualityFileSHA256" json:"midQualityFileSHA256,omitempty"`
950
+ HdType *ImageTransport_Ancillary_HdType `protobuf:"varint,6,opt,name=hdType,enum=WAMediaTransport.ImageTransport_Ancillary_HdType" json:"hdType,omitempty"`
951
+ MemoriesConceptScores []float32 `protobuf:"fixed32,7,rep,packed,name=memoriesConceptScores" json:"memoriesConceptScores,omitempty"`
952
+ MemoriesConceptIDs []uint32 `protobuf:"varint,8,rep,packed,name=memoriesConceptIDs" json:"memoriesConceptIDs,omitempty"`
953
+ unknownFields protoimpl.UnknownFields
954
+ sizeCache protoimpl.SizeCache
955
+ }
956
+
957
+ func (x *ImageTransport_Ancillary) Reset() {
958
+ *x = ImageTransport_Ancillary{}
959
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[11]
960
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
961
+ ms.StoreMessageInfo(mi)
962
+ }
963
+
964
+ func (x *ImageTransport_Ancillary) String() string {
965
+ return protoimpl.X.MessageStringOf(x)
966
+ }
967
+
968
+ func (*ImageTransport_Ancillary) ProtoMessage() {}
969
+
970
+ func (x *ImageTransport_Ancillary) ProtoReflect() protoreflect.Message {
971
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[11]
972
+ if x != nil {
973
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
974
+ if ms.LoadMessageInfo() == nil {
975
+ ms.StoreMessageInfo(mi)
976
+ }
977
+ return ms
978
+ }
979
+ return mi.MessageOf(x)
980
+ }
981
+
982
+ // Deprecated: Use ImageTransport_Ancillary.ProtoReflect.Descriptor instead.
983
+ func (*ImageTransport_Ancillary) Descriptor() ([]byte, []int) {
984
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{1, 0}
985
+ }
986
+
987
+ func (x *ImageTransport_Ancillary) GetHeight() uint32 {
988
+ if x != nil && x.Height != nil {
989
+ return *x.Height
990
+ }
991
+ return 0
992
+ }
993
+
994
+ func (x *ImageTransport_Ancillary) GetWidth() uint32 {
995
+ if x != nil && x.Width != nil {
996
+ return *x.Width
997
+ }
998
+ return 0
999
+ }
1000
+
1001
+ func (x *ImageTransport_Ancillary) GetScansSidecar() []byte {
1002
+ if x != nil {
1003
+ return x.ScansSidecar
1004
+ }
1005
+ return nil
1006
+ }
1007
+
1008
+ func (x *ImageTransport_Ancillary) GetScanLengths() []uint32 {
1009
+ if x != nil {
1010
+ return x.ScanLengths
1011
+ }
1012
+ return nil
1013
+ }
1014
+
1015
+ func (x *ImageTransport_Ancillary) GetMidQualityFileSHA256() []byte {
1016
+ if x != nil {
1017
+ return x.MidQualityFileSHA256
1018
+ }
1019
+ return nil
1020
+ }
1021
+
1022
+ func (x *ImageTransport_Ancillary) GetHdType() ImageTransport_Ancillary_HdType {
1023
+ if x != nil && x.HdType != nil {
1024
+ return *x.HdType
1025
+ }
1026
+ return ImageTransport_Ancillary_NONE
1027
+ }
1028
+
1029
+ func (x *ImageTransport_Ancillary) GetMemoriesConceptScores() []float32 {
1030
+ if x != nil {
1031
+ return x.MemoriesConceptScores
1032
+ }
1033
+ return nil
1034
+ }
1035
+
1036
+ func (x *ImageTransport_Ancillary) GetMemoriesConceptIDs() []uint32 {
1037
+ if x != nil {
1038
+ return x.MemoriesConceptIDs
1039
+ }
1040
+ return nil
1041
+ }
1042
+
1043
+ type ImageTransport_Integral struct {
1044
+ state protoimpl.MessageState `protogen:"open.v1"`
1045
+ Transport *WAMediaTransport `protobuf:"bytes,1,opt,name=transport" json:"transport,omitempty"`
1046
+ unknownFields protoimpl.UnknownFields
1047
+ sizeCache protoimpl.SizeCache
1048
+ }
1049
+
1050
+ func (x *ImageTransport_Integral) Reset() {
1051
+ *x = ImageTransport_Integral{}
1052
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[12]
1053
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1054
+ ms.StoreMessageInfo(mi)
1055
+ }
1056
+
1057
+ func (x *ImageTransport_Integral) String() string {
1058
+ return protoimpl.X.MessageStringOf(x)
1059
+ }
1060
+
1061
+ func (*ImageTransport_Integral) ProtoMessage() {}
1062
+
1063
+ func (x *ImageTransport_Integral) ProtoReflect() protoreflect.Message {
1064
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[12]
1065
+ if x != nil {
1066
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1067
+ if ms.LoadMessageInfo() == nil {
1068
+ ms.StoreMessageInfo(mi)
1069
+ }
1070
+ return ms
1071
+ }
1072
+ return mi.MessageOf(x)
1073
+ }
1074
+
1075
+ // Deprecated: Use ImageTransport_Integral.ProtoReflect.Descriptor instead.
1076
+ func (*ImageTransport_Integral) Descriptor() ([]byte, []int) {
1077
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{1, 1}
1078
+ }
1079
+
1080
+ func (x *ImageTransport_Integral) GetTransport() *WAMediaTransport {
1081
+ if x != nil {
1082
+ return x.Transport
1083
+ }
1084
+ return nil
1085
+ }
1086
+
1087
+ type VideoTransport_Ancillary struct {
1088
+ state protoimpl.MessageState `protogen:"open.v1"`
1089
+ Seconds *uint32 `protobuf:"varint,1,opt,name=seconds" json:"seconds,omitempty"`
1090
+ Caption *waCommon.MessageText `protobuf:"bytes,2,opt,name=caption" json:"caption,omitempty"`
1091
+ GifPlayback *bool `protobuf:"varint,3,opt,name=gifPlayback" json:"gifPlayback,omitempty"`
1092
+ Height *uint32 `protobuf:"varint,4,opt,name=height" json:"height,omitempty"`
1093
+ Width *uint32 `protobuf:"varint,5,opt,name=width" json:"width,omitempty"`
1094
+ Sidecar []byte `protobuf:"bytes,6,opt,name=sidecar" json:"sidecar,omitempty"`
1095
+ GifAttribution *VideoTransport_Ancillary_Attribution `protobuf:"varint,7,opt,name=gifAttribution,enum=WAMediaTransport.VideoTransport_Ancillary_Attribution" json:"gifAttribution,omitempty"`
1096
+ AccessibilityLabel *string `protobuf:"bytes,8,opt,name=accessibilityLabel" json:"accessibilityLabel,omitempty"`
1097
+ unknownFields protoimpl.UnknownFields
1098
+ sizeCache protoimpl.SizeCache
1099
+ }
1100
+
1101
+ func (x *VideoTransport_Ancillary) Reset() {
1102
+ *x = VideoTransport_Ancillary{}
1103
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[13]
1104
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1105
+ ms.StoreMessageInfo(mi)
1106
+ }
1107
+
1108
+ func (x *VideoTransport_Ancillary) String() string {
1109
+ return protoimpl.X.MessageStringOf(x)
1110
+ }
1111
+
1112
+ func (*VideoTransport_Ancillary) ProtoMessage() {}
1113
+
1114
+ func (x *VideoTransport_Ancillary) ProtoReflect() protoreflect.Message {
1115
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[13]
1116
+ if x != nil {
1117
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1118
+ if ms.LoadMessageInfo() == nil {
1119
+ ms.StoreMessageInfo(mi)
1120
+ }
1121
+ return ms
1122
+ }
1123
+ return mi.MessageOf(x)
1124
+ }
1125
+
1126
+ // Deprecated: Use VideoTransport_Ancillary.ProtoReflect.Descriptor instead.
1127
+ func (*VideoTransport_Ancillary) Descriptor() ([]byte, []int) {
1128
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{2, 0}
1129
+ }
1130
+
1131
+ func (x *VideoTransport_Ancillary) GetSeconds() uint32 {
1132
+ if x != nil && x.Seconds != nil {
1133
+ return *x.Seconds
1134
+ }
1135
+ return 0
1136
+ }
1137
+
1138
+ func (x *VideoTransport_Ancillary) GetCaption() *waCommon.MessageText {
1139
+ if x != nil {
1140
+ return x.Caption
1141
+ }
1142
+ return nil
1143
+ }
1144
+
1145
+ func (x *VideoTransport_Ancillary) GetGifPlayback() bool {
1146
+ if x != nil && x.GifPlayback != nil {
1147
+ return *x.GifPlayback
1148
+ }
1149
+ return false
1150
+ }
1151
+
1152
+ func (x *VideoTransport_Ancillary) GetHeight() uint32 {
1153
+ if x != nil && x.Height != nil {
1154
+ return *x.Height
1155
+ }
1156
+ return 0
1157
+ }
1158
+
1159
+ func (x *VideoTransport_Ancillary) GetWidth() uint32 {
1160
+ if x != nil && x.Width != nil {
1161
+ return *x.Width
1162
+ }
1163
+ return 0
1164
+ }
1165
+
1166
+ func (x *VideoTransport_Ancillary) GetSidecar() []byte {
1167
+ if x != nil {
1168
+ return x.Sidecar
1169
+ }
1170
+ return nil
1171
+ }
1172
+
1173
+ func (x *VideoTransport_Ancillary) GetGifAttribution() VideoTransport_Ancillary_Attribution {
1174
+ if x != nil && x.GifAttribution != nil {
1175
+ return *x.GifAttribution
1176
+ }
1177
+ return VideoTransport_Ancillary_NONE
1178
+ }
1179
+
1180
+ func (x *VideoTransport_Ancillary) GetAccessibilityLabel() string {
1181
+ if x != nil && x.AccessibilityLabel != nil {
1182
+ return *x.AccessibilityLabel
1183
+ }
1184
+ return ""
1185
+ }
1186
+
1187
+ type VideoTransport_Integral struct {
1188
+ state protoimpl.MessageState `protogen:"open.v1"`
1189
+ Transport *WAMediaTransport `protobuf:"bytes,1,opt,name=transport" json:"transport,omitempty"`
1190
+ unknownFields protoimpl.UnknownFields
1191
+ sizeCache protoimpl.SizeCache
1192
+ }
1193
+
1194
+ func (x *VideoTransport_Integral) Reset() {
1195
+ *x = VideoTransport_Integral{}
1196
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[14]
1197
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1198
+ ms.StoreMessageInfo(mi)
1199
+ }
1200
+
1201
+ func (x *VideoTransport_Integral) String() string {
1202
+ return protoimpl.X.MessageStringOf(x)
1203
+ }
1204
+
1205
+ func (*VideoTransport_Integral) ProtoMessage() {}
1206
+
1207
+ func (x *VideoTransport_Integral) ProtoReflect() protoreflect.Message {
1208
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[14]
1209
+ if x != nil {
1210
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1211
+ if ms.LoadMessageInfo() == nil {
1212
+ ms.StoreMessageInfo(mi)
1213
+ }
1214
+ return ms
1215
+ }
1216
+ return mi.MessageOf(x)
1217
+ }
1218
+
1219
+ // Deprecated: Use VideoTransport_Integral.ProtoReflect.Descriptor instead.
1220
+ func (*VideoTransport_Integral) Descriptor() ([]byte, []int) {
1221
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{2, 1}
1222
+ }
1223
+
1224
+ func (x *VideoTransport_Integral) GetTransport() *WAMediaTransport {
1225
+ if x != nil {
1226
+ return x.Transport
1227
+ }
1228
+ return nil
1229
+ }
1230
+
1231
+ type AudioTransport_Ancillary struct {
1232
+ state protoimpl.MessageState `protogen:"open.v1"`
1233
+ Seconds *uint32 `protobuf:"varint,1,opt,name=seconds" json:"seconds,omitempty"`
1234
+ AvatarAudio *AudioTransport_Ancillary_AvatarAudio `protobuf:"bytes,2,opt,name=avatarAudio" json:"avatarAudio,omitempty"`
1235
+ unknownFields protoimpl.UnknownFields
1236
+ sizeCache protoimpl.SizeCache
1237
+ }
1238
+
1239
+ func (x *AudioTransport_Ancillary) Reset() {
1240
+ *x = AudioTransport_Ancillary{}
1241
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[15]
1242
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1243
+ ms.StoreMessageInfo(mi)
1244
+ }
1245
+
1246
+ func (x *AudioTransport_Ancillary) String() string {
1247
+ return protoimpl.X.MessageStringOf(x)
1248
+ }
1249
+
1250
+ func (*AudioTransport_Ancillary) ProtoMessage() {}
1251
+
1252
+ func (x *AudioTransport_Ancillary) ProtoReflect() protoreflect.Message {
1253
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[15]
1254
+ if x != nil {
1255
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1256
+ if ms.LoadMessageInfo() == nil {
1257
+ ms.StoreMessageInfo(mi)
1258
+ }
1259
+ return ms
1260
+ }
1261
+ return mi.MessageOf(x)
1262
+ }
1263
+
1264
+ // Deprecated: Use AudioTransport_Ancillary.ProtoReflect.Descriptor instead.
1265
+ func (*AudioTransport_Ancillary) Descriptor() ([]byte, []int) {
1266
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{3, 0}
1267
+ }
1268
+
1269
+ func (x *AudioTransport_Ancillary) GetSeconds() uint32 {
1270
+ if x != nil && x.Seconds != nil {
1271
+ return *x.Seconds
1272
+ }
1273
+ return 0
1274
+ }
1275
+
1276
+ func (x *AudioTransport_Ancillary) GetAvatarAudio() *AudioTransport_Ancillary_AvatarAudio {
1277
+ if x != nil {
1278
+ return x.AvatarAudio
1279
+ }
1280
+ return nil
1281
+ }
1282
+
1283
+ type AudioTransport_Integral struct {
1284
+ state protoimpl.MessageState `protogen:"open.v1"`
1285
+ Transport *WAMediaTransport `protobuf:"bytes,1,opt,name=transport" json:"transport,omitempty"`
1286
+ AudioFormat *AudioTransport_Integral_AudioFormat `protobuf:"varint,2,opt,name=audioFormat,enum=WAMediaTransport.AudioTransport_Integral_AudioFormat" json:"audioFormat,omitempty"`
1287
+ unknownFields protoimpl.UnknownFields
1288
+ sizeCache protoimpl.SizeCache
1289
+ }
1290
+
1291
+ func (x *AudioTransport_Integral) Reset() {
1292
+ *x = AudioTransport_Integral{}
1293
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[16]
1294
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1295
+ ms.StoreMessageInfo(mi)
1296
+ }
1297
+
1298
+ func (x *AudioTransport_Integral) String() string {
1299
+ return protoimpl.X.MessageStringOf(x)
1300
+ }
1301
+
1302
+ func (*AudioTransport_Integral) ProtoMessage() {}
1303
+
1304
+ func (x *AudioTransport_Integral) ProtoReflect() protoreflect.Message {
1305
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[16]
1306
+ if x != nil {
1307
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1308
+ if ms.LoadMessageInfo() == nil {
1309
+ ms.StoreMessageInfo(mi)
1310
+ }
1311
+ return ms
1312
+ }
1313
+ return mi.MessageOf(x)
1314
+ }
1315
+
1316
+ // Deprecated: Use AudioTransport_Integral.ProtoReflect.Descriptor instead.
1317
+ func (*AudioTransport_Integral) Descriptor() ([]byte, []int) {
1318
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{3, 1}
1319
+ }
1320
+
1321
+ func (x *AudioTransport_Integral) GetTransport() *WAMediaTransport {
1322
+ if x != nil {
1323
+ return x.Transport
1324
+ }
1325
+ return nil
1326
+ }
1327
+
1328
+ func (x *AudioTransport_Integral) GetAudioFormat() AudioTransport_Integral_AudioFormat {
1329
+ if x != nil && x.AudioFormat != nil {
1330
+ return *x.AudioFormat
1331
+ }
1332
+ return AudioTransport_Integral_UNKNOWN
1333
+ }
1334
+
1335
+ type AudioTransport_Ancillary_AvatarAudio struct {
1336
+ state protoimpl.MessageState `protogen:"open.v1"`
1337
+ PoseID *uint32 `protobuf:"varint,1,opt,name=poseID" json:"poseID,omitempty"`
1338
+ AvatarAnimations []*AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations `protobuf:"bytes,2,rep,name=avatarAnimations" json:"avatarAnimations,omitempty"`
1339
+ unknownFields protoimpl.UnknownFields
1340
+ sizeCache protoimpl.SizeCache
1341
+ }
1342
+
1343
+ func (x *AudioTransport_Ancillary_AvatarAudio) Reset() {
1344
+ *x = AudioTransport_Ancillary_AvatarAudio{}
1345
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[17]
1346
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1347
+ ms.StoreMessageInfo(mi)
1348
+ }
1349
+
1350
+ func (x *AudioTransport_Ancillary_AvatarAudio) String() string {
1351
+ return protoimpl.X.MessageStringOf(x)
1352
+ }
1353
+
1354
+ func (*AudioTransport_Ancillary_AvatarAudio) ProtoMessage() {}
1355
+
1356
+ func (x *AudioTransport_Ancillary_AvatarAudio) ProtoReflect() protoreflect.Message {
1357
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[17]
1358
+ if x != nil {
1359
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1360
+ if ms.LoadMessageInfo() == nil {
1361
+ ms.StoreMessageInfo(mi)
1362
+ }
1363
+ return ms
1364
+ }
1365
+ return mi.MessageOf(x)
1366
+ }
1367
+
1368
+ // Deprecated: Use AudioTransport_Ancillary_AvatarAudio.ProtoReflect.Descriptor instead.
1369
+ func (*AudioTransport_Ancillary_AvatarAudio) Descriptor() ([]byte, []int) {
1370
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{3, 0, 0}
1371
+ }
1372
+
1373
+ func (x *AudioTransport_Ancillary_AvatarAudio) GetPoseID() uint32 {
1374
+ if x != nil && x.PoseID != nil {
1375
+ return *x.PoseID
1376
+ }
1377
+ return 0
1378
+ }
1379
+
1380
+ func (x *AudioTransport_Ancillary_AvatarAudio) GetAvatarAnimations() []*AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations {
1381
+ if x != nil {
1382
+ return x.AvatarAnimations
1383
+ }
1384
+ return nil
1385
+ }
1386
+
1387
+ type AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations struct {
1388
+ state protoimpl.MessageState `protogen:"open.v1"`
1389
+ FileSHA256 []byte `protobuf:"bytes,1,opt,name=fileSHA256" json:"fileSHA256,omitempty"`
1390
+ FileEncSHA256 []byte `protobuf:"bytes,2,opt,name=fileEncSHA256" json:"fileEncSHA256,omitempty"`
1391
+ DirectPath *string `protobuf:"bytes,3,opt,name=directPath" json:"directPath,omitempty"`
1392
+ MediaKey []byte `protobuf:"bytes,4,opt,name=mediaKey" json:"mediaKey,omitempty"`
1393
+ MediaKeyTimestamp *int64 `protobuf:"varint,5,opt,name=mediaKeyTimestamp" json:"mediaKeyTimestamp,omitempty"`
1394
+ ObjectID *string `protobuf:"bytes,6,opt,name=objectID" json:"objectID,omitempty"`
1395
+ AnimationsType *AudioTransport_Ancillary_AvatarAudio_AnimationsType `protobuf:"varint,7,opt,name=animationsType,enum=WAMediaTransport.AudioTransport_Ancillary_AvatarAudio_AnimationsType" json:"animationsType,omitempty"`
1396
+ unknownFields protoimpl.UnknownFields
1397
+ sizeCache protoimpl.SizeCache
1398
+ }
1399
+
1400
+ func (x *AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations) Reset() {
1401
+ *x = AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations{}
1402
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[18]
1403
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1404
+ ms.StoreMessageInfo(mi)
1405
+ }
1406
+
1407
+ func (x *AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations) String() string {
1408
+ return protoimpl.X.MessageStringOf(x)
1409
+ }
1410
+
1411
+ func (*AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations) ProtoMessage() {}
1412
+
1413
+ func (x *AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations) ProtoReflect() protoreflect.Message {
1414
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[18]
1415
+ if x != nil {
1416
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1417
+ if ms.LoadMessageInfo() == nil {
1418
+ ms.StoreMessageInfo(mi)
1419
+ }
1420
+ return ms
1421
+ }
1422
+ return mi.MessageOf(x)
1423
+ }
1424
+
1425
+ // Deprecated: Use AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations.ProtoReflect.Descriptor instead.
1426
+ func (*AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations) Descriptor() ([]byte, []int) {
1427
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{3, 0, 0, 0}
1428
+ }
1429
+
1430
+ func (x *AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations) GetFileSHA256() []byte {
1431
+ if x != nil {
1432
+ return x.FileSHA256
1433
+ }
1434
+ return nil
1435
+ }
1436
+
1437
+ func (x *AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations) GetFileEncSHA256() []byte {
1438
+ if x != nil {
1439
+ return x.FileEncSHA256
1440
+ }
1441
+ return nil
1442
+ }
1443
+
1444
+ func (x *AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations) GetDirectPath() string {
1445
+ if x != nil && x.DirectPath != nil {
1446
+ return *x.DirectPath
1447
+ }
1448
+ return ""
1449
+ }
1450
+
1451
+ func (x *AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations) GetMediaKey() []byte {
1452
+ if x != nil {
1453
+ return x.MediaKey
1454
+ }
1455
+ return nil
1456
+ }
1457
+
1458
+ func (x *AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations) GetMediaKeyTimestamp() int64 {
1459
+ if x != nil && x.MediaKeyTimestamp != nil {
1460
+ return *x.MediaKeyTimestamp
1461
+ }
1462
+ return 0
1463
+ }
1464
+
1465
+ func (x *AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations) GetObjectID() string {
1466
+ if x != nil && x.ObjectID != nil {
1467
+ return *x.ObjectID
1468
+ }
1469
+ return ""
1470
+ }
1471
+
1472
+ func (x *AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations) GetAnimationsType() AudioTransport_Ancillary_AvatarAudio_AnimationsType {
1473
+ if x != nil && x.AnimationsType != nil {
1474
+ return *x.AnimationsType
1475
+ }
1476
+ return AudioTransport_Ancillary_AvatarAudio_TALKING_A
1477
+ }
1478
+
1479
+ type DocumentTransport_Ancillary struct {
1480
+ state protoimpl.MessageState `protogen:"open.v1"`
1481
+ PageCount *uint32 `protobuf:"varint,1,opt,name=pageCount" json:"pageCount,omitempty"`
1482
+ unknownFields protoimpl.UnknownFields
1483
+ sizeCache protoimpl.SizeCache
1484
+ }
1485
+
1486
+ func (x *DocumentTransport_Ancillary) Reset() {
1487
+ *x = DocumentTransport_Ancillary{}
1488
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[19]
1489
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1490
+ ms.StoreMessageInfo(mi)
1491
+ }
1492
+
1493
+ func (x *DocumentTransport_Ancillary) String() string {
1494
+ return protoimpl.X.MessageStringOf(x)
1495
+ }
1496
+
1497
+ func (*DocumentTransport_Ancillary) ProtoMessage() {}
1498
+
1499
+ func (x *DocumentTransport_Ancillary) ProtoReflect() protoreflect.Message {
1500
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[19]
1501
+ if x != nil {
1502
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1503
+ if ms.LoadMessageInfo() == nil {
1504
+ ms.StoreMessageInfo(mi)
1505
+ }
1506
+ return ms
1507
+ }
1508
+ return mi.MessageOf(x)
1509
+ }
1510
+
1511
+ // Deprecated: Use DocumentTransport_Ancillary.ProtoReflect.Descriptor instead.
1512
+ func (*DocumentTransport_Ancillary) Descriptor() ([]byte, []int) {
1513
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{4, 0}
1514
+ }
1515
+
1516
+ func (x *DocumentTransport_Ancillary) GetPageCount() uint32 {
1517
+ if x != nil && x.PageCount != nil {
1518
+ return *x.PageCount
1519
+ }
1520
+ return 0
1521
+ }
1522
+
1523
+ type DocumentTransport_Integral struct {
1524
+ state protoimpl.MessageState `protogen:"open.v1"`
1525
+ Transport *WAMediaTransport `protobuf:"bytes,1,opt,name=transport" json:"transport,omitempty"`
1526
+ unknownFields protoimpl.UnknownFields
1527
+ sizeCache protoimpl.SizeCache
1528
+ }
1529
+
1530
+ func (x *DocumentTransport_Integral) Reset() {
1531
+ *x = DocumentTransport_Integral{}
1532
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[20]
1533
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1534
+ ms.StoreMessageInfo(mi)
1535
+ }
1536
+
1537
+ func (x *DocumentTransport_Integral) String() string {
1538
+ return protoimpl.X.MessageStringOf(x)
1539
+ }
1540
+
1541
+ func (*DocumentTransport_Integral) ProtoMessage() {}
1542
+
1543
+ func (x *DocumentTransport_Integral) ProtoReflect() protoreflect.Message {
1544
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[20]
1545
+ if x != nil {
1546
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1547
+ if ms.LoadMessageInfo() == nil {
1548
+ ms.StoreMessageInfo(mi)
1549
+ }
1550
+ return ms
1551
+ }
1552
+ return mi.MessageOf(x)
1553
+ }
1554
+
1555
+ // Deprecated: Use DocumentTransport_Integral.ProtoReflect.Descriptor instead.
1556
+ func (*DocumentTransport_Integral) Descriptor() ([]byte, []int) {
1557
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{4, 1}
1558
+ }
1559
+
1560
+ func (x *DocumentTransport_Integral) GetTransport() *WAMediaTransport {
1561
+ if x != nil {
1562
+ return x.Transport
1563
+ }
1564
+ return nil
1565
+ }
1566
+
1567
+ type StickerTransport_Ancillary struct {
1568
+ state protoimpl.MessageState `protogen:"open.v1"`
1569
+ PageCount *uint32 `protobuf:"varint,1,opt,name=pageCount" json:"pageCount,omitempty"`
1570
+ Height *uint32 `protobuf:"varint,2,opt,name=height" json:"height,omitempty"`
1571
+ Width *uint32 `protobuf:"varint,3,opt,name=width" json:"width,omitempty"`
1572
+ FirstFrameLength *uint32 `protobuf:"varint,4,opt,name=firstFrameLength" json:"firstFrameLength,omitempty"`
1573
+ FirstFrameSidecar []byte `protobuf:"bytes,5,opt,name=firstFrameSidecar" json:"firstFrameSidecar,omitempty"`
1574
+ MustacheText *string `protobuf:"bytes,6,opt,name=mustacheText" json:"mustacheText,omitempty"`
1575
+ IsThirdParty *bool `protobuf:"varint,7,opt,name=isThirdParty" json:"isThirdParty,omitempty"`
1576
+ ReceiverFetchID *string `protobuf:"bytes,8,opt,name=receiverFetchID" json:"receiverFetchID,omitempty"`
1577
+ AccessibilityLabel *string `protobuf:"bytes,9,opt,name=accessibilityLabel" json:"accessibilityLabel,omitempty"`
1578
+ unknownFields protoimpl.UnknownFields
1579
+ sizeCache protoimpl.SizeCache
1580
+ }
1581
+
1582
+ func (x *StickerTransport_Ancillary) Reset() {
1583
+ *x = StickerTransport_Ancillary{}
1584
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[21]
1585
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1586
+ ms.StoreMessageInfo(mi)
1587
+ }
1588
+
1589
+ func (x *StickerTransport_Ancillary) String() string {
1590
+ return protoimpl.X.MessageStringOf(x)
1591
+ }
1592
+
1593
+ func (*StickerTransport_Ancillary) ProtoMessage() {}
1594
+
1595
+ func (x *StickerTransport_Ancillary) ProtoReflect() protoreflect.Message {
1596
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[21]
1597
+ if x != nil {
1598
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1599
+ if ms.LoadMessageInfo() == nil {
1600
+ ms.StoreMessageInfo(mi)
1601
+ }
1602
+ return ms
1603
+ }
1604
+ return mi.MessageOf(x)
1605
+ }
1606
+
1607
+ // Deprecated: Use StickerTransport_Ancillary.ProtoReflect.Descriptor instead.
1608
+ func (*StickerTransport_Ancillary) Descriptor() ([]byte, []int) {
1609
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{5, 0}
1610
+ }
1611
+
1612
+ func (x *StickerTransport_Ancillary) GetPageCount() uint32 {
1613
+ if x != nil && x.PageCount != nil {
1614
+ return *x.PageCount
1615
+ }
1616
+ return 0
1617
+ }
1618
+
1619
+ func (x *StickerTransport_Ancillary) GetHeight() uint32 {
1620
+ if x != nil && x.Height != nil {
1621
+ return *x.Height
1622
+ }
1623
+ return 0
1624
+ }
1625
+
1626
+ func (x *StickerTransport_Ancillary) GetWidth() uint32 {
1627
+ if x != nil && x.Width != nil {
1628
+ return *x.Width
1629
+ }
1630
+ return 0
1631
+ }
1632
+
1633
+ func (x *StickerTransport_Ancillary) GetFirstFrameLength() uint32 {
1634
+ if x != nil && x.FirstFrameLength != nil {
1635
+ return *x.FirstFrameLength
1636
+ }
1637
+ return 0
1638
+ }
1639
+
1640
+ func (x *StickerTransport_Ancillary) GetFirstFrameSidecar() []byte {
1641
+ if x != nil {
1642
+ return x.FirstFrameSidecar
1643
+ }
1644
+ return nil
1645
+ }
1646
+
1647
+ func (x *StickerTransport_Ancillary) GetMustacheText() string {
1648
+ if x != nil && x.MustacheText != nil {
1649
+ return *x.MustacheText
1650
+ }
1651
+ return ""
1652
+ }
1653
+
1654
+ func (x *StickerTransport_Ancillary) GetIsThirdParty() bool {
1655
+ if x != nil && x.IsThirdParty != nil {
1656
+ return *x.IsThirdParty
1657
+ }
1658
+ return false
1659
+ }
1660
+
1661
+ func (x *StickerTransport_Ancillary) GetReceiverFetchID() string {
1662
+ if x != nil && x.ReceiverFetchID != nil {
1663
+ return *x.ReceiverFetchID
1664
+ }
1665
+ return ""
1666
+ }
1667
+
1668
+ func (x *StickerTransport_Ancillary) GetAccessibilityLabel() string {
1669
+ if x != nil && x.AccessibilityLabel != nil {
1670
+ return *x.AccessibilityLabel
1671
+ }
1672
+ return ""
1673
+ }
1674
+
1675
+ type StickerTransport_Integral struct {
1676
+ state protoimpl.MessageState `protogen:"open.v1"`
1677
+ Transport *WAMediaTransport `protobuf:"bytes,1,opt,name=transport" json:"transport,omitempty"`
1678
+ IsAnimated *bool `protobuf:"varint,2,opt,name=isAnimated" json:"isAnimated,omitempty"`
1679
+ ReceiverFetchID *string `protobuf:"bytes,3,opt,name=receiverFetchID" json:"receiverFetchID,omitempty"`
1680
+ unknownFields protoimpl.UnknownFields
1681
+ sizeCache protoimpl.SizeCache
1682
+ }
1683
+
1684
+ func (x *StickerTransport_Integral) Reset() {
1685
+ *x = StickerTransport_Integral{}
1686
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[22]
1687
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1688
+ ms.StoreMessageInfo(mi)
1689
+ }
1690
+
1691
+ func (x *StickerTransport_Integral) String() string {
1692
+ return protoimpl.X.MessageStringOf(x)
1693
+ }
1694
+
1695
+ func (*StickerTransport_Integral) ProtoMessage() {}
1696
+
1697
+ func (x *StickerTransport_Integral) ProtoReflect() protoreflect.Message {
1698
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[22]
1699
+ if x != nil {
1700
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1701
+ if ms.LoadMessageInfo() == nil {
1702
+ ms.StoreMessageInfo(mi)
1703
+ }
1704
+ return ms
1705
+ }
1706
+ return mi.MessageOf(x)
1707
+ }
1708
+
1709
+ // Deprecated: Use StickerTransport_Integral.ProtoReflect.Descriptor instead.
1710
+ func (*StickerTransport_Integral) Descriptor() ([]byte, []int) {
1711
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{5, 1}
1712
+ }
1713
+
1714
+ func (x *StickerTransport_Integral) GetTransport() *WAMediaTransport {
1715
+ if x != nil {
1716
+ return x.Transport
1717
+ }
1718
+ return nil
1719
+ }
1720
+
1721
+ func (x *StickerTransport_Integral) GetIsAnimated() bool {
1722
+ if x != nil && x.IsAnimated != nil {
1723
+ return *x.IsAnimated
1724
+ }
1725
+ return false
1726
+ }
1727
+
1728
+ func (x *StickerTransport_Integral) GetReceiverFetchID() string {
1729
+ if x != nil && x.ReceiverFetchID != nil {
1730
+ return *x.ReceiverFetchID
1731
+ }
1732
+ return ""
1733
+ }
1734
+
1735
+ type ContactTransport_Ancillary struct {
1736
+ state protoimpl.MessageState `protogen:"open.v1"`
1737
+ DisplayName *string `protobuf:"bytes,1,opt,name=displayName" json:"displayName,omitempty"`
1738
+ unknownFields protoimpl.UnknownFields
1739
+ sizeCache protoimpl.SizeCache
1740
+ }
1741
+
1742
+ func (x *ContactTransport_Ancillary) Reset() {
1743
+ *x = ContactTransport_Ancillary{}
1744
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[23]
1745
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1746
+ ms.StoreMessageInfo(mi)
1747
+ }
1748
+
1749
+ func (x *ContactTransport_Ancillary) String() string {
1750
+ return protoimpl.X.MessageStringOf(x)
1751
+ }
1752
+
1753
+ func (*ContactTransport_Ancillary) ProtoMessage() {}
1754
+
1755
+ func (x *ContactTransport_Ancillary) ProtoReflect() protoreflect.Message {
1756
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[23]
1757
+ if x != nil {
1758
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1759
+ if ms.LoadMessageInfo() == nil {
1760
+ ms.StoreMessageInfo(mi)
1761
+ }
1762
+ return ms
1763
+ }
1764
+ return mi.MessageOf(x)
1765
+ }
1766
+
1767
+ // Deprecated: Use ContactTransport_Ancillary.ProtoReflect.Descriptor instead.
1768
+ func (*ContactTransport_Ancillary) Descriptor() ([]byte, []int) {
1769
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{6, 0}
1770
+ }
1771
+
1772
+ func (x *ContactTransport_Ancillary) GetDisplayName() string {
1773
+ if x != nil && x.DisplayName != nil {
1774
+ return *x.DisplayName
1775
+ }
1776
+ return ""
1777
+ }
1778
+
1779
+ type ContactTransport_Integral struct {
1780
+ state protoimpl.MessageState `protogen:"open.v1"`
1781
+ // Types that are valid to be assigned to Contact:
1782
+ //
1783
+ // *ContactTransport_Integral_Vcard
1784
+ // *ContactTransport_Integral_DownloadableVcard
1785
+ Contact isContactTransport_Integral_Contact `protobuf_oneof:"contact"`
1786
+ unknownFields protoimpl.UnknownFields
1787
+ sizeCache protoimpl.SizeCache
1788
+ }
1789
+
1790
+ func (x *ContactTransport_Integral) Reset() {
1791
+ *x = ContactTransport_Integral{}
1792
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[24]
1793
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1794
+ ms.StoreMessageInfo(mi)
1795
+ }
1796
+
1797
+ func (x *ContactTransport_Integral) String() string {
1798
+ return protoimpl.X.MessageStringOf(x)
1799
+ }
1800
+
1801
+ func (*ContactTransport_Integral) ProtoMessage() {}
1802
+
1803
+ func (x *ContactTransport_Integral) ProtoReflect() protoreflect.Message {
1804
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[24]
1805
+ if x != nil {
1806
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1807
+ if ms.LoadMessageInfo() == nil {
1808
+ ms.StoreMessageInfo(mi)
1809
+ }
1810
+ return ms
1811
+ }
1812
+ return mi.MessageOf(x)
1813
+ }
1814
+
1815
+ // Deprecated: Use ContactTransport_Integral.ProtoReflect.Descriptor instead.
1816
+ func (*ContactTransport_Integral) Descriptor() ([]byte, []int) {
1817
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{6, 1}
1818
+ }
1819
+
1820
+ func (x *ContactTransport_Integral) GetContact() isContactTransport_Integral_Contact {
1821
+ if x != nil {
1822
+ return x.Contact
1823
+ }
1824
+ return nil
1825
+ }
1826
+
1827
+ func (x *ContactTransport_Integral) GetVcard() string {
1828
+ if x != nil {
1829
+ if x, ok := x.Contact.(*ContactTransport_Integral_Vcard); ok {
1830
+ return x.Vcard
1831
+ }
1832
+ }
1833
+ return ""
1834
+ }
1835
+
1836
+ func (x *ContactTransport_Integral) GetDownloadableVcard() *WAMediaTransport {
1837
+ if x != nil {
1838
+ if x, ok := x.Contact.(*ContactTransport_Integral_DownloadableVcard); ok {
1839
+ return x.DownloadableVcard
1840
+ }
1841
+ }
1842
+ return nil
1843
+ }
1844
+
1845
+ type isContactTransport_Integral_Contact interface {
1846
+ isContactTransport_Integral_Contact()
1847
+ }
1848
+
1849
+ type ContactTransport_Integral_Vcard struct {
1850
+ Vcard string `protobuf:"bytes,1,opt,name=vcard,oneof"`
1851
+ }
1852
+
1853
+ type ContactTransport_Integral_DownloadableVcard struct {
1854
+ DownloadableVcard *WAMediaTransport `protobuf:"bytes,2,opt,name=downloadableVcard,oneof"`
1855
+ }
1856
+
1857
+ func (*ContactTransport_Integral_Vcard) isContactTransport_Integral_Contact() {}
1858
+
1859
+ func (*ContactTransport_Integral_DownloadableVcard) isContactTransport_Integral_Contact() {}
1860
+
1861
+ var File_waMediaTransport_WAMediaTransport_proto protoreflect.FileDescriptor
1862
+
1863
+ //go:embed WAMediaTransport.pb.raw
1864
+ var file_waMediaTransport_WAMediaTransport_proto_rawDesc []byte
1865
+
1866
+ var (
1867
+ file_waMediaTransport_WAMediaTransport_proto_rawDescOnce sync.Once
1868
+ file_waMediaTransport_WAMediaTransport_proto_rawDescData = file_waMediaTransport_WAMediaTransport_proto_rawDesc
1869
+ )
1870
+
1871
+ func file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP() []byte {
1872
+ file_waMediaTransport_WAMediaTransport_proto_rawDescOnce.Do(func() {
1873
+ file_waMediaTransport_WAMediaTransport_proto_rawDescData = protoimpl.X.CompressGZIP(file_waMediaTransport_WAMediaTransport_proto_rawDescData)
1874
+ })
1875
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescData
1876
+ }
1877
+
1878
+ var file_waMediaTransport_WAMediaTransport_proto_enumTypes = make([]protoimpl.EnumInfo, 4)
1879
+ var file_waMediaTransport_WAMediaTransport_proto_msgTypes = make([]protoimpl.MessageInfo, 25)
1880
+ var file_waMediaTransport_WAMediaTransport_proto_goTypes = []any{
1881
+ (ImageTransport_Ancillary_HdType)(0), // 0: WAMediaTransport.ImageTransport.Ancillary.HdType
1882
+ (VideoTransport_Ancillary_Attribution)(0), // 1: WAMediaTransport.VideoTransport.Ancillary.Attribution
1883
+ (AudioTransport_Ancillary_AvatarAudio_AnimationsType)(0), // 2: WAMediaTransport.AudioTransport.Ancillary.AvatarAudio.AnimationsType
1884
+ (AudioTransport_Integral_AudioFormat)(0), // 3: WAMediaTransport.AudioTransport.Integral.AudioFormat
1885
+ (*WAMediaTransport)(nil), // 4: WAMediaTransport.WAMediaTransport
1886
+ (*ImageTransport)(nil), // 5: WAMediaTransport.ImageTransport
1887
+ (*VideoTransport)(nil), // 6: WAMediaTransport.VideoTransport
1888
+ (*AudioTransport)(nil), // 7: WAMediaTransport.AudioTransport
1889
+ (*DocumentTransport)(nil), // 8: WAMediaTransport.DocumentTransport
1890
+ (*StickerTransport)(nil), // 9: WAMediaTransport.StickerTransport
1891
+ (*ContactTransport)(nil), // 10: WAMediaTransport.ContactTransport
1892
+ (*WAMediaTransport_Ancillary)(nil), // 11: WAMediaTransport.WAMediaTransport.Ancillary
1893
+ (*WAMediaTransport_Integral)(nil), // 12: WAMediaTransport.WAMediaTransport.Integral
1894
+ (*WAMediaTransport_Ancillary_Thumbnail)(nil), // 13: WAMediaTransport.WAMediaTransport.Ancillary.Thumbnail
1895
+ (*WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail)(nil), // 14: WAMediaTransport.WAMediaTransport.Ancillary.Thumbnail.DownloadableThumbnail
1896
+ (*ImageTransport_Ancillary)(nil), // 15: WAMediaTransport.ImageTransport.Ancillary
1897
+ (*ImageTransport_Integral)(nil), // 16: WAMediaTransport.ImageTransport.Integral
1898
+ (*VideoTransport_Ancillary)(nil), // 17: WAMediaTransport.VideoTransport.Ancillary
1899
+ (*VideoTransport_Integral)(nil), // 18: WAMediaTransport.VideoTransport.Integral
1900
+ (*AudioTransport_Ancillary)(nil), // 19: WAMediaTransport.AudioTransport.Ancillary
1901
+ (*AudioTransport_Integral)(nil), // 20: WAMediaTransport.AudioTransport.Integral
1902
+ (*AudioTransport_Ancillary_AvatarAudio)(nil), // 21: WAMediaTransport.AudioTransport.Ancillary.AvatarAudio
1903
+ (*AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations)(nil), // 22: WAMediaTransport.AudioTransport.Ancillary.AvatarAudio.DownloadableAvatarAnimations
1904
+ (*DocumentTransport_Ancillary)(nil), // 23: WAMediaTransport.DocumentTransport.Ancillary
1905
+ (*DocumentTransport_Integral)(nil), // 24: WAMediaTransport.DocumentTransport.Integral
1906
+ (*StickerTransport_Ancillary)(nil), // 25: WAMediaTransport.StickerTransport.Ancillary
1907
+ (*StickerTransport_Integral)(nil), // 26: WAMediaTransport.StickerTransport.Integral
1908
+ (*ContactTransport_Ancillary)(nil), // 27: WAMediaTransport.ContactTransport.Ancillary
1909
+ (*ContactTransport_Integral)(nil), // 28: WAMediaTransport.ContactTransport.Integral
1910
+ (*waCommon.MessageText)(nil), // 29: WACommon.MessageText
1911
+ }
1912
+ var file_waMediaTransport_WAMediaTransport_proto_depIdxs = []int32{
1913
+ 12, // 0: WAMediaTransport.WAMediaTransport.integral:type_name -> WAMediaTransport.WAMediaTransport.Integral
1914
+ 11, // 1: WAMediaTransport.WAMediaTransport.ancillary:type_name -> WAMediaTransport.WAMediaTransport.Ancillary
1915
+ 16, // 2: WAMediaTransport.ImageTransport.integral:type_name -> WAMediaTransport.ImageTransport.Integral
1916
+ 15, // 3: WAMediaTransport.ImageTransport.ancillary:type_name -> WAMediaTransport.ImageTransport.Ancillary
1917
+ 18, // 4: WAMediaTransport.VideoTransport.integral:type_name -> WAMediaTransport.VideoTransport.Integral
1918
+ 17, // 5: WAMediaTransport.VideoTransport.ancillary:type_name -> WAMediaTransport.VideoTransport.Ancillary
1919
+ 20, // 6: WAMediaTransport.AudioTransport.integral:type_name -> WAMediaTransport.AudioTransport.Integral
1920
+ 19, // 7: WAMediaTransport.AudioTransport.ancillary:type_name -> WAMediaTransport.AudioTransport.Ancillary
1921
+ 24, // 8: WAMediaTransport.DocumentTransport.integral:type_name -> WAMediaTransport.DocumentTransport.Integral
1922
+ 23, // 9: WAMediaTransport.DocumentTransport.ancillary:type_name -> WAMediaTransport.DocumentTransport.Ancillary
1923
+ 26, // 10: WAMediaTransport.StickerTransport.integral:type_name -> WAMediaTransport.StickerTransport.Integral
1924
+ 25, // 11: WAMediaTransport.StickerTransport.ancillary:type_name -> WAMediaTransport.StickerTransport.Ancillary
1925
+ 28, // 12: WAMediaTransport.ContactTransport.integral:type_name -> WAMediaTransport.ContactTransport.Integral
1926
+ 27, // 13: WAMediaTransport.ContactTransport.ancillary:type_name -> WAMediaTransport.ContactTransport.Ancillary
1927
+ 13, // 14: WAMediaTransport.WAMediaTransport.Ancillary.thumbnail:type_name -> WAMediaTransport.WAMediaTransport.Ancillary.Thumbnail
1928
+ 14, // 15: WAMediaTransport.WAMediaTransport.Ancillary.Thumbnail.downloadableThumbnail:type_name -> WAMediaTransport.WAMediaTransport.Ancillary.Thumbnail.DownloadableThumbnail
1929
+ 0, // 16: WAMediaTransport.ImageTransport.Ancillary.hdType:type_name -> WAMediaTransport.ImageTransport.Ancillary.HdType
1930
+ 4, // 17: WAMediaTransport.ImageTransport.Integral.transport:type_name -> WAMediaTransport.WAMediaTransport
1931
+ 29, // 18: WAMediaTransport.VideoTransport.Ancillary.caption:type_name -> WACommon.MessageText
1932
+ 1, // 19: WAMediaTransport.VideoTransport.Ancillary.gifAttribution:type_name -> WAMediaTransport.VideoTransport.Ancillary.Attribution
1933
+ 4, // 20: WAMediaTransport.VideoTransport.Integral.transport:type_name -> WAMediaTransport.WAMediaTransport
1934
+ 21, // 21: WAMediaTransport.AudioTransport.Ancillary.avatarAudio:type_name -> WAMediaTransport.AudioTransport.Ancillary.AvatarAudio
1935
+ 4, // 22: WAMediaTransport.AudioTransport.Integral.transport:type_name -> WAMediaTransport.WAMediaTransport
1936
+ 3, // 23: WAMediaTransport.AudioTransport.Integral.audioFormat:type_name -> WAMediaTransport.AudioTransport.Integral.AudioFormat
1937
+ 22, // 24: WAMediaTransport.AudioTransport.Ancillary.AvatarAudio.avatarAnimations:type_name -> WAMediaTransport.AudioTransport.Ancillary.AvatarAudio.DownloadableAvatarAnimations
1938
+ 2, // 25: WAMediaTransport.AudioTransport.Ancillary.AvatarAudio.DownloadableAvatarAnimations.animationsType:type_name -> WAMediaTransport.AudioTransport.Ancillary.AvatarAudio.AnimationsType
1939
+ 4, // 26: WAMediaTransport.DocumentTransport.Integral.transport:type_name -> WAMediaTransport.WAMediaTransport
1940
+ 4, // 27: WAMediaTransport.StickerTransport.Integral.transport:type_name -> WAMediaTransport.WAMediaTransport
1941
+ 4, // 28: WAMediaTransport.ContactTransport.Integral.downloadableVcard:type_name -> WAMediaTransport.WAMediaTransport
1942
+ 29, // [29:29] is the sub-list for method output_type
1943
+ 29, // [29:29] is the sub-list for method input_type
1944
+ 29, // [29:29] is the sub-list for extension type_name
1945
+ 29, // [29:29] is the sub-list for extension extendee
1946
+ 0, // [0:29] is the sub-list for field type_name
1947
+ }
1948
+
1949
+ func init() { file_waMediaTransport_WAMediaTransport_proto_init() }
1950
+ func file_waMediaTransport_WAMediaTransport_proto_init() {
1951
+ if File_waMediaTransport_WAMediaTransport_proto != nil {
1952
+ return
1953
+ }
1954
+ file_waMediaTransport_WAMediaTransport_proto_msgTypes[24].OneofWrappers = []any{
1955
+ (*ContactTransport_Integral_Vcard)(nil),
1956
+ (*ContactTransport_Integral_DownloadableVcard)(nil),
1957
+ }
1958
+ type x struct{}
1959
+ out := protoimpl.TypeBuilder{
1960
+ File: protoimpl.DescBuilder{
1961
+ GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
1962
+ RawDescriptor: file_waMediaTransport_WAMediaTransport_proto_rawDesc,
1963
+ NumEnums: 4,
1964
+ NumMessages: 25,
1965
+ NumExtensions: 0,
1966
+ NumServices: 0,
1967
+ },
1968
+ GoTypes: file_waMediaTransport_WAMediaTransport_proto_goTypes,
1969
+ DependencyIndexes: file_waMediaTransport_WAMediaTransport_proto_depIdxs,
1970
+ EnumInfos: file_waMediaTransport_WAMediaTransport_proto_enumTypes,
1971
+ MessageInfos: file_waMediaTransport_WAMediaTransport_proto_msgTypes,
1972
+ }.Build()
1973
+ File_waMediaTransport_WAMediaTransport_proto = out.File
1974
+ file_waMediaTransport_WAMediaTransport_proto_rawDesc = nil
1975
+ file_waMediaTransport_WAMediaTransport_proto_goTypes = nil
1976
+ file_waMediaTransport_WAMediaTransport_proto_depIdxs = nil
1977
+ }