yearn-treasury 0.0.44__cp310-cp310-win32.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 yearn-treasury might be problematic. Click here for more details.
- yearn_treasury/__init__.py +20 -0
- yearn_treasury/_db.cp310-win32.pyd +0 -0
- yearn_treasury/_db.py +41 -0
- yearn_treasury/_ens.cp310-win32.pyd +0 -0
- yearn_treasury/_ens.py +31 -0
- yearn_treasury/_logging.cp310-win32.pyd +0 -0
- yearn_treasury/_logging.py +43 -0
- yearn_treasury/address_labels.yaml +39 -0
- yearn_treasury/budget/__init__.cp310-win32.pyd +0 -0
- yearn_treasury/budget/__init__.py +6 -0
- yearn_treasury/budget/_request.cp310-win32.pyd +0 -0
- yearn_treasury/budget/_request.py +44 -0
- yearn_treasury/budget/_requests.cp310-win32.pyd +0 -0
- yearn_treasury/budget/_requests.py +96 -0
- yearn_treasury/constants.py +89 -0
- yearn_treasury/main.py +176 -0
- yearn_treasury/py.typed +1 -0
- yearn_treasury/rules/__init__.py +20 -0
- yearn_treasury/rules/constants.cp310-win32.pyd +0 -0
- yearn_treasury/rules/constants.py +17 -0
- yearn_treasury/rules/cost_of_revenue/__init__.py +1 -0
- yearn_treasury/rules/cost_of_revenue/gas.cp310-win32.pyd +0 -0
- yearn_treasury/rules/cost_of_revenue/gas.py +66 -0
- yearn_treasury/rules/cost_of_revenue/match_on_hash.yaml +12 -0
- yearn_treasury/rules/expense/__init__.cp310-win32.pyd +0 -0
- yearn_treasury/rules/expense/__init__.py +4 -0
- yearn_treasury/rules/expense/general.cp310-win32.pyd +0 -0
- yearn_treasury/rules/expense/general.py +13 -0
- yearn_treasury/rules/expense/infrastructure.cp310-win32.pyd +0 -0
- yearn_treasury/rules/expense/infrastructure.py +47 -0
- yearn_treasury/rules/expense/match_on_hash.yaml +48 -0
- yearn_treasury/rules/expense/match_on_to_address.yaml +7 -0
- yearn_treasury/rules/expense/people.cp310-win32.pyd +0 -0
- yearn_treasury/rules/expense/people.py +84 -0
- yearn_treasury/rules/expense/security.cp310-win32.pyd +0 -0
- yearn_treasury/rules/expense/security.py +147 -0
- yearn_treasury/rules/ignore/__init__.py +8 -0
- yearn_treasury/rules/ignore/general.cp310-win32.pyd +0 -0
- yearn_treasury/rules/ignore/general.py +11 -0
- yearn_treasury/rules/ignore/maker.py +92 -0
- yearn_treasury/rules/ignore/passthru.py +310 -0
- yearn_treasury/rules/ignore/staking.py +102 -0
- yearn_treasury/rules/ignore/swaps/__init__.py +25 -0
- yearn_treasury/rules/ignore/swaps/_skip_tokens.py +9 -0
- yearn_treasury/rules/ignore/swaps/aave.py +69 -0
- yearn_treasury/rules/ignore/swaps/auctions.cp310-win32.pyd +0 -0
- yearn_treasury/rules/ignore/swaps/auctions.py +31 -0
- yearn_treasury/rules/ignore/swaps/compound.py +58 -0
- yearn_treasury/rules/ignore/swaps/conversion_factory.cp310-win32.pyd +0 -0
- yearn_treasury/rules/ignore/swaps/conversion_factory.py +21 -0
- yearn_treasury/rules/ignore/swaps/cowswap.py +87 -0
- yearn_treasury/rules/ignore/swaps/curve.py +170 -0
- yearn_treasury/rules/ignore/swaps/gearbox.cp310-win32.pyd +0 -0
- yearn_treasury/rules/ignore/swaps/gearbox.py +37 -0
- yearn_treasury/rules/ignore/swaps/iearn.cp310-win32.pyd +0 -0
- yearn_treasury/rules/ignore/swaps/iearn.py +43 -0
- yearn_treasury/rules/ignore/swaps/otc.cp310-win32.pyd +0 -0
- yearn_treasury/rules/ignore/swaps/otc.py +58 -0
- yearn_treasury/rules/ignore/swaps/pooltogether.cp310-win32.pyd +0 -0
- yearn_treasury/rules/ignore/swaps/pooltogether.py +23 -0
- yearn_treasury/rules/ignore/swaps/synthetix.cp310-win32.pyd +0 -0
- yearn_treasury/rules/ignore/swaps/synthetix.py +10 -0
- yearn_treasury/rules/ignore/swaps/uniswap.py +294 -0
- yearn_treasury/rules/ignore/swaps/unwrapper.cp310-win32.pyd +0 -0
- yearn_treasury/rules/ignore/swaps/unwrapper.py +17 -0
- yearn_treasury/rules/ignore/swaps/vaults.cp310-win32.pyd +0 -0
- yearn_treasury/rules/ignore/swaps/vaults.py +263 -0
- yearn_treasury/rules/ignore/swaps/woofy.cp310-win32.pyd +0 -0
- yearn_treasury/rules/ignore/swaps/woofy.py +80 -0
- yearn_treasury/rules/ignore/swaps/yfi.cp310-win32.pyd +0 -0
- yearn_treasury/rules/ignore/swaps/yfi.py +111 -0
- yearn_treasury/rules/ignore/swaps/yla.cp310-win32.pyd +0 -0
- yearn_treasury/rules/ignore/swaps/yla.py +28 -0
- yearn_treasury/rules/ignore/unit.cp310-win32.pyd +0 -0
- yearn_treasury/rules/ignore/unit.py +40 -0
- yearn_treasury/rules/ignore/weth.cp310-win32.pyd +0 -0
- yearn_treasury/rules/ignore/weth.py +48 -0
- yearn_treasury/rules/ignore/ygov.cp310-win32.pyd +0 -0
- yearn_treasury/rules/ignore/ygov.py +16 -0
- yearn_treasury/rules/other_expense/__init__.cp310-win32.pyd +0 -0
- yearn_treasury/rules/other_expense/__init__.py +7 -0
- yearn_treasury/rules/other_expense/boost.cp310-win32.pyd +0 -0
- yearn_treasury/rules/other_expense/boost.py +49 -0
- yearn_treasury/rules/other_expense/bugs.cp310-win32.pyd +0 -0
- yearn_treasury/rules/other_expense/bugs.py +81 -0
- yearn_treasury/rules/other_expense/donations.cp310-win32.pyd +0 -0
- yearn_treasury/rules/other_expense/donations.py +43 -0
- yearn_treasury/rules/other_expense/dyfi.cp310-win32.pyd +0 -0
- yearn_treasury/rules/other_expense/dyfi.py +29 -0
- yearn_treasury/rules/other_expense/events.cp310-win32.pyd +0 -0
- yearn_treasury/rules/other_expense/events.py +21 -0
- yearn_treasury/rules/other_expense/match_on_hash.yaml +43 -0
- yearn_treasury/rules/other_expense/match_on_to_address.yaml +8 -0
- yearn_treasury/rules/other_expense/misc.cp310-win32.pyd +0 -0
- yearn_treasury/rules/other_expense/misc.py +49 -0
- yearn_treasury/rules/other_expense/revshare.cp310-win32.pyd +0 -0
- yearn_treasury/rules/other_expense/revshare.py +20 -0
- yearn_treasury/rules/other_income/__init__.cp310-win32.pyd +0 -0
- yearn_treasury/rules/other_income/__init__.py +2 -0
- yearn_treasury/rules/other_income/airdrops.cp310-win32.pyd +0 -0
- yearn_treasury/rules/other_income/airdrops.py +30 -0
- yearn_treasury/rules/other_income/match_on_hash.yaml +21 -0
- yearn_treasury/rules/other_income/misc.cp310-win32.pyd +0 -0
- yearn_treasury/rules/other_income/misc.py +80 -0
- yearn_treasury/rules/revenue/__init__.py +6 -0
- yearn_treasury/rules/revenue/bribes.cp310-win32.pyd +0 -0
- yearn_treasury/rules/revenue/bribes.py +26 -0
- yearn_treasury/rules/revenue/farming.cp310-win32.pyd +0 -0
- yearn_treasury/rules/revenue/farming.py +56 -0
- yearn_treasury/rules/revenue/keepcoins.cp310-win32.pyd +0 -0
- yearn_treasury/rules/revenue/keepcoins.py +63 -0
- yearn_treasury/rules/revenue/match_on_hash.yaml +4 -0
- yearn_treasury/rules/revenue/seasolver.cp310-win32.pyd +0 -0
- yearn_treasury/rules/revenue/seasolver.py +23 -0
- yearn_treasury/rules/revenue/vaults.py +168 -0
- yearn_treasury/rules/revenue/yteams.cp310-win32.pyd +0 -0
- yearn_treasury/rules/revenue/yteams.py +17 -0
- yearn_treasury/shitcoins.py +141 -0
- yearn_treasury/vaults.cp310-win32.pyd +0 -0
- yearn_treasury/vaults.py +50 -0
- yearn_treasury/wallets.yaml +54 -0
- yearn_treasury/yteams.py +208 -0
- yearn_treasury-0.0.44.dist-info/METADATA +86 -0
- yearn_treasury-0.0.44.dist-info/RECORD +128 -0
- yearn_treasury-0.0.44.dist-info/WHEEL +5 -0
- yearn_treasury-0.0.44.dist-info/entry_points.txt +2 -0
- yearn_treasury-0.0.44.dist-info/top_level.txt +2 -0
- yearn_treasury__mypyc.cp310-win32.pyd +0 -0
|
@@ -0,0 +1,310 @@
|
|
|
1
|
+
from decimal import Decimal
|
|
2
|
+
from typing import Final, Tuple
|
|
3
|
+
|
|
4
|
+
from dao_treasury import TreasuryTx, TreasuryWallet, ignore
|
|
5
|
+
from eth_typing import BlockNumber, ChecksumAddress
|
|
6
|
+
from y import Network
|
|
7
|
+
|
|
8
|
+
from yearn_treasury.constants import CHAINID, YSWAP_MULTISIG, ZERO_ADDRESS
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
passthru: Final = ignore("Pass-Thru")
|
|
12
|
+
|
|
13
|
+
cowswap_router: Final = "0x9008D19f58AAbD9eD0D60971565AA8510560ab41"
|
|
14
|
+
ycrv: Final = "0xFCc5c47bE19d06BF83eB04298b026F81069ff65b"
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
@passthru("Sent to dinobots to dump", Network.Mainnet)
|
|
18
|
+
def is_sent_to_dinoswap(tx: TreasuryTx) -> bool:
|
|
19
|
+
"""These tokens are dumpped and the proceeds sent back to the origin strategy."""
|
|
20
|
+
return tx.from_nickname == "Contract: Strategy" and tx.to_nickname == "yMechs Multisig"
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
@passthru("Bribes for yCRV", Network.Mainnet)
|
|
24
|
+
def is_ycrv(tx: TreasuryTx) -> bool:
|
|
25
|
+
"""These are routed thru cowswap with dai as the purchase token."""
|
|
26
|
+
ymechs = "0x2C01B4AD51a67E2d8F02208F54dF9aC4c0B778B6"
|
|
27
|
+
|
|
28
|
+
from_address = tx.from_address
|
|
29
|
+
symbol = tx.symbol
|
|
30
|
+
if (from_address == YSWAP_MULTISIG and symbol == "DAI") or (
|
|
31
|
+
from_address == ymechs and symbol == "3Crv"
|
|
32
|
+
):
|
|
33
|
+
if tx.to_address == cowswap_router:
|
|
34
|
+
for trade in tx.get_events("Trade"):
|
|
35
|
+
(
|
|
36
|
+
owner,
|
|
37
|
+
sell_token,
|
|
38
|
+
buy_token,
|
|
39
|
+
sell_amount,
|
|
40
|
+
buy_amount,
|
|
41
|
+
fee_amount,
|
|
42
|
+
order_uid,
|
|
43
|
+
) = trade.values()
|
|
44
|
+
if tx.from_address == owner and tx.token == sell_token and buy_token == ycrv:
|
|
45
|
+
scaled = Decimal(sell_amount) / 10**18
|
|
46
|
+
# TODO: remove this rounding when we implement postgres
|
|
47
|
+
if round(scaled, 11) == round(tx.amount, 11):
|
|
48
|
+
return True
|
|
49
|
+
print(f"bribes for ycrv amount no match: [{scaled}, {tx.amount}]")
|
|
50
|
+
|
|
51
|
+
elif tx.hash in {
|
|
52
|
+
# one off exception case to correct accounting mix-up
|
|
53
|
+
"0x1578f3b0d3158d305167c39dc29ada08914e1ddb67ef9698e1b0421432f9aed6",
|
|
54
|
+
# A few donations from ySwap
|
|
55
|
+
"0xb2e335500b33b42edd8a97f57db35e0561df9a3a811d0cd73dce9767c23da0c4",
|
|
56
|
+
"0xc02aab3a84b3bbfbc18f0ee6aa742f233d97511f653b4a40e7cd8f822851e10a",
|
|
57
|
+
"0x8a2dba62eac44fdfc7ff189016ac601c9da664f5dea42d647f2e552319db2f7d",
|
|
58
|
+
"0xd2c0a137d03811c5e4c27be19c7893f7fdd5851bdd6f825ee7301f3634033035",
|
|
59
|
+
}:
|
|
60
|
+
return True
|
|
61
|
+
return is_dola_bribe(tx)
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
def is_dola_bribe(tx: TreasuryTx) -> bool:
|
|
65
|
+
return (
|
|
66
|
+
tx.from_nickname == "ySwap Multisig"
|
|
67
|
+
and tx.to_nickname == "Contract: GPv2Settlement"
|
|
68
|
+
and tx.symbol == "DOLA"
|
|
69
|
+
)
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
passthru("BAL Rewards", Network.Mainnet).match(
|
|
73
|
+
hash="0xf4677cce1a08ecd54272cdc1b23bc64693450f8bb5d6de59b8e58e288ec3b2a7",
|
|
74
|
+
symbol="BAL",
|
|
75
|
+
)
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
@passthru("StrategyAuraUSDClonable", Network.Mainnet)
|
|
79
|
+
def is_aura(tx: TreasuryTx) -> bool:
|
|
80
|
+
txhash = tx.hash
|
|
81
|
+
if (
|
|
82
|
+
txhash == "0x1621ba5c9b57930c97cc43d5d6d401ee9c69fed435b0b458ee031544a10bfa75"
|
|
83
|
+
and tx.symbol in ["BAL", "AURA"]
|
|
84
|
+
):
|
|
85
|
+
return True
|
|
86
|
+
return (
|
|
87
|
+
txhash == "0x996b5911a48319133f50f72904e70ed905c08c81e2c03770e0ccc896be873bd4"
|
|
88
|
+
and tx.symbol == "AURA"
|
|
89
|
+
)
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
@passthru("yPrisma Strategy Migration", Network.Mainnet)
|
|
93
|
+
def is_yprisma_migration(tx: TreasuryTx) -> bool:
|
|
94
|
+
# strategies were changed a few times
|
|
95
|
+
txhash = tx.hash
|
|
96
|
+
if txhash in (
|
|
97
|
+
"0x4c19259ff9e23c2f23653b7560526c2dbd5adef2d53c297b63d8c1fa6f4906f1",
|
|
98
|
+
"0xed39b66c01e25b053117778c80e544c985d962522233b49ce6f7fe136b1a4474",
|
|
99
|
+
):
|
|
100
|
+
return True
|
|
101
|
+
return (
|
|
102
|
+
txhash == "0x45bb5d7c25393c5bb8ad9647ae60ff39ddc39d695f0e427eb45f91b04f42c636"
|
|
103
|
+
and tx.symbol == "yPRISMA"
|
|
104
|
+
)
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
@passthru("rKP3R", Network.Mainnet)
|
|
108
|
+
def is_rkp3r(tx: TreasuryTx) -> bool:
|
|
109
|
+
if tx.symbol == "rKP3R":
|
|
110
|
+
from_nickname = tx.from_nickname
|
|
111
|
+
to_nickname = tx.to_nickname
|
|
112
|
+
if (
|
|
113
|
+
from_nickname == "Contract: StrategyConvexFixedForexClonable"
|
|
114
|
+
and to_nickname == "Yearn yChad Multisig"
|
|
115
|
+
):
|
|
116
|
+
return True
|
|
117
|
+
elif (
|
|
118
|
+
from_nickname == "Yearn yChad Multisig"
|
|
119
|
+
and to_nickname == "Contract: StrategyConvexFixedForexClonable"
|
|
120
|
+
):
|
|
121
|
+
return True
|
|
122
|
+
return False
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
@passthru("Inverse-earned YearnFed Fees", Network.Mainnet)
|
|
126
|
+
def is_inverse_fees_from_yearn_fed(tx: TreasuryTx) -> bool:
|
|
127
|
+
return tx.symbol == "yvDOLA-U" and tx.to_nickname == "Contract: YearnFed"
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
@passthru("stkAAVE", Network.Mainnet)
|
|
131
|
+
def is_stkaave(tx: TreasuryTx) -> bool:
|
|
132
|
+
"""stkAAVE is sent from a strategy to ychad, then to sms for unwrapping."""
|
|
133
|
+
if tx.symbol == "stkAAVE":
|
|
134
|
+
from_nickname = tx.from_nickname
|
|
135
|
+
to_nickname = tx.to_nickname
|
|
136
|
+
if "Strategy" in from_nickname and to_nickname == "Yearn yChad Multisig":
|
|
137
|
+
return True
|
|
138
|
+
elif from_nickname == "Yearn yChad Multisig" and to_nickname == "Yearn Strategist Multisig":
|
|
139
|
+
return True
|
|
140
|
+
return False
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
@passthru("StrategyIdle", Network.Mainnet)
|
|
144
|
+
def is_idle(tx: TreasuryTx) -> bool:
|
|
145
|
+
return tx.hash in {
|
|
146
|
+
"0x59595773ee4304ba4e7e06d2c02541781d93867f74c6c83056e7295b684036c7",
|
|
147
|
+
"0x4c7685aa3dfa9f375c612a2773951b9edbe059102b505423ed28a97d2692e75a",
|
|
148
|
+
"0xb17317686b57229aeb7f06103097b47dc2eafa34489c40af70d2ac57bcf8f455",
|
|
149
|
+
"0xfd9e6fd303fdbb358207bf3ba069b7f6a21f82f6b082605056d54948127e81e8",
|
|
150
|
+
"0x41c8428fd361c54bb80cdac752e31622915ac626dd1e9270f02af1dc2c84d1f9",
|
|
151
|
+
"0x9c0d169c7362a7fe436ae852c1aee58a5905d10569abbd50261f65cb0574dc3a",
|
|
152
|
+
"0x55d89a5890cfe80da06f6831fdfa3a366c0ed9cf9b7f1b4d53f5007bb9698fa0",
|
|
153
|
+
"0x6c6fc43dca1841af82b517bc5fc53ea8607e3f95512e4dd3009c0dbb425669f7",
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
_factory_strat_to_yield_tokens = {
|
|
158
|
+
"Contract: StrategyCurveBoostedFactoryClonable": ("CRV", "LDO"),
|
|
159
|
+
"Contract: StrategyConvexFactoryClonable": ("CRV", "CVX"),
|
|
160
|
+
"Contract: StrategyConvexFraxFactoryClonable": ("CRV", "CVX", "FXS"),
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
@passthru("Factory Vault Yield", Network.Mainnet)
|
|
165
|
+
def is_factory_vault_yield(tx: TreasuryTx) -> bool:
|
|
166
|
+
return tx.to_nickname == "yMechs Multisig" and tx.symbol in _factory_strat_to_yield_tokens.get(
|
|
167
|
+
tx.from_nickname, ()
|
|
168
|
+
)
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
@passthru("CowSwap Migration", Network.Mainnet)
|
|
172
|
+
def is_cowswap_migration(tx: TreasuryTx) -> bool:
|
|
173
|
+
"""A one-time tx that transferred tokens from an old contract to its replacement."""
|
|
174
|
+
return tx.hash == "0xb50341d3db2ff4a39b9bfa21753893035554ae44abb7d104ab650753db1c4855"
|
|
175
|
+
|
|
176
|
+
|
|
177
|
+
def is_curve_bribe(tx: TreasuryTx) -> bool:
|
|
178
|
+
"""All present and future curve bribes are committed to yveCRV holders."""
|
|
179
|
+
from_nickname = tx.from_nickname
|
|
180
|
+
if from_nickname == "Contract: CurveYCRVVoter" and tx.hash not in [
|
|
181
|
+
# took place before bribes were committed to yveCRV
|
|
182
|
+
"0x6824345c8a0c1f0b801d8050bb6f587032c4a9fa153faa113d723a2068d844f4",
|
|
183
|
+
# was a whitehat hack of the v1 bribe contract, necessary to safeguard user funds
|
|
184
|
+
"0xfcef3911809770fe351b2b526e4ee0274589a3f7d6ef9408a8f5643fa006b771",
|
|
185
|
+
]:
|
|
186
|
+
return True
|
|
187
|
+
|
|
188
|
+
# Bribe V3
|
|
189
|
+
elif from_nickname == "Contract: yBribe" and tx.to_nickname in [
|
|
190
|
+
"Yearn Treasury",
|
|
191
|
+
"ySwap Multisig",
|
|
192
|
+
]:
|
|
193
|
+
return True
|
|
194
|
+
|
|
195
|
+
# NOTE: I added this one-off to capture tokens sent to BribeSplitter 0x527e80008D212E2891C737Ba8a2768a7337D7Fd2
|
|
196
|
+
return tx.hash == "0xce45da7e3a7616ed0c0d356d6dfa8a784606c9a8034bae9faa40abf7b52be114"
|
|
197
|
+
|
|
198
|
+
|
|
199
|
+
_pass_thru_hashes: Tuple[str, ...] = {
|
|
200
|
+
Network.Mainnet: ("0xf662c68817c56a64b801181a3175c8a7e7a5add45f8242990c695d418651e50d",),
|
|
201
|
+
Network.Fantom: (
|
|
202
|
+
"0x411d0aff42c3862d06a0b04b5ffd91f4593a9a8b2685d554fe1fbe5dc7e4fc04",
|
|
203
|
+
"0xa347da365286cc912e4590fc71e97a5bcba9e258c98a301f85918826538aa021",
|
|
204
|
+
),
|
|
205
|
+
}.get(
|
|
206
|
+
CHAINID, ()
|
|
207
|
+
) # type: ignore [call-overload]
|
|
208
|
+
|
|
209
|
+
|
|
210
|
+
@passthru("Misc.", Network.Mainnet)
|
|
211
|
+
def is_misc_passthru_mainnet(tx: TreasuryTx) -> bool:
|
|
212
|
+
# not sure if we still need this, TODO figure it out
|
|
213
|
+
# NOTE skipped the hashmatcher to do strange things ... there is probably a better way to do this
|
|
214
|
+
if tx.hash in _pass_thru_hashes and str(tx.log_index).lower() != "nan":
|
|
215
|
+
return True
|
|
216
|
+
|
|
217
|
+
txhash = tx.hash
|
|
218
|
+
if txhash in {
|
|
219
|
+
"0xae6797ad466de75731117df46ccea5c263265dd6258d596b9d6d8cf3a7b1e3c2",
|
|
220
|
+
"0x2a6191ba8426d3ae77e2a6c91de10a6e76d1abdb2d0f831c6c5aad52be3d6246",
|
|
221
|
+
# https://github.com/yearn/chief-multisig-officer/pull/924
|
|
222
|
+
"0x25b54e113e58a3a4bbffc011cdfcb8c07a0424f33b0dbda921803d82b88f1429",
|
|
223
|
+
"0xcb000dd2b623f9924fe0234831800950a3269b2d412ce9eeabb0ec65cd737059",
|
|
224
|
+
}:
|
|
225
|
+
return True
|
|
226
|
+
# do these need hueristics? build real sort logic if these keep reoccurring
|
|
227
|
+
elif txhash == "0x14faeac8ee0734875611e68ce0614eaf39db94a5ffb5bc6f9739da6daf58282a" and (
|
|
228
|
+
tx.symbol in ("CRV", "CVX", "yPRISMA") or tx.log_index == 254
|
|
229
|
+
):
|
|
230
|
+
return True
|
|
231
|
+
return False
|
|
232
|
+
|
|
233
|
+
|
|
234
|
+
@passthru("Misc.", Network.Fantom)
|
|
235
|
+
def is_misc_passthru_fantom(tx: TreasuryTx) -> bool:
|
|
236
|
+
# not sure if we still need this, TODO figure it out
|
|
237
|
+
# NOTE skipped the hashmatcher to do strange things ... there is probably a better way to do this
|
|
238
|
+
if tx.hash in _pass_thru_hashes and str(tx.log_index).lower() != "nan":
|
|
239
|
+
return True
|
|
240
|
+
|
|
241
|
+
if tx.hash == "0x14faeac8ee0734875611e68ce0614eaf39db94a5ffb5bc6f9739da6daf58282a":
|
|
242
|
+
return True
|
|
243
|
+
# Passing thru to yvWFTM
|
|
244
|
+
if (
|
|
245
|
+
tx.symbol == "WFTM"
|
|
246
|
+
and TreasuryWallet.check_membership(tx.from_address.address, tx.block) # type: ignore [arg-type, union-attr]
|
|
247
|
+
and tx.to_address == "0x0DEC85e74A92c52b7F708c4B10207D9560CEFaf0"
|
|
248
|
+
):
|
|
249
|
+
# dont want to accidenally sort a vault deposit here
|
|
250
|
+
is_deposit = False
|
|
251
|
+
for event in tx.get_events("Transfer"):
|
|
252
|
+
sender, receiver, _ = event.values()
|
|
253
|
+
if (
|
|
254
|
+
tx.to_address == event.address
|
|
255
|
+
and sender == ZERO_ADDRESS
|
|
256
|
+
and tx.from_address == receiver
|
|
257
|
+
):
|
|
258
|
+
is_deposit = True
|
|
259
|
+
if not is_deposit:
|
|
260
|
+
return True
|
|
261
|
+
return False
|
|
262
|
+
|
|
263
|
+
|
|
264
|
+
@passthru("yvBoost INCOMPLETE", Network.Mainnet)
|
|
265
|
+
def is_buying_yvboost(tx: TreasuryTx) -> bool:
|
|
266
|
+
"""Bought back yvBoost is unwrapped and sent back to vault holders."""
|
|
267
|
+
symbol = tx.symbol
|
|
268
|
+
block: BlockNumber = tx.block # type: ignore [assignment]
|
|
269
|
+
from_address: ChecksumAddress = tx.from_address.address # type: ignore [union-attr, assignment]
|
|
270
|
+
to_address: ChecksumAddress = tx.to_address.address # type: ignore [union-attr, assignment]
|
|
271
|
+
if (
|
|
272
|
+
symbol == "SPELL"
|
|
273
|
+
and TreasuryWallet.check_membership(from_address, block)
|
|
274
|
+
and to_address == cowswap_router
|
|
275
|
+
):
|
|
276
|
+
return True
|
|
277
|
+
|
|
278
|
+
elif (
|
|
279
|
+
symbol == "yveCRV-DAO"
|
|
280
|
+
and TreasuryWallet.check_membership(from_address, block)
|
|
281
|
+
and to_address
|
|
282
|
+
in (
|
|
283
|
+
"0xd7240B32d24B814fE52946cD44d94a2e3532E63d",
|
|
284
|
+
"0x7fe508eE30316e3261079e2C81f4451E0445103b",
|
|
285
|
+
)
|
|
286
|
+
):
|
|
287
|
+
return True
|
|
288
|
+
|
|
289
|
+
elif (
|
|
290
|
+
symbol == "3Crv"
|
|
291
|
+
and from_address == "0xd7240B32d24B814fE52946cD44d94a2e3532E63d"
|
|
292
|
+
and TreasuryWallet.check_membership(to_address, block)
|
|
293
|
+
):
|
|
294
|
+
return True
|
|
295
|
+
|
|
296
|
+
# SPELL bribe handling
|
|
297
|
+
elif symbol == "SPELL":
|
|
298
|
+
if tx.to_nickname in ("Abracadabra Treasury", "Contract: BribeSplitter"):
|
|
299
|
+
return True
|
|
300
|
+
|
|
301
|
+
return tx in (
|
|
302
|
+
"0x9eabdf110efbfb44aab7a50eb4fe187f68deae7c8f28d78753c355029f2658d3",
|
|
303
|
+
"0x5a80f5ff90fc6f4f4597290b2432adbb62ab4154ead68b515accdf19b01c1086",
|
|
304
|
+
"0x848b4d629e137ad8d8eefe5db40eab895c9959b9c210d0ae0fef16a04bfaaee1",
|
|
305
|
+
"0x896663aa9e2633b5d152028bdf84d7f4b1137dd27a8e61daca3863db16bebc4f",
|
|
306
|
+
"0xd8aa1e5d093a89515530b7267a9fd216b97fddb6478b3027b2f5c1d53070cd5f",
|
|
307
|
+
"0x169aab84b408fce76e0b776ebf412c796240300c5610f0263d5c09d0d3f1b062",
|
|
308
|
+
"0xe6fefbf061f4489cd967cdff6aa8aca616f0c709e08c3696f12b0027e9e166c9",
|
|
309
|
+
"0x10be8a3345660f3c51b695e8716f758b1a91628bd612093784f0516a604f79c1",
|
|
310
|
+
)
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
from typing import Final
|
|
2
|
+
|
|
3
|
+
from dao_treasury import TreasuryTx, TreasuryWallet, ignore
|
|
4
|
+
from y import Network
|
|
5
|
+
|
|
6
|
+
from yearn_treasury.rules.constants import ZERO_ADDRESS
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
staking: Final = ignore("Staking")
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
@staking("Curve Gauges", Network.Mainnet)
|
|
13
|
+
def is_curve_gauge(tx: TreasuryTx) -> bool:
|
|
14
|
+
"""Ignore DAO staking into Curve gauge contracts on Mainnet.
|
|
15
|
+
|
|
16
|
+
These deposit transactions into Curve gauges are infrequent and are excluded from automatic categorization.
|
|
17
|
+
"""
|
|
18
|
+
return tx.hash in (
|
|
19
|
+
"0xfb9fbe6e6c1d6e3dbeae81f80f0ff7729c556b08afb6ce1fa8ab04d3ecb56788",
|
|
20
|
+
"0x832eb508906baf2c00dfec7a2d3f7b856fdee683921a5fff206cf6b0c997cb32",
|
|
21
|
+
)
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
@staking("Solidex", Network.Fantom)
|
|
25
|
+
async def is_solidex_staking(tx: TreasuryTx) -> bool:
|
|
26
|
+
"""Ignore Solidex staking and unstaking lifecycle transactions on Fantom.
|
|
27
|
+
|
|
28
|
+
This rule matches each stage of the Solidex LP flow:
|
|
29
|
+
- Stake deposits: DAO wallet deposits tokens into the LP depositor contract (`Deposited` event).
|
|
30
|
+
- Reward claims: Claim tokens minted to DAO (`Deposited` event with ZERO_ADDRESS as sender).
|
|
31
|
+
- Claim token burns: DAO wallet burns claim tokens to redeem rewards (`Withdrawn` event).
|
|
32
|
+
- Unstake withdrawals: DAO wallet receives original LP tokens back (`Withdrawn` event).
|
|
33
|
+
"""
|
|
34
|
+
# Solidex Finance: LP Depositor
|
|
35
|
+
lp_depositor = "0x26E1A0d851CF28E697870e1b7F053B605C8b060F"
|
|
36
|
+
|
|
37
|
+
# STAKING
|
|
38
|
+
# Step 1: Stake your tokens
|
|
39
|
+
if (
|
|
40
|
+
TreasuryWallet._get_instance(tx.from_address.address) # type: ignore [union-attr, arg-type]
|
|
41
|
+
and tx.to_address == lp_depositor
|
|
42
|
+
):
|
|
43
|
+
for event in tx.get_events("Deposited"):
|
|
44
|
+
if (
|
|
45
|
+
event.address == lp_depositor
|
|
46
|
+
and "user" in event
|
|
47
|
+
and "pool" in event
|
|
48
|
+
and tx.from_address == event["user"]
|
|
49
|
+
and tx.token == event["pool"]
|
|
50
|
+
):
|
|
51
|
+
return True
|
|
52
|
+
|
|
53
|
+
# CLAIMING
|
|
54
|
+
# Step 2: Get your claim tokens
|
|
55
|
+
elif tx.from_address == ZERO_ADDRESS and TreasuryWallet._get_instance(
|
|
56
|
+
tx.to_address.address # type: ignore [union-attr, arg-type]
|
|
57
|
+
):
|
|
58
|
+
for event in tx.get_events("Deposited"):
|
|
59
|
+
pool = await tx.token.contract.pool
|
|
60
|
+
if (
|
|
61
|
+
event.address == lp_depositor
|
|
62
|
+
and "user" in event
|
|
63
|
+
and "pool" in event
|
|
64
|
+
and tx.to_address == event["user"]
|
|
65
|
+
and event["pool"] == pool
|
|
66
|
+
):
|
|
67
|
+
return True
|
|
68
|
+
|
|
69
|
+
# UNSTAKING
|
|
70
|
+
# Step 3: Burn your claim tokens
|
|
71
|
+
elif (
|
|
72
|
+
TreasuryWallet._get_instance(tx.from_address.address) # type: ignore [union-attr, arg-type]
|
|
73
|
+
and tx.to_address == ZERO_ADDRESS
|
|
74
|
+
):
|
|
75
|
+
token = tx.token.contract
|
|
76
|
+
if hasattr(token, "pool"):
|
|
77
|
+
pool = await token.pool
|
|
78
|
+
for event in tx.get_events("Withdrawn"):
|
|
79
|
+
if (
|
|
80
|
+
event.address == lp_depositor
|
|
81
|
+
and "user" in event
|
|
82
|
+
and "pool" in event
|
|
83
|
+
and tx.from_address == event["user"]
|
|
84
|
+
and event["pool"] == pool
|
|
85
|
+
):
|
|
86
|
+
return True
|
|
87
|
+
|
|
88
|
+
# Step 4: Unstake your tokens
|
|
89
|
+
elif tx.from_address == lp_depositor and TreasuryWallet._get_instance(
|
|
90
|
+
tx.to_address.address # type: ignore [union-attr, arg-type]
|
|
91
|
+
):
|
|
92
|
+
for event in tx.get_events("Withdrawn"):
|
|
93
|
+
if (
|
|
94
|
+
event.address == lp_depositor
|
|
95
|
+
and "user" in event
|
|
96
|
+
and "pool" in event
|
|
97
|
+
and tx.to_address == event["user"]
|
|
98
|
+
and tx.token == event["pool"]
|
|
99
|
+
):
|
|
100
|
+
return True
|
|
101
|
+
|
|
102
|
+
return False
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
from typing import Final
|
|
2
|
+
|
|
3
|
+
from dao_treasury import IgnoreSortRule, SortRuleFactory, ignore
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
swaps: Final[SortRuleFactory[IgnoreSortRule]] = ignore("Swaps")
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
from yearn_treasury.rules.ignore.swaps.aave import *
|
|
10
|
+
from yearn_treasury.rules.ignore.swaps.auctions import *
|
|
11
|
+
from yearn_treasury.rules.ignore.swaps.compound import *
|
|
12
|
+
from yearn_treasury.rules.ignore.swaps.conversion_factory import *
|
|
13
|
+
from yearn_treasury.rules.ignore.swaps.cowswap import *
|
|
14
|
+
from yearn_treasury.rules.ignore.swaps.curve import *
|
|
15
|
+
from yearn_treasury.rules.ignore.swaps.gearbox import *
|
|
16
|
+
from yearn_treasury.rules.ignore.swaps.iearn import *
|
|
17
|
+
from yearn_treasury.rules.ignore.swaps.otc import *
|
|
18
|
+
from yearn_treasury.rules.ignore.swaps.pooltogether import *
|
|
19
|
+
from yearn_treasury.rules.ignore.swaps.synthetix import *
|
|
20
|
+
from yearn_treasury.rules.ignore.swaps.uniswap import *
|
|
21
|
+
from yearn_treasury.rules.ignore.swaps.unwrapper import *
|
|
22
|
+
from yearn_treasury.rules.ignore.swaps.vaults import *
|
|
23
|
+
from yearn_treasury.rules.ignore.swaps.woofy import *
|
|
24
|
+
from yearn_treasury.rules.ignore.swaps.yfi import *
|
|
25
|
+
from yearn_treasury.rules.ignore.swaps.yla import *
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Ignore rules for Aave-related transactions.
|
|
3
|
+
|
|
4
|
+
This module defines rules for identifying and ignoring Aave-related
|
|
5
|
+
transactions in the Yearn Treasury system. It provides matching logic
|
|
6
|
+
for deposit and withdrawal events, so these transactions can be
|
|
7
|
+
ignored in analytics and reporting.
|
|
8
|
+
"""
|
|
9
|
+
|
|
10
|
+
from typing import Final
|
|
11
|
+
|
|
12
|
+
from dao_treasury import TreasuryTx, TreasuryWallet
|
|
13
|
+
from eth_typing import ChecksumAddress
|
|
14
|
+
|
|
15
|
+
from yearn_treasury.rules.constants import ZERO_ADDRESS
|
|
16
|
+
from yearn_treasury.rules.ignore.swaps import swaps
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
aave: Final = swaps("Aave")
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
@aave("Deposit")
|
|
23
|
+
def is_aave_deposit(tx: TreasuryTx) -> bool:
|
|
24
|
+
# Atoken side
|
|
25
|
+
|
|
26
|
+
# Underlying side
|
|
27
|
+
# TODO we didnt need this historically??
|
|
28
|
+
return False
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
@aave("Withdrawal")
|
|
32
|
+
async def is_aave_withdrawal(tx: TreasuryTx) -> bool:
|
|
33
|
+
from_address: ChecksumAddress = tx.from_address.address # type: ignore [union-attr, assignment]
|
|
34
|
+
to_address: ChecksumAddress = tx.to_address.address # type: ignore [union-attr, assignment]
|
|
35
|
+
# Atoken side
|
|
36
|
+
if (
|
|
37
|
+
TreasuryWallet.check_membership(from_address, tx.block) # type: ignore [union-attr, arg-type]
|
|
38
|
+
and to_address == ZERO_ADDRESS
|
|
39
|
+
):
|
|
40
|
+
token = tx.token
|
|
41
|
+
if hasattr(token.contract, "underlyingAssetAddress"):
|
|
42
|
+
for event in await tx.get_events("RedeemUnderlying", sync=False):
|
|
43
|
+
if (
|
|
44
|
+
from_address == event["_user"]
|
|
45
|
+
and await token.contract.underlyingAssetAddress == event["_reserve"]
|
|
46
|
+
):
|
|
47
|
+
# TODO get rid of this rounding when we migrate the db to postgres
|
|
48
|
+
event_amount = round(token.scale_value(event["_amount"]), 11)
|
|
49
|
+
if event_amount == round(tx.amount, 11):
|
|
50
|
+
return True
|
|
51
|
+
print(
|
|
52
|
+
f"Aave Withdrawal atoken side does not match: {round(tx.amount, 14)} {event_amount}"
|
|
53
|
+
)
|
|
54
|
+
|
|
55
|
+
# Underlying side
|
|
56
|
+
if TreasuryWallet.check_membership(tx.to_address.address, tx.block): # type: ignore [union-attr, arg-type]
|
|
57
|
+
token = tx.token
|
|
58
|
+
for event in await tx.get_events("RedeemUnderlying", sync=False):
|
|
59
|
+
if token == event["_reserve"] and to_address == event["_user"]:
|
|
60
|
+
# TODO get rid of this rounding when we migrate the db to postgres
|
|
61
|
+
event_amount = round(token.scale_value(event["_amount"]), 11)
|
|
62
|
+
if event_amount == round(tx.amount, 11):
|
|
63
|
+
return True
|
|
64
|
+
print(
|
|
65
|
+
f"Aave Withdrawal underlying side does not match: {round(tx.amount, 14)} {event_amount}"
|
|
66
|
+
)
|
|
67
|
+
|
|
68
|
+
# TODO: If these end up becoming more frequent, figure out sorting hueristics.
|
|
69
|
+
return tx.hash == "0x36ee5631859a15f57b44e41b8590023cf6f0c7b12d28ea760e9d8f8003f4fc50"
|
|
Binary file
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
from typing import Final
|
|
2
|
+
|
|
3
|
+
from dao_treasury import TreasuryTx
|
|
4
|
+
from y import Network
|
|
5
|
+
|
|
6
|
+
from yearn_treasury.rules.ignore.swaps import swaps
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
auctions: Final = swaps("Auctions")
|
|
10
|
+
|
|
11
|
+
YEARNFI_DUTCH_AUCTIONS: Final = "0x861fE45742f70054917B65bE18904662bD0dBd30"
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
@auctions("Auction Proceeds", Network.Mainnet)
|
|
15
|
+
async def is_auction_proceeds(tx: TreasuryTx) -> bool:
|
|
16
|
+
# NOTE: the other side of these swaps is currently recorded under
|
|
17
|
+
# 'Ignore:Internal Transfer' when it goes to the Generic bucket contract
|
|
18
|
+
if tx.from_nickname != "Contract: GPv2Settlement":
|
|
19
|
+
return False
|
|
20
|
+
|
|
21
|
+
for trade in await tx.get_events("Trade", sync=False):
|
|
22
|
+
if trade["owner"] != YEARNFI_DUTCH_AUCTIONS or tx.token != trade["buyToken"]:
|
|
23
|
+
continue
|
|
24
|
+
buy_amount = tx.token.scale_value(trade["buyAmount"])
|
|
25
|
+
if round(buy_amount, 14) == round(tx.amount, 14):
|
|
26
|
+
return True
|
|
27
|
+
print(
|
|
28
|
+
f"auction proceeds amount does not match: {round(buy_amount, 14)} {round(tx.amount, 14)}"
|
|
29
|
+
)
|
|
30
|
+
|
|
31
|
+
return False
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
from typing import Final
|
|
2
|
+
|
|
3
|
+
from dao_treasury import TreasuryTx
|
|
4
|
+
|
|
5
|
+
from yearn_treasury.rules.ignore.swaps import swaps
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
compound: Final = swaps("Compound")
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
@compound("Deposit")
|
|
12
|
+
async def is_compound_deposit(tx: TreasuryTx) -> bool:
|
|
13
|
+
for event in await tx.get_events("Mint", sync=False):
|
|
14
|
+
if all(arg in event for arg in ("minter", "mintTokens", "mintAmount")):
|
|
15
|
+
minter = event["minter"]
|
|
16
|
+
minted = tx.token.scale_value(event["mintTokens"])
|
|
17
|
+
# cToken side
|
|
18
|
+
if tx.token == tx.from_address == event.address and tx.to_address == minter:
|
|
19
|
+
# TODO: get rid of this rounding when we migrate to postgres
|
|
20
|
+
if round(minted, 14) == round(tx.amount, 14):
|
|
21
|
+
return True
|
|
22
|
+
print(
|
|
23
|
+
f"Compound deposit ctoken side does not match: {round(minted, 14)} {round(tx.amount, 14)}"
|
|
24
|
+
)
|
|
25
|
+
# underlying side
|
|
26
|
+
elif tx.to_address == event.address and tx.from_address == minter:
|
|
27
|
+
# TODO: get rid of this rounding when we migrate to postgres
|
|
28
|
+
if round(minted, 14) == round(tx.amount, 14):
|
|
29
|
+
return True
|
|
30
|
+
print(
|
|
31
|
+
f"Compound deposit underlying side does not match: {round(minted, 14)} {round(tx.amount, 14)}"
|
|
32
|
+
)
|
|
33
|
+
return False
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
@compound("Withdrawal")
|
|
37
|
+
async def is_compound_withdrawal(tx: TreasuryTx) -> bool:
|
|
38
|
+
for event in await tx.get_events("Redeem", sync=False):
|
|
39
|
+
if all(arg in event for arg in ("redeemer", "redeemTokens", "redeemAmount")):
|
|
40
|
+
redeemer = event["redeemer"]
|
|
41
|
+
redeemed = tx.token.scale_value(event["redeemTokens"])
|
|
42
|
+
# cToken side
|
|
43
|
+
if tx.token == event.address and tx.from_address == redeemer:
|
|
44
|
+
# TODO: get rid of this rounding when we migrate to postgres
|
|
45
|
+
if round(redeemed, 7) == round(tx.amount, 7):
|
|
46
|
+
return True
|
|
47
|
+
print(
|
|
48
|
+
f"Compound withdrawal ctoken side does not match: {round(redeemed, 7)} {round(tx.amount, 7)}"
|
|
49
|
+
)
|
|
50
|
+
# underlying side
|
|
51
|
+
elif tx.to_address == redeemer and tx.from_address == event.address:
|
|
52
|
+
# TODO: get rid of this rounding when we migrate to postgres
|
|
53
|
+
if round(redeemed, 14) == round(tx.amount, 14):
|
|
54
|
+
return True
|
|
55
|
+
print(
|
|
56
|
+
f"Compound withdrawal underlying side does not match: {round(redeemed, 14)} {round(tx.amount, 14)}"
|
|
57
|
+
)
|
|
58
|
+
return False
|
|
Binary file
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
from typing import Final
|
|
2
|
+
|
|
3
|
+
from dao_treasury import TreasuryTx
|
|
4
|
+
|
|
5
|
+
from yearn_treasury.rules.ignore.swaps import swaps
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
CONVERSION_FACTORY: Final = "0x8E6A115bd8e24d2D86A1AacCC56221e5Bd4577ba"
|
|
9
|
+
ROBOTREASURY: Final = "0xEf77cc176c748d291EfB6CdC982c5744fC7211c8"
|
|
10
|
+
GENERIC_BUCKET: Final = "0x278374fFb10B7D16E7633444c13e6E565EA57c28"
|
|
11
|
+
SOME_RELATED_NON_VERIFIED_CONTRACT: Final = "0x5CECc042b2A320937c04980148Fc2a4b66Da0fbF"
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
@swaps("Conversion Factory")
|
|
15
|
+
def is_conversion_factory(tx: TreasuryTx) -> bool:
|
|
16
|
+
# TODO: track the balances that are held by the conversion factory but not yet dumped
|
|
17
|
+
from_address = tx.from_address.address # type: ignore [union-attr]
|
|
18
|
+
to_address = tx.to_address.address # type: ignore [union-attr]
|
|
19
|
+
return (from_address == GENERIC_BUCKET and to_address == CONVERSION_FACTORY) or (
|
|
20
|
+
from_address == SOME_RELATED_NON_VERIFIED_CONTRACT and to_address == ROBOTREASURY
|
|
21
|
+
)
|