Merge pull request #6314 from element-hq/feature/bma/sendButtonColors

Iterate on send button colors
This commit is contained in:
Benoit Marty 2026-03-11 10:06:04 +01:00 committed by GitHub
commit d57c64be06
97 changed files with 201 additions and 229 deletions

View file

@ -8,6 +8,7 @@
package io.element.android.libraries.textcomposer.components package io.element.android.libraries.textcomposer.components
import androidx.compose.foundation.background
import androidx.compose.foundation.layout.Box import androidx.compose.foundation.layout.Box
import androidx.compose.foundation.layout.Row import androidx.compose.foundation.layout.Row
import androidx.compose.foundation.layout.padding import androidx.compose.foundation.layout.padding
@ -17,14 +18,10 @@ import androidx.compose.runtime.Composable
import androidx.compose.ui.Alignment import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier import androidx.compose.ui.Modifier
import androidx.compose.ui.draw.clip import androidx.compose.ui.draw.clip
import androidx.compose.ui.draw.drawWithCache import androidx.compose.ui.graphics.Color
import androidx.compose.ui.geometry.Offset
import androidx.compose.ui.graphics.LinearGradientShader
import androidx.compose.ui.graphics.ShaderBrush
import androidx.compose.ui.unit.dp import androidx.compose.ui.unit.dp
import io.element.android.compound.theme.ElementTheme import io.element.android.compound.theme.ElementTheme
import io.element.android.compound.tokens.generated.CompoundIcons import io.element.android.compound.tokens.generated.CompoundIcons
import io.element.android.libraries.designsystem.colors.gradientActionColors
import io.element.android.libraries.designsystem.preview.ElementPreview import io.element.android.libraries.designsystem.preview.ElementPreview
import io.element.android.libraries.designsystem.preview.PreviewsDayNight import io.element.android.libraries.designsystem.preview.PreviewsDayNight
import io.element.android.libraries.designsystem.theme.components.Icon import io.element.android.libraries.designsystem.theme.components.Icon
@ -33,7 +30,6 @@ import io.element.android.libraries.designsystem.theme.components.IconButton
/** /**
* Send button for the message composer. * Send button for the message composer.
* Figma: https://www.figma.com/design/G1xy0HDZKJf5TCRFmKb5d5/Compound-Android-Components?node-id=1956-37575&node-type=frame&m=dev * Figma: https://www.figma.com/design/G1xy0HDZKJf5TCRFmKb5d5/Compound-Android-Components?node-id=1956-37575&node-type=frame&m=dev
* Temporary Figma : https://www.figma.com/design/Ni6Ii8YKtmXCKYNE90cC67/Timeline-(new)?node-id=2274-39944&m=dev
*/ */
@Composable @Composable
internal fun SendButtonIcon( internal fun SendButtonIcon(
@ -49,11 +45,16 @@ internal fun SendButtonIcon(
isEditing -> 0.dp isEditing -> 0.dp
else -> 2.dp else -> 2.dp
} }
val backgroundColor = if (canSendMessage) {
ElementTheme.colors.bgAccentRest
} else {
Color.Transparent
}
Box( Box(
modifier = modifier modifier = modifier
.clip(CircleShape) .clip(CircleShape)
.size(36.dp) .size(36.dp)
.buttonBackgroundModifier(canSendMessage) .background(backgroundColor)
) { ) {
Icon( Icon(
modifier = Modifier modifier = Modifier
@ -63,11 +64,7 @@ internal fun SendButtonIcon(
// Note: accessibility is managed in TextComposer. // Note: accessibility is managed in TextComposer.
contentDescription = null, contentDescription = null,
tint = if (canSendMessage) { tint = if (canSendMessage) {
if (ElementTheme.colors.isLight) { ElementTheme.colors.iconOnSolidPrimary
ElementTheme.colors.iconOnSolidPrimary
} else {
ElementTheme.colors.iconPrimary
}
} else { } else {
ElementTheme.colors.iconQuaternary ElementTheme.colors.iconQuaternary
} }
@ -75,31 +72,6 @@ internal fun SendButtonIcon(
} }
} }
@Composable
private fun Modifier.buttonBackgroundModifier(
canSendMessage: Boolean,
) = then(
if (canSendMessage) {
val colors = gradientActionColors()
Modifier.drawWithCache {
val verticalGradientBrush = ShaderBrush(
LinearGradientShader(
from = Offset(0f, 0f),
to = Offset(0f, size.height),
colors = colors,
)
)
onDrawBehind {
drawRect(
brush = verticalGradientBrush,
)
}
}
} else {
Modifier
}
)
@PreviewsDayNight @PreviewsDayNight
@Composable @Composable
internal fun SendButtonIconPreview() = ElementPreview { internal fun SendButtonIconPreview() = ElementPreview {

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:a776c7cb4a3996e3fdb8366f73201ffdc693eed14bfc05482dce3e1418b25bd8 oid sha256:54298b08251d3bd32c451dbb2076a40f20254f78806c30c0647f1bf062f3df7a
size 400144 size 399342

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:b6cd92a9a0de70f7f777fb72b966c72d5e2b0443b91a3da45e0b59c5061820d6 oid sha256:02bb9e9de3b0ef480cedbed50483bdd3a899497ecc40ead72491106c6f6b6611
size 399861 size 399030

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:64ed3e00c2134d5f437023c48a7a1e52c7a48b954628ea26dcc3ade0a0193079 oid sha256:6e8aabdc6d15c46ee59ba0e9d2b3b3f19500801c96501b39732d7f9f95e9130f
size 59670 size 59204

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:a776c7cb4a3996e3fdb8366f73201ffdc693eed14bfc05482dce3e1418b25bd8 oid sha256:54298b08251d3bd32c451dbb2076a40f20254f78806c30c0647f1bf062f3df7a
size 400144 size 399342

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:1c6a64aeca9d6f2b8e774d7b0582cd8d721a40de28e378553fc38606c6ef7fb6 oid sha256:9eba0f1d35c5456b58a09ca8370c93f0d1959e8e9aa503501cc49ecfaf198522
size 59541 size 59075

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:621c2bb29fa03f858a78d141a2482f701ecc265784616c52c61b7876c8ca1642 oid sha256:e078891f5a377bf42cb787f436dcb7471de959db0c4d3afa5d7cacee20b2bf15
size 86580 size 86126

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:5619a51f1b95e5372d0d87cb39153455c0ebac8c2eeb679ac5cc0efb6460ec14 oid sha256:a56951545b00dc74fd7780648bb2a508176c47df6a2ce6920f2b8a63d15f58a5
size 73124 size 72675

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:e815e96adf359dd888f8a71cc4727b4769948c150935c9a4af4f6158a1bf1155 oid sha256:c0008cd2827cf805678958567bbce2ca86640a5f27e95ebf1c9cdbc0b86edfd0
size 405883 size 405032

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:b6af0c78bd53ed3ec6a59ee7e0ae01214ae58f2d7d18ee39f134433cc628c039 oid sha256:0b08c65638e961e2fa5f194e93c3a63ead0976b13c1b9821850c3ee865eac0a8
size 83272 size 82767

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:8ba3418ff659fcf19c24bade74c233a088e3ce71d83aea78c8aa07b06a87a69d oid sha256:ba76e7df81874aa6549a5f8ca7987046a4b43a63852c83fece541dc319e839d6
size 132254 size 131727

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:08ec28f42cc67c98eb6c3dfedc4664e42929780673f43be94d37d60f116ba84d oid sha256:b92c8a8283be1efed5faf6fb5f8a091f225dee38fd95e1a1b1914fa06661dc21
size 57007 size 56261

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:7c3fa5bb746a2a005c9766b9c903d03695c5cc5124c81449519fc7a00fd55fa2 oid sha256:c89a2eeba5fa540b6ab6516da1d8dd7810ee0754149a8a7a07cbae2182d106f5
size 55831 size 55364

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:72767c6e523a625e14f84c4ea299552051c09d834480c3587bfcc80acd9c59f7 oid sha256:832b227fc82b946df042658d134f1c699c720d3e153576259fb145ec9d0c4c45
size 58936 size 58441

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:a9e9d735218cd7cc43f104aed351dbd1b857cdbb7cf0d581316e077dc3dfb6b9 oid sha256:b14de263a1f2356b3e84b2a633b0ed837bd160d04c1ec8eeb8c55176856e59ce
size 49248 size 48755

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:c2f91f9b5cbad3fe3d0e87f79cef24481f758d813f90e6ef5f404860456d8e5d oid sha256:407301c3ad51be44fcfcd804954a672e677ea1bc59af39e4269100acc4f720d7
size 60114 size 59368

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:c7efb7d9e793fc763e183027a01abe282f49087135430cfe7c11760b0d7cb39c oid sha256:473a4f7d9623a7351399d3fcf98e30adbd31feabb23efacda83fb68460b75e48
size 51622 size 50912

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:78ab1575bfee32b875880bc9928ec45447ff2b7ed6d6761e4d9877ca205ca47e oid sha256:ccf988123f7fcf7a2d6ad3914d3e1a30dcf99c49ada7fb7dbaaacb64d7f2250e
size 56338 size 55562

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:ed4c08e8ab1fbf30b0ec52bdf3cd96a1245f55b8a055b0b938db39a550e731d6 oid sha256:1612a4b0e0df958cf99295ab318ed8260d5c12b705f65f5db4ab2341930564b8
size 50980 size 50518

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:661f615c15ce9005273638fd8d86716e186671733e1ca71b06484f87506ace86 oid sha256:f69563c42d5315b9e4203719128340fab045ea3473c494e1a1376fe4cbb3f0d8
size 53978 size 53521

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:d49f25567be8b0133318295b94ea519c507d939c86c875dececf99fd37bf9257 oid sha256:539799354ad5b383c308779b1278e879db4542d9d1c870c13a54a0ae927767fb
size 44556 size 44098

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:fe5d581d00cb389a432ce36b228da90fd4c120f5c362bb12ba9406fbb53a6b2a oid sha256:c623703f53cbf1ae42e1d05af88e3c94e5b438cb96a3dc5cd234026b29bf0e0a
size 59073 size 58286

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:214e70ab7a16f9afeb9a27cf6335f238e7509eb60693b1ca2976b6095207c311 oid sha256:ba5ae56e80ca9f5d3e5e2e0d50a2cbda7870c6286f350764dac7817d533d6c18
size 52506 size 51735

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:5fecd68ea15af9dd73ad56fc65b65c8b769212307467a190730648b47fe7cc55 oid sha256:93c061fb9d41a37e4736cdbe964fe98f9814bb761e93948ec57b4ff541792f55
size 8671 size 7491

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:55b02c8ba432b768df833a7ba2e4745b7a48f47bb1601df3bf423e369f95bb65 oid sha256:4bbd6e9e274341f442af1fb720e8651f8216b9b6d1bb0a2ada2477047ecfc713
size 8495 size 6918

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:57ee725dec5b62eeb02751da76ab86a12a3f5f6576b95d8f8f326901f9b75616 oid sha256:35e0601856e81bf396b8457ed26ded904ec3acd005e68908c4e94a969144d0a7
size 52182 size 50343

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:2bc4850604b7c1eb79bdb6ae143e149949a9af9c32b19aa49c56ba20987d484e oid sha256:ad65bc6adeac3a2679b4315db178af99aedb8e40d4952dfa7be10b87d8055dae
size 50396 size 48200

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:1aa0f7508a9a4e612ea3698f9343f61bd766429d73477f6607e2cddd2bc7d9cd oid sha256:30a1ad561aa2bc5dfa95f5494a5f016a7b4a51304765960eb71a466c1d59f3b0
size 53331 size 51396

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:43fe0fa0c03fb40467763adec06e21ceef05fe58a31c5098a6facda008693f87 oid sha256:e0f904191bb608dc61c489db76b71bd66aaf9125b8138ee5696e3e2a35a3e623
size 51570 size 49605

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:81e733b6bc899d6bd3a6305751866277aa85b5407e930d9a649060f1a1215599 oid sha256:008f560c95d92128a7978478563d47bbf57bc0ed1d165f69c60f3d088a8b1798
size 44786 size 41741

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:61c882e1d8feb6e4cad63fe10924e8876ccd0f5400f32e5b8db299cba886eac5 oid sha256:1e8f94bfe6ac910599edd6d2a49ed0369e2304dc589cb574cbf095157e2ae507
size 42832 size 39148

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:9927b817b7a30b9ae2d372a666c9f0e2ea7e660738eff7fd446fa1b71b99a24b oid sha256:66cd907bd23752fbdea45a6505eb6548bba630088e1a6c00d8e32de3fc64ae0c
size 52026 size 50427

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:8bde0663870910a8f5aa4d10afa501210d0dfc6b63e582432eccbc190d9ff0d2 oid sha256:ce7294f8f9b2d847ed17970142bb54f3bf54c7365661e216d74cad1103e7739c
size 50790 size 48581

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:9f2f40629b39b310a6e10541767b9aa6f18652ed98537558a5f7dd54ecf1e1d4 oid sha256:f29a4e1068a8416fb78a394ed87ad195d18928a6f7c58a513f20a6b5e46372ed
size 63109 size 60684

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:8602db8694b0aabdfc55cef65fb530ecf807ec0c8a6436085279818cb147a937 oid sha256:c133f56b6ba583b28684ff44e07e19ca7fc75efa6341d3e2413c2cd61a27099d
size 60565 size 58169

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:57ee725dec5b62eeb02751da76ab86a12a3f5f6576b95d8f8f326901f9b75616 oid sha256:35e0601856e81bf396b8457ed26ded904ec3acd005e68908c4e94a969144d0a7
size 52182 size 50343

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:2bc4850604b7c1eb79bdb6ae143e149949a9af9c32b19aa49c56ba20987d484e oid sha256:ad65bc6adeac3a2679b4315db178af99aedb8e40d4952dfa7be10b87d8055dae
size 50396 size 48200

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:af6ef6548666450633aac6b9449af5084065c630acd16a2d090afc89d3000d3e oid sha256:6dbcd0f76ceb070d1a7b3f9a22292b37c5bd9fa005915233db7bcb8f45d4ccef
size 63946 size 61775

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:407c7a9cda53a42b58e11691da435ba590108b03871e8d64572950e7260b57a8 oid sha256:335853740399624113c6e83d2cbc411691eb74759bcdcc1575b7fa3d10ad4ef6
size 61044 size 58751

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:c277f08b913f6b648a1df737654b341a66e937758b8d1c6d8e98b63ce62c2a9b oid sha256:c8cf7ee8e457e03a2abad0419fb8466f3f43b85abeabf705dd7af412dc4e4d45
size 53535 size 51250

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:ef8e4978b968d09dfe41cedf4341e3f0fa51cce7ce5c9e1b45667a328a122920 oid sha256:a6db26883ef045ff984e8cbf6256a01b8221825efa29b82364187c6b4fcf9d2a
size 50690 size 48653

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:0032f4a01bd1fab1a8db4bd3c89bd634e2cec4473844c2dd9463fdfe7faf9755 oid sha256:acd46123208b547517a07f6e00476c40293a6c519e15acab9ef57d44658b2045
size 73375 size 72217

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:5695860993dcf2ad2e21262401f400d87d75d75eaa831cc8a143ce4dcfb98f1c oid sha256:8cfe2ba87059ddd4b442d627380813af85c55f41ee9fca2cffdf6054cee50c30
size 59982 size 58821

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:8de4add23d101f0ec5b04bd8d051649c4143e77d9cf41949071f9cd4299a3aa0 oid sha256:c2fc7e9b3c12e1f0ca068a9fe5b53fc0d22926a5ec5fda56d8c5304b9a875b5f
size 72781 size 71626

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:c1eb4fac4ebd2544d54828831809b4b116530a86316be88ad26f9ae5313dad14 oid sha256:d45917c3e5cea88a3258044c40b553e7289a85d9b2cc8e3394ca2137081e2220
size 81423 size 80237

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:2d7e08a93435c4380c040e63daa8e6edac47af9946d3075b80abd7f71e53d5ac oid sha256:5d50faa01b0567152ca88b187d602f48c260048484ed9576d685d0a635d47c68
size 62489 size 61337

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:2b3e1905c73b7561c8400c5426bd7c7d95897d9ced5de3212d1f56d806053e1b oid sha256:112c9de20f972933b15936fb1f1e4d56457df66d72075845c56f88cf261dba76
size 61416 size 60253

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:91e00c997726832f255ce5b376213e1160279f172b60676d853c981cc4b7afb8 oid sha256:cf49f2a364dc2cc054dbd81a67c9ddafb2cb8711c9300f0ac8f1f9c4e3f77ab4
size 68346 size 67206

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:55734a9a9725123cbf1d0ebef46579d3a3939b2898f7144e529b71d447456577 oid sha256:b53e8135e3b07a6a4a89def1735146e860c2d52e35e8a4af694b8e872b38e13a
size 90320 size 89219

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:e8f73bcb2919e607d76dbc85ce82d8c8bf9029708bc2b3d21f212a5b8f8c187f oid sha256:21899812bbb9d0cf288911fe681626fcc978a6310527e242610d3392d4a4ef66
size 60826 size 59667

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:f36ea905ab1718fbe97a89171c21605cab4396dec6a83a0465b945fa2cf2fa79 oid sha256:1cb7578c689fd3cd81236d25d8853f6203a91d8879600e72f23e80c86d8b68d9
size 62046 size 60860

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:b6adcff4197af21036e0f3ea834739ce50e700484ba60ae343905df5926b5f0d oid sha256:d23fdafbd834da43a6fe57d5666fc6a3108359838053961a419a9b90a1f7aa53
size 68136 size 67001

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:212b7c60ce30503bac88dbb14dc2a7343f728039286e4c54e7bc5b82a06dce6b oid sha256:7f70b173214fb5971f3db853c85217f7600e9333a6bd411c11e3f1aee4c4e932
size 60393 size 59220

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:1f27bcfe743451f511f73aa5c096db8a424ce8ecbe199d8cb920010a07037a18 oid sha256:fea3bacf1a1927a05b2b515fde06d176e102485474cbed004a781e8d2d7385eb
size 71114 size 69296

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:3314f19a32c7a8f3ca0df6262271a60760f7cecde60879bf54b26e398197801e oid sha256:7661c233ef056af6e014a117530d55e336935ad071467a75f2d165657f33aa7c
size 58113 size 56339

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:03cf43fba473e09ce73354c3ee5e9fa7d051243610eedcdd576a1fcf8c21d4b0 oid sha256:b8b91059084d9cd410414fcea6dc6b3489969f062184834ad89ac9ad5b9c2ee9
size 70560 size 68744

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:85f12e1a86dd50f69766205b627e7db7c5a6b0f37c0c921c148783a1ebfa9bbf oid sha256:2367a9ca1ad216529eb5ca70406fa28788cd9ef2c3fed9dd66e9a5e4acf3080c
size 78970 size 77172

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:8d0d91f146f43abfd271025b586d87e0153aac00803bed1682fb381bc2750d8d oid sha256:efb5dcb70030f73913dc05ffdb70f757f71b615372e02d9e21bbaa9eff91befd
size 60652 size 58801

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:70a9665d9aa337efdd4ac4beedab6dbaddc1e74b41e43499da8351fb59fdfa1f oid sha256:f92132cbeeb5543e8c4f1e1221b07da57dd6f3abc119c46ec291f240f1e5a522
size 59573 size 57759

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:bd5b3afa248eb6486c3be193a48218ace0c3b62c32961ccc4e769cdd822de612 oid sha256:895ba3794457f13dcb3e59499924be167f8408ce6e3782a7b26b452226bbca6a
size 66348 size 64540

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:88b66579a22b2097bad6fb912e646d6e08905fdc187629a21ba6e469faf63883 oid sha256:c1df5a7f329260f6c019207ff66b5df2aab8f9d3fff026ea695111361b46c202
size 87210 size 85539

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:6f22d7e6659dbe26557cc766d156461ccb93d46c725c7c8acd7f0a268103dcc8 oid sha256:b3f7417d9135f5b502429a7030a8531a60f45044a5518806286d1f28487c3a21
size 59008 size 57198

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:3f86b4b4191628ed78d7e5d281eb755e36f59f02160f850cedeafa6d03cd2a2c oid sha256:316ac7e8b79f52192a8c699e903525be92b9d51c86242157b724a59b39c4dcc6
size 60115 size 58254

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:d55e7cacfb2ca44438c9d8e145c35f52966ef9281da0745d5d8806d698b6e9dc oid sha256:df811a1843d3d88ac021d8df892c2b74f61a679317ed40234438459833b90fa9
size 65958 size 64134

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:5351b897a218d2d649c7e6e34e1f187421e786754d69bc007509b77f931b2248 oid sha256:3dddaa9eba56b7c02c7e42add553fcf24b3ded18488bfe75e0decc7270386b29
size 58580 size 56795

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:591e982b4aa78f9302b6e2776a5d8a8f80541397fbf32e4b9bafce44b6b10bb8 oid sha256:cf7b37ce6ac1d6430de6d4ffefc2864f0adc502a395a204b3c516dbd901f9710
size 75446 size 73331

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:c75ba9c2d470fb6332b140b798be06364b8c1982f997fc3e8ab5048c5a38f3df oid sha256:c18604b8f5aaed6e4093d3f792ad112668402541ac09547bdebd6a5adbfca35b
size 59060 size 56876

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:9e91f29fc32e32cf25fd227cf57e4552fd2a67d5ebf7d2a4c628b5d8084775d5 oid sha256:e78937ef7c2ce586b6d6fad9945e10475375bbbcf67ca7473746998c3486fb7e
size 73680 size 71568

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:352ae3616bfdd8f576f4edad5bb0659011525a47d741ad0d00f8c8935de90656 oid sha256:352ffdb9823e33d921b912d40f870e689e02afd242b635dddd6cfb18acbb417b
size 84997 size 82878

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:dab1138d9628806613f316590864fa63eef27447dfc8c7f962a95c420a867b1f oid sha256:b5c5f14ae394bf9a726ef2868d5f1d466fd58384e1e9d4a9b1b982326fd1cdeb
size 62142 size 59898

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:d6031b34debeafd2268f21caa6b8e3637c1667ad1dbc8af1e40e2b9aa962a054 oid sha256:f8ec81667b8685dd1789468a8a0ddf8a23f7346d0423bfe80bdd3b92dee1ef6e
size 61215 size 59016

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:2d279c122c142c811bfe5a23aa5dd11ba963d17ab94f473dd68441f2b79da655 oid sha256:4e0141795939864b6fc0c88308ea4aab747dfe86eba115078a72ee1bdd40843a
size 69136 size 66903

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:f9f36fa57a2b411b9309fd67075eaa40e7b4c3eedc586aa09c8336418354397a oid sha256:f0c716998e33f71d2cf35afbad69b67bd8aab5c35a673e88b9a337f6f327fd1a
size 103763 size 101844

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:864d912c15ce2d467b5f463c2871495cec92679468e9bee7f2ac86641169edf3 oid sha256:e5a6121ba1b68910b48f0c90fc59ea0c23243c993b61bb4a6614bf6faec4096a
size 60428 size 58236

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:9db5503ca53899c8faf8f67e801ba887eab842cb621f25c828651eeb572e623b oid sha256:ea3f311c6811cc294c17c4d79966d8bc607a8fe5d47589f829241d3078e34c53
size 62346 size 60080

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:d880de0d5f6a11cd9382ad74e974b16cbb14bdf35d2445f12b5bf38045a4709e oid sha256:0f924131a517897decc596cf360b7aed621a358a1a58ad7e5e512e5caab6203c
size 69751 size 67493

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:bb835b8ad6b96a84f333b9fcfa94a19c6449292bbc9315b22bff10cbab466e6b oid sha256:06ab1425d23bdb09440fd469638d585dd375dc97b8f371f1dd41778693eb7699
size 59798 size 57612

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:1b53a616a2ad92bf7d6cb6bfc98a4207b962c4a9b67da8b5b3c9322e8b7618ee oid sha256:46361c3842aa0de314258617d6bb1ac59d25e7d0f27c04aefed9e2dbebaad826
size 72989 size 70506

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:04578c60851c3005ce3d971d73bb52bae9273519069af12d7a4623208fa60aa0 oid sha256:cebf26e4a7ea1f5690cb33a4741690b62492dc3ebc9b89282a86c5231bbb7c70
size 56725 size 54095

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:961143bfc26d1d6fcccceff6e88439fad5537db18d375fa9b67f3050f3adc0b5 oid sha256:964388cd9499efcef1c9db6ab043fff4edad66c6869e835423d159f97f2646ca
size 71167 size 68711

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:aef1352d644f41edbe6a479ee3372322d6dc4400cddf31f8b1d5d5f6d4cba1c6 oid sha256:59643dd87993225d3ed473a73b49a29dfa5e4f67dc3481860a06145549ee2d57
size 82275 size 79755

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:684b1cf5837940641b83f890356d4572924e58f0986197720d7aea30a6561fb5 oid sha256:31b0e58c43e7a1b4a361552945011bfe82678cb5259b6739867b031266d43bde
size 59902 size 57414

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:762035e75f98c1eb43cb38cba765a6383ad5a3e26d43f93311b8c57bf4e0beb0 oid sha256:426fc39c6e0c8331e98980fb4341b111a5cd468e4cc488483d222c5ff4c4fc3c
size 59031 size 56514

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:71fd8b8ea41292a7cffab22029d94e4994e25072472ec7e4c3a318d8f55d0376 oid sha256:5e2de4f09982c760d7bcfb51f7513dfa2e299d1fc9c847cd00d66704767e4f34
size 66755 size 64196

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:e6fe347e8465bcc7b84ecafa816ac6dc30f9c662b9f24bb470a0e34bffcb6b98 oid sha256:68e841e8fedcb5c5516ce5848bb698e4f93249e1defae6ebf922139f51495ec4
size 100703 size 98388

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:83d24bed7f708ad81a2e4d1442b1733f8c23683f7bdf73e01eb0d907676fb917 oid sha256:708a0d1403e9f6b1ca3207aa284df9a3039399bb1d785affd3e02fa3be1abea7
size 58168 size 55622

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:20e6950531a49c366d9f42d10e17c227cf0c4895fe8febed7c5475a6af362717 oid sha256:e78b8d40c4b24d0b99a15b3a0fc15f2056fd3a6741b8ae3767670ef82562cc17
size 59958 size 57493

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:910a6c465201e7c641db37aaf9d7d1fb391fe8ae7e48ba1bdec8479e2aeedd10 oid sha256:7f42650a174ccfee6dbf722045a0147d0ff5e5f3a0d7fcdd14a46a32bbf9ddb6
size 67136 size 64628

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:172585635bc1d7e9f535a653bc4821ad3376f2baee3ccce4796fea7c4cc80d0a oid sha256:e6844ad008747abff414d8240b9ff533efa7f162360ab1fc8db737a3039e665e
size 57447 size 54884

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:2f9daef64889efb13f8a1c319401a7197e79da26d0117048a04c1c7f20d4320e oid sha256:8c2bc8df489462a1dea1f94c23cc7e5b9f72ba2d98b26f726c6dd9071c421e89
size 56434 size 53915

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:d60d8000c0050887c13e3721ab46b8df07710b9322afd5bad1e9b0107aaa71a7 oid sha256:136398e7d5595f1baa0d1190d5273a0c5a4b98494105f1970e6b0d0b68a1355d
size 53758 size 51330

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:0edaf8d7e95ea0f438f7a4932f24195a8f531718052ab6874705a2cbc7e23b33 oid sha256:6f98d6e3d98020e0285cd212eded2ccb38e42cb4bc534f9aed951d15e7fd4df7
size 46222 size 44011

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:33bed5679d72636c2b899c28fbe9b188537a12c9b1e189cb7f128b600e77700d oid sha256:61883d8c6e26a7d9e868f9bdb71a564b62210af00e67af1d9a52a0fae405be09
size 44294 size 41551

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:c394e9a8d80c6081b9759817e06077508d02d34b972edc6a44d5ebe428679448 oid sha256:4b9ed5a39a881471e8b224edbcc45d46a20db0539e065c44a5eb0d56a24efc22
size 36087 size 34439

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:e72a58d07138e2e771ff848f435cfb04956c4f96c66e07100dc1a1905c126fef oid sha256:571383a1822fb9cd4eb629d28260556172ff40a8260c9d05278434b2383a11da
size 34267 size 32594

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:6852bf756c3f1d44e21409b884c422773c887b1623b2a80c8394394916ed87f6 oid sha256:9036efabbf937551b240326a092f037398ee2a9586203cf1c05a0725200bf3bb
size 25210 size 24068

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:1376d130c9cc5ebf37786708ef3acd75ad11516db6d23a81906ff5ebbfa002d0 oid sha256:5ebcd0a5c857202d82a3685551cde4af4abe48883b5b19296188d8130dba295f
size 24184 size 22622