Skip to content

Instantly share code, notes, and snippets.

@tuncatunc
Created October 30, 2022 20:40
Show Gist options
  • Save tuncatunc/0f3d3322f9dfa5aff336e28575434c92 to your computer and use it in GitHub Desktop.
Save tuncatunc/0f3d3322f9dfa5aff336e28575434c92 to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.7+commit.e28d00a7.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.4.22 <0.9.0;
library TestsAccounts {
function getAccount(uint index) pure public returns (address) {
address[15] memory accounts;
accounts[0] = 0x5B38Da6a701c568545dCfcB03FcB875f56beddC4;
accounts[1] = 0xAb8483F64d9C6d1EcF9b849Ae677dD3315835cb2;
accounts[2] = 0x4B20993Bc481177ec7E8f571ceCaE8A9e22C02db;
accounts[3] = 0x78731D3Ca6b7E34aC0F824c42a7cC18A495cabaB;
accounts[4] = 0x617F2E2fD72FD9D5503197092aC168c91465E7f2;
accounts[5] = 0x17F6AD8Ef982297579C203069C1DbfFE4348c372;
accounts[6] = 0x5c6B0f7Bf3E7ce046039Bd8FABdfD3f9F5021678;
accounts[7] = 0x03C6FcED478cBbC9a4FAB34eF9f40767739D1Ff7;
accounts[8] = 0x1aE0EA34a72D944a8C7603FfB3eC30a6669E454C;
accounts[9] = 0x0A098Eda01Ce92ff4A4CCb7A4fFFb5A43EBC70DC;
accounts[10] = 0xCA35b7d915458EF540aDe6068dFe2F44E8fa733c;
accounts[11] = 0x14723A09ACff6D2A60DcdF7aA4AFf308FDDC160C;
accounts[12] = 0x4B0897b0513fdC7C541B6d9D7E929C4e5364D2dB;
accounts[13] = 0x583031D1113aD414F02576BD6afaBfb302140225;
accounts[14] = 0xdD870fA1b7C4700F2BD7f44238821C26f7392148;
return accounts[index];
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.4.22 <0.9.0;
library Assert {
event AssertionEvent(
bool passed,
string message,
string methodName
);
event AssertionEventUint(
bool passed,
string message,
string methodName,
uint256 returned,
uint256 expected
);
event AssertionEventInt(
bool passed,
string message,
string methodName,
int256 returned,
int256 expected
);
event AssertionEventBool(
bool passed,
string message,
string methodName,
bool returned,
bool expected
);
event AssertionEventAddress(
bool passed,
string message,
string methodName,
address returned,
address expected
);
event AssertionEventBytes32(
bool passed,
string message,
string methodName,
bytes32 returned,
bytes32 expected
);
event AssertionEventString(
bool passed,
string message,
string methodName,
string returned,
string expected
);
event AssertionEventUintInt(
bool passed,
string message,
string methodName,
uint256 returned,
int256 expected
);
event AssertionEventIntUint(
bool passed,
string message,
string methodName,
int256 returned,
uint256 expected
);
function ok(bool a, string memory message) public returns (bool result) {
result = a;
emit AssertionEvent(result, message, "ok");
}
function equal(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventUint(result, message, "equal", a, b);
}
function equal(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventInt(result, message, "equal", a, b);
}
function equal(bool a, bool b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventBool(result, message, "equal", a, b);
}
// TODO: only for certain versions of solc
//function equal(fixed a, fixed b, string message) public returns (bool result) {
// result = (a == b);
// emit AssertionEvent(result, message);
//}
// TODO: only for certain versions of solc
//function equal(ufixed a, ufixed b, string message) public returns (bool result) {
// result = (a == b);
// emit AssertionEvent(result, message);
//}
function equal(address a, address b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventAddress(result, message, "equal", a, b);
}
function equal(bytes32 a, bytes32 b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventBytes32(result, message, "equal", a, b);
}
function equal(string memory a, string memory b, string memory message) public returns (bool result) {
result = (keccak256(abi.encodePacked(a)) == keccak256(abi.encodePacked(b)));
emit AssertionEventString(result, message, "equal", a, b);
}
function notEqual(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventUint(result, message, "notEqual", a, b);
}
function notEqual(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventInt(result, message, "notEqual", a, b);
}
function notEqual(bool a, bool b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventBool(result, message, "notEqual", a, b);
}
// TODO: only for certain versions of solc
//function notEqual(fixed a, fixed b, string message) public returns (bool result) {
// result = (a != b);
// emit AssertionEvent(result, message);
//}
// TODO: only for certain versions of solc
//function notEqual(ufixed a, ufixed b, string message) public returns (bool result) {
// result = (a != b);
// emit AssertionEvent(result, message);
//}
function notEqual(address a, address b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventAddress(result, message, "notEqual", a, b);
}
function notEqual(bytes32 a, bytes32 b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventBytes32(result, message, "notEqual", a, b);
}
function notEqual(string memory a, string memory b, string memory message) public returns (bool result) {
result = (keccak256(abi.encodePacked(a)) != keccak256(abi.encodePacked(b)));
emit AssertionEventString(result, message, "notEqual", a, b);
}
/*----------------- Greater than --------------------*/
function greaterThan(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a > b);
emit AssertionEventUint(result, message, "greaterThan", a, b);
}
function greaterThan(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a > b);
emit AssertionEventInt(result, message, "greaterThan", a, b);
}
// TODO: safely compare between uint and int
function greaterThan(uint256 a, int256 b, string memory message) public returns (bool result) {
if(b < int(0)) {
// int is negative uint "a" always greater
result = true;
} else {
result = (a > uint(b));
}
emit AssertionEventUintInt(result, message, "greaterThan", a, b);
}
function greaterThan(int256 a, uint256 b, string memory message) public returns (bool result) {
if(a < int(0)) {
// int is negative uint "b" always greater
result = false;
} else {
result = (uint(a) > b);
}
emit AssertionEventIntUint(result, message, "greaterThan", a, b);
}
/*----------------- Lesser than --------------------*/
function lesserThan(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a < b);
emit AssertionEventUint(result, message, "lesserThan", a, b);
}
function lesserThan(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a < b);
emit AssertionEventInt(result, message, "lesserThan", a, b);
}
// TODO: safely compare between uint and int
function lesserThan(uint256 a, int256 b, string memory message) public returns (bool result) {
if(b < int(0)) {
// int is negative int "b" always lesser
result = false;
} else {
result = (a < uint(b));
}
emit AssertionEventUintInt(result, message, "lesserThan", a, b);
}
function lesserThan(int256 a, uint256 b, string memory message) public returns (bool result) {
if(a < int(0)) {
// int is negative int "a" always lesser
result = true;
} else {
result = (uint(a) < b);
}
emit AssertionEventIntUint(result, message, "lesserThan", a, b);
}
}
[core]
repositoryformatversion = 0
filemode = false
bare = false
logallrefupdates = true
symlinks = false
ignorecase = true
ref: refs/heads/main
DIRCc^�!V��c^�!V��L��������NK��ܿ$�h�i�$.deps/remix-tests/remix_accounts.solc^�!=0�c^�!=0�D������b 2�H"��(���,�Dz!.deps/remix-tests/remix_tests.solc^� �@c^� �@O��!ng��R,M@R �1�MG#�contracts/FundMe.solc^�')@c^�')@T��n�{�O汀�V���љ�L��:contracts/artifacts/FundMe.jsonc^�%��c^�%��S�����*�f�Cu��H4o ���(contracts/artifacts/FundMe_metadata.jsonc^��,IG�c^��,IG�W��X�y���d��M�n6����dU�XDcontracts/artifacts/build-info/3ace93f3fbd7d696309a93da803120c9.jsonc^��, >�c^��, >�X��X<4n���?���ܳ��1��Dcontracts/artifacts/build-info/78762b319291438519a6cb53d0fab1c1.jsonc^��"E��c^��"E��V��B|ѳ��!����}\�auDcontracts/artifacts/build-info/8a611204f782f010928bf0b786b4d228.jsonc^�"�"c^�"�"^��H)?ש$:;V�&u����玽sDcontracts/artifacts/build-info/8c78390ef1065fe0ad45571de725a34c.jsonc^�)9��@c^�)9��@\��Nud�*�oa���>E�{b}!SNDcontracts/artifacts/build-info/8f5c86b9835e5d6b2a8d0f3c5fb92bf8.jsonc^ܻ%x�c^ܻ%x�R��&�� ��m˚qjk����jDcontracts/artifacts/build-info/91277b1e3c4b6a6adf9dceefe4def772.jsonc^�� ��c^�� ��[��N]�f�2�3[���Њ1C�5B(�Dcontracts/artifacts/build-info/a64b01470bc36b093be994cd31e45d81.jsonc^ޣ �
c^ޣ �
U��>��?�T���QT�Ɲ��,�@-�Dcontracts/artifacts/build-info/b3f42cd9ebd3fcbeddcb8d44229783bd.jsonc^�X8�Uc^�X8�U]����K›,��߳�](ŭ�,�~�Dcontracts/artifacts/build-info/bf21bdf33e857cdf3f3a64732a96ac87.jsonc^�"���c^�"���Y���-xX�6�H� ����R�Q �Dcontracts/artifacts/build-info/d0048f545e4a88b60a364874be5334b6.jsonc^��+�5�c^��+�5�Z���bk0z� <����Y����Dcontracts/artifacts/build-info/db38273259c58c16f3279b6bf0b8799d.jsont�?��=—����EFWFU
x��isۺ�_�_���8\�i��$'�sl�G�����)G�Ly$*��M�{�[�+�Y3�E��=��%�t���Alj�?����‡�����x��}���k ��˰�èND�CY�O�Q[�;t�<OC����{�xM ���$#�� z��G�� ������ �n���\Lk:�G��ٗp��Z���8썂0ڟF�x0��awz�NZ&p��(�q\��c��?��e��o؋�����8b�$Q���iRf#lr��۴D�����5�a���/"�������~����&��� Ph"܃6��]� c&[��%J��ض*5����pg4Q�B�B' s�h�r�#i]u� �@6� %��l���H�&���7RE?� ��������OHAf�N��)F��"�t{aj�c�5V\�Y6��R� � �+჉d)� ����I JlbS�
�~6���m��л�ۊ��]�^�/i亿-%ُ��^6th.�(���3��xH,�dQn��/��L��M�l(�b\b?� @s,ĹEM�L2{>u(���!�t�.���f4D��'�����] ����g��c�t�y�SF��Z�����ჰra�������@_md� ﮮ�/;i %�Od\��V���}���c�o.�qr�K��\6#� ��?n�]����f�����kY��\]�Y��F������v�u~�s��s}syf��'mc��0Ix�yݼ:��c�^g؜
ɺ��y3����(ePf�#u6:���ux��G��l�oij�[���Ӽ���y�h��S٤J�`f� I7p�_� "�3���̓ �I��%�qzI�2��)A����42��$c� #�9X:M�L�͕�aEZE7�팻MV�kgU��>��Q+-�T�d�dq���,�I-K��� V�( R-Š����F%­�D�Hq0�Bڥ��f���V6��ID�K0�`TJb91
Z��Eښ�5L[t�����ב?̌qe�`h^�O�!q;W�K�&K1FZa�wr+q'Y�;�x�J\[^��^^N��(��r"�˵=P
�O�V��xbjl��j�L�%5�/Oޜ�)8G�筟�6�ފ:.�9������K�y��ng7�:�j�E��t%VB��D׼4���ͳV�|��}|d�esԲq�jf��1oe:<@���ɿ��g���2�]�v��y��.�0'.��j�ҧ��'*� ���b
Q���;����%{�0�Ǐ�A$���ä|�g������j8��c�t�8���(-��*|���fܲY�������n!"f�Ʒ��һ����[�E�]f��!�������> z����Z��6�� @�$蚷�(�y{ޏƏ����?�_�~��L�ZE�F��p�(q�(��QN X�"O?�%
Lvq�Ȳ��> � �Y�F{;���I�6٦,�ak!E� ����pJT���#�n4O��.�t<wՂ�+i5�نi� C?�>d,���� Q2�V+� ҜXWeg��?�����aԦ�d#M�?�3��(���X7?O�G���P�N�=Q�\l²�s1ง�d2�Aw<���E�ÆM�Bh�C7ci ��d2��D�<�.N]�QA�8 ��Kލ�u$�������Ѥ��ʓ���p\m�J��R��X��p��ЭF4���A/r��6����-Q'0�5�� 씉/<~,�L��3����R��1��A.*�Ty,�vY(%���'�j��2��p�U���������=Uu�ŭe\a�`3U,�c�@w�Vï� t픩Qj֙�&�ukk��B%���tY�u��,�r j'U�+=��O�u��P�%�ʀ��4Ps��W_(�����5k&���B��dS|mbԠ�KL��5Ź�dy��<OO���a į|��/� /��&]F%~Ro ���ʰd{�.���0cx�4���}�5�P[֕e�u֠6b���ej��`�1�t�XbG���*��W[�V�t���(��n�8*��'�ʔ?w���[M!T�Y��렦e�|���eV�"t¶�t�K�s�E����_
X:'�Y�C����j5'��]��%.7a3J��͝����*��� j�k��-���V��! �aZ$|��Ƨ�@U��&V �@�������b�����C���#G�*BZa�`��9�J��K�-mE�ɢ���j<�:�����V����&���S���=�M��W��,b�x�r��grk>|��.ɗ�vU ��3��H̺%i��5�v7�Z�oQ��|y�Ñ�n!�`ٖ"�:؛�5[��n5�\;���9���7�>�FzpIΤ2Wc� ��L��nB{�p��k����Ͽ��D����r�57�[�I��D��В�r�-o�X:`"�2�l1���� �.�q(�G�`��H`d:�Ō��m#% ��rN@��N%
�X����W��텂��0&�N�'0f�w�����S�P)�ץ(6��/�feINe��E\���[s��U��Z��΋oH�a<]DZ�t�S3�/�a���A�n�f��^�Cl��M���`�������i2�r��f(�j���V��E��+�pq�m���]|s�Bp��K~�����]؛�)f��N6X 0�nw74�h+�S%\\�6Nq>�v3g�)�����&Ε��FSB�b{p�N5��Ҥ8��u��˒��[˅�؄��f.��]JV�]��8&�p��-� �nǪ�-�Ȍ%w�����=��z���-�;�S�^lC�L�N�˒�m)����R�Z�6���؟9pZ5E ��E�H.p����j"��g�O���"?iҚCD�O
�u���S���f�b7�Ui�J������d.�ӈE�� ���0
�0M�>�q�z�m�.������_xy��~������K��&&kx���8V��� �׬o�FQ�,;�_?D">Z͍��e�
����� a��*��� ����A�|h`� ��-��c�Ј�҃@�@IR��i�?��畜� ɯ��,�0U�^��`!�Ͼ��U�Đ!2����焱iӄ�~���Cc2��0�����sZ��"�B[�5V����z����V]th�A�������<�a.�1�t��Ye�OޚE�s�=�2@ADj� �E_��vk�Z��|RkA�^�χ:��C�(A�ҋZrS�~���Կ� d�J/�����_�r?]̒�����X���{/y���e��>/�u�\ֽ�e�/7\��p�r��� �/7\��p�r��27\���+�s�u����g;�K�]����H�U�[.T�˷υ~�Y���B�e�G^rYTʻ�<uQ�'o��� ��(�n�<uY�'/�Y+y{�'or���`���SH�`���E]��u�CP^��Ot��>,���O^���K<uM��.���X�'��z�d�'�{�P���1{�p��T����)�)9��i
���>B�-�1�S'9<u��K�)xɱ��멝ޞځ�%[�=��>m��O�d��_� ��}����yj���l���"Omg��1^��Ke��|�|c詷�^���-�:�)z���zO��W^���KR�i�?��Οt&�������7z�Џ����m����H�ܰ1Azl#���2��ߨN87�Q�u H�A�~�����G�0C'.�u ����>)g�R0ҡ܇�Q��Q�Ɠ�Ӂj2��!��V�&�_��� �x+@��a��K-� :0�ƥF�5�;��^n��E��tѹm��H�3�"��w?���ފ�:�^z�K �R�J��f<_��������o�Z薤
x�+)JMU07a040031Qp+�K�M�+��a�K�z{���C�����?��M �@!��$3-1���!r~���گ�ڞ_xH����-\�� �
x��=kw�6����\M�Y�c;ߔv{ֱ�&;N�Fq�g|(�9�H I%qs����$AI�)�n���׽�o< '�P�-Y���볽��v�RǕe�뚎5Dz��쨆f��몪 ��!��ԉI��ۣ(� ���=��qp�hH���� |RL>���,�<�oʙөc�V��gs���L�f��`ReL<׋�H)��<�()��~:�8z�r�o�1M3Y.�)�ϟK�����{#�G�� ���aWz����~ı4�f"iSi�4�^|��g�K�P֑���M�S���7�'g2ǒ�K���+��7 ���#EI/��=���.1ԥ�W�?��(z�F��i6N��4s��$+F~j�Kq �Ds�1��&9�`�Rĸ��Xz|fՠ`��+��z��◗��^�����1����:��:g���W�Z�~0���ϫ�A����,}�����K�'4I��h�9����Wȿ���ß{& 8���8�؛z��0����;���p�Z�,�Y�y B8�L��m|�=�u��{��8Q�a���� �C�s��Lq�N��).�����\!!�|��jy2�4=��gtwEx:���w1..��x6 ��B� ��n�Q1�Ɖ��։q)�IQHA�����7!m�ߙ֮��,�c!lN�$u/�"��)C �w�ԒM��� �r�(�.���aB��K�������$9�%aH�������ş
���ĸ�?eV��4�P�o2c4K��{�F=�:]��]M�%�b{����������M>��/�|@RG�dB�����"�z�Z@�b��&�k>�y�A�"�|�C���В]�2 f���tv?�����z;��s�i�D�G��O q<��@fĜ�Z])%Q�v>�L̄�HE~(�i_�I�O�GzAGIQY;��F�!4�����$p�}ҧ�PJ�#o�j��YS���T
X����F�r�)�V"�������x�Q��<�*���_��
<?��f��Z��PVU~M�:-��@�Cc�:���rN�%�)ړ9_�5ZИU�2��~(�y�"kT�4�:��F(kD PLT�Hh�T�v�u8yT�
�����q]O3��N.�$�Z(QfwA�x� �fh�Y��ՇRoE�\O��.�/+A��<���nN �]Մ� j��2z�JH��HW�jE�QS˔�
�(!eq=E���(AC�Z� ��8ߴ5qTJ R�Q�P+�$g�����h���ْ���V�˨WM_L���-cch�[楲DrT݆Z^.郪Cύ"�9�PSI�*�
���Qe�*����VWY0�]��9J����x~�]����¯ސ_��@-Ԑ_�aA��l,�nȕJ��e�J��*�.1J�b@M�q-�(ȜϨ��,�m�9C6�V�0��!��d�[�y`-���t 0��i)O�����iP�1��e��4s�b�Ri��V�u�a�Z׮:zuI�,��ZvSѳA�m��˱�ҶR���Z2�*b��������:�h4�QW�VCGd�V�R3��򜵠
e�kn- �A���n ��"#�h�"Q!�� �� ����Ȧj��)�Ǧn����壆Z�:�S�����B�"U���SI��B�d0�@��uYI���X�X��̿�I�.��Q���)��ꖢ E�s4�6Ǻ9�M�vLY�-�Q]�����,l验��Vm9�=�̑
�����P5dɦ,�@��+?��ʦ(󉬽l:� �7gd������`�N��A�
�O�M<��wx�C�'K\�`�/<�+�dȚ�ÀÒ�n�t!:J���P�! ��E��A!G��߱:�y}H�`� oh���`x�j:G�4CV�n���@y�� }(��n�' T �HG�X�?t|m!�� ��W �F>k߂7�$��p�.�M�TCv�$j@�*i�#��SdK��-������s,dA�� 4�+��J]K�R�k[!�Y s�P��`LH�c�==�'�gD��v..��A��G��o�߾�K�'�翜�_���� $�����--���,��囋�YE�{�����=�;��Ko/�:�%+�&(2W���Y����߹�w����~�^�x�>����P��Nޟ ^��/���r�i���ۓ���, ^��1� �!����?g����wv -Ҋf�h�� t�XÂbg}���B=I���͏y�f�%�8Y�TBp�t�dm]&�R�?9ˉ1��' �H��J=�`GiE*)���ER�L;q� �9
�>�I-{?yY�1��J&�(�TQ��S��"����I?����}��V(q�B��,1�b�� A?�!H��J������6M%/1�}�t���7^.7�e$yz�PS;q��GF�df_I7�`��?==� 8����S�Ǥ���H�� b�O�>Q���g��͗V�Z��}j�Ot��f����,�K��P��.߼�cJ �y ԣHQb��L3�f�ƙ�LV����QW�U��?na��Ժ4�Is�:�K�~a8ZH%��qxwxt7���,���|�� �)�q8�t�S�s�*Y�����]a��8
�����8��;!��\c�5�h�b�:r\�m+v�=�@� ~2�9Ė��h�� ����C�:�6��x�w׳8�&�.�3�uQ�!ح�ݟO& {��{���~>�l�uDȩpMW"�u���� r��swM�#�ؿ�o_a��� �>+�5pW��N��N���)���ž�J�\�T4}Z2,�*�8��*��:>���d7����xvȗ��ݹ�LuQ)�얘Bߋ@�pI�a�ޕ`����j��
��� "zEލO���`j�Ԫ��> ��Z��U��yZ"����*� �`���O:@��T��Z�^PM�Y�uşO�u�Jȝ3�[�Y�Qv��h#�MI�A��c����V2o�����K`�7cd&�&Y1R��2��I_O���'< �����Y�&���"������xE>�*��� �e�(�w���ӕ`����� Y�6�/�-��@_J��X RV��� �k�<�BN�쟬ˣ� ��#�#��Te+.�u��E�Qc��H@ e� �mR��FY�u=[�]�t��]���8��|�Ǟ�ѽե
ٸI��2���2h��R���L# Q6U�3�-f�SR�d��K"�Mz#��uzc�؛�Q�l�*IrQ ���U�������KR�mz�[츠I�)AV��d'��(}%ٙ���d�܆}%�D�q�2v<!��%��՞�8oIq��5����${�Z/��ZLW��f���HD�F��Y���^
f`%C��4gUΩ���F54 E@H4���<T��̅�_��:8i�Ѩ���R�s��h>lY\eK�
����;ێע#۩7�����L�Cf���lff���&k�[ �kMҚ�6��.6G퇥�g���2�CЇq�ך�P *zz!1ш5C�g �W�?��L(ջ��1�*wE�l��JB�\�;��-�?h^�|;��r\��%[���`�����Z=$��<p�$�lB�[E�|W�4�=�ӆ�=��"b����l&�#H)Oy�|L�8�!��q�MM{�ϭ��Onv�|����U�b��C���%���[�LC��"�M��m��zR ���4[�;\�׻�fW�����t����++��VcT�!.2��"�һ�# R:
�����+��WG>�����~�~Q���d��vͬܪ��-��KJ��>R�
s|�E|�+|�N�V��'�=�!��~�c2
C�7?(��V8����[
�j��[��Vá4�&g8T��cϱ�|c� ���x�� �]���C�v � ��� �R����}��샼�M +�C��� UI2�R~����\�D9B�yy����cYѤ{y���R!���l�O�8����A�F�E��(�l�E�ˍTx*'��K�|^���J��mL왹<�����3��#Z 5� 1[�e>�?�,q�tj���orK��I� o:%8Op�i0����v�˷�^�p�˷�S������og��a�N����׊��S���ȟ#x&'�k=r&�݃�Q��h�Y|=�t��n7�%��@&�ʥ�>i��o�{�[�4)o�}����,{�3��%/E����o {�k��R�ǀ2̂^�a�� =�!C�~h�c[�{��^�n���-�=���G�=���ۓ�c��z�&��B���&��z))B��4a��=��ޣ �=��ۣ+�=�b�c+X=���K����Ȩ���M)��|e�ͭ��ɴ^2-�KƸ�j�����"�Y9�;qyF�C|��ًOz�EG7��pac��9��IJ ��}��A�L��d1%
�/]�Τ��г@������J�Jw��;N��1�7��C��H�9AM�E�1��B����S:�'�ij�yanRa�hh�A�Y�D60 f���-�cn �%�C��|l"Qh#E��-��I�7�F[�0/o ���-gnS��^l[����Fj���.��=�3���=k�l��3���ޥ�N����c�r@�\\��'�@��\Fӥ�����m��8XY��Xw���i���X�E6L~wGd9�C~T#�U��6̕J�ȥt�j�/<!��7M���w;"G9�|�H�6̏��OΔ)�cSV8?�^F?r�ٴۡ)�N�<����e�5�l�� Qj[:�_ߊ�&���5��`YS�>x�� ���po��;n��t,�6ĶEf��*��f�>7%IigPC���@�*�1.�=�Bu�k(�ck�Ab֔���hʒ���ʮC��Ϧ5E�M���m�{�6LM��lG�luZt+��a^���R��3�iB7#>9�4��Y�)l!�n��!ߦ���}��]�1%��u��;���(��L���6b�N��5�y��m�B���� P R���l��26��l҄��HW����:�4�.7eNʢ��šP-��N+�&F�h�\�鴟�y��5<$���%>�cU��І�-2@uH�3m��u,P�E�5Hզ 2�����Xið/ꧬBV4CY-/ص�:��ʫ�)jV�AQ�U��f�!j[2(M�ZǠ4�uHբAQ ��V����x � ��j�{鶔J���l��s}M!kV#� ��ݞioѷ�ΚCn��� ��k��5F��)TvӮ�k��Ӹ Qj�&������6��% �tk��b�� �T�H�OZ��'tCh1u��o��'tC8��ܦ�j
�=�e�G� ������"�Ќ������uM �`z�)d$�o���Ѓ�F�Z��1�s� h�FZTw[,}Z��^�ߴ�b}7��WZk�MMͲ�IQۂVn�*�U�!j[x7Ek��wSZ�T-yFy�` �6�xS����u��u`�6�n{w�ְϒ�Ov�ˋM�A��ԲI�,a�e�;��lqj+��߶�0ܳ�b�VA }�]^=�H�e��9�;���u13�Nt�Ѕ����)Y����r��)��<FS+HO��!�⃦�wG��A�Vt`����  ��j6F���T�}����븆���tCB��nHo��5�J<�X�hF���,Z|�.��fZ#ck}����5U��L�Z��p[�?�W�d��W�8� �����a�����y��I��
�v��H��W�Q0�y^u��Fn��^�:�ul��^|�˕eǼ��^eW�r�`�^|wՁ��l�Ɯ����!1"/� !#�I��je��no�5�RZv�ܑ[hqr!M��/�"�\�� F 8�d���DZ�я��J�����y��j]���2y�p{�MĪ3�ҳ}�;� ��d?�Q= �~���`B��WFY�i� ǃI�����N�� ������]��Ia���V�f㈵�bo���������cga(�}Ҫ"ˤx���l�t��G�?*���~�����U� &?_���p4�]G7\G_��c<R4u������aِ���c:�4)Dz6�~�� E���oG�����fj�e�44�]E�:&�K ���,glic�E�RƚO#�+؀:�:�a�3v�2=�y:��"B�����1��jN�7����4 ��O���˟����W� ���}Y
Rs@o��8w�@�9M3 �Cv�d���|2)�i"�|��i$�S2 ŋ>R�rc���K�В�A~��C�7�Ʌ\����k��);���,�J3�A8u��<DQr��_��1�J����Io��K^f�$?��Y|�$W�|���4{t,���&�f��ċn��C $/��!�D$G"� �#9��h$wt����+�7���UG� ;��"�K@rA#�?��>��4�A�"��?
f�?JZ!Zx,]L� EK�q<�@j����8oh�)��3�������$�r��3�쌼ߨ�US�E��(�%�p��\fY�y0*�ƞ�G�G��"q��1���S���D':�RS����B�Xlj8�^2�1�p�ۥ��/� -�M���!/���DֳB|��&v�Q4��О\�^v���o�˃��]I�侧��w@_pW�� *��q�s�}�H^�!�:g^�!z��]��_%�u��5���w ;%3gn4�����L(����gD���"I�}��a9oq�z:��{1)�sFX����!x� �/��e���] [�&�Q��t��r���1�O�~W/?�H!N]#���0\)��^*�q�V�0���cZ[s�paȰ��"�7��2?;���\�f&���Lu\�=?���8�ȋ؍�$DH
���Wj2bZ�����2Ε9O���-q1�Oh�w��s1Q�+��q�5�K�yN��W�� �4�H[�%W��j&��� �&NHu���\�0���/�5��l�TJ{ڒZ�<�[dԒ4�E�D��hz�MĂ6un��umZ/ �[�T��ܪ&\1D�Ep\*��K! ��m�ɍ���^P��7���<|���"+m!+W�dC���ɨ2Q`D
������ '�\-м���� ?�nn�*;�� ]E�%"�.s�Up�y�ҋ��O��K�3�"7M�.R����Z0|=��^�]6��k2��%A#�]Z�O�cd���8=C��*�EH�aQ�5-U���P��:�q;� [�ޮ�*��;�W� V҈\!����� �KQ
�����v�hr�}���Rk�c�,4~�Lx��㪐��g�j�3��*�&�x�����!(��+��.|˸���Yw�YK��,r�����vM�X�
�$]��N�x=���5����m�x��w����X�\*����I���p��$m�Ɩ�?E˕�e���_ng�?�Щ3���柊�pdU�ٗ� q�YU�����W��
#��x>�`!�K|��J�-��ڄ��qc�$yp=H�>J�T��6�#Y�&�J����[0O�MKuP���2�#��M˒����j���6nV��F�+�y& ��kks�({�!�*�����I� �̽�
hd�z�'x��۳}|A��YH���8�Bk��Ͷ:t4�dA��Q��6��X�D�Pt�?�qi�E�ӂ�*.1�Ͻ�ȍb�Eӓ�R�zW)��6\,�M�n6X�zܢQ@��"��&�X�Q��A
&�=
�>ya<wD��"��L7G�es�����isi �����<�n?[,O�$i8m�_=R�(�G�z@]����?LԀN
x��<kW�Ȓ�~��o>�\pZ�a���&a��!3wB.�%���ȒG�f�}���h=06$3;�3D�ztuUuuuK%�mIQz��_�ont<�ӗ:�i芭ʖbɚj�d ��S]4Ŷ�ȝm@����'��j'�;�|w� ��G�F�#�b/ (�]��������^�%��"�9�,R� ȷ��q0K�P�I�{���P,�3�g�' �;I�� �c҅Ns ���I���4��9��d���7�Hԗ��.@xKi
lbi�s)�Ap��K���P�4\,ͽ���s��3� �S"y�t>^��E�gs,��(�S�]
�e������?��$�/�T�z)-R��i�o��h�GE�A"%�d�A�2n�&�y�^.�@/w�w�WN���w�:��b)��ďȯ���y<�򡾑d"�/w+�$#��5K�w���ҡg�C��)x�����P��Ÿ[nt�$�����"���o$*MM:|��S��d��Fi@���mN�&�k��y��Uq�с�O�r���ï?og�W��u��9I��\���:�=��JC���%�߀he3�2��d���A����Ta�MB��%�V�,����{�P��*tK珫��G1�'����"�?���6�r3��Ӹ��+NW�&�*��sֺ� ��Snh � �𝲙�TG��q�@> .@��/�4�Y���d�ۚ3d.�����,����{��ۢ�Keޔ���E���-�>���V}^t��j�5Y��F��v�ҫ�tΩב-t��m ]��%mu���Jo�t!���ZH�<�dM�I� �^�k�D܈�� d0�>mY� �sbsv+N�K�YNCA'�)Ls�3�>섋�-"IA�!,h8aT})WQ%D�A5�֦*�cj�bcݖ�d����&��RT��,p�X`�c�!v��J�\%�m��bє��_�.����T;���U�i%%�r_5�
뒨4&__�Vo4Q��/( Ղ����&����!��I�#��%��m��P��{�)� k���2cV�e����圭hU��4���S�@��cV�F����1�/@�Γ�^ә�!��k�e ]7Ԟ�(�� �XS �ѧXvMc����e+Sð]� �0uS�1v ˆ�,ْm�byj��f��TwtUS�Ld ���BR��b�-��F�& ��Άt���FgF��N��U\|/��LID�,�hC�?���@��H:�POQ5�=�i�Й�S�g�jD�� mW-�w�NII -�
(:�N�'w���AF�t��=�g�������l��ި� U�e�NE*}J��Z�Z��v����'�d���RC�����t$���>��G��|,K���G�'ށ�������q������� G�3i|2.P ���{��@�2ퟌ�%4����O?H�@�á�Tآ��=� &�?����"�7$�Q�N%��&�NKI5h��ѐZ_�P�)rƯ�=�� ���b�3�R��6�=}Od�$X�m�Vm��U �a�ӣ��
#�A�T4E���ޏ����R4뀺�H?�C�8�h{=kO90���4�q0fx��Ќ3x�`04���� ԁ|�y끾_�V��|;{��ei:�j�w�h��+�OagQ���P9t��?4(_�z���fzl׬���Ⱥش�d� �&~�rl$By�V�
�m~�z���s�����vD�;*�h�4m�fw��p�l�U������y��K3Xk��]�*�
E�6�T�TA QNDp������"��d?�٬UT�r8����R����$�ݕ@ Ж�C�!rدvO���K�'�d�QՎf�qu�`���*�X��<��W��J�uY�U���P��AGp��#.K�)�YJ.����ОF ���):,��3�I#�3vǓ�g���� 6����(�I�E�g�:�~�i���W�g�|��p-�4<�w���{��Ӌ��1�����|��/���#���,���8?L�w�����cT;�f'���o�{mͦ+:�Skw�m����]�uŌ�R(���jf��^��h�"�|#��}C{43�U�"?�Uy�w�O=m�ӹ?�ZFO��ɻ�o��z���["?�}b{�~�Ӆ2�/�j��%�׷����y� � CI�(�t��m��&z4�\{��)�c{��?<��O���K�v���+�'/���b=���چ�ع���?O�y�}Dc���ڽj<�:X{����T�]A�
j}T�G4tW�wh����F��4�c�Z}]��)�c����S'n���ۺ]?j�n�����pm{P�I5 )�?o6�/�4k�j� f������^���� p�o���O��N��h�����n_�~ //������pf����\��z�p�%Z�*je> 7{����
��{Y��t���wNky42����B�ʑ��6��������}^��ɹJ�+Rg8��$on}��"+��%_��a��K�sώp�B�ܐ�{���;_1Ro1�9Ϣ�cf5wp�k�.X��*Q���b� ��g6>�v��qP����(=��ϵCݕu�5]EvݩBEQL�z��H� �*��s Y�zȱ�����eM���;�|& ��v"�����f��:�Nm�p�+�홖�`հL�5W6���ZS�A*��-#��MK�]״ ���J��k���?��?���>�?�����x�1S��_��MG�~��O�_�������y8�U
�`�#�!�<�N� ���<�� [��(h����oY�I�(d��=�+�o�0�
p� �~�'���:�c3��㄀?�qV�#�p��4�|^�+yE��0�Q��\Z���L�B<�J{x^|_�mZ�n$a���b�F'`�J��G{� Aw���-B�\th�,��U��sr ��G�������0�`'\�`'�BgaW����*I1xm�p��a4cTs:8Z�M���^;;o���u-`�B�ku��z�iUTV2���eb�N���, ��s��o-�-�?�F�)L�(5�E�4 k���X,��0M�'W�JG�aD_׿�ۡ/�eo��^66+�I�xIA��u0�Y6>^pxEE4ǝւ`ƧH�`�Kh���r�O dm�o Qo��F@�3������R�/b�p9,��Z_Q��"����ڙ�;��u
��C��j� "7ΐ�k��;^�f"Gy���^�r
����|�:MY�|��\���ـ@��q����+̽�R��yG ̙���}��:��/�=�x�h��UQ*�քn�5�r|=1ծt���/� �����a����
˩2�rl�v lE��o�s ${i+�� ���!C�"7�<d�!���.S/H ��n>J�I��BS� ��w۠��4[�c�(&h���s�1��܉1N�%p�џ�_S'�/AT�4-���=�)��kj�t�y<k�nս�������"q����͑�4У��IDlM�4K7Sn����&׼9G�1$�y�\���;��<�2�6Z���ꭉu�hj:`f� p� ����:��^H��M�����} ��.njd��
��
��ZM��%׌����[�H%�z�nN$s�&v�`!�M <�fW�N�+r��x�"�=UV�6�1�2�û*�p ϷmAJ��M���O��O���-�zt��f����|S�Ҿ��Wp6�K��H�&-.�2��%"��,t�<��6����V��a�j��VC�ͥ��5c�"W� g��B=i&"O>�ƪǧ��h�������W]����uY�E�h&@%���ܷ�7��(��z6�૸b���3��L�� N/.�E/_�������;&@i��K [��~���[�ӎ��j��z˗�"��#��~ÛW���+[���;,�I0��kZ��D7�� V��VWHR�"�Z�fh����f۪ik���`��*��\�'���&HC1"���:���� �H���!�5���/]k��5����O�W���|�V��+d�+����Z����2����U��8s9ve* 7��ΊE��_x�{��Y����A��Š�m�������˄mG_�g٭KC��׆�5��'�V��c�G^\�F�g5�'aF��T�T1���eS�J6�~��N�b'd��F�5��>iQ��*_��{
/JRܶ(�b�M4�00��V��i
m����<�c�4&�x �O��W+�j��u�?f`V�_M����ܼ�?��]
x��}is�F���U�n����2�|7��$��ȶb���D^4)lH�������>ݍ�4H6�Rb%�I���G�Ϣ�d����?�9�`( lϲ5GFE6� �]_7 K���{�C�z=�⹛��77O�h�d� f�� �DORz?�8 �W���#�(8��i��߽h>�#�ھ,��r.� �w0���t�Nnr�?Hoq-��2�P�U<xQ�Ʈ�&O�/C�:�y!-E!���S����O�� z�҇�`�x(�z��*�
?�T�@7�4����LqR�K��������G�Pו�A̗s�<��Gw�DRJ�/O�B��"v�sWJ2*���,�G�(�]��K���,�0U SZ,dz��@�'���A��*�K�����q^w�޺��K�~0�n�Ji$��DJ�c��_r�����3�#�E�6��g�^���M�H9e��k���<�Q~|��p(] N?�{J�Aa�����j�xD�H�I�,}�Μ�7�{]Dq
���䆷�KY2F����N��.
򙺉4v���F;����^
�~ʄ���P�e�U� ��B��R�Ẽ�Q\�
1���M�Y���x�V�,�i�e
z�f�/����x0���ҏ7I��ì��J�8�_�(u}7u�'>��G^��x�A�F���ܽ������h���w{�$h>��V�Ʒ)�"U��h1�n���[
��D~i�I�du�o��J����/���!��X����Ql�:�3F��%�����½�� ��8/lW��1E�^9I��W� ̰��v�3M��E�#Ք��ˡF��8��ʾHo)�Cw�.C sNeL畇i�AQ�%����iԬ!��Bp�߂�<(��(ц����E�R��p��e���-�߁k�)��`�h��� Ij����#黧�ͱ١G�g]>��϶�8�K���M��% Y/�gMݠ���v�a��O�� �n��7��sg3��P�A�3ŸRwzM��r�X$�4\���?YD R�%8�G�r|M���Eo&��La�1vL^��e��(]������P��^ �wd�iƆG��Ci�>����$@(�*돋��M ] �"�5�\�������ȟ el�H/���0H�����)��j��4N��h����s1o��5:���^��:
�V� u.C6!��.�f����q�Bf�eF��<�^* �`���]����f��b��’X�s��ƴ�(ch(� .kADՆ,}�E�WR�-��o���ʙ%��(�� !.o�e�<� �fZC�y���P��+À�t����A�[�7苠�j0�N7䣦���m��#��N�5�lO�W���Ӣ9� ��s��_AT�,)�WZ����$��RQ7��n����m��,��v�!d�_5��^���;C�P�f�@��ʒ��fUZp��v��ïY�V
����@�*� 8�#��j}��q���VTg�p�uzts�iN3u �5 ��f����{mД�|PN�����o]�ki0hՐ��7���-�t�Ѩb�kU��U�
���& u�;,��� �Rk��&4��"]c���oUXw,�X�@�Z*��UA7�G�����MY]�Y'��6tTV�i@ZC�i:C��X�}�%[��Hb�f:&�2�l:��R�"_ko&hW�������@v�~Z� � =Z�Jǰ�� �m��/���4ZU�>~Y*�[���V�m���6� d�(U�#�V�s 7wa޷@SV*Uk�aY���WL�ݻ�wT{�(�d��.�U��R�A�&C�UdS���"C���U]Z�:����Uy�VqY3��Ą���v��}�qִTt��3i-sHM�����M���D��@>m�љ1�}��5Z�Qf*��x��w� �*F@s�u֣b����U �Y��{��㡱h� �T O<�Q4�;�OU7�sMvp;aL5���� �zV��L��9Z�U�� ���`YK�uZ��`�%�5��2YW���v����{ O �j���
UY�Q�� �uHtu��h�����L�D��@^i������j�*�?��À|���C�1<��``�V5���yp�B������o��W�;�l°ưUB�lx��h���.8_�p챮؊�l]C�kMT�Q|M�4{2�ײ'��يg��e� N���LM�@B�lɲ��r�ˣ�z~��yP,����rz������)
Q�ȿ,v�Kг ��-�����m4�_䑝:&�dʺl�����,���28'P4��e�'�16 ��Ǵ�����'��=ɺf*��C{Р6��h�:���Ȱ��|m�>5��1.a�8in'
�l�6��B���!8�y� Om���V����І�e�Z�����>����&w�G�� �dڳN�OLe� �3�L\$�XQ<\�R����I}U�U�W�C&O��?�1TE��[5T#/�0�v6�:��_M�C�kS�'v��Z{������d}��S1�e+[�xTp�רQbM��.)\L�q�vg�쎐�|l�����/�"-�a����ݛ�g�M->��%-;9>?������t��B�^^����RM�ӆ�_�_]�dڑjo�~>{�����]��.�\�m�V�@�R6?yszv��⿙Go�޽�Zz��xy*mD�N?=~w|��g�����@9�z���� X��m��NVٟ�� ��~*�;����|fʧ��5�rɖ�\[�{�X��0��?���D3���8���J��b�[��'k��Y�>g�A���tj=�p9p��ڂJ^�d�%Dx^�`�t W�O�wv���n���=�k|=��֪�����yvR<T4ܥ^JV9��c5���mJu���R�iMLtF)�SѨL�M�8}F9X@QOk5I�9�1~ܾJ��1"���ԊQQ�1bĸ<?��v��ôM���R<&=�`����Fc� ��ص��Zb ��,�1��,��g���ѸN+�j^���@ejG��lL=`
��dz����Vp�'�>%^'v�Io޾���k�ϳ�7'?�8�|��LR����K�x�V:~}��ݖ^����- :�HqW8J�߀��JώϏ_�dʇ+�ϟYʱe?7�[9��˔�yR��u�����������6]6����P�FxG�:�[cT���Q���qu��%�v�Ql%�'^�V��S�;�o/����Wd�ݗJN?(&�h����(��Ed+�̖��KEQ������n��W!�8 <�~�p��5������u��A8��( �f�0���u ���#2h��]d�����u5�����R�1�U���� D���u}^��<�o�i|��J\����JXM���l%�J;��z곍Y���FȂKGV�������&�� �d�MB�*��Cݵ�2v�B��P{��U�-�DZ{{M&��Q8Mo�G�����ը��ܽr��d�*�`̼e ��� !s���$VR��Kc���5Se����O�AF��������,5:dk$�GN��Gs��
�Q�9�^Z��+�#��{#� �� UU����"��ILCܼ�1�Ԇx��S���l�v@,y�lC���s�e%M`��#O��x{��7�|�4�b�} ��q�r���Vc���8{����(��ƣ�^���5�;��B$wp���Y(�% �'H�� �g���3�LX�Ł�"��#����8ڢ�Y6�U�"|�=h�����"FI�����#S';P��޷El-���xc��e{�0�9�R�pV��e�ڃP� ԷC��;s��<���^�<�+��!OSw�|�?[$ķk����"t��O��]��B�7+�kD�R���N'��O�$r6�֠7qdV�J�R�?��&5� CW����V �©�b6��9�Bjx�ׅ�Gj�N-|ܤ��U5�`�����P":.|@9>�q�ض�~+�"�xH
S��e�(�t�7�m�:�SV\EI*%��L�e%���T}7�?ݯ�_���n�b�[j�Ah�j���{�^�
�������H�Tb��� �'���b%>��(��鶣�i�����0��O���IdZcKc���`1) F_|^Ϲ�#K|��/8��G!�<�� ��qǑe�\!wd >N��fE���;���(��[2�6L7�}1�gp�gZ��`}��� ��tϹ�\���jI�w6ks�6WuC�;���h�F[(ޚ�&�q��/�؉� ���G�����G����b�������x����V��1���hb�M�w�X!s��}���M�2?��[Dǔ��ś���s�^f��ÿ�T�i�C�7��" W';�c:C�Ʋ;�,�Rt��m{fI��܎ʡf;���$��%r����\"���g��m9[�^�7�<��%bwj���t!�j���� ew�[i�k�����#�/?F���ɔ�$�e
l��3��P.��:8K�[w���q�s����l~����D��n�dKd��KV�ٟd�D�W�}����S���ѭ��T,�m�ܸw�}k9j3r�_쬖]H�z��I���qz�!/�;H��� 9��P}�G�������{r�`�I|��Û6��on;o$|�߽O,>>c|��=r�(/���d|_g8��U���/n���D�N(:�"U]��]��3�5e���;���,s�q��w1�O����_w\A�o��8��B�^��Nh ��1���;_����x�ۧ�h�-�Q}Kn�M1��d�D#��P��j��h[wP�&tO�w�ڇ��"�t�|�y}|�5�{������_���㻙�'���l��tHy�>��3~�ی�8�E�������z�M�6�r��� '���۞@�0� �;M ����薓eB-Q�C�`(j�#����0_��"#/�������ś<���� &KO����`�� ���H�'%pLJ��0/�ݖ�J0����S45+����m�z(~1��^jN 5F�����}�bR"�W�XJ����EՌ� ~�*ɏ����>����cN����EA�F�xY���DR��gaՕ�z���U����������j3��vYȶa�O���S�b$�a)�@��g����vk��F<�O�D˩�����"A��68��[��'37�.�iL+��@̾ާ�uE�c^v���O�����p���f��ח�|}� 5 ���|}���7�|}���7�|}���7�|}��_Z~�W�0?��0���|)�1��ZTvߣ�.�Lk�Qg4�v�n y�Q�>e�B!�[qD/���G���Q� �Y~4�����������1vDn��;NG�~���_)M�up#r�^���\ 8�w�孲>�ÃP�N�K�F�ң�gD/r�����.bDo�+HF䲔�cD����#r���V┝T��D��s1���=�6�g�F�٩QvDB7���i�=�2ʎ*��)��R ?�SjF����8Ft��ndeGt�ۈn�e��Fپ�Q�Q�s�8�;&��#��`�mr�5���(nA�-FtMlD��Fق�(��.Z����$M��,I�9��v�a���M�˞����E��ID�"1�Uf���g�-�*@Vx���܃4J�Y^
�ҡ8/eƫ�s��НUQ�/gz��� $����%ee�l�}6Ȟ����' ��g����Q��(��3�h`���ر<" S�n���]VF��� j�b*V�lfq����5�vР!����f�b�}�͞L]���n � `q� ��]�yv�@;G��;�UI�5u�DJي9���iߒ�_ ���ݺ���`�Ԯ7�����[!3�< ����:�?��7�_t��s�tx-��'f)��o�6V�|�*��sVk���
�X��!��k-|[!�6 ��kj������m�������l�!�؞�r�n��hf�HEٲTy�=��m�-����r�m�\�x�'v�s�{.�|�~��8����2�O�����;D�*i�3ڟXIk�;�%�����s��v�ݣ+i�7�xey�^]���v
GA���NA��5���SA7�Vv�{�CwP�ޢG�l�W> }h�r��G_Y[�y��زH�cf�@YDq�5?l�f�m�۬v2�.�ԫ>'�vfS֖�B�3�+d�������_��m[w�z�&R��r{̫����?� :��n��w pC�zsF�S��(���w�gΖs�Ulag�Af�����m q�ڍO�=�I�]��X޳���r�iϾR�N,Z��Ѓ����h5�i��k֊0�m�ũO�� �84S���{�� ~�?��:��ծ�!ѕKQ��\(�–���E��s4� ����-s��@),�>�U�D��,���}�uG�':�E�����eۺ��a�(Z]��mkP�I�� z7�=NIwq&�
w�MI?$���]x�]��{�����ؠw���6A���a�NL���t��]�P��W�6�O�X2'U� ��Jt}^�t>jf��;T�+CUk�!�R�/�ٝ��W-Q[�ڐ겾#�V$�����A�&~e��e�+6�
BVu�Y������I�Ɵ��5���уG���ȡ�����+PV��P���B�QZܨ n���x[0�����>QȺ-y�p˰�s� k=�3q�}q[p�sO���;�25�k�z� �V$<! �S�NY�{��ܢ"�#���ns�n���UkS��+��HDQ�Q�#�V�V���մ.���=���7G�^��*�=ZQ��@�U�3d�@�Q[��.��f)�S�fi�\Q�]v}�5�j�܄ɒW���>42������+��_���Di)-������O:Z!������1]7��6�E������rZ�� ����mBbŒ�0d�~���A7]����q��R��Ooс���R���6�k�d���Q:_n���E�q:u������W�ׄQ���K�.c/Q�ª�<���V�ι ��/��f�}�qv���Ea���9*w�]Q���|��z�0N}/h�*7Á�n �m[��_�¯h����b���ѾO���~�[ OZ쪿��LN v��Lz� ��o���%R�}CJ}R ף�[����(+6e���K����%۷E������b��
_5*�ܮ�� #�e� lם��cV ����x_�0��B�C����,���֖�vY����X����-�_5��U����v�tio��_����k �����],.�7.��Q�p�I�%��TW���h�%�x��a���Z�M�v��%a�=��=c��C7�����O���β��|�f�[�z۬&�U�كf��=���_�g���hћ�j6_�[��걅��h���ث���?��B�'�w�5��lҰ{�~��0V}{M��T1����n:�n���������yf�'��s�0-�V�ޮ:�����ׁ���
Ϸ�O1���K�?�l�8��|��q�����;����a���7�������7���GaL'�}׃�2�=ƀƦ�w
� �A�>Ɋ el˨|/f(�����k���x�|�P|5·�6�B�r5���#�ߡ|�GH�}Yv����ë�� �Kw�H��h�Az{5�`�b����q~�OA����\&-1ML��B��)z�L����.�[w<C�zz�(:�R���v0�;u@�~��Н���[��0IբydQ�K���M��G�ȣ<�-�,�������ӥ@�u����?]�OP��4�ͩ�]��;7��4������ �W�(�f
�J}��̨�,
}��F0��8@����Ƿ)�/M�&7�i��$��h����\Q�� ���A�x�^UY��c4w���_?���&+��|C���F�����!k�g U5����
��LˇШY�:QMב=��MCא�� r'��׳��F�^�3�����Ob����S�s\״�c�C���=q�c[��.�Ϻ�Y{ȵ|�7 �����1��;����x����O��������>F?�?�t���o�_���@��� y����c��
�|�Rׂ�g��F1�{ &�8��`��Ծ��7I_���,�
��C����?�h��S�d����tP��f�̢�F{�!6/�"^g69����o�u���l�<ő��
w �d�z|���LY���Q�f� T�hj��3���j���@H(#F&�2"���_����8�H0!�p��G!� j�B�� mpF����#�`�s7MH3I�� ~q��5�./N�!�� ��"�Ia�J�8��|)%j���Α� A�HZ,dz ��~%P��ƒ�cAH��Ct�KR7��$�:��9�� �C���%�_ �4����T�$Wt����˓�חg���T�O�
�d�`v$]̐ %I7i�H�擅��(������o ����ɓ�%�k
�œ��_��Ws�%,�0f�'��Epy�EioY*�$����6O�xO7NI�os.<Rf���ʣS�!G {ZKw ��]���Z���E��^���ьu{Y g��b�β��"��A�y��wI(y�-N�~KGK�)sUȓ��a+��$�u���~�l��zT�>�}�H^@���A� ���x�A{ij)�PՆEG�_-q�硍&!E�4�$&��"�)����V����1��2Y�f�/��f�p�4^2(P�Z,gC����VǮ`\!�
۲aO=P��f�n͡<�s���{����V��� �0�`Sa��t�C��K4QFqe��V j� 8�"3'��6C�69�D�C�eU����3������U���y��X���2��P��NFy�u�3I���&�r�V��n�%^,p�J���n��R�+^�q�ճ��X�T~M�[�F�T��(��ʲ���߾�{��e�iUy�� ��a=ء�'�dA�!7����+� ��6a�V}���� .>���^,c�.�y'Mc�H�H�oѿ�(����3+�s���±͡ڋp����kC��^ק�R!]/#�s���F�6��$A�SH��u���G�-���T*L|6��߸,TUk��f���]`���كڼIbH1+�PQ���%��F?t1�� �F��Q��WZ���h�1S��4��N���52�i)��@��h���`�����M�1�,�r�[�/F,���ҳȅ��jy S=FC�S�����i�w+e�2�� c���9���5���6w��w��8��5�Y�K�QS3�8���*���U�͵�0����s��8�XuyE�{0�IxuQ:\Qn(IA����h
��E*�7!�x�@�T.��2��~�)����Zc��K�1�55塻ҚŌ�ݖW��l$�y��/vFu�G�f4pIG�l}�#���40o�c6���{�ދ��^dN��^�T%UNA�������<M(s�k�e��V.|��J�§4d3�Ȱ&c�B�����LYq}��&r]��@4��X�5F��Z�7��1,[U���^�rH�t58 ��穀�ЗP-�7�l�O�0��z����=��|��7�eS�������Z�ٟL�� �OM�j<�CP ���a��"��q��E��ߖEk�Y��6{/��n5�H�&^��$���u�����o���^�T���Σ��z�����(]�a�����-�Ԋ���x�)�������غ�g@k<^���y��)l��s�N�Yä7t�Du� NEg����h�!7Ub�Ʒ�] ( W_��b����ɝT|��&ܪlk��$[K�sl�����j�4Ö���m/�)ތnsWK��Yy�>#�ѠJo��/6�TԢ�sxC��9`Uև��9�\�xS�Pu�h���ޞ��������y�T�Q�����|��)�qP_s�7s[���m�q[=i�C������Y:�y�R�c�K�g����O�
J���<ːԜ�.WWM� �ϊe��L���n�u*]Sr勍D*�uDd������]wu�
x�+)JMU��d040031Q(J�ͬ�OLN�/�+)�+��a��q����~�S��ٯ�N>�@�=�%��P�;vNcNR0z����Ə�7t��I�)�
x�+)JMU0�`01�����
ݒ��b����V��g�n���� �\�?�kw�
x�+)JMU042a040031Qp+�K�M��*��c����lcC�H؂o3/�\�s�����ԒĔĒD��_w����M�w.���C�$�s��&@��T�������������V>��^���_9L�VY_ f4`
x��=iw�6���+8��3I�v�����<�V�L�č�t:uF�"!��D�$�����%Q���vHl���XLf�D2dd���ǃ�����Rϛ��b��n�����TUL{bL�hb������xFs'!寯��pv4Y�3����L�@��G��:���<�< ���w���O��by9��,� �wЛ9��ҹ¤�(����ܐR��e��8-x�s� �7�?]�s| @�L����������_G羋�=� ß�8�Kϟ�� ���8���L,M�p.-c@�f��'�^�|`�4iei��|9��~p%�wfK,���ftv���s5w�8��B4 Y�C]��2��g�����K���hHII��d��¹q&��*�!�:A"%�4�ͅǸ�����%�ː�����w�V
_G��k?�2����m�G��<�:f��F��lJ��3� ���Vp.���r�{4�0��%I_�_�h�5�I��t�$��{%@�R&�&���Fr�&�B��`Gx�@ׁAWN,M�׿�n30�JN�)�>��o{D�n��-�@�
 �?��Q!w8 t'Z6uf1>d��2 ��h����2�����6��z��3{<�9q�c����K��w���q�xN�)~�n�N���'!�,>wn�"�����ޜ�1�Of7��M�����T/f� ��s���+41.g��1��Ip%��PH A�����7%mfSrK���`ia :����"���1gN�Ѵ^��P�����ef��A�T�����"k�IJ�s[���9��_��|��$@{J��<�}n�e��e��M� �f��| �.��e�/�v_�LI�ٻ��c���D�D��C�QC��h�G$�uf3jȋ�\��_?U �S�\�i�/���'�#B|Yf..Z�OR����>���1��!Y/�SPs.3k�Ȱ.n��'��taA� �՗2�l��D~Ĥ"?� i_�Y򐐏�&����H{����#hCY�Y�xI��BI��81��)Vn��o����`/�Y �^Ֆ3&mD$ �uY��!�D���ylU�E�Q�L��AQQ�+2������
�u��Fo��ih�YӞ���&��9ܢђ�l���꼹&�6d��B?-�M@�A#�5�(��$�\մ��'�JY�8�|8���i���)ę�X+%������-0+Bx��P�m(����/��^J}��Ȁ�r����P�Y:�q��)�7.�g���:`�Y���+���L��>�Yf_5U�㭎��ܨT�5�/�
WMH�j-��,բ����U�_�MV��Rl�U�أm���R9de� ��nIQ�"Q�f���똭鑪��kU鰎zM���t���*6��U^*k$G�m�U��>�:��(Ӝ3� �4�V���kUը�Elhls���7m���z������[��z��-~����Mj�-���*��Z~��Uj�/BC�!��(�5Q�ZVY�9�PI��-� dB�2a��?��d�[�y`-��̗�`�;�.S�Zsu=�2�^k�7A� )6i��2 T���N�
ݹͰ�ַ�^]�7˲���V�l�r[i�rl���Ը���Ze 7�=�[;"[��8�*�j�lժUj'Vu��T��q�m%a6�,kU�$��"#Y��D�хf؆f`�45���L'��NM�0 K������OU���
��T]/PO%�Z
����q��e#���ccY���H�T�@G��&2 S�-E�![5�u=�3lOêaa��UG��t�ady��*�';�kzX��F�`�kh�ũ����,d"��n/�b�/��-�����3<Y^���a~�w�9 �F�B ?S9�__�)�p���pu��/إ�-�d �0ఐ� ]2�M�";�� MVL���@!G��ߩ:�E}H�T�r�d��W!N��%�lJJ� �Ⱥ�O
��[7� B�nV�[T��o�x,ٜ�u:����5��Ȧ�Y���)vH���6�u�RjX�.��j��IRmY'�؂�]��S�� RZ$��E�%[��P�ki�_��Z�k)�BJqm+6+aN�jE � iq�������h��ś�w2�@��G���G�_�J�'��oO�� ��7��l��᫗��B�H�����{5|;|��� G����E�d��q�O_� O_^��%��~�������LZ�n�B?;y}2z��t�:ϑOk(gE�_���4��U��iO tF�L���S䴽��kh�U4�G�fe�3�;�'��$�Z�7�͚U���=S ��S�퓭u�tK��� ��ORʑ���v�V��"��<I�7�N/YI��R�R�X�KO�8^hC�ߟ�UnP�2���:�����PA� !NJh&�f��Yq+���@�A7*,z��*��A?�!H��*������6Me45�C��S#;4��7�U$yzdP3�r��[F��nn�I7�`;����|O�"<s���Yٸ��'�Dȟ3��`}&&C� 1g�g���l���O ��Sm��35kM!D8�nиI��d<� _�M�B�5�Sj���eÿF�9����<w�3��8 Y}�?�A�'_y��+��kC�,���dz,ۥT�� �n.B��^��C.�nߑm>i�D�'8�B����\�B�g�9E�FW�����d'�\A ��l�us:�L�ɮ� )d�s��ٶb`�Q=� 1�l�����܉g0���M�q�m��xF7�E��&�Q⸿��:�����le�����k{�\�v@�&"Tӕ��ni&���Q�܌���W���0��g���J[�)��o~��yW��D��r�S��i�-���H�
��>� �ӝ$?-gOf!��/G.ݩc^]�˕L�Se}/-�%'�wS��x�>� *(�Ƣ���I�W�^m��m�}S��&{d�be�kTm��Mh�0;�6
-¸L�}�[J\<�Y�S�z�[A5!fٶ�`9�4A� wδn5fd RD�n��87#}���c��w�Vro���]��%w����12D�,ʈ)�c�Ӵ���L��a
`�A "�,���|E�|KҀ�
E�&�* �~�m���p�;2K�����ei��w�;� Ym�v�/�-��@_*��X�2�섚�l �[�<�\O�>[�G�6|�.�lո��S���<��N鮑ݪ"!+�p]8�2dk�v�����J� ���ؾ����gx�>��^����<�2l�i��&�ՉZ�,��dʦZ~���2s*���ަRئ7"�ۦ7v��I5���$�Ű������B��= �&)�ا��Ǝ� ��aC_I��ٟ��$��� }%ٱ�c_I@Ȣиs_�8���ے���i��������Z� J���b��}#��~;��p$"ڠ��,o����D����7�YUp�an��Q-MB�,��i� �*�M�BЯ�E���h4t��Rmr�;�x9�X\eO�
����;�ء#{�w�����L�]f����ff�l 'k�{ �MҖ�6�g/6G݇���` ��<��OV�a_g�B������2$~�"{�����q/J���D����Ț�{ZI(�[tG�����;�+�y4��zf�F�o
���N,}F���[�;��d���"y�ȑ��>�h�|M��h�����ĝ��&8�����Z��I�l�4�!ɗz�MM�ϭ�MΟ��*�lpdz��,��:%� �l�w���h�,��wRv���ZP�L�����5��m04���}Ǧ��|�^Y�tw����ec�1��,�o|�A�]��A�/�M6�b�����Og�}G�_��A?���\2���aVn�H�|�~�/d�8e��_g=@i��Mc>��m�㐌��1����5�*����=k ^d�-S��p(��Ɂ���{��s,;Ϛ~��Gv�D~��}��?�@�t�Dlw�)$K�Hۇ���CI�m�JXi
0�'u�c8�J�y����>A�0���(G�4/���v,/�v�(�3[)��S��6�<��#A��)���?��Q�x�����TN�Ǘ.2�:���ɕF!ۙ�3s�H����,�1�����ch��b,�)��`�K�3+��SX��Lr����99<{���i}n͗sg��;s��|9���A._r�r�˗�\�q��`@NWU����O��39�_�������h{�����9N]�#��T+����A�� �� ���)��~��% �#��~国�觅���} 7`rP�k8��S@�_c@����@�ˀ��e0�;Rt�m��]��|�� ��A��j@w��o���A�A�P6yE����.��~�[r��]P��[d�Y{dPM��f�l:u��~�\� �5�CpZ�~�O���(7�NR�0��~�!���Ӑ���m�K.����]�������'a�̊�$7��"U��������>"D��X�X��k��E�D&�ʧ�¨�c�0���5S��.�L7{�É�YF����f=����4��n@d��j�0�w�#8v,�Y�~N��wm$Jމ@�(y�}o��ݨў%��{��i� g�)]//������Vj���3��3�3��}�,�יqv���ngO�\�W;A�ב{�����}�� ���re�趂Ml��+k�����k���X�>�� �D�=����=��o�y�\��񟸔�Zm�Ռψ,�]�e�ݫ{"G5���9��r��>;S���MYe���X��0�ם]�{4%��������w&����%J]KgK��[1uDŽ����,k���~�n�hm!ܻ��= 7����X�}�m��PuE^Ս��`e�RK���@�f�1.�݅B �(�mg�QŬ�
��M�і%-1�2�݆*;�Mk������ �7 d#�=��iѽ���yqrv�r���3wL��ﳣJ�)�m����hm��Z~���xл��p�eSr_�n���=���(��L���>b���&k"�ڪ���$�[�DC�'�;����F���aL�t���v��x[��6O�U,.����)�J5U1V+��܀��V/�a��x�-�T��b����&���"��L��(�� ���j����B[��[�56"�v2\Q�<T�n�3�ZW�?V�^"h��*Ԅ�6�)-����^*܂T]� Cm~�bǰW8Ȗ�M���2v��~�L�f5��Jۘ�-j{2(m��Ơ��mHաAQ ��V����zzHzi�h��])�����h0r+f��B֬V�W�v �;��.��ҝ�����A�/Zoe��e��P�M���na�[/n�D�c��kB�7���@S����nm1sי��M�l�n5L�u�'tCh1u��ov�'tC<[��K��vw��O\Z3��r�"�� u�
�A7��!Z�h��,�oC�Gd �3���p��@B�g(�7F�U9[,}Z��^�G�m���n�+�F�b�]V7�6'CmZ�?��V����i���m�mhRu�⭸��t�maw���F�]������%������}N<�]./�]i�S�&���1�e�c�e�#P[����- �=�)����7���Ý]vu�3~�S��.fFՉ��0��w?%kWWq�@��c��ݝ�hk�Ѯ�����-�����A�Wt`��Y�.T�%<h���������K������r���n����ܲN5M��e_�,�k�4�C�GN�m�s�GN�m����a��O[��n��w���sqsQ�X?�x����+.�*�\g�]�������i��z����?��e�o�2? �岇��c��?��c�XB�yٻ=��o"��F������9���2a�9~�'?�Ę���2���&A����w2>'��лLhمsC.+���=RY�������{/tpr7-������B�S��.c���u��{����bV����y�ډ�p�%I�I��)��9>����^e���[��0��#��?����9#Y듛���s�kZ�_Lc�f�H���{�cB�N�Y��@� H�
B�x���b�v��w�T��� tî��������㩖5�4d8��Գ&��RW�4e�lϵT�P �LlW�&�1�zH�&X�0��e4��@��(r>�?V s�8�DW<GQ��5UO�����U d*Sg��X6l O��94��1G6m���'�DŽL���� ~� {9����W�o����Ӳ�������'��^�d���l_���V� 3�R8Ќs���S�,�ǝoX���'��|a>rBM��9K�9�����p9�t
R�+��ų0aN�K�niK�K?H������%iٲ!*j�����=Q�a�3��U��ص�/�On���=U�aT5r�:���.�$Y��U-_n�1��$�y����%{8���=��~�K���&Y�Sv�eO�L+˘���I ̌���(z����ٿ���� ƒ��)i��!ɓ�@b:*M��KO0����r2��kh�P ��lD.΂ɑ�i��HN������3pG���K���|sٓ�PŽ{]��\�ț��N�/F�3hP�^G�Gi+ĄK3�@C1��u�,bP�x�}<�+ZkN:��n�������Ih���^-`vN�/T݀��brI8bB�L.�,
�<t+W<�1�Q�HG� g<�(��p�[�T'z�R;�9� �B�1���2� �p���Ꮛ0-��'�7{� �m��}
��b��nJN�z��ɛ�ϯ0���-������K�+_� �a�oP�ÿ@�ǿ�%��`� �bs�̏0�^�9+^\�����7���w {��X ��L@BO3&��pXd�9� � �����|��܅E������|1�w�bR,��
�A��l�!��{O�����]"[:^��i���LF}��zb�����_�Z�� ��t*�:�'?���󐛀M��:y��ᅠK����.U:��o�ݙ9�kl{�҂�9�\� �/����!k��U.2����Y�JScs�c7��X)��򹫓K��a����L�6E��*T��Ω0���x ʓx�D܉n^g���r�4˴\K��ɰ��H�D��~����5>�y���ލ���M%R=���B�(��W�Z�O�]6]�b�D&�4����$$v0�Z
��s�b�9 )ʵ�,)��� ����L���i���˜gw�7��XF+�g��+����~7��d���k�St֬����y,�z�$_k�Z!���Ĝ�9��6�x�]���Қbk�a*�]�i�T�� mUqΊ��z�\U��Ε[�zU���nkIu L�b�2֋�2�V7�B2� ��M�3+Ƌ�sZ�ą�6��Xi Y�!'[��MmF��+R2�~^�����tH�B��7��ȿ�^����c���*�*���xT��}HW%F��
6�!Bqs���|���D���عH1�:��`�h<���ژ�����
zP,b����qz&"�lF!M&a(dD�״T �JB �z����f�C :�ݹt���Z�+�g^��Ɓ�F*Qh��W䎙���]K���׋Q��m��~�(N{��P�_��j,�:�ʃ���s5@�Ky��V��'�o%�m2�7j�Y����Q=��4�]�Vq͂[��Yk��.t����U� �i�&V@($���8��x��1��1y`선zF7�E���p���������THE@zHZ<L����H"��hlU�S�Ԓ���u�u�����C�ά���*�¡UIf����I�f�E��D7�^�P^��b�����|����2o+�M9�VRK�I��e�Dj��s��̒0ԪFh�B��<�Y�����h^&�^k4��ats�6�<z3{�6�qp���r�}�v�tĴ<��G-��%W��4��{��z=}m��6J^$�8n"o!�B"k}Q|�����E�ap�84�kS�J|\��(��Y���x�
l����l�F<�vɆs/Ŧ��}�Gx��T��=i|A�l��S�yYN�Z��^�-�d�rCKv��^����܇0&��A��9N*;��<@yE5�x��en��,[�|����J�O%v�x�b5n��p#�'���k|�ju ��5�Lw�����d�"�ʪ���rkJ�����ɭ�gH� 2�� F�0���I�p�,�X���jy��r�.)��F������
x��}�w�6�����mϙ��8ߔvz>?�&;N���vw�%B6��!�$n�����$AI�)�n�֎D<��}����4)�ii��~������s&�رF��������9�:���d�j���;��W�(�y)�s�,���F�`�? �I� �*�p���
I5��9����(����8�͂�kP�X� �/��7���w�I��h�AzKj�>�'YŃ�8
���������h^�JqH��\�8{���΃1���$�q_y���e~��2�neG3e���� ��c�3+��.���̂0�-f�y^+���+A�|�8� ��ػ�yJ��B�_Bu@�r�����e���"Sʹ��b4 Ƭ�+0�HI�)O��u�ޭ7�=����J)#��R��4�V�Y��z9�\{t���>�fPq��%������^�g#��b�g1��"��Yr}�ʿWFΡr�; ��)������/���
W�NA���u��!�x�_���S x�F)^x�x�H# ‹����x��ЁO�^����a��`���Ɵ3�?y�;����H���;&�8%����`���R�pH�N�m�M|ȞƋ���T��x�Z/R�� <�x��w�ǃ|��}<�yI�c�?f��U�GA�0�2é�{�W>��'?�߉�W$i��Ͻ[@�|�?͎����' ����ղ�m�Ǒ��O}<�F��?�v7�_*dR-^ ����Z������sW��J܌��i) ƚ&�=�@[�9{z�0��/9C�a�ͨ#��+3�ꕓ��z��)1x�.Sl�iz;�{d�����aD�Q�R���v��8���3���*{���<Lk �����r|
��u�_S�L� ��~ B����� {T
�> }S!.�:��B�[j>��&���^�n�4 Ei����#���͈��'�C=T�/���<{�)e��/��$`j"�)�����[����~QU�.3��!��'O�ќV�p6�I�]1`yR�f23��G�[�Y��E f�0'收�+9�*��d"?bR�J�'t���4}B�GF��@IU�xZ�Mnb�Cy�i��OȘ�J9Iȏ�E�x�D3�� �W����*X�{Y�oh�#�A�P2���(^�9g�Zd�P9Hmd�#*�V���Ǽ�!$�:����LV���b�0.Sp�AX�a}�2����
v!����A|5g){~�U ��^�Fk1ѱ�����C��Ϗ�� u�hݢ%S���\[ج��R9Zj ��om�XH��B7l�u��  �\�9�>�0�]�:�N�s�����\Bm�@�V����EIL_E�����m��6�}�Ķ��ӆ�Y�/�[}��uy�����7Tk�� �J��=����멛���>�0�������Du���"����}@z������.n��K ˿/R��.�u[��������!��#S� ջ��V��nWZQp��v�n��U�V2����B�*��8cC���⬢��7���N�^��cX�060�VP]�M�u�tXE�6hh)����ccĪ�x�r &8���c�M�U�9g!ZN�QE�W2��Q��2���U j�py)�6���gb�j��+T�p ���o�%����X9
���(&��E�VU7�.�+<ۈ}���]�f�V ܾܲU��6�Vm�u9}�\ Z��D�\�o�*�W��Uo$�o& k5�]!����oC�V�2����~[#��!�9A�*aV�/[~�a�� fۮټu��޹�Jy����v.�E\$M�hh��Y�W(�m[�~�$��ѝ�|Ws���8�9���C��S���
�R� R�}B�,�6�� �4\)�Hխf39�!�ր�5����h� ���i%q��5c�U�)�LO�H�yh����� �L`T4�]!�af\���D��F���zE XL�J{4�`͔f�f�4kN�x�� |<4� t��F���7H���TEq =�U����TWMҮ��a�U��$�\ [�:8X��,^%u��ASHrR��6���
��j��$�`���@�� ��SOWhhEM�4lP�0 �5,�����n����wq�m9Z��j���?��Äx��Nّ�;��{0 �L�Ԯe<�X�Z��[|! T} ���][�`Zc:�.J5�1�&���0��-
o��Gx�]w�j�c:�/o�����#��<��|�6N���:p�QmUՁpw�a�\Z,��R�-���6~5��w�C{)�/��;���4}(�8�v�pm����1��cJ�j����
& ċ�KEv�#�.yPJ�@�Dw�߉>�e{xb�b�\փnZ*V����
2h l��i�jǞ�����K�t��}�i8 ڇ�"��N��ڀ3<!�h]�%5� � "�X դ���Ʋ�w�@��hD�"�ۓ�f�6���z��T,�Ó�{�
F�Pi)��-�A��S�d�5��T2*J#S�O �!P�N�u4S3�R�k� ��_]%:;�٧�����S���C��iMW#X����Q��^�6{r_���q�'xw��32'���l�퇋����+�G����x���P9=>?�����P9��)�.�9|����H:ZU���뷯��*��n����{Zv6�x��}�lsl�J�M嚟�9��y�?ܣw��������xu�,E�xB?;~|��C��} �m��W=s\v?T����JL ��ű���2�G��0�R��Rψ��k�9�,˩�����<�aZ��tZ�� !fA �7P�����8޿X��'k��$k���Ҋ"Tvm�����8�WFkAŬR'�E&-i(?�'։~�_��?�8���h^!�N�8�`��76� ˆ4���8�sb�)#��"�C-���N�4JYЎ���x�;3I�R�_���TV� :)�S��L�R4t (�I�&��5'¾ʡ�cD1��V�q�c#����ə�j�v K�"���YRN ��\��]��J^Jt�I��a椇��fNzh�X���c�ٙC�=���OMj�rONF����������d� X�!���oQ
Q'zJ���� ��ዡ�P'O�;��W�a|�U�r�B9}y���WI��9}A��`p�x�������?~W��xa����YU��7��C�7|�p�۸�ڛ�h�l�3��W���������k� ^9)����Y��Bn�)ٝ�Ʒo������i���@.�h��� �8��Ft��ʗ�m[EQ����Ã��җ�� 4�n��F�̴��W�U��Ax 3S��M�`�36��������=l���Y��t ��"d#{�ͳ���wajbC��̫4*����Y�^�������H��K9�4�.�ӥ�G��G�G�mGch�_�BV� yd���j1�n�am+�pEw�$�C;9�]�.#Gδ* e��Q��l�>���+�:��uz�"��d4��k��:;�}<�^���$^������{a����!s��W%��L�vd���V�̈́G3�Q�
���$?��?���41:�k$��#iH��j��� �^Z�K*�"��{-�������PX�E��$ �CҼ�1���d�IP���i �j��� -f�јy�4� �/OC��g [�t��Y�N�L�Y~,&\�Fm�jȝ3�[��z(��w�G\���!�``�G��!Ꮜ,��a�/��Bm�o:"F
�X�"�7�a�M��8 �c ��b���-B�!i@G�"�����q5m�2�q��'.+�H��nT��w�[� �d�lY_ WDq��� ���}X�j����n���.]�>b�Gw4?H�Gvh�����N\��w��t��vU��@�.\�� �����fIqm�%W��٩�$���a@�m��&�� [jZ��G��D�fa���Q^�l��ʜ�*fS��2)��H�6���h�Nmz��*�U1�~bhF��Dv^��b<rD㞾m�hĭ��Ϩ�q9�J�D�M���rp�8�)+!��C*9� �L�y%����4c7�?ۻ֝$���f�a�Yh@@�k�j�������^�
��*�����5��k;��5����|%9��P}r�moi�0� s�=�Q�I4��Df5�4����� ��aM�K��rfI�"� g��X�g�DCW� �9�L�@�� IC�?���}����ؔ�k}K$׆��/����\C����� Pw�����cnrBW<;�8�&�Z������̅`\닺���F�����f�+ޚ�&�Q��J.ى� ���g����g����b���㐳�d���V��a�M.3�Qb���7�X�s���}ݩ�C�5?���hĆ!�7K�����s�^�D��_>c�F_d�v�#�� �c�}�Ʋ{e��m)��E��,!��v4�hv�C��S��-��]fr��X�'�.ћs��^b��<��ջG�`�,]���.�H8I�]:`k3mz��C������ 0z��NR
�¬��V'gR���A�k�l�ol����b���Zu5�Y��գ����#79\�ϴ�/���d�D�Z�|�D��Ӵ��ѭϖ44�ϵm�޾w�}k9jSz�[��]H?=N�'�r~�݁(
�vRm���!�Wj����+�a�u��_
ON��4 �V<����s�q#��S4��<m�����U�g�譣��w[����p>�� �f��_\7Tm����>�Pu��o2,#�NCVvӮ�� �n[}]��E��ޡ+��_u\A�n�����B�V��NhL��1��Q��َ�]u���SG�_Rշd��c�!Y��n-��ڮ �� �I� =�I�}S���M�͗���'wa�g�(�O/����'���&�Oo:o�t����)'�z��q��E��MMɝ�Z�T�;7���Q&����N ƚqӽHm�6
avt�Ɏ"�/�A�`"��[y���l�/�x��|f��{�2�⭞����&�O�g�+�Hp�7��J�o��I ��ܧe�ےV:�  A�����-���e�'Ԭ*�^����SH�k�t-�{߀��X�T�D��1~��{FآjF�=j�ԧ��UyOH�JQ�����}jŢ�Z [{Y���!{��z:K��z�ԻT�.�=U������U��d��B� ��$�ުOm
H�Ȧ�<�#�{/w�ۭ.��=j+g���~�
�7���.��L��z�]�δR;w���~J_W8:��7�l�HI����7ү���j������j�����b��+��b��+��b��+��b������V-�������9v_��jQ�|��:�H'��:�c�.���N����AY��h8�p�F��VE(��6� �zu��^�?*�aW�����:�R֢W��U�vy�]�;`@���wUAv�܀^՗);�7�%hy����T"Ԣ�����Mi�����8��a@��k �n���e�.�����$�/��8eG�9��򍿄Ztg�q�Cx��P� ;[,a���ɀ�dg ��OQ����)E%߽A� "��t�v����{n��� ��^�l����9[u%�e�۪0�vO �E�<�JZ���[l���A�4�r�E ھ���k/&i0�R6-tuc/����H�|��Q��}=E�!a7c��/x��� Y ���^�޴lMJ�Bn���8�i>y�ӓ�����F�[���� �.�l�y�����q���hZY��e���c��BT}-��]� Qڀ��J>��^� O����-yr��]�al ��Z��"��!L�?w�M�v�Ȓ�K�]��(������]f��Q�K��� ���-2إt�y�k=��_��R���A����aX����:3�2�+��▘����P��W��-�d�z�H� ���F����m ��8�Y�v�)c�H5#n��=�l� �zΞ�r�~��hF��pm�+�8��K�Ֆ_J|Ddn�./����s"_b�2?��xt�L���G&��BZ����Zv硄�\�םm{�=��f��>�-$�ԙtJ{I���NI��5���R%A7�Vv|s�!=��@ ;�Pe���H�c����=���
Σ��sĝaf�@Xdq�%?n� �j�<ܷZ�$�.���.�s;�){�T��j�D����qD:��rۖݯV���>���꽚�'B�� q��-njZg�H:E+�R��H�����2a-m,7��.\���{�Lܳt�J�'i��y�#�{��\�7��W豑���`;1�j�n��ӝ�Ȧ�t�ʝn�q!��:u�M��� ��aw��Sxwip�v���%���֮l��G�bh�b �^Nm��F�:3X��5�j��fø]v�]�.47!�ֳ>�Hu���A�y[ʖ�٥ �ed�n`��e^��S�7���&Y�: TvG�m�ʎ�9�hm2ڶu=��D��å�M�ɾ�]wK'�Ʉv� l�h���˻ʢ�F�.�(��(�̳F�؄$�d��� W�F餢��p�t����P+�d��h�!Fmۊ�lܡiBjz ��]���X%��&��2Ԇ�&됒hmb��wGm@�.m��K�_,m��,�$d�� �i����&�\`�Qk_.�Ud�ɢ�#�"��EZ�6!U�E��^�������W*S�d�{鮔J7��l��%�>Y��ծ���� �;�.�w���!wEm9����F6y�Y�n ��p���4鄀$NeC��j�j��l��es܆#���⮖�M=\��nd�EmG�,Z����m@�NUK�cͨ�A[-�����ێF,][����;��x ��㙪p"�n�;�5�!���8u���%d��� �j�€�V�̯�>5�\���Ֆ�`�/�Մ�Q���njd���V�]벰; �M1��vVw672�YN{�m>���C춄Ē%Yi�b�6�i�ta�b-���z����_���������ז��4P�������,C���[�99j;�ʝQE~MX�ͽd��d�%+@���� ϶���|�97I�ݹq�Ⱥ��&����,��Q|W�>Wf��G[�� ����8u���j�#���ĵl}[�*^�"����䏼�N���u8�#�k�I�^u�w����Ғ�C�Ζ���tٴdÀTz���C
�:Ti-A�M^-ٔ��./T�[I��%���y>�f��(��W�J#��-n҈m2O�����aT ��75�xW�4��\�c�����SW����n�X#�we��:j�Z�f���k�8B՜�tig�&^����k��!�e�X\&/��#��v��Kz}��@k,��Kr���A���b�N�K��;�.I[�.#�͠w�?_�>�O�;�t��L�[��&ѽ�K�d��:z�-q��z��N���/� K���LwuG,í�;����;�^ii��fn�;��B�'�wf5��h�t:̉H��K���f�V9]ZMð\˰��m�j�i -�D�}a��m9��#�8V4�:�4�[������!���.H�� ��b����v��:֡=�H��o���i<�?��f8���W>�`�8�q�e�M���)4�T����@�!�J��gL�׷fpr0��������8�̓)�/{}�� �Q_.{�sd��ς�k����}ٻ;��M��z�]cZ�"�~��^��h0_��3o��_�S�Ä|�u�iK2$�UQ!I��^����v u�ޭ7�bZ=���S���a;J�:Z=�q�M���-��fZ�jѺ
��r׆�nŒ4��'?3�
��Cڈ���wB��|]$8n�%OW5&���Ax����A�_�4��7N��/�;��QM)������I�4
}�HF0��8�����G�)G>~�%7�i0�$��h���\qH�M8� �
�"$�j�J��x����p~�H�G54Y:B7<{�R&)�2QMw4A��G�x丠]<ѝ�= �#WǾ�jh��3�� �|u�h�IJ4�I�"�RD`����,�>��?��w�L���c��u��z���#C�}͞��381t� ]�T߳&�c�3��2=�� ���������� ��?;��/���?��|�����߾]�>�ե � �Q �{�݂Jpf&/�G��ƥ��=/I_у�� ,M쉈�}����`>FxJ�3�ɕD� Hi�r�M/�F)s��C�]4>��T�W7� �J�V�iي{J�'��������se�b6��� HxB�����n�3u��O��B��^�3�!��"cl�Y��/�Ck�pGԓP~28T��� u�C{� kp
:Jʐc�n�7�♗���$LFz?{q��+o��[�c&X
��Q����<� T��*p9G� �>�2_��Ar�* A ԍ�'�P<�8 莔�^@�)�sܳs�Y�1���%�_��4R�7���H.��Ï�N�?^ Ϡ@F>��8|��BLؑ�v�=�(�X�I�y*���/GQ|M[������ 8ut>{��"�L�e��yV��+UנjN��F�&����(�Σ1mQ�[>�C�H�!㌧���7�:)Ӊ^�����)�-��#F -��7��E��z��J��y��^��Fє7{� �m��_g��f�z�KA�X�>�ɇ0H{|q��[Z�O1C|�c�W��a!$oP����(�����},��| ^l�1���g�{I<�� }M�v��Ȟ{6�%#��Ӝ d(9s�0�6��8�mU���…�U&�����l>�DM1��� � ��l�!�� �'u�
�쮐-����4-�t�� �o�՞��Ÿ'`Oh�j�**�L��t*l�M{h�|����(�Lq��A-0CZ��6ŕ6���q�`��7���F���t��S/���'R7�h���B-am�w:�Ȼ��� �8$}<�Ӵ� �Jg8���T��Ayyi���a��Eg�Q=���i�q+И�V��y ʓx�t��o��W�rĴ��\I��ɰ����B�OA��H��l�U�Uc��B"VW�+�:�F�_��ѐ��U�N*j��U=��S�o�!:���*Z��y���kwV���,��R�v��Ni�w�_ �0;)��'�K/�/�.�%��a�q��Ȋ9�s�ӨAd2�<��8�P�
y�Op n�R�f�X͌����M+_%�E�����T���]��]�<ՎA��C"{uh=0�0xf���(��뛥��_r���f�:��v��*y])����l6+ͧxl��Dl=����U��r1�>�TF�\z�+�jt{�V�
����ِ�V� ��:�6Ƿ��4`-�� e&wn�a��F�"��5<�� ��d�_/�N���K!̢0ùQ,iW�4,MIɝ�!(X�ȫ5y��Y_Y�.!��
�p�EM���j�\ 軶�:��VK����k��m�Y�\�-�_�G�*�ئ�Q�y���*O�z���[��]�QSs�h���B�����吤����qi`S��״��x ���x)0�k�R�h�k5�\ؑJ�0�xC��D.���&� �it�J�+
�L鎈xL���6�K��Y��o����)����T�v;��3KA'��<%���U��� Y"��G!MFQ$dDuԴV�U]3|�e?ۗ��})8ۗ��I�/E0X����[�/ԊB)F�{�k�D�|��k�X�>�gcȒ�Wش'#��>���-y��M�u5 {�5*B6�G��<��|�rM��4Ԝl5�(���*������* }�����/��uT�|c���z4�<�*����jb=FnJy���h��o�A3;�T^m<����-�����#�Ƿv=���Ъ��{aL�������\�UFū9ؿo���^���WϢ��j��W��8]�a���շ+�9� ��0���S�@��%1y�'u�m>�So���uS�Dt����̾X����A�[ڮ�M�$�b>�B���N+>y*�'A�ݦ���0�L ��ܟW�ًV����
l�ʣ��;�Uz�E~��"��#[�/X�V=pʓh�����pZۄX���o�.�� σ�ʎj�Ui/(T��*|���ٚ��q3����m;n�W��������AR1��X��)�Ӆ'��UkJ�'n��@�[�ϑ�ݾ�*H�}H���B��I�q�-��n���+t�nK�����#
x�eQ[k�0�s~ŧ/^Ъc�lOnS�0Pٞi��am�rQD��K�*�����n9 sb|7� �����xĄf�Ē� g��Ś��+3H��5% X͔��n�X�}5���CR\��e��;�[.�Y�![EӂB˜���5 &�pJH$�Q42xq�%Ñ��\���=�6�y��7:�#ƞ��'2\�������^u��T�������������W�Q���W,�{^���d\��W��r�څN�jOu��3���T��6��δ�@�!�?�3jZ���2n��3Z��h���%R��kŕ�bu/tߑR��Fߍ��,��e���_۝㉜~���o
x��kS�H�_1���Go��*u`; �X �� 9j$��ve�+� ���zf�=�`��[W�Hӏ������e��Ű�������nw��*vH_�T�vM�����}�Ŗ�ʊ���[�z�E� ���r;��m{��zѶ�P��yO�ďB�&���Y�pZ�Éf3?��r% sd?�/h7 _��p��SBI&Q�~zM�(�E�$C�t�(Lc���׋�=$=�4r( ��/_�7$E`%ȋ�Z$ �y���ҍ�geM��h��l1c�~8E�p� ���dtr�����C„l�Л��$���S�2��t�Q�����@ڡ�\v�EG���~Й���X�h�9�/��w�_c;(��ʎ��� bP�L�#<���K.��=�6���q|��^��~�r�J�����c�9K�=��WH&��|��B/�,���*i
��vC��u^ �sf�����K�wn��I���K�G�ԟ����45 ��c{8H�o�!�R$�q��ԋ|mB�:/y�(.;]���/;]��]~�q+���m�����H�]���%���)��U�4/!�D+�ɧY/ S�\�& ���uf_�ĉ\Rmu�<�����
�.#��Ӥ
��d��nqJj���)��wS�i�)7Sm>��ɹ�t�m��bK=g��,XP�r�@c�g,`P���\�:r��)���t��H��yΑ{J��9Cf�B�N�?d1 ��3e�����(�D�.�, l��y��[�y��j��
B����Ћ�tΨבM�J���teI�i�����Vz�.�2��O`�E�*�� ���b6��t%I"nL`D2怶̣9C�91�9��,� �YNCAG��\挩;��Zl�I��!���4�0��UT �_�&��TEL �l�[(H7���h(E���nr ,r� ��&S������+ې\M��hJ~ͯh�JE
~S��s���s΍��� y�Z�뒨4&�@�Vo4Q���?, Ղ���,'�����Dlm��p�d��MC��R9��S@�$�e�ʌY��)�zU�s��iT��Ӻc]�R-���0�%��0�|Bv�$���)+�f�M�0LU�EV�4ោeO3-]�mɴ���ij��Z��C�lMsV쾤��Z��)N_�-bh�jx�c��
�`3IO�$����:[F�N�&������z/��NwJB��N��U\?��x$&a��
���3�&4� �!i����%ɺ!I�nLT��m�&@ Y�dB��>� Y=)i�E��Ý�pj8� 52�fH����]��W����f}��,��T�2<�t���9�Ug��l�Vf�嗚�'�G'c4�=8x�{p6F��c�O�3>9*�^�����:���2�h<9E�G���qz���<��G�����'��d|zv���)�G�Na�&�h�tw���1:8- �!q�zp�[�Kh����T��=CQ����"g�ʱޣ���,/� \��`�����Ҟ���f�$X�M�Vm��U �a�Ӄ�7
#Ё��D*��&�������w�np�QeP�ܕ_s�ܓ�=p�������j�ɣ1�瞦 ǻ�uO�a����5���lx�N��r����}��{��n�}M/DW~m �+s��F�G#4ahU�� ��7��xN�&/�����@�i��dU؇�v�Ƴ������ ٨��]W_G>�ck�b� �!6�q 9zJ�I��\�<�+@�&�Z>���M�rk�]9��C�
K��/K;;4=T�>\ ��نk��k;4;��@�Cs[E�P Q3�UN,Ā��W�wx+���̣�O�Q�渢*�T��q�4�0u�F�s����Ĺ��i�|���H%YcT�cq\�,t(���&S�&���J�vY�V�������+�A��m,(�UJ.������#o������}�9����� ;���>����*%�š���c_e��FO�a|�}���� ע��Sz���S��x��4����g�<� ��mD����.��{��_ {��8D�j���t�v�5����tEg�j���a��,x[f]1��J[�P͌��˾��Y!��WR���W�G3s_�*����q/]�����@j�[/��'_I���D~ƻf{���Å2�O�j�o%�׷����Yw����y��%�r[�%=�w�<YW鱽s����5+�ᒭ��?�d����?�Y�8��m����>���D��p�G4����ݫ�㭃��+*HU��ޢ��Gu_�����ECo�4�-��;���dE�3�}�V֝��*�#&n�v���۪�? �>�k~ŵ�AIH�H�YHy�q���|q�Y_T{�0{�%a�VRS�UT��;}�|6��wp�����y{E�y�f뼨"dxy�y �&�3ö��Wћ��C��(��U�P+!b�ٛ� �V� ث� ���B�sZ'�p��e5BJ�P�T��Y�X����GL��2:N�U�^�:��ys�;��Yq�,�4{/� �B�^R��v�c�B����W���䒑�s/�<��>����� ��;g�|p�HE�� ���p>|d����9�7�8�E7��\y��)21,�؎�i.��L�s�����HD�MC��˶��վg[�����:�"� 0��~ێ���˗20� c�žᙦ�j����� <��kv_�MY2m��d��[�$Ɋ+]�d�1v?{������$'��O�F�;��9Ѿ��?��������Ĝx#�P��������y8�U
Uf�+�O�<�N�p�y��2�ԾQ���o�߲���q� {HW����Q���ׁ��7N0����eZ9�3��!I���p� ��x�#
x%/���(E�8�M.���n�<�G=�G�'�-�%�٢�d ����h#��+3�>� A@��Z ��)B^�wi=.��e��3�&g����w����0�p;��p;�Bga��t����6��W�(�2����zK�����W�ur�E� �P�_Z]B���Zq���~�~Y�X�S{�5���ܠKB�[Km���㔑mӹ(x��DQ��B����8 ��\�����JG��QL_�Q �e�p��^67*�I�xB��uC0�i6>^5p�E�5'��bcƧH�`�Ki���r��dm�o Qo{�F@�a�<f_�1-S�$�%'��"�� uP0*�j);����[)��<t(�g���qF\���9�wY���)=X-��g��i�J��x!��k�� $�w�.]���ܝ����;�a�te��ۮ�a1n� ��"VE��[��״���b�]�n/��_*zaپ:�uK��Ɋ֩2�rtj;6�b����9��E+��_gg�!r�`2��vb ?L!��n>J�I��BS� ��wӠ�ʴZ��(&l���s�>��܊q�������� IZ��D�x���w�N9V�����gɴE�U��҆�RC Љ;"N�c6Gj�\@��b)�5��� S��6�̟Y�s͛s�#�8�?�%h�I�����w.�l��{��ޚX7���fV1����>x�.�4��$~�y �޷���r�HvX�6\���VS.i�#Ʋ!�iĖ R��~���9�\��1X�D|����当��\�/�Ȇ�ʪզ<�]�SxWe.���-\P?hqy��|�ӥ�\��~=�Kq���Bn��|a__�K8���x���I� ���|����2 �0�d�M+�)�U'v��:j�Րt�����q�"W� ���B=i&"kPc��SRk4�kp�эF��.�w��uY�E�l&@%���ܷ�7��(��z6��˸b���3ыL�sN�.�E/��Z����ų[&@i��+#���~d�r��֧7u��z_�/�޽�!7� o^2�2�l��*�����c+z���4�ft�H��/��B��-b��k�f���k����f�l&�ZE�� �$�^�i(F�V;\evw��7��;w�yV��ĿЗ��f������'�KŁ�c�'K��%���Sz�H-���g�m��Ri�2sY{��� �2����agE�"T�G�A�,SDl����YX�bP�6���qje����ö�/S�g٭KC��WG�vK��H+�rV�1s�?�Z�ʳz��0S(;U����eS�%[�~��V�'b��f�5��>iQ��2_��{
?N�m!P� ��{kBa`~%~ 3��2!�oyǠ�����\>M�_�O��V���1�
�"��v����a��
x��kS9�¯P�݇�6�����*�M��|�\0���h�I�U� @��~-i��T-lno�(3�nI��z�r��A�������%�R��fێJu�p,b��{.�>5<�۶���G?�"R0�岓'a�)�����tTN@�-�� ����v��$�b�7����R��aLq�%���QB/J����, /(n��\�W�;���EF�"�?*c�5�¤5R`i̹��G/i�|�ʑ�%*s�k�]P,��|X�-AQQqx/� K����F�X���;���qN;�������#I3���+)�/L�G��yG�u�u#x���ؿ��;!4-
���:I�
ni֊Jc℔�'aN�4+c�KØ��'z��zFC��.�/��^/��B�B�{��
� ���тx� -ģW^�m��@^$�%:!7�Z �WQ7� ���9���f���M<�
�h&7�;܊��)_E/H>�A���kR�P)���k�˕[��v��9��
�d�X�s��J� ���9�y0f� $���^5Q�
P�b��C6�°��_��V���@�������n��^�3���y����{_����%a�É5�2U�� �N�[A9�S�{��˴��y�) �&)'�Ap����G1Y݇�N|�IB�3gq��F�e�(3U!e!�{ P��:d 5�g���S3ĞZ��ZmR^3@N4˰�6�,[7{��j6LM��D�~�훦Om �<j�ؖ�u[5 C�[�a����tc�1��f�zv�2l��-�� c�À�uX��q�|MT�.����ךu�ň��o�( � �Λ5�{��l?�ϧ�3e4��o�|���y�,Y����=��ƾi[�U�3���hT�AAR��u��=kj�>�I��鎉�L�g?�� P�j`�zvvr:FÃ�����|�F�S�>�OO�#�����㦍�������F����L�H��mu$����Ó�$������ :~\��[���F�ur�R�$&��
������ ���4�B/f�c�XNE�wSMtg"��u��m���f�}x�M��`�R#�:::<�:4�Rl�>櫓��ю������l*r��$eVeK�f �3�?n>���s'�k��oWA��� �GG��H�������E��%+I��� F4M�&9��yF�d��-Yך²dt�$�:�F�m���%� v���h�n��͊.���= LyR;� �IDk�Rd�P&�� �� ������g�x6D<���SL��|�8'��g�N���8!�%t���c<J}���3����&�����~���o}��������s��_/���0~8k���G�����}�f�����2.���)v�&}�u��뭡�&�T�;l����jk6���{�v����}�/�^1��ɔ��Lmf�۽���S+d}�xFul�Q�N޾_n.�����
v���B��Z�����9J��fse�����u��r�7ojm��.����b��8�\\X!��xG�>U�a��-*kV���� ��ά]��Dw!,?|8#ق5x� ��*���U�V�N��{e���dm��U,F��&��w R?c659AY��!�qs^����1#�hDҴ���'����鍺.������uOǰ�k�3 � �þ�b�!��6�^�q-BUݵ�b����jx�m8\�2 9# ��m'#_����SW�z����Y�ӱ�fc6k�iz��ۖ�꺩��cQ�����Q���/��35��;�c�,�5�o?����[c|��7��O�r���ܪ����������ݺԁ�V1��WB��9��&��Vq�kT�"�����5���-��,Kx��]�)MGiW�iqLV��C��*j���Q�/(�C�W��w$���h6�G��D��Y8P�(͒+y�v-� ��Rt�!�1)JK' �%���jT9�f|�� b� ǫW$`�!X*`����ʘ��
*D��\���|`��7�����l<��E�"�$)�;�(,
�hR唢eQ�9xm�z��$[�^��U`zKu�q���\qS�c7��S��B���rV�dw5@q_�_6(>�$q׎������a������'Y���J��]���_
yw����� ˂NI��&w�:M2Vt���$����Ak�+YA�2�K:uڡ�`��J:Q�9���G�Ҩ��7Fm��
����\5�%�
��܀BnvۜN������{/� c�L��[0W��uM5�>�ņ�wP:W��r��a�ϡt�B.jզQplp~7ب{�$����nK\��W�GiHY��5EVJ,p�j�bc
��-�יk��mSZ�JV�����EQ���`e�����>�%��*�r7�=�M�T� i� �q��� l��6�S$��ڲulr}�fg܅����A��
x��}kw�6�����
�Nך��q �)��:��Ls�i2q��L��E��ͩDjH*�ە�~7>@����6n�H�co�76�̣�☦k��߾z4��Px�1Q�a���nMTW�`�5����a�AիY/��Կ�y�D�U0���,zʪ���8N�($��c��.
�^���h��c�9��z�r.W ��h0���w�I��h�AzKj�>W�'Y�G�i��7M�o��B�%>�y!+�!���o�����xzLq��/|(f����o/C��W�*3�&Qfq�PV N ~
�?�>�R���z�"��jA��������ʻ��ː����녧$�(��%$PG�(�]a�+�]�
���0�LKY�&�`ʺ�"3M�����I^g��z�y��!X{a���2�
-��Ik�[D+���̵G����G� *��~O>�7A�䨗�c��U�Nj���Q�;a�)�������^p��o�t9x2�0�o�*��_��u�Ťt�t�N��@�J!�&R��V��&��#����ƒ����D�x�_��:����^
̘���oP�y@D�3�����R�e,�_q\� ݉�ͼy����x�V����X�U
���/�����hf �$���o*�`p�Y����+����M��D�+�4����-�V>��s|�MoO�/&��j��6����է>^Σ[�?�v7�_*dR-^�����Z���������W��is�R��&�=�@[�9{�(3`�ןs����[P#F4mP>f(�+') ��*sb�]��\��v���$%+�|$�U11J���+�Y��Л���gV����0�5(�>�֓�C�?vM2/��h�KR�%�٣�PPp�pX�
q���]�R�� X;�<]�Hw��i(J��+�|K Ђh~�~2�#E��O�ө7�Sv�/�j�ȿA�&"�R���>��j� �����u��� i�!y����؄ �Y�����ې�W��9�0���4Z���b��b0�0�%1���P�IT�Mw$����P2<�c=R��cB>2�J��Ɠ�nrC��k�#�L�TV�IB~�O��3f�a�O��O�V�B���R}Csq����q�F�z�9�;��BC� q�Q�����[��:�R󆆐]��� ����&���a\�ྃ���,�Xdl5J1!�B>zK����j�Z(�:(��@V!�\�:1ѱ���u� yݡB6����_��v�nђ)z'<; �U�^*"GK����] ��n t�ꖮ����U0
�k�{�e�j��3l��"�.��N�ء/�[=@纼�HJl�����4JZ��(�Й�����ĈyFa�<߯ � ��k�=ۇ��DZG�44� �fU2͎�aH�R�Cޠw�`PL�nx�T�TX��ls�R����V)�J�oW� �T5V��F�p��ԸfB
�[��P��J+
�Y�N� ��j�JYni��Ъ�#���Gw�z8�(f�~+����x ���f��� �N���� ����p2ul,~��8���0݄�[U�s����4U4y#���..�:뮲�?��ˣHI�0��f�eA3��� *a8�VE��s����dl8ːÄ1��Ҫ�5���³��g����xaf�w��-�Z5��lsmՆ_W��7˵��)Id�Ն6��|��Y ]�F��f�V� �i�*�6�hS+����/.�ikt1�9�#hU%�f�ek�o�:��<��l�5��E;l������Jl�o��\�EҴo���O�5{�bٶ��WN�ݻ�w5g��ɋ��o
;T���OutB5<.R-�������UY�l:��A�Ui�Qp��[�fr�C��ik�I%���*�S'�F�"Mj�d�bS���,���ж>��L� �L`T4�� �af\�LOE��V���zE XL�I{4�`͔f�f�4kN�xo� |<4� t��F���7H���TE����K�Ic��&iW H6����f�z.���J�,OZo�:���mi���6����
��j��$�`���@�� ��SOWhhEM�4lP�0 �5,�����n����wq�m9ڜ�k���?��Äx��Nّ�;��{0 �L��v2~�a-{�>��!�Ӏ���Z0�1M��rT�5���LE���2|��&����X35��]Uw �T��9A�?Ś�[CW�qfM-�ЁC�j����|�˥��~���X�=Ó���f���>\��^���b��"=�_���q�����F��)��cJ�
�k��`�@�H�dQdg�91!�R��� �Jt����3\��'�n!V�e=覥bM�����!����M��v� ��I ��I�81pЇi�6��}�.r)��,q�)� 8�Ҋֵ\R�P� ∶�� ��h��N� �ٳ�&���J{�<���E8�?���f�"�Z*m3�,�&��<R�Z������k����J���uH��'ȴ�r0�vrH�K0�U2Bg�a��)�j��G#o�P�cZ���e+G#xTp�ר�Ğ�Հ2�d\��ޟE���,�- *;x���{D���#��_^�}�f������xr�n���{����yE�i$�*�����/��*��f����[Zv6�x��~��lsb�J�M嚟�:��z�O�ћ��wo~P^�x�8S֢[<�����=�x�r����6PΫ��:)�����oJL �������2�{��8�R󙥞���4s�%Y�Sm=��y�ô&�h�JB̂o��O'�5�q����O��ݳ�}��J+�Pٵ��z�
�^9M��U���3�~��X��-!?�k���@'U�S0�'[�a�bCFO�J*����;ޖ�5�g�̪��ܼ�p��+"r���I�������1�/{g&iS
�����j�d4�~*2(D�R�e�+���j5i�/�aoz;F�%��B^�[��Lc�*r��T�:�.��1D�����*@F��
�Bٍ���Z�" U��I�9'=Μ��z��I��Ƴ3��{��We<5���=9=`
��o��ӓ���3��V��� ���+F�L (����Ϩ�?;1�g�O�ݏ�����|��3��c��퀗c�t���n��X�Y�:�C���7
���/�%���>�Cu�t���?����Ʈፓ�bo���j�r+OɎ�4�}�L�����Tr�GK/�8���<�{cU��m�*�ʍ�Gt�Õ��m�����7 �`v4�J��4�k��¤l~���İ���>� ^F��a�w]�ž��S�v!��h�߅� Q�?1�Ҩ��j�Q|{�L�+r��"������z���׎��m}����鄬���jwa�j9���8VR�n2J�Ʌvr���]F��iU�bo�^�ق}{�W4!t�����y��h���u���t��p�,I�%5Mi��@ y�+B攻�J�����8��?mH� �c��?� BP��t�?W�g��舯��Sz���!��� {h.�8����N�9 ��5M����"�'I\��y�c���"��;��#��׫6�D�=��,�� L�}yJ\=ٞ���*�̈́��Ga��b����9Ӻ����"�>��Ks� d ���}��"$���]0�%w0���Y��MG�H� �gc=��"��0,[� XdG,!�X��Q�Eȷ$ �P�����1������1N��e���:݁*V��5bg��7� k�� ��(.З�q!V�kwBmp:��.���E�vyt�tydW�]]������~�H7��V ���u�Oʐ]�۹����]r����:Nb>��Y��v�A1o�ΰ����|��N4j���(���V �̩�b6��1�B�шdo�Ѹ=�&딜�j�\��'��a M�Hd�(�#�2���6�F܊Q�.�������K�܄����LY Q�R�)P�dꑘW���
I3����j�9@r`�n6潅��qV{�(� ��=��U��8V��wF��Q��쌎:"؏�7��Jr� ���t��Ҳa�A�vH���gZ=��j�hNy�=�# %CG�K���rfI��g��(�g�DCW� �8�L�@��-IC�?���]����ؔ�k}K$׆iݗ�~Gr��E�7Y�����[L��179�+��r@-����am�B0��n�b��2�*���w&��jҳ���?�"��.�?�"94��"a�a��g7�8�=�F�Ǡ��$mo� ��ظG��-(V��!��a_��г�/$&�eH�՚�.9��o�<H����˧b,���پa�2��p,w(�Xv���!�@��hי%��܎&�>v葻I~�%z���L.�[j���%z[Ύ�K�F��_�z��L�� �W�%W�')�K�l�M�Q���/vG�>F���KJ�]�Ւ���Lj5T8Ȯ�ֆ��ͿM.s�}�P_S����L�u���QG$[<�[�TIJf����_����O��Fw>[�L��?ֶ5z��������~��[v!���8��p��qv�(��I��M��^w�=��~��yց^y)<9��{Ҁ��������]Ǎ�O������j�3�W��٣7����]%��:���.h�!��k��ⅷBѽ��:9�fXF&ཆ��v]k�~ݶ�� ��?�7W:��鸂��*qqm�9�ޭ.=�И,�c^%�0_����x�ۧ�tӑۨ�#3�&� �r�D�k���v]�vn�L�M�N��ڇ��u�5_�=�O��z�Q^�^��%�O��O^��n޲����1'|����8�Ţ�����z�M���M��|� $r/��H��1n�S� �V!̞n9�S$��E��L��8c+���� ����2�R�̽~�_�P���;;�d���;� ���X�E�>)A:>R����sW�J�P�!#!��>�Aײ���)�~��15�G
�G����RcF�=���0+�
��2Ə�~�[T��۠G���䈼�1��H)
�<tHm�X��İ���}��;��;�YZt�#�ޥ�d�P��,�FG�%��T'�]�mxm& �V}jS@�D6-��A�ܫǛ���p1�G�P�X9S��W�W8ȿ݆8v 4�d��+�:w��ڹ#�_�S����q/� �UJ�o��~Η����|y�͗�٨wy�͗��|y?̗��|y?̗��|y?̗�����0�<C�Z>��i��r졮�բ�#��uH�m��=tGCd�t����hd����@��A�(�;�I�ӋG�V��.}D�s���k�G#vS����)k��g)�P�^�:b����|t��TЄ�-7����_��m�#v�Y�*�#?���I���hDoP�;uF�V(N�rѻ'F쪂��dDo^��6F���(;}<�gËo%Nٱ�Q�A>�|�/��M<b��F���(;�5��K؎�;Z2b�`Fٹ�;�ST*�gpJQ�wl�lSȈm8�]��l����=}�l��(ۤ8*:*{�VZI�t)wĶ'����F� O��l d��Fl1p�����<zт�o�s��K�I,���= ]���K�k�0��e��iD_I1pH�͒����BV�|�|�F�7/[�Ҽ����O)�Co^�O���� i �lH`�:Y���e��1��7�=I���+�փ��S�pL�u@�����t� �!JsY�!0#8��թX�r�eN.E�o4�ݠ��] "�X��{�IB�=�cS�=$����z��e$
�D��k�c��n�h�Ʀ{�u?D������W��������Rj�u�"��=�3����k����g�Y�r��Oܲұ�x�Z�
U�է����ua4]���B����_�"�ڎ��!e��f�-���C���j�,�oȏf�ޅ+h�\i���\Jw�����"�x�t���́�Q�1�9'�e��c��gʴ߱){`B��h�"�u��c!�ew�K�Q���s�ٵ�=�)i���B"��A�I��G�D�o�/\C�#�>%Qtsme�����s�-�7�Uvn+��>4[��<�����<k!=G�f��E��������B�v��C��^R�H��39�7��wL���@T�;xG��X+�k��b�H��0�>�{��h@��!�ܱE�MM��I�h%Q��I��ޟ�;&�V����<ۇ�ݽt�nrB��$M�1~`qϮÞ�Æ=�
=�2`�*��l/ƾG��M�*�n��iM��$�tCH ݴ���p���B�5�L�.0=D(�k�����t� Yv>��E����>r�[#vL�]�4#�����1/N�)�[�?�Y�,j}f8�H�]�ʞ&��hm��Z����8ѻ��1I��19���/I��Lh��]�a����h� M�/0��bw�W�@�'�􇓬�lé�N=�Ų��TWi�}���{܋��e�-�h�t�ݒYc�P RH6�,��&�$�dm'2�0^m�N*ڪ'M�z���+�}$�n�QkI�mC.�h\ӄ<��v�j�%>�c���$j� PR۬CJ���������A�d��k�;���AJB� K���]u4���)F�%z$7s><����EmOE�- ��mC� �n ��n��啪m���K��T�)�gK> . �p� ��x�v�].��ӝ�C��r�E�l��L�*����i�i2I�z6�F������޳ˮ���_N��Z����T��!J���xG�mTKZ�� U��%�@�à�F�B�|�mG#�f7e=��E���<���x�*�H�[�Nl�kȪ�,N=��e Ye�E{ȭڪ0`��5��O�,Wh>m�#գ��\M�X���F�8�h��g�. ��p���5�l������)�r�kn�� �8b�%$�lT��,�o�6H�+��"}=�Wؚ��-2П�ۚX�ڲ�J�X�]Ԣuw�eȞ7v�6'GmZ�7�ȯ K�����,Z�̽dhR��ٶд���5�& �?7.Y����v_��}8��k��j�,;B�h�6Av=[���U�@x�Ƶ�|[�*^�"��>�䏼�N��پ{���y�] MZ������sOv��Lz���?P���%[����P}R ף�Hk o�Bhͦ��vy���*H�{-AH,�h;a�!
�������k��4b����z+r�HG%��̇�W�. �?W�@�+d'��b�����,���]Y���ڵǯ��t��-�P5�=]�[x�������Z#o�n�>�ɋ����!���Kz}��@k,��Kr���A���b�^�K��{�.I[�>#�����?_�!�~H�{�t��L�[��6ѽ�K�d��;z�-q��ۇ����}AY�8u+MG,í�{����{�^ii��fn�?��B?$��f5��h�tz̉H��K���f�V9}ZMð\˰ƚm�j�i�-�D�}n��m9��0�8V4:�4�[�����!���.H�� ��b����n��:֣=�J��n���j<�?�8���>�`�8p�e�V��� 4�T����@�!�J��g̸׷fpr0��������4Z,�9�/C���Q_.�sl�7�/��k����}9�|t9�{��ʻƴ�E4� ��@ �`�JYg�$�?ç �� ���"ӖdH\��B�z)~�J��9��.�[o2Ǵzz�,:����G�`(q�ph�ǡ7�w��'�iѪE�*Ģ��6D?�c+����?�є�藀P`H�FL��B��@��*�q�-y��1���4 ��5g��bo�����0��i�|���'ќBa_��ŏ��̣�'�d�؋\ ���}r��i����6 ����-�`��K" ��g�<�P!^��WMUI�/��2�������&k�A膧S��D"�tu2�C�|�1�է��g�9A�LlͰnx���f�6�y�fM����ğXS�q�W�"C��ק��q���3OMk:AS��՜�#�01�a_C3Oul�v�my�l:�.¦1Q��鳎��x2����ۿ/�����y���W����?�7���o�O!���ӿ>���V��G�����������7�AϽ[P ������ܸ�6u�%� z��4���=}�>r����I}f;��h6)T�$�(e��{H��ƇW�J��}aXIݪ1-[qO�[��"�1�{S1�yc�,\-&8~5{�P;�50���L�y����hP� t���[�C�=�K�К��$�� ��(?C@]���<������2�ع�̢x�)f& ���O^�����(�`��+A�”0J�e}�G��
�Qe.�Xy��O�,W�y��@?G
HPuc�� #O!�#%�h
�����{Zz̡����.J)؛�T�$�t�����.�g����FK>�z!&�Xy=�t�`�ܤ�2�O����(���dpA���:� �>�NZ��2��(�������-���� �>2�,�(��hJ[���ŁO�n@�f�8���)m��΅E�tb��!�C�s�a�!�C�a�M�p���^z�;�iŠ���I4��^��yۮ�י�����^�R�%ּ��wAG�. �_�p�����SF�����)qX����@,�=.g}�˾y$_�[xgA�!���Y�AO�eC�PӇEG�]-q�瞍� E�$�4g
�EΜ3 � �? p[��eƾp�e��j>�}�X�1QSL���C�1H�)b��~���:v�
vWȖ�y�~�p:3@�3���@L��b�3�'�M�bn�F�:6 ͦ=4x��s`eW�8|Š��!-s҈~��J�|��8D0v����k��HO�?�ӹ{����F�b��K!�����;�[����υp�>�y�yZ�X�3�L�`I�U ����Ո�^�"���tU�����hLj+��<�I<f��ŷo��+u9b�UZn�Bw2l�?����C��8R�<-�qUy՘D�������
��ͣ�/B�h��^�5B۪�>��S�o�!:��Т&�+a'�~�t3O�r�X�!e��\�?�-3b�����,u���?�5^��5�s�� ��
'�̷Uijt����6����$_����Z@ު|qlU� �G���1��@�z�g87Y�> ����k��].Y�L�u���9��I��zuI[x���*����%�ЭY�s�QS3�8���"�A7
aw)$�2����o��xqyI��L!�MDu9V�BVv䤤��j3�LX��� B�Q���d�#Z�b���qp}�Q�o��Y��tGD<*]�>�����yJ�eHD(v?���l*�N�Lwh�.R����J�Tv5��B� d�F����
FPn1�՛N[Z�z�,U�EH�I Q5�������y3v�E?[��ܢ&�5�5�5�e���\�v�B�(�"aĹC`�I%
�[�PC=3��!��_aӞM �h�cK�T��6}��,�y�?֨�Ȟ`G�l:�]�5mG����Y�rH �r98 ��ϩ��|[�a�����堋J�o�k�Po_��z,�>�*��Y*� 7��Ek4�����m2�����7e �f<�5�]��q̓[���Edz)tn�^��mL�iy+ �<Os�Q�j ���+&�W�c'Ջ(��Z����1NWq�|}u�u�E*�"�<&=e��z{�h4�.����7��M�}�]��|@�޼���?]�Ԫ"���A�$�p�"1H�[ڮ�#��t��c!�k|�?�1���k3�굧�dRa�/��G �a��*@�, C�n�v.t�d��B�"�Ey� {�Մ�'�=���Oo�y��)\V���k�\v�Zn�O<�N@��C��Vg�i�ҹ�:�V�M�l>�&o���ɛ&�]C�Nr!$���텤�.�-��֩���V�7c ��J Ȳlm��T��t1�l�F<vņs_��y՜�h�����@֭<j_�D���_�����В�s��\������:�����imb1Ҋ�.�� σ�ʍj�U�^,P�h�U�Ta�_����n$���+|�=���bm� ��ms�T����E`�֔�O�jo�&�(�#I"TA��C����\M���n�5u�(h�o��\�+�t[�W����0n�s
x��ͱ
1 P�~Ev�����/pr�9�R<�V�
~�����Y-e@�t�L�,OY�L2�B�
��83kLc��x�w/��ڞ���p���I"s�#2b��1|�7セ �E�-
x�͖]O�@���_q�5�]��`�FcH�j�����=� �e;S�����JiK?���t8��9�f9��}99��Ǜ��{��Ͱ?5��Ԥ�^���}�t0�t�.�-0Ǣ�+�� g��������ӱ��w׌�����W�*�PǾ����h�c���'F�0�R{ d��0�/��,PD�ˬĿh��A�YF_��E�v� ���u�F.ȴ �T�2?���1��nC��B׆�=�S� Q$�kNJ#;5Б Q�)a�˓��>J�& ��@��4rZӧ���43�����l]2�3W�]Io�x�= �Ta�i��� �p4�gqUȝ�&�� �K�tG��5�u-�u�]U����?��\`E�Z#�
��45���>V�'��L� �a��Ց���ח袼¦�n.����� �HE� ��2���cJ���ʼn�L����\� ,Z�H�M>(p�õ 㭫���r|�1 ���@'*rܪC��\^jB{�����ᵊ�U1G]'s!h
��m�1��s4���Ĝ�����5 �OP�~�ᷭ;�Q���
������~Q��ȇ�p�L�Z�.��8�ޱ��6�NE��m:H���v�2cѢ���L)�ߦ�6���fR�K�5⸟������ ��ذ�X|�O�ݛ˟��V�誂�ز_��� )?ݏ2�cZȈ�B ug�$.��� ����6d^V�RS�`,S)Cu�J�J������.���ȊEP��M㮇A�>-���m���X�K�NH�6�9#��q�7R�oھ��D4kO���5v*37-?]�r�2oQY��խ�ʸ��lвE%�ߞ��§�,�꒒���(����̅�imA�|>�' N�Z��d\GL����� }��
x�+)JMU0�`01��Ԃb�]۬f�x�F������y!���y%E��%� �v6��J�x�9�s�b���vai
x��=kw�6����M��c;ߔv{ֱ�6;N�FIg�qƇ"!��DjH*����� J�LII'n�x݋������X�M�������{���O4�&��-�t�a�:�f��c�k��#(z= ������q8=/��w����"������RL>�N�<�" n��u���ON�by���~0_0��Ao�7 ��*�p�{~rGJ�6����A� �$r�$~�lx/� �2Y.(�O�H���_�.b|�܃ ��/�x��*���D�@3�4�™��q��w?��"�˥I#(�H3?�g�M���3]`��7���7����#�i/�����.1ԥOW�?Ж��h���ci�O}W�;w�x�#?5'H�$��X����P��Y��rb\}t"�~`ՠ����9��c)ï(�/������$��u$]��}/�K�Z�A�����U�����,} -�q�['�K ��Q,e��w��2� ���<'�3� ��qbi츿��5p���Vrz~H�x��������ß{&Y8!������B�p@hL�g�Lc|�R�E@j)�L[<b� �O1^��m�xЃǷ����I�=�;J��-���Q�2É�9�S�x����;�RB�� ��¹Ԋd�~v2�7�{w�x6�ޕ��w vC�S=<��w�{*��nC�а�� ��@['��'C!%��>��#Jܔ����-��6��qL �-蜦����6c$ΌZ%�U�"��T-'��� L��z�sU��y�"��4�" )�s�z��5�S� �=%�}��>���%eY��|�9�Y�>߂f��y��#���-I5;vrr"}��(��H>�?j�$���$�u�Sj>ȋ��#�����)qn�iү���'�GY��2sqВ}�2���t�0^�����z9���s�Y�D��p~ǧE8YD`F� sbNh�����d�H&�#&��d8�}=���!!�M %Ee�q^6��� Md�����>�2����ؐ=M��,�;{" �� ;k�ѫ�rƤ��d��f�k ~<�(~}[��xԯ
�������Z��PVU~e2r|rxXc�1 M� �hOAОL!\�FK�n[&��wU<o�d�����d���QS�
�Z�jڎ��'�JY�8�|8���i���)ę�XK%��/����-0+Bx��P�)����%�*���H�vr� ̾j��ǫ!���U*!��#]᪕-GC-S�+D�+�����U�_� �+j)6�*�|�6�Q]*-HYE1C��[��yf���`�:f+z��:�ZU:��^4}9j�����o���
�Quj�x���=7�4�CC%ͪU*��JFU5�j"[_e���M��(5g+(�k:��9�ZguK�_�%�tS�Z�%�tÂZe�X�/ݐk����P���Ր]a� ŀ�r�ZVY��1����-� لZe¬�����n�� ���2_���L�LyjE���Lˀz�i�-'�ؤ�+�ЕZ��$��Н� K��v}�WW�Ͳ��e�=��V�96P�Vj\]YK�Ze ב=�[D�8�q�U��r �U�V��X�y�ZP�2�5���� �i�a �<#�h�2Q��� �� ����Ȧj��)�'�n����ճ�F�:�S�����B�2UW��SI��B�d0�@��uYK���X�X��,>� C��(@{۔ �TuKQ��WǮ�b]���$kcÚ�G5eKwU�-G��� �MTo�z��M˵ �d=˜��jPT�dS�U���UP���e�:��i�x��9'�R>"vл���{�|E��M��Wx�#�� \�p�+v骂(�&�0�d� ]H�M�";���.CB��+E G��߉:�E}H�`� o�e�U�S0�Y��i�i�� ���H���X��ݬ T �HG�XȜ<t~m!�� �0���|־o�I���
�=�j���LH*ԀT TҐ]��SdK��-���[�.r,dA���L�p�0оB[�յK!�����0'� ���8���>='@�w�f��D){K�b��嫡tvzq���ś�t��I�G� _���2A���{���y^Qf�^ �zM�·�����ˢz�
e ��U?{y><{y�O.�����W?J�<��KK��S(�积OG�J��tVC9+z��h~(K�^�j��ԐωVIß�r
J�+:��YE�x�ivQ:sY�aA����x���Z�����Y��B��g*!�u�|��.�n)u�����b��Ӕr$�F�ְ��"�i��iZ�J;q� �
0|B�Z�~��Jc
+�L*Q����gr@EfI��~B3)���*dŭP��?� %Yb4���b�s(�~�C�bE�T`5�[��)l�J^j:�����sh<[m:�H��Ƞfv�����*:�ܾ�n�"�mxvv�7
�>;=��%���h�$�?��j?R���)�Ƨ����5~����g������󳧦uVX�g�Y�Cw8��6*�p��$�5 h�/��������q˹�֕�M�{��_���Z)�,^'��e���:����Is'rf8��h҅M��ekcyV�S8It]��'@�:����n���kz�us2�L�!�������{��FC� ��D�[�c�P��L�`<���u�m^��,���ItM�m���mY��ŭ�=XL�K{��{�V�~1�n�MD(�pM�b�a���� rD�swM'!8�In��ѐ�� �9+� pW��N��������Ҟ�J�\�T4{Z1�+�8�M*%�z���t�?ӧ�xvė�#����ɥ����I�H̠�e�e���8��*���a�t��x��X�=�c�& ի s� �oju�dwYL�w퀪�͢ -f��yׁ �/�鈋� �c*�_/r/�&�,۰,f�&h�.��-nj,��({�m��f��![ԱZһz+�h�#����9K`�cd.�&Y�1R��*�gi_Ϝ��'< ����D>Y�&���2�6����xM�Uj��� �q�8����?#U��bU�Z#�6�v&dY�ڲ����}�@�b5�ư�A� ����G��I�������r�#{":��N�<��N�����"��] ]8�2d�fCף%ٕN\��ܾ�����x�>�Q]��ϛ<�2l�i��&�ՉZ����eS-?��rF�9UL�x?�Rئ7"�ۤ7v��I5�f��$�Ű�����}��V{���H���Q�;hR$@JЇ5�J���,�J��?p�$[�<VH�w>V&�/d򦤑�ڗ4�[QG\km�o��%ɎA�֋���5t���s8m��U������D�X��6�YUp�!�����&� �b?-F���{���k}Q�AZh4:�G�T��⭉k�w,���#q@tI`�;ۄ��8F6Qoy�ښ�܇D���l'2E�_�5�:ݍ&iC�lh������g���r��Ӈ��י�P *��\b��ď�d�?��������]��"k�밒P&7莦�EK��+�/f4T���Y�e�o
bdmK_��!�(火&fS�H�)r�k�/��#�-m��# j*"� o� �v�=�Y��%�C�O�>�uH�I�pS����U��������]% ��'�ܕ\�=�����4D��ޖK��ު/jA�2�vKpGk��0�n���-o��7]&���J��S�|~��]��H����:� ��_&�.(�b������g�}����A���I,�}���[�S����ާ�b�2�b_g��^i��u}>�ya_┌~k��9���۟�5������9k ��[��Nݡ��&'7���cϱ�d�����P���}F��Q{,'��� �R����}����E��Vڇ � A����f�/����y�Z�!a^�%�=�X^4�^Q*=�RH~|D��:$mIy��ǂ��)���?�=P�|������TN�Ǘ.2�:����J��mM왹|,}j�?�g�o:<�Dj��b���|
d<X�R�̊����27���/�lF�m���3`Z�����������'�|=1��)_OL����2�s�Ud�S���ɟcx&��kr��=�)р�^�Y|=�t��~?��@&��e�>d�/�� �,�h�}�?��+����(E���/
���>r��2��A�M��m��€~^1`�쓑��n�Ѝ���q@7;��ۉ;`[��֤�8���{�BYL��������2�����:���SغՀ������=2W�dc���RXDu���i0b��li��)9��D�r�;I5�##�9��O�Bz�EO7a$����� ˤ%���zI�8Ӣ6x�'�9��#�ԁ3-�'��>��=�8o�֭�},|�N�À��s��Oo�Pm���4n��)&�\��*'��;��s��]��m fK��܅�!Lb�w�2�C�D����s�D��uEw��6�ގ�X˜��C� [��h�r����r�z��ߴR�gu��A�����f�!��qf�ջ���@=�j�R�����Izv8����Л��6P��nK����&Ϻ���?��m#U���R��Pd���{"���=���e�����\J������D���2��՞�Q�1?sNdKI[���/Δ)`SV�8.��:���ug�Fl����yp��k�ٙt�V֖(u-�-�on��-fs�Z;���-No��ݖ��@����= 7�d��X�]�m��PUU^U��s[�T��$�� ���C�R�C(���B�w�$fMU`nj��,i�Y���&T�z4�-R/:��� ܉�ej�}e{"f�aѝ���yqz�O�����[� ݂��Q�m�g�Aa�w[�6p��-?]�|_GЇ��0)��X7z�t����;�t���—�c0`�Q#\$m� SHSm�'Ԁjk!�a��M�%�4a|���1��"���,�IY�X�
5�m�XQ51jFw�Bm�~�"䡢6�|�ӕ��U���-Q[f����$l��M,P�E� Hե 2�#U#���Җa_6��[BV4CY�.�u�:�c�.F�j4(�G���m�ڎ J[�61(mhRuhPTC8J�F����z"� Gi�h��R*U��`����B֬V��N� �;��Σ�r8k�+j���/Zod�7�e��P�M�a��(��D�c��kB�W矻�h����-�;�Z�����jZv5N��b�Vø��8��H#�.-W[���.�:Cg� m��ж���f4m��tC��%�鶐�P� �Gd���@ ��a�Ɛ���Pd�Cu��ҧ5 ��W��v[�尿�Jk㼩��Y�9j;���Q����DmG�hm2�n+@���C'Ϩ.���0�vw�x[Ϻ� �&�;�`���?��j�g�������b�u��8ul,K�sY�}.[������6�{v���)h��`WW��t��0g
|�!Y[3�:�n����������8+ w9b���݈��
�3%��+��-��Q|�w��b���B�C܃������z�U�/9 Vx���羶�P��0� ��w��ǚ���p�#'�6���GN3m���>�h;�U��L�F��p[X<���Wg8� ��Ο�a�ű��)��I��J �v��H�OW=7���)��z}x#wi�a/W=��:1�
�3?9���ɲc^�� h�Q8�=?���A�r�HXc�؇�������wP����$Hs���J��rz-;w��]�8��&k��X�z~�.N���e �Vb�#0>�.=E�u�^����L�c�$~p�ꌤ�l��Nt��,9H"�M�'Ϡ�/�IN)��(���~�x0 �<���ȉ|�#�1��>�K09)�'��U��$fm��ğ��g<�!$��ę�
D�����2)�3���y����Jw���n�u���`��Q�Ms2+�M�Xw ))�i���PmWQuM<OQ]d������멎�h�є"]���������6tMGc�Wu r]�aa�Ex�ǚ���֬�XOƦg*�`��mU�<ӐMְ���O���4�^}o��?����zg.������OV`���__����W:~�-e|�{w_����;�@3.�;jNE� Hz��AG%�(r��N+z�J$�Dv]��U C�z� ��23@��?�dGQX�1��P� r ���w��p���!˴��I͜$� q�^q�w'
@��������wqc��-���4�����I~ 11�&`�N�����|1���-�s$���P6"W�@��H�:As$'q|M���/���`����s���II(aǽ-~H.i�͏�φ?��������9��V��H�S�@C1��m��c��x�}< �ZkF:��n�������;I�\A~� 0;'�W��AՌn1�&
�B�L.�,
�"t+���n�q6��HGH}�8�w��V{ĩs~sZ��L�)��k[ !C��Ĝa�Q2 �t�ە���0-����w!�Q��4��G%�$7M�f��y/]07�=y��%~4��ǮpZ*7$��[�ʗ�q��y\��/��'�����#y �x����=w^q���W�~�PnW ܁��P� �y�$�,cB���=� � ������-5��;��F�����ޖ�I�$Zp(0�j<e ����{Z�.'\���R�7��r�3=p��F_�)~���~�aM@J~�����`i \�*ᜳ��W,�G�im�%¥)���냗�\)���x� �Z63��$�q�������(>b��!-X-w_�Ɉi �c�&��8W�"�����"Z�?��_�/p�D�� �$��7���9��^�^!�XxmI�V\��P3 ~ϱ;u"�#5�G� m|q(�)�f�R�Ӗ�J��"�V�9+B$��n��3 4 �̹������^8B�z����uL�b�2V��2�RחB‑;��{|�齠/./h�SF����eV�BV��ɖc]�Qg������8���9NE�^:�y!E�;A~��ܮTv�j��TKD<*]�.��4�+�Oo!~<�����E��4չH1�:�kA,�z|w-�v�"l k�d�H�Fֻ���cd�3�qz� U�#��&�02��kZ��i%��y�u���u�� ��q_�+o~_�/XK#
���w��n��]-E$��r�u4��]���+�-��r��u��u!�^�j��`��$ԜM��Z-9s}#P6��\��]��Vq�|[�>�(�V�g��\o=�H�3��
I�q�R�z��k&������&��"
�o���i�H�T�7b��R�`�=��[��t-גW��U�������Cgδ��k�*�™UIf�-��I�f�E��Dw�^k�P^��|�����<|\an��֦���K$)��Q�� R# �˃/V/Kx���)vSg?_�� 2l�RRspK A��f������"�sdٱW�(ŲL��6 �I͂�s�D3�T�h�6��.��~\fG�Ͳ��-S�+%>���l��r��m�f�}��� )��RӺ�շe~TֈI�t��T�% G����\e�"�r7TeO\04GS��R$������"��0_a��$m8k�9����([7�\��J�U�G����q��w
x��kS�H�:�B��$f��$;W[��p1���}`65��F=��L )����h��l�.��.�"���~kFt�a�*��t�OZj�=Eu��i:2g��ϐ����ΐk;�k����v���)���V��[�2�� �%[C�I� I� �)j;m���x���K�(��Dw|�0G�Œn�����%�J2I���+�E�\��
Ė�%q�b/϶���@ڰ�r(������$Wf��)�4��e|Mc���~��s(��.V� �e��x�\�pI� VN&�i���F�G�l���[0 H�S��)�"��+Y!�� UzNA�w���|��
��f^�b�*O��� OY�+�%����8W�Dq� ���(Y��\���ʋ�='��� ����"���l�f:x�箩�B%�� mn<��k���~]s�<UVLyHZ���T�3fd�Ϧ˘R��79�2�����ͫ5���-O�cK�Y������wuS "�c縚�Ʌ�x՘:Qm"��8�+`��&Q;$s�]�d���s�r�%>���d&W��] ������l��nqN,X(���.��)�P��2�nz|N2Ul��b�U>]�T&c��ΫVӜ�&r����vi��"V$��j!V�R@��P�以� b�/R� �=S�u9yQ&:�O պ�diX���3e�V�S��ݞai���.����l�`D��l�Km*��AO鬇ÐE+�˅F�2��>�x��M���}@�ɸ)� �f��,�C���@�ndK�-�L�P��la.��ԇ�dq%ϥ$_��F@�M'�������TOa�TE�6���J�oP�Qi2��"�i������%V�`��T! ��t�Z�7u�3�7�D��k\�A�v��Wsea�[)��z�޽�;FV�'sk�Sf}�ë �+B�$�.�z+d��}���T�=��iumdY��qt]�udwg��8�c�c[��Y3�C��L��@��3]�y����=� �v���y�i���,�4B���B���
�2%W��*�ǀ������ �R�$&)�#RT�T�#2#)��S�D����[�� X���:�a:H�X�:��X���PK�8�Og�.�=3f�����x�րu��ި�ҵ��q��a��n���n֌<��t����jR�'��WE<�H9� ���h�fgt2T'cMٟ�<<:,��������1�XG�7ãc '���p\�@a8b� $���`�?�$M �O�^)�����
w-�� c{�s�3��y������+ ���N��)�G�&��Zh@�� _�x�V�W��UB�z�2p��H#���a���t���L@З�~�ޱ�nQ#�'�'��' 4k��!��>�ݝ�dO��� ߞ��ҍ e2���v^����B�Ӎ�m��SG�� �e�~� ���"9�i�u?�v�u��z[=�|��<MH�����YD@[�iV~ۭM�Sq�^����gLmS� ]W�Y��P9I'a�LH��wn *!����-�"z�
ɍi��9�/���N�`2x����4ˁ�^��_[�9YM�k��$���ڝ�ς_ �"ɂ��d,r���P�,d�K�-)���;28O�*tMܓK�1���̴�v��jE��UW�]d��rQ9ɹd� �QKg�]� )ȓ�H���n�f�cW!�� �U��|46��a�{� ��dž���������'�ܐ��r
����x�v/�^,�]���0z`�o��|��p-zdxH�:?t���_w
c�;��x� ���ב��7��\�_f>+�x�.�m�^�7�v�n��̵���n�� z���n��M'��)�Z=q����G#���[�#�et���X=���*�=[e���{�}����O���}�e�����<c~��W�����T�é�qq�Z2{�����}'�GL%��r~���]�����w�;��G{����,fܳb���;��dw��4��/p����#;7�s�'�<��>�1�(j�e^��������_ZW���&şkE�D�P-K��#- �AHҩڃQQ�
�����z�9-����۟�ᅻ|1��p
O�������QR�%��Q��p��E�NK|�����t���oN�yL2����B����� Z:�9b:����I��s��鵥�Ӣ��k�\Do$�I��G���Mq�� aH��(b|��sF,f_�,��E�= x�����PG���$‹E!����W}R�7�y��ޱ��\~��~dzMK�;�����x����2� ��l�k3�kN�Dy� h�x��]�2��i�?|�J�����?#�'�趭ur �"����WT�� �[��l�t��a#Ss �בk�6[�O��6U�����}��w�ov�/}��O��?z; ���v����{�����d�g}o��]7�@��F[�T
^T���y2 �x��8 k
�)���O��U�Iӄ%�U�쥉I\t�𢰰؍���hUslGx�PN���h���1�QO��?*!o�Q�2�)q�+�4��)���p7Sf����.�5 �W��a�MZ�n�`�u�`�f'X�Ղ��@B���v��G�|7Ui ��y}�`��������&�,,��V� �V�
�¶2 ��2B��<_d��¿l'�QET8�\E��jO㭭����`�R�k�Zz�h�|�3��e b��Q�U����@��P���0U��4gdO�p.�R��({�X*�c�Τ�oY.s2���g�#��$�%�W�������)�¤�c�Y#5�*T��K �9.�㵣'qP�D1p���b�&x��4���L9R_`1��<���<lW��F#��1k�)�%������c�M3{��C+E|�v�f�ֻF!.xh_j���h�q\�� V�l��"ً��� �W��"$4LY�\�.%�b��٘����w�ܕ�+��ZӟUxG Ō��N��!u�����3�'���Xg����į���9�I���n�x�j�Ұ]��5>[������F�qa`�Bnk~X�ln6�����q�j
Ue�U���K"��x!N�U�%pSQ�-�R���ٵl��VH
���3�cp��$��`!6n�ϑ$���m���V�Ӛ�r�I�҄Y���r]_7��J�Vf3�G�y��%��Mqs�>^�7BCF{D~[�,o��Vh�\��*���8�0���
�d�nc��Zq��6�L#�� �ᶱ����2�&">|4��������Ey�m�IZ�?ˈ�}���W:��M�20J��_ ��a�e[�̺�k��+�NV�mKji�T�1���(��ƨ�Y�;e��;=�f��5x���Ӽ����ͼe^�v�j5M��w4�q�nezS �|ɪ�I@Y ��M�xj��dS:U &E3��態�?,�"J����ȴ���ɖY���'�����ļn
x�]�K�\7��u�����.I%����z�{f���0�m�6��=��ڸ[ !$>��Ω���c
�x�z����{�n)mwlwok۝���ß�?��݉-l6���s�����.����o`�[Χ�`k�p��<-��_���x:�R����8������]9-�����֧��ew��]m_^M�χ6������N���8�L����j���Z��|����~ȥU�~�����<No&�"g�}R����DY]/3�XfM�K�[�G����۬Q����* %�qclSD� ���d~ � �3c�\P3F�
�%��\
ښƹ^�5,.0i� �T� 09��cA��8�-YRN�5�X1�<��Go�� �!0<9�t1 � �oʖx��z�ќ�d�8�s��"�Vk������E��3W�\��D �)��0]`N�<�.sv&���h:�� �Y�t �� ��)�� &�h��>��$�� (�]�fU�`t� �k�����d�ǘ�EfG�o`�F�Y!3U�F�t�!��@�����DB�z�C�b�[׻��*�FJm�t�~��ڿB�P�D���D6�j<Í�&�B��MNؚ�� ��#�\���J=�=�a��^cV�&�erH�Ϟ:"Zs��ð��w��e� �Ï�����m�m�?iM>�
x�5�]h�Q�If7�P4�b[IK��9��L���1�pq~��b����L$͊��Bϼ��J=K�ܬ�h�i��l-!�VJm������\}��߷s�D劊J��� "D��K#�k�[M�2��Ɔ�概�/���=�M273��(}_�J+��a�rЂ+
�$Z����T�[���aMߚ�Os����|
h+iţ�,J � *-�{�tx�[Q�d��b���s��ێdm�"��CB�D���\E}PLX�.�|x�n����[o�]6?��ꋖE
�� "/�Y��'"�1m�lx�l� �-�ܺs�,�U�ߛ�2��p���G�]1p�R,�����~vl��xC���{������#�\t ��` wh���tĎ��]��=�'G��Y�v{e
DΜ7=D��{��sΘI�A��j2u#c�k�=�5������E 2�>-�K�R
�5�:�����7��&�'r�V>��t�b
xBx2$�[�Q �k�1�d�<P]v��[v�*���^��UT[�Y4K�qB;*#0eP�� Z�����L�һ�e[��7��zԟ��Ei��
x��kW۸�~�����~���G��޳��$�����n�l��ֱS�i�=�������Ж��G'H�i4/KΌ���Y�f��ӽ55
Ԟ�zFh�~�2/0B�cA�{N`���ڎ�����lJ �?;���xӛGq�%a��q���,���H���5`?MN�����4*:LwB�@������Ԙ&�szʐd��Q��s�3��%��I�Q�ȷv�I��u`�
(�,��om)�X����+a�N�y|M���� ����*�(���)��S�=��L��x<�$q0z���,���^�EaIJ��d�Qf=�R%/w���" ? ��]�+�&�X�/@^|Ue��2�{q�+3zA��F��N�B)R�c
�B3_�]��tx���Qv�� �G��.΢\�����rIT�������O�TQ��u)�Ŋ��h+��4�ȲFE,A�� C�lC�f��tB���z^���Y������
��\Si^���j�?h��Hݨ:SVЀ� �� ��>Lk /R�.ۧ�Z3��O;1;���v���_�a�E��4`�р���WB���4h�+o�Oi>�A��` Z�P
�����t� �m�~�S}���1I (�F���Z��8�I�L�;:�� �����d^�
1�+�B"-.fՌ�RJ��1�
��^S�F ��iYȞ �|_5M U ��<e�����e�R���n�0uEY
�NGy��8E�c���$
9w�}�i�脝`>�������*��k>�f>�E� �ȸ���s����G��Ϯ�s�X��A�A��K�jb�a?�]�c+���� � ��)��Z��w� ?�E�.�u�� %.�Q|��6��ļ_��gL�`�
+Ni��{j�*����{ L�q���j�z� �i�.f�Z��R�W ��z�F��y" ��ד�5�)�>)�Q% �Q
�T�%2���yB��(���i�6�,��:���:���uu�r�@���h� M��ٮ��؁�9��$�kui�i�'�F|�
��eچZ�e�!�!6!l
�W���!�qܵ:| �7?�A�k�)KX�(ׇ9T�Q����,cIyb�hS� <�0&X��EL�� �!�/!a׶8�a����������wh����Ӱ4����0��QY�fZD׺v�kf���ݮ���լ�ݞ�p?C������xW���TM�(O�G�C�����|{�x� �G��7�exxP��(??��}"��χ�G6������F�4�S���D�? ����������Se�)p���d��l����{� ���f������v3��(��ÆS�Zd�zU��j<]+�k��QT�v�t9����H=����H�]em48���a������c�k�жS�k�b{d �ś���.&{yp�r�A����kɁ �j� ��e��M�6~Y�,����A����x�o_(��2дa��h��;G&JCݱ�mC�Q$kא't����#�=����?��C:Y.���v*�� 㯻�A<F��(��e��6$��u����U�l���Ed�xHנrY��>F�)�bve�v������?�?x��LZ�^/¯M�N�#K�"(G?c�uk�`�6K��9w5�5 i���r��9�VvW)�%b����MB������#��4TK�Z�L�����T��;���p7Z�C"� �����Te���b��-�w�ڄȍ;cü6D(����X�>����۷���b�� ڒr7�Wױ(�F �?_ny����͸�-[�xL��`[߇i��6��`t�~���\ˍ�����A���ܾ�hV��ۅqq��ⶫ�t�Ky�p��/Bq�����<M�dv�Ԯ��g�w��:Y��x�L�7���{��}?�a��/?�H,�Gw�����hE�a�,��s+�i��߻���2�i��w�H�g��\������ٟ.���P�pq�^"��5�;���bwJ�_����-m���ì���zM��h����Ō̷sv��7��<�Dɫf����ux�ƍ���y"�m��*㛼&�m�iگ�- .�Һ�f���R�\[�Y,d��9�u25�~���,�Y6Q{�+Sg�3Y]0Q/7&uǫ�&*@Dj���z4N�%����
pP�����j��Lb�[�DrtL"�&��8�҉�a�8� s�De�0Bq �N5� � �8�%b�W��\����D�SVT�+�A'e���,{?}.� N��(���h���J�b�*Mr��g�4�����N��eZ?tDZ����CW'�36��Y���W|"���@�1ߧo��%���5���u5bR���0t-�5u�궫S�3�F �������|�P�{��|��,��?~����֖��,�]�x� ���Y��X�cS�,��;�1ۤ���k���N|>q��y�-�ֳ�/�×��Gi?�(y�.*��>��?z���;?7޼��~xy�����ӫ�E+���Bၔl^T9 �[2:r2��?�JV��#��9����
�eY� �\W�LgiR��,��\M�śhUsl��Z���=�yY�f �QO�/�X�(Q��$-�Y���� `��)!ģ����LdD�g0��瀛)4�5?T����ls�j
$Xne���dȏ�i��� �������^�t<��"�"�Lg,�,gA/�(��Q�(gL9+�YV�ς�N��r�)nK�Pn���$���QY�\I� ʮ���T�B���rL�/�R>��A|���_H�*O���@ō �ʊ���iVp�{�;�u/�O��X<\�t��R`��,����ܱ�Y�aN���Kc��T
տ0Y�ZǓ:2�U��%���rw"��8��+�ՕG8Ms��\��FF梑j ˱_�S�n�y� 2IL�x�� ʰV��\��g>�k��ӍYJ�kx�s!���8�x`�}�HKι�T3``�`�~���[�<.C}՗� �Yq�7�� �����\b� ֒�089|d��E�j�Y��VwK�h$Q5��Y=���w��u��Ӵۜ�~N�VNa�;S>e�V{�����V�k�4͖�\[+��P�B H�8�'MQ�f�������]�*�^���i�g}�J$ݴ+�V��&=��疼v��e��I���J=�W�aT�Gyіxk�ֶ]�ݞޓ���!��G��͸)�\�����O�*Vk�$�� ����I<�EY1�i���Ay$�"2)�b�oW\��P�c��,y)8�a}V�|d�fS��SI�zr����y�.��
x��S�n�0�����׺�L=�/m�"�� |X�+��D��G�{HK~���Dwg8�+4�����k�G�.+Y�!�+��5�Zj�$f���+(�"�D@J������� ,���B
iw���V�=��n��=�w�T���b�"
�M�(A:�e����`񦱎��b�����MvW���&<�|J���~O�t��FAq�i5�q�5^��_i���̭%n>v������м�y�����vpK@J��Zx?��<.�y��D��{<�,Q���jYs�� ����,ўD�V����{�ֺ�펜.����9��V­'�d����5A���
�Y�Z�5�Ͼ_Vy}�֕��|9�NM�`y�95�VM�� �S����s��8�׍�xa�]�ݐ�sX�\�_na�c�4�)�Ƙ"�$4H�4�9M`p*DG!R�9BB��3���S��K���7��h� @�2q '�(�� cY�S@��B�rd!�< 'T�!K2��1�Dl�MG~��y�f�w�*��X�y2��g�<��%�%]�l�����v������[\$�2?�7�96�
b6d7cbf85b5834f0c47c71c00c8cd9d21416c6be
{
"id": "3ace93f3fbd7d696309a93da803120c9",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.7",
"solcLongVersion": "0.8.7+commit.e28d00a7",
"input": {
"language": "Solidity",
"sources": {
"contracts/FundMe.sol": {
"content": "// Get funds from users\n// Withdraw funds\n// Set a minimum funding value in USD\n\n// SDPX-License-Identifier: MIT\n\npragma solidity ^0.8.0;\n\ncontract FundMe {\n function fund () public payable {\n // Want to be able to set a minimum fund amount in USD\n // 1. How to send ETH to this contract\n require(msg.value > 1e18); // 1 * 10 ** 18\n msg.value;\n }\n\n // function withdraw(){}\n}"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"storageLayout",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"contracts": {
"contracts/FundMe.sol": {
"FundMe": {
"abi": [
{
"inputs": [],
"name": "fund",
"outputs": [],
"stateMutability": "payable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": " /* \"contracts/FundMe.sol\":139:412 contract FundMe {... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\ntag_1:\n pop\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"contracts/FundMe.sol\":139:412 contract FundMe {... */\n mstore(0x40, 0x80)\n jumpi(tag_1, lt(calldatasize, 0x04))\n shr(0xe0, calldataload(0x00))\n dup1\n 0xb60d4288\n eq\n tag_2\n jumpi\n tag_1:\n 0x00\n dup1\n revert\n /* \"contracts/FundMe.sol\":161:380 function fund () public payable {... */\n tag_2:\n tag_3\n tag_4\n jump\t// in\n tag_3:\n stop\n tag_4:\n /* \"contracts/FundMe.sol\":333:337 1e18 */\n 0x0de0b6b3a7640000\n /* \"contracts/FundMe.sol\":321:330 msg.value */\n callvalue\n /* \"contracts/FundMe.sol\":321:337 msg.value > 1e18 */\n gt\n /* \"contracts/FundMe.sol\":313:338 require(msg.value > 1e18) */\n tag_6\n jumpi\n 0x00\n dup1\n revert\n tag_6:\n /* \"contracts/FundMe.sol\":161:380 function fund () public payable {... */\n jump\t// out\n\n auxdata: 0xa2646970667358221220772070a1f478505b07b259f1efbab38b1de654b44cea2b903612d8ff42c9318e64736f6c63430008070033\n}\n",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "6080604052348015600f57600080fd5b5060748061001e6000396000f3fe608060405260043610601c5760003560e01c8063b60d4288146021575b600080fd5b60276029565b005b670de0b6b3a76400003411603c57600080fd5b56fea2646970667358221220772070a1f478505b07b259f1efbab38b1de654b44cea2b903612d8ff42c9318e64736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH1 0xF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x74 DUP1 PUSH2 0x1E PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH1 0x1C JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xB60D4288 EQ PUSH1 0x21 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x27 PUSH1 0x29 JUMP JUMPDEST STOP JUMPDEST PUSH8 0xDE0B6B3A7640000 CALLVALUE GT PUSH1 0x3C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH24 0x2070A1F478505B07B259F1EFBAB38B1DE654B44CEA2B9036 SLT 0xD8 SELFDESTRUCT TIMESTAMP 0xC9 BALANCE DUP15 PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER ",
"sourceMap": "139:273:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@fund_16": {
"entryPoint": 41,
"id": 16,
"parameterSlots": 0,
"returnSlots": 0
}
},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405260043610601c5760003560e01c8063b60d4288146021575b600080fd5b60276029565b005b670de0b6b3a76400003411603c57600080fd5b56fea2646970667358221220772070a1f478505b07b259f1efbab38b1de654b44cea2b903612d8ff42c9318e64736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH1 0x1C JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xB60D4288 EQ PUSH1 0x21 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x27 PUSH1 0x29 JUMP JUMPDEST STOP JUMPDEST PUSH8 0xDE0B6B3A7640000 CALLVALUE GT PUSH1 0x3C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH24 0x2070A1F478505B07B259F1EFBAB38B1DE654B44CEA2B9036 SLT 0xD8 SELFDESTRUCT TIMESTAMP 0xC9 BALANCE DUP15 PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER ",
"sourceMap": "139:273:0:-:0;;;;;;;;;;;;;;;;;;;;;161:219;;;:::i;:::-;;;333:4;321:9;:16;313:25;;;;;;161:219::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "23200",
"executionCost": "75",
"totalCost": "23275"
},
"external": {
"fund()": "120"
}
},
"legacyAssembly": {
".code": [
{
"begin": 139,
"end": 412,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 139,
"end": 412,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 139,
"end": 412,
"name": "MSTORE",
"source": 0
},
{
"begin": 139,
"end": 412,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 139,
"end": 412,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 412,
"name": "ISZERO",
"source": 0
},
{
"begin": 139,
"end": 412,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 139,
"end": 412,
"name": "JUMPI",
"source": 0
},
{
"begin": 139,
"end": 412,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 412,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 412,
"name": "REVERT",
"source": 0
},
{
"begin": 139,
"end": 412,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 139,
"end": 412,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 139,
"end": 412,
"name": "POP",
"source": 0
},
{
"begin": 139,
"end": 412,
"name": "PUSH #[$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 139,
"end": 412,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 412,
"name": "PUSH [$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 139,
"end": 412,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 412,
"name": "CODECOPY",
"source": 0
},
{
"begin": 139,
"end": 412,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 412,
"name": "RETURN",
"source": 0
}
],
".data": {
"0": {
".auxdata": "a2646970667358221220772070a1f478505b07b259f1efbab38b1de654b44cea2b903612d8ff42c9318e64736f6c63430008070033",
".code": [
{
"begin": 139,
"end": 412,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 139,
"end": 412,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 139,
"end": 412,
"name": "MSTORE",
"source": 0
},
{
"begin": 139,
"end": 412,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 139,
"end": 412,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 139,
"end": 412,
"name": "LT",
"source": 0
},
{
"begin": 139,
"end": 412,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 139,
"end": 412,
"name": "JUMPI",
"source": 0
},
{
"begin": 139,
"end": 412,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 412,
"name": "CALLDATALOAD",
"source": 0
},
{
"begin": 139,
"end": 412,
"name": "PUSH",
"source": 0,
"value": "E0"
},
{
"begin": 139,
"end": 412,
"name": "SHR",
"source": 0
},
{
"begin": 139,
"end": 412,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 412,
"name": "PUSH",
"source": 0,
"value": "B60D4288"
},
{
"begin": 139,
"end": 412,
"name": "EQ",
"source": 0
},
{
"begin": 139,
"end": 412,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 139,
"end": 412,
"name": "JUMPI",
"source": 0
},
{
"begin": 139,
"end": 412,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 139,
"end": 412,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 139,
"end": 412,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 412,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 412,
"name": "REVERT",
"source": 0
},
{
"begin": 161,
"end": 380,
"name": "tag",
"source": 0,
"value": "2"
},
{
"begin": 161,
"end": 380,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 161,
"end": 380,
"name": "PUSH [tag]",
"source": 0,
"value": "3"
},
{
"begin": 161,
"end": 380,
"name": "PUSH [tag]",
"source": 0,
"value": "4"
},
{
"begin": 161,
"end": 380,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 161,
"end": 380,
"name": "tag",
"source": 0,
"value": "3"
},
{
"begin": 161,
"end": 380,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 161,
"end": 380,
"name": "STOP",
"source": 0
},
{
"begin": 161,
"end": 380,
"name": "tag",
"source": 0,
"value": "4"
},
{
"begin": 161,
"end": 380,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 333,
"end": 337,
"name": "PUSH",
"source": 0,
"value": "DE0B6B3A7640000"
},
{
"begin": 321,
"end": 330,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 321,
"end": 337,
"name": "GT",
"source": 0
},
{
"begin": 313,
"end": 338,
"name": "PUSH [tag]",
"source": 0,
"value": "6"
},
{
"begin": 313,
"end": 338,
"name": "JUMPI",
"source": 0
},
{
"begin": 313,
"end": 338,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 313,
"end": 338,
"name": "DUP1",
"source": 0
},
{
"begin": 313,
"end": 338,
"name": "REVERT",
"source": 0
},
{
"begin": 313,
"end": 338,
"name": "tag",
"source": 0,
"value": "6"
},
{
"begin": 313,
"end": 338,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 161,
"end": 380,
"name": "JUMP",
"source": 0,
"value": "[out]"
}
]
}
}
},
"methodIdentifiers": {
"fund()": "b60d4288"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.7+commit.e28d00a7\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"fund\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/FundMe.sol\":\"FundMe\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/FundMe.sol\":{\"keccak256\":\"0xf3df21e68a2bc1f4daa6e874fca757b420e3177a874451b49539fb8f64525c55\",\"urls\":[\"bzz-raw://11e6b65aa58af6f7723423959fd953ad54b95b7107b0df13d9830012d0e5541c\",\"dweb:/ipfs/QmWGsRS2HYy6rwac4ANpe4Q1EXpN91KiCPS7SfDcYn51JH\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
}
},
"errors": [
{
"component": "general",
"errorCode": "1878",
"formattedMessage": "Warning: SPDX license identifier not provided in source file. Before publishing, consider adding a comment containing \"SPDX-License-Identifier: <SPDX-License>\" to each source file. Use \"SPDX-License-Identifier: UNLICENSED\" for non-open-source code. Please see https://spdx.org for more information.\n--> contracts/FundMe.sol\n\n",
"message": "SPDX license identifier not provided in source file. Before publishing, consider adding a comment containing \"SPDX-License-Identifier: <SPDX-License>\" to each source file. Use \"SPDX-License-Identifier: UNLICENSED\" for non-open-source code. Please see https://spdx.org for more information.",
"severity": "warning",
"sourceLocation": {
"end": -1,
"file": "contracts/FundMe.sol",
"start": -1
},
"type": "Warning"
}
],
"sources": {
"contracts/FundMe.sol": {
"ast": {
"absolutePath": "contracts/FundMe.sol",
"exportedSymbols": {
"FundMe": [
17
]
},
"id": 18,
"nodeType": "SourceUnit",
"nodes": [
{
"id": 1,
"literals": [
"solidity",
"^",
"0.8",
".0"
],
"nodeType": "PragmaDirective",
"src": "114:23:0"
},
{
"abstract": false,
"baseContracts": [],
"contractDependencies": [],
"contractKind": "contract",
"fullyImplemented": true,
"id": 17,
"linearizedBaseContracts": [
17
],
"name": "FundMe",
"nameLocation": "148:6:0",
"nodeType": "ContractDefinition",
"nodes": [
{
"body": {
"id": 15,
"nodeType": "Block",
"src": "193:187:0",
"statements": [
{
"expression": {
"arguments": [
{
"commonType": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"id": 8,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftExpression": {
"expression": {
"id": 5,
"name": "msg",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967281,
"src": "321:3:0",
"typeDescriptions": {
"typeIdentifier": "t_magic_message",
"typeString": "msg"
}
},
"id": 6,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberName": "value",
"nodeType": "MemberAccess",
"src": "321:9:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"nodeType": "BinaryOperation",
"operator": ">",
"rightExpression": {
"hexValue": "31653138",
"id": 7,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "number",
"lValueRequested": false,
"nodeType": "Literal",
"src": "333:4:0",
"typeDescriptions": {
"typeIdentifier": "t_rational_1000000000000000000_by_1",
"typeString": "int_const 1000000000000000000"
},
"value": "1e18"
},
"src": "321:16:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bool",
"typeString": "bool"
}
],
"id": 4,
"name": "require",
"nodeType": "Identifier",
"overloadedDeclarations": [
4294967278,
4294967278
],
"referencedDeclaration": 4294967278,
"src": "313:7:0",
"typeDescriptions": {
"typeIdentifier": "t_function_require_pure$_t_bool_$returns$__$",
"typeString": "function (bool) pure"
}
},
"id": 9,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "313:25:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 10,
"nodeType": "ExpressionStatement",
"src": "313:25:0"
},
{
"expression": {
"expression": {
"id": 11,
"name": "msg",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967281,
"src": "364:3:0",
"typeDescriptions": {
"typeIdentifier": "t_magic_message",
"typeString": "msg"
}
},
"id": 13,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberName": "value",
"nodeType": "MemberAccess",
"src": "364:9:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"id": 14,
"nodeType": "ExpressionStatement",
"src": "364:9:0"
}
]
},
"functionSelector": "b60d4288",
"id": 16,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "fund",
"nameLocation": "170:4:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 2,
"nodeType": "ParameterList",
"parameters": [],
"src": "175:2:0"
},
"returnParameters": {
"id": 3,
"nodeType": "ParameterList",
"parameters": [],
"src": "193:0:0"
},
"scope": 17,
"src": "161:219:0",
"stateMutability": "payable",
"virtual": false,
"visibility": "public"
}
],
"scope": 18,
"src": "139:273:0",
"usedErrors": []
}
],
"src": "114:298:0"
},
"id": 0
}
}
}
}
{
"id": "78762b319291438519a6cb53d0fab1c1",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.7",
"solcLongVersion": "0.8.7+commit.e28d00a7",
"input": {
"language": "Solidity",
"sources": {
"contracts/FundMe.sol": {
"content": "// SDPX-License-Identifier: MIT\n// Get funds from users\n// Withdraw funds\n// Set a minimum funding value in USD\n\n\npragma solidity ^0.8.0;\n\ncontract FundMe {\n function fund () public payable {\n // Want to be able to set a minimum fund amount in USD\n // 1. How to send ETH to this contract\n require(msg.value > 1e18); // 1 * 10 ** 18\n msg.value;\n }\n\n // function withdraw(){}\n}"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"storageLayout",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"contracts": {
"contracts/FundMe.sol": {
"FundMe": {
"abi": [
{
"inputs": [],
"name": "fund",
"outputs": [],
"stateMutability": "payable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": " /* \"contracts/FundMe.sol\":139:412 contract FundMe {... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\ntag_1:\n pop\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"contracts/FundMe.sol\":139:412 contract FundMe {... */\n mstore(0x40, 0x80)\n jumpi(tag_1, lt(calldatasize, 0x04))\n shr(0xe0, calldataload(0x00))\n dup1\n 0xb60d4288\n eq\n tag_2\n jumpi\n tag_1:\n 0x00\n dup1\n revert\n /* \"contracts/FundMe.sol\":161:380 function fund () public payable {... */\n tag_2:\n tag_3\n tag_4\n jump\t// in\n tag_3:\n stop\n tag_4:\n /* \"contracts/FundMe.sol\":333:337 1e18 */\n 0x0de0b6b3a7640000\n /* \"contracts/FundMe.sol\":321:330 msg.value */\n callvalue\n /* \"contracts/FundMe.sol\":321:337 msg.value > 1e18 */\n gt\n /* \"contracts/FundMe.sol\":313:338 require(msg.value > 1e18) */\n tag_6\n jumpi\n 0x00\n dup1\n revert\n tag_6:\n /* \"contracts/FundMe.sol\":161:380 function fund () public payable {... */\n jump\t// out\n\n auxdata: 0xa26469706673582212206e9f4089e6fa1d87f075a4b59b2f77bd9e0c786831aad7ba17309191ba3a1f9864736f6c63430008070033\n}\n",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "6080604052348015600f57600080fd5b5060748061001e6000396000f3fe608060405260043610601c5760003560e01c8063b60d4288146021575b600080fd5b60276029565b005b670de0b6b3a76400003411603c57600080fd5b56fea26469706673582212206e9f4089e6fa1d87f075a4b59b2f77bd9e0c786831aad7ba17309191ba3a1f9864736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH1 0xF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x74 DUP1 PUSH2 0x1E PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH1 0x1C JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xB60D4288 EQ PUSH1 0x21 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x27 PUSH1 0x29 JUMP JUMPDEST STOP JUMPDEST PUSH8 0xDE0B6B3A7640000 CALLVALUE GT PUSH1 0x3C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH15 0x9F4089E6FA1D87F075A4B59B2F77BD SWAP15 0xC PUSH25 0x6831AAD7BA17309191BA3A1F9864736F6C6343000807003300 ",
"sourceMap": "139:273:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@fund_16": {
"entryPoint": 41,
"id": 16,
"parameterSlots": 0,
"returnSlots": 0
}
},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405260043610601c5760003560e01c8063b60d4288146021575b600080fd5b60276029565b005b670de0b6b3a76400003411603c57600080fd5b56fea26469706673582212206e9f4089e6fa1d87f075a4b59b2f77bd9e0c786831aad7ba17309191ba3a1f9864736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH1 0x1C JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xB60D4288 EQ PUSH1 0x21 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x27 PUSH1 0x29 JUMP JUMPDEST STOP JUMPDEST PUSH8 0xDE0B6B3A7640000 CALLVALUE GT PUSH1 0x3C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH15 0x9F4089E6FA1D87F075A4B59B2F77BD SWAP15 0xC PUSH25 0x6831AAD7BA17309191BA3A1F9864736F6C6343000807003300 ",
"sourceMap": "139:273:0:-:0;;;;;;;;;;;;;;;;;;;;;161:219;;;:::i;:::-;;;333:4;321:9;:16;313:25;;;;;;161:219::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "23200",
"executionCost": "75",
"totalCost": "23275"
},
"external": {
"fund()": "120"
}
},
"legacyAssembly": {
".code": [
{
"begin": 139,
"end": 412,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 139,
"end": 412,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 139,
"end": 412,
"name": "MSTORE",
"source": 0
},
{
"begin": 139,
"end": 412,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 139,
"end": 412,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 412,
"name": "ISZERO",
"source": 0
},
{
"begin": 139,
"end": 412,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 139,
"end": 412,
"name": "JUMPI",
"source": 0
},
{
"begin": 139,
"end": 412,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 412,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 412,
"name": "REVERT",
"source": 0
},
{
"begin": 139,
"end": 412,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 139,
"end": 412,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 139,
"end": 412,
"name": "POP",
"source": 0
},
{
"begin": 139,
"end": 412,
"name": "PUSH #[$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 139,
"end": 412,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 412,
"name": "PUSH [$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 139,
"end": 412,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 412,
"name": "CODECOPY",
"source": 0
},
{
"begin": 139,
"end": 412,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 412,
"name": "RETURN",
"source": 0
}
],
".data": {
"0": {
".auxdata": "a26469706673582212206e9f4089e6fa1d87f075a4b59b2f77bd9e0c786831aad7ba17309191ba3a1f9864736f6c63430008070033",
".code": [
{
"begin": 139,
"end": 412,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 139,
"end": 412,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 139,
"end": 412,
"name": "MSTORE",
"source": 0
},
{
"begin": 139,
"end": 412,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 139,
"end": 412,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 139,
"end": 412,
"name": "LT",
"source": 0
},
{
"begin": 139,
"end": 412,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 139,
"end": 412,
"name": "JUMPI",
"source": 0
},
{
"begin": 139,
"end": 412,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 412,
"name": "CALLDATALOAD",
"source": 0
},
{
"begin": 139,
"end": 412,
"name": "PUSH",
"source": 0,
"value": "E0"
},
{
"begin": 139,
"end": 412,
"name": "SHR",
"source": 0
},
{
"begin": 139,
"end": 412,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 412,
"name": "PUSH",
"source": 0,
"value": "B60D4288"
},
{
"begin": 139,
"end": 412,
"name": "EQ",
"source": 0
},
{
"begin": 139,
"end": 412,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 139,
"end": 412,
"name": "JUMPI",
"source": 0
},
{
"begin": 139,
"end": 412,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 139,
"end": 412,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 139,
"end": 412,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 412,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 412,
"name": "REVERT",
"source": 0
},
{
"begin": 161,
"end": 380,
"name": "tag",
"source": 0,
"value": "2"
},
{
"begin": 161,
"end": 380,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 161,
"end": 380,
"name": "PUSH [tag]",
"source": 0,
"value": "3"
},
{
"begin": 161,
"end": 380,
"name": "PUSH [tag]",
"source": 0,
"value": "4"
},
{
"begin": 161,
"end": 380,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 161,
"end": 380,
"name": "tag",
"source": 0,
"value": "3"
},
{
"begin": 161,
"end": 380,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 161,
"end": 380,
"name": "STOP",
"source": 0
},
{
"begin": 161,
"end": 380,
"name": "tag",
"source": 0,
"value": "4"
},
{
"begin": 161,
"end": 380,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 333,
"end": 337,
"name": "PUSH",
"source": 0,
"value": "DE0B6B3A7640000"
},
{
"begin": 321,
"end": 330,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 321,
"end": 337,
"name": "GT",
"source": 0
},
{
"begin": 313,
"end": 338,
"name": "PUSH [tag]",
"source": 0,
"value": "6"
},
{
"begin": 313,
"end": 338,
"name": "JUMPI",
"source": 0
},
{
"begin": 313,
"end": 338,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 313,
"end": 338,
"name": "DUP1",
"source": 0
},
{
"begin": 313,
"end": 338,
"name": "REVERT",
"source": 0
},
{
"begin": 313,
"end": 338,
"name": "tag",
"source": 0,
"value": "6"
},
{
"begin": 313,
"end": 338,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 161,
"end": 380,
"name": "JUMP",
"source": 0,
"value": "[out]"
}
]
}
}
},
"methodIdentifiers": {
"fund()": "b60d4288"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.7+commit.e28d00a7\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"fund\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/FundMe.sol\":\"FundMe\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/FundMe.sol\":{\"keccak256\":\"0xce26d169d8d21ddf2ec2228a0581c70347ed24b5c77097a450cbf6d28499f9d8\",\"urls\":[\"bzz-raw://48d63fffb67dad1e7d58972a3798e5814d1875239f4c03ebab10cc68946dd8b7\",\"dweb:/ipfs/QmaNZpZ3aK6E1VeiGmMMMAoaPeDDu4RYCK8c24XgUfmw1u\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
}
},
"errors": [
{
"component": "general",
"errorCode": "1878",
"formattedMessage": "Warning: SPDX license identifier not provided in source file. Before publishing, consider adding a comment containing \"SPDX-License-Identifier: <SPDX-License>\" to each source file. Use \"SPDX-License-Identifier: UNLICENSED\" for non-open-source code. Please see https://spdx.org for more information.\n--> contracts/FundMe.sol\n\n",
"message": "SPDX license identifier not provided in source file. Before publishing, consider adding a comment containing \"SPDX-License-Identifier: <SPDX-License>\" to each source file. Use \"SPDX-License-Identifier: UNLICENSED\" for non-open-source code. Please see https://spdx.org for more information.",
"severity": "warning",
"sourceLocation": {
"end": -1,
"file": "contracts/FundMe.sol",
"start": -1
},
"type": "Warning"
}
],
"sources": {
"contracts/FundMe.sol": {
"ast": {
"absolutePath": "contracts/FundMe.sol",
"exportedSymbols": {
"FundMe": [
17
]
},
"id": 18,
"nodeType": "SourceUnit",
"nodes": [
{
"id": 1,
"literals": [
"solidity",
"^",
"0.8",
".0"
],
"nodeType": "PragmaDirective",
"src": "114:23:0"
},
{
"abstract": false,
"baseContracts": [],
"contractDependencies": [],
"contractKind": "contract",
"fullyImplemented": true,
"id": 17,
"linearizedBaseContracts": [
17
],
"name": "FundMe",
"nameLocation": "148:6:0",
"nodeType": "ContractDefinition",
"nodes": [
{
"body": {
"id": 15,
"nodeType": "Block",
"src": "193:187:0",
"statements": [
{
"expression": {
"arguments": [
{
"commonType": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"id": 8,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftExpression": {
"expression": {
"id": 5,
"name": "msg",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967281,
"src": "321:3:0",
"typeDescriptions": {
"typeIdentifier": "t_magic_message",
"typeString": "msg"
}
},
"id": 6,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberName": "value",
"nodeType": "MemberAccess",
"src": "321:9:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"nodeType": "BinaryOperation",
"operator": ">",
"rightExpression": {
"hexValue": "31653138",
"id": 7,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "number",
"lValueRequested": false,
"nodeType": "Literal",
"src": "333:4:0",
"typeDescriptions": {
"typeIdentifier": "t_rational_1000000000000000000_by_1",
"typeString": "int_const 1000000000000000000"
},
"value": "1e18"
},
"src": "321:16:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bool",
"typeString": "bool"
}
],
"id": 4,
"name": "require",
"nodeType": "Identifier",
"overloadedDeclarations": [
4294967278,
4294967278
],
"referencedDeclaration": 4294967278,
"src": "313:7:0",
"typeDescriptions": {
"typeIdentifier": "t_function_require_pure$_t_bool_$returns$__$",
"typeString": "function (bool) pure"
}
},
"id": 9,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "313:25:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 10,
"nodeType": "ExpressionStatement",
"src": "313:25:0"
},
{
"expression": {
"expression": {
"id": 11,
"name": "msg",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967281,
"src": "364:3:0",
"typeDescriptions": {
"typeIdentifier": "t_magic_message",
"typeString": "msg"
}
},
"id": 13,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberName": "value",
"nodeType": "MemberAccess",
"src": "364:9:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"id": 14,
"nodeType": "ExpressionStatement",
"src": "364:9:0"
}
]
},
"functionSelector": "b60d4288",
"id": 16,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "fund",
"nameLocation": "170:4:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 2,
"nodeType": "ParameterList",
"parameters": [],
"src": "175:2:0"
},
"returnParameters": {
"id": 3,
"nodeType": "ParameterList",
"parameters": [],
"src": "193:0:0"
},
"scope": 17,
"src": "161:219:0",
"stateMutability": "payable",
"virtual": false,
"visibility": "public"
}
],
"scope": 18,
"src": "139:273:0",
"usedErrors": []
}
],
"src": "114:298:0"
},
"id": 0
}
}
}
}
{
"id": "8a611204f782f010928bf0b786b4d228",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.7",
"solcLongVersion": "0.8.7+commit.e28d00a7",
"input": {
"language": "Solidity",
"sources": {
"contracts/FundMe.sol": {
"content": "// Get funds from users\n// Withdraw funds\n// Set a minimum funding value in USD\n\n// SDPX-License-Identifier: MIT\n\npragma solidity ^0.8.0;\n\ncontract FundMe {\n function fund () public payable {\n // Want to be able to set a minimum fund amount in USD\n // 1. How to send ETH to this contract\n msg.value;\n }\n\n // function withdraw(){}\n}"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"storageLayout",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"contracts": {
"contracts/FundMe.sol": {
"FundMe": {
"abi": [
{
"inputs": [],
"name": "fund",
"outputs": [],
"stateMutability": "payable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": " /* \"contracts/FundMe.sol\":139:361 contract FundMe {... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\ntag_1:\n pop\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"contracts/FundMe.sol\":139:361 contract FundMe {... */\n mstore(0x40, 0x80)\n jumpi(tag_1, lt(calldatasize, 0x04))\n shr(0xe0, calldataload(0x00))\n dup1\n 0xb60d4288\n eq\n tag_2\n jumpi\n tag_1:\n 0x00\n dup1\n revert\n /* \"contracts/FundMe.sol\":161:329 function fund () public payable {... */\n tag_2:\n tag_3\n tag_4\n jump\t// in\n tag_3:\n stop\n tag_4:\n jump\t// out\n\n auxdata: 0xa264697066735822122079fb188b872c8768d16f8c0e5044c28788baee807f22fc428f8acea34781531c64736f6c63430008070033\n}\n",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "6080604052348015600f57600080fd5b50606180601d6000396000f3fe608060405260043610601c5760003560e01c8063b60d4288146021575b600080fd5b60276029565b005b56fea264697066735822122079fb188b872c8768d16f8c0e5044c28788baee807f22fc428f8acea34781531c64736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH1 0xF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x61 DUP1 PUSH1 0x1D PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH1 0x1C JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xB60D4288 EQ PUSH1 0x21 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x27 PUSH1 0x29 JUMP JUMPDEST STOP JUMPDEST JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH26 0xFB188B872C8768D16F8C0E5044C28788BAEE807F22FC428F8ACE LOG3 SELFBALANCE DUP2 MSTORE8 SHR PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER ",
"sourceMap": "139:222:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@fund_9": {
"entryPoint": 41,
"id": 9,
"parameterSlots": 0,
"returnSlots": 0
}
},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405260043610601c5760003560e01c8063b60d4288146021575b600080fd5b60276029565b005b56fea264697066735822122079fb188b872c8768d16f8c0e5044c28788baee807f22fc428f8acea34781531c64736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH1 0x1C JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xB60D4288 EQ PUSH1 0x21 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x27 PUSH1 0x29 JUMP JUMPDEST STOP JUMPDEST JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH26 0xFB188B872C8768D16F8C0E5044C28788BAEE807F22FC428F8ACE LOG3 SELFBALANCE DUP2 MSTORE8 SHR PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER ",
"sourceMap": "139:222:0:-:0;;;;;;;;;;;;;;;;;;;;;161:168;;;:::i;:::-;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "19400",
"executionCost": "75",
"totalCost": "19475"
},
"external": {
"fund()": "98"
}
},
"legacyAssembly": {
".code": [
{
"begin": 139,
"end": 361,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 139,
"end": 361,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 139,
"end": 361,
"name": "MSTORE",
"source": 0
},
{
"begin": 139,
"end": 361,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 139,
"end": 361,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 361,
"name": "ISZERO",
"source": 0
},
{
"begin": 139,
"end": 361,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 139,
"end": 361,
"name": "JUMPI",
"source": 0
},
{
"begin": 139,
"end": 361,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 361,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 361,
"name": "REVERT",
"source": 0
},
{
"begin": 139,
"end": 361,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 139,
"end": 361,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 139,
"end": 361,
"name": "POP",
"source": 0
},
{
"begin": 139,
"end": 361,
"name": "PUSH #[$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 139,
"end": 361,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 361,
"name": "PUSH [$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 139,
"end": 361,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 361,
"name": "CODECOPY",
"source": 0
},
{
"begin": 139,
"end": 361,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 361,
"name": "RETURN",
"source": 0
}
],
".data": {
"0": {
".auxdata": "a264697066735822122079fb188b872c8768d16f8c0e5044c28788baee807f22fc428f8acea34781531c64736f6c63430008070033",
".code": [
{
"begin": 139,
"end": 361,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 139,
"end": 361,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 139,
"end": 361,
"name": "MSTORE",
"source": 0
},
{
"begin": 139,
"end": 361,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 139,
"end": 361,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 139,
"end": 361,
"name": "LT",
"source": 0
},
{
"begin": 139,
"end": 361,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 139,
"end": 361,
"name": "JUMPI",
"source": 0
},
{
"begin": 139,
"end": 361,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 361,
"name": "CALLDATALOAD",
"source": 0
},
{
"begin": 139,
"end": 361,
"name": "PUSH",
"source": 0,
"value": "E0"
},
{
"begin": 139,
"end": 361,
"name": "SHR",
"source": 0
},
{
"begin": 139,
"end": 361,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 361,
"name": "PUSH",
"source": 0,
"value": "B60D4288"
},
{
"begin": 139,
"end": 361,
"name": "EQ",
"source": 0
},
{
"begin": 139,
"end": 361,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 139,
"end": 361,
"name": "JUMPI",
"source": 0
},
{
"begin": 139,
"end": 361,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 139,
"end": 361,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 139,
"end": 361,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 361,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 361,
"name": "REVERT",
"source": 0
},
{
"begin": 161,
"end": 329,
"name": "tag",
"source": 0,
"value": "2"
},
{
"begin": 161,
"end": 329,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 161,
"end": 329,
"name": "PUSH [tag]",
"source": 0,
"value": "3"
},
{
"begin": 161,
"end": 329,
"name": "PUSH [tag]",
"source": 0,
"value": "4"
},
{
"begin": 161,
"end": 329,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 161,
"end": 329,
"name": "tag",
"source": 0,
"value": "3"
},
{
"begin": 161,
"end": 329,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 161,
"end": 329,
"name": "STOP",
"source": 0
},
{
"begin": 161,
"end": 329,
"name": "tag",
"source": 0,
"value": "4"
},
{
"begin": 161,
"end": 329,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 161,
"end": 329,
"name": "JUMP",
"source": 0,
"value": "[out]"
}
]
}
}
},
"methodIdentifiers": {
"fund()": "b60d4288"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.7+commit.e28d00a7\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"fund\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/FundMe.sol\":\"FundMe\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/FundMe.sol\":{\"keccak256\":\"0x3d9cad5c7461253b2bc88cb399d5ef23c8c7ad1fa218940a0cc63435ec12abab\",\"urls\":[\"bzz-raw://dfe0deee27715e0b3b6e23928d1f6c63ccd3ed67c07e8504a8c741b34d20b677\",\"dweb:/ipfs/QmUbQahAgMVBgKdcNYQ9MXcAp7WE1vKYDpG38aBjteBZ2F\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
}
},
"errors": [
{
"component": "general",
"errorCode": "1878",
"formattedMessage": "Warning: SPDX license identifier not provided in source file. Before publishing, consider adding a comment containing \"SPDX-License-Identifier: <SPDX-License>\" to each source file. Use \"SPDX-License-Identifier: UNLICENSED\" for non-open-source code. Please see https://spdx.org for more information.\n--> contracts/FundMe.sol\n\n",
"message": "SPDX license identifier not provided in source file. Before publishing, consider adding a comment containing \"SPDX-License-Identifier: <SPDX-License>\" to each source file. Use \"SPDX-License-Identifier: UNLICENSED\" for non-open-source code. Please see https://spdx.org for more information.",
"severity": "warning",
"sourceLocation": {
"end": -1,
"file": "contracts/FundMe.sol",
"start": -1
},
"type": "Warning"
}
],
"sources": {
"contracts/FundMe.sol": {
"ast": {
"absolutePath": "contracts/FundMe.sol",
"exportedSymbols": {
"FundMe": [
10
]
},
"id": 11,
"nodeType": "SourceUnit",
"nodes": [
{
"id": 1,
"literals": [
"solidity",
"^",
"0.8",
".0"
],
"nodeType": "PragmaDirective",
"src": "114:23:0"
},
{
"abstract": false,
"baseContracts": [],
"contractDependencies": [],
"contractKind": "contract",
"fullyImplemented": true,
"id": 10,
"linearizedBaseContracts": [
10
],
"name": "FundMe",
"nameLocation": "148:6:0",
"nodeType": "ContractDefinition",
"nodes": [
{
"body": {
"id": 8,
"nodeType": "Block",
"src": "193:136:0",
"statements": [
{
"expression": {
"expression": {
"id": 4,
"name": "msg",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967281,
"src": "313:3:0",
"typeDescriptions": {
"typeIdentifier": "t_magic_message",
"typeString": "msg"
}
},
"id": 6,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberName": "value",
"nodeType": "MemberAccess",
"src": "313:9:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"id": 7,
"nodeType": "ExpressionStatement",
"src": "313:9:0"
}
]
},
"functionSelector": "b60d4288",
"id": 9,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "fund",
"nameLocation": "170:4:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 2,
"nodeType": "ParameterList",
"parameters": [],
"src": "175:2:0"
},
"returnParameters": {
"id": 3,
"nodeType": "ParameterList",
"parameters": [],
"src": "193:0:0"
},
"scope": 10,
"src": "161:168:0",
"stateMutability": "payable",
"virtual": false,
"visibility": "public"
}
],
"scope": 11,
"src": "139:222:0",
"usedErrors": []
}
],
"src": "114:247:0"
},
"id": 0
}
}
}
}
{
"id": "8c78390ef1065fe0ad45571de725a34c",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.7",
"solcLongVersion": "0.8.7+commit.e28d00a7",
"input": {
"language": "Solidity",
"sources": {
"contracts/FundMe.sol": {
"content": "// SDPX-License-Identifier: MIT\n// Get funds from users\n// Withdraw funds\n// Set a minimum funding value in USD\n\n\npragma solidity ^0.8.0;\n\ncontract FundMe {\n\n uint256 public minUsd = 50;\n\n function fund () public payable {\n // Want to be able to set a minimum fund amount in USD\n // 1. How to send ETH to this contract\n require(msg.value > minUsd, \"Didn't send enough!\"); // 1 * 10 ** 18\n\n // What's reverting\n // undo any action before, and send remaining gas back!\n }\n\n // function withdraw(){}\n}"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"storageLayout",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"contracts": {
"contracts/FundMe.sol": {
"FundMe": {
"abi": [
{
"inputs": [],
"name": "fund",
"outputs": [],
"stateMutability": "payable",
"type": "function"
},
{
"inputs": [],
"name": "minUsd",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": " /* \"contracts/FundMe.sol\":139:545 contract FundMe {... */\n mstore(0x40, 0x80)\n /* \"contracts/FundMe.sol\":186:188 50 */\n 0x32\n /* \"contracts/FundMe.sol\":162:188 uint256 public minUsd = 50 */\n 0x00\n sstore\n /* \"contracts/FundMe.sol\":139:545 contract FundMe {... */\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\ntag_1:\n pop\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"contracts/FundMe.sol\":139:545 contract FundMe {... */\n mstore(0x40, 0x80)\n jumpi(tag_1, lt(calldatasize, 0x04))\n shr(0xe0, calldataload(0x00))\n dup1\n 0x51b80e41\n eq\n tag_2\n jumpi\n dup1\n 0xb60d4288\n eq\n tag_3\n jumpi\n tag_1:\n 0x00\n dup1\n revert\n /* \"contracts/FundMe.sol\":162:188 uint256 public minUsd = 50 */\n tag_2:\n callvalue\n dup1\n iszero\n tag_4\n jumpi\n 0x00\n dup1\n revert\n tag_4:\n pop\n tag_5\n tag_6\n jump\t// in\n tag_5:\n mload(0x40)\n tag_7\n swap2\n swap1\n tag_8\n jump\t// in\n tag_7:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/FundMe.sol\":195:513 function fund () public payable {... */\n tag_3:\n tag_9\n tag_10\n jump\t// in\n tag_9:\n stop\n /* \"contracts/FundMe.sol\":162:188 uint256 public minUsd = 50 */\n tag_6:\n sload(0x00)\n dup2\n jump\t// out\n /* \"contracts/FundMe.sol\":195:513 function fund () public payable {... */\n tag_10:\n /* \"contracts/FundMe.sol\":367:373 minUsd */\n sload(0x00)\n /* \"contracts/FundMe.sol\":355:364 msg.value */\n callvalue\n /* \"contracts/FundMe.sol\":355:373 msg.value > minUsd */\n gt\n /* \"contracts/FundMe.sol\":347:397 require(msg.value > minUsd, \"Didn't send enough!\") */\n tag_12\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_13\n swap1\n tag_14\n jump\t// in\n tag_13:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_12:\n /* \"contracts/FundMe.sol\":195:513 function fund () public payable {... */\n jump\t// out\n /* \"#utility.yul\":7:373 */\n tag_16:\n /* \"#utility.yul\":149:152 */\n 0x00\n /* \"#utility.yul\":170:237 */\n tag_18\n /* \"#utility.yul\":234:236 */\n 0x13\n /* \"#utility.yul\":229:232 */\n dup4\n /* \"#utility.yul\":170:237 */\n tag_19\n jump\t// in\n tag_18:\n /* \"#utility.yul\":163:237 */\n swap2\n pop\n /* \"#utility.yul\":246:339 */\n tag_20\n /* \"#utility.yul\":335:338 */\n dup3\n /* \"#utility.yul\":246:339 */\n tag_21\n jump\t// in\n tag_20:\n /* \"#utility.yul\":364:366 */\n 0x20\n /* \"#utility.yul\":359:362 */\n dup3\n /* \"#utility.yul\":355:367 */\n add\n /* \"#utility.yul\":348:367 */\n swap1\n pop\n /* \"#utility.yul\":7:373 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":379:497 */\n tag_22:\n /* \"#utility.yul\":466:490 */\n tag_24\n /* \"#utility.yul\":484:489 */\n dup2\n /* \"#utility.yul\":466:490 */\n tag_25\n jump\t// in\n tag_24:\n /* \"#utility.yul\":461:464 */\n dup3\n /* \"#utility.yul\":454:491 */\n mstore\n /* \"#utility.yul\":379:497 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":503:922 */\n tag_14:\n /* \"#utility.yul\":669:673 */\n 0x00\n /* \"#utility.yul\":707:709 */\n 0x20\n /* \"#utility.yul\":696:705 */\n dup3\n /* \"#utility.yul\":692:710 */\n add\n /* \"#utility.yul\":684:710 */\n swap1\n pop\n /* \"#utility.yul\":756:765 */\n dup2\n /* \"#utility.yul\":750:754 */\n dup2\n /* \"#utility.yul\":746:766 */\n sub\n /* \"#utility.yul\":742:743 */\n 0x00\n /* \"#utility.yul\":731:740 */\n dup4\n /* \"#utility.yul\":727:744 */\n add\n /* \"#utility.yul\":720:767 */\n mstore\n /* \"#utility.yul\":784:915 */\n tag_27\n /* \"#utility.yul\":910:914 */\n dup2\n /* \"#utility.yul\":784:915 */\n tag_16\n jump\t// in\n tag_27:\n /* \"#utility.yul\":776:915 */\n swap1\n pop\n /* \"#utility.yul\":503:922 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":928:1150 */\n tag_8:\n /* \"#utility.yul\":1021:1025 */\n 0x00\n /* \"#utility.yul\":1059:1061 */\n 0x20\n /* \"#utility.yul\":1048:1057 */\n dup3\n /* \"#utility.yul\":1044:1062 */\n add\n /* \"#utility.yul\":1036:1062 */\n swap1\n pop\n /* \"#utility.yul\":1072:1143 */\n tag_29\n /* \"#utility.yul\":1140:1141 */\n 0x00\n /* \"#utility.yul\":1129:1138 */\n dup4\n /* \"#utility.yul\":1125:1142 */\n add\n /* \"#utility.yul\":1116:1122 */\n dup5\n /* \"#utility.yul\":1072:1143 */\n tag_22\n jump\t// in\n tag_29:\n /* \"#utility.yul\":928:1150 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1156:1325 */\n tag_19:\n /* \"#utility.yul\":1240:1251 */\n 0x00\n /* \"#utility.yul\":1274:1280 */\n dup3\n /* \"#utility.yul\":1269:1272 */\n dup3\n /* \"#utility.yul\":1262:1281 */\n mstore\n /* \"#utility.yul\":1314:1318 */\n 0x20\n /* \"#utility.yul\":1309:1312 */\n dup3\n /* \"#utility.yul\":1305:1319 */\n add\n /* \"#utility.yul\":1290:1319 */\n swap1\n pop\n /* \"#utility.yul\":1156:1325 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1331:1408 */\n tag_25:\n /* \"#utility.yul\":1368:1375 */\n 0x00\n /* \"#utility.yul\":1397:1402 */\n dup2\n /* \"#utility.yul\":1386:1402 */\n swap1\n pop\n /* \"#utility.yul\":1331:1408 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1414:1583 */\n tag_21:\n /* \"#utility.yul\":1554:1575 */\n 0x4469646e27742073656e6420656e6f7567682100000000000000000000000000\n /* \"#utility.yul\":1550:1551 */\n 0x00\n /* \"#utility.yul\":1542:1548 */\n dup3\n /* \"#utility.yul\":1538:1552 */\n add\n /* \"#utility.yul\":1531:1576 */\n mstore\n /* \"#utility.yul\":1414:1583 */\n pop\n jump\t// out\n\n auxdata: 0xa26469706673582212205ca3938c32a2408598b41816e843e0a7f2191d31738fb71a78f60c81c7a1782964736f6c63430008070033\n}\n",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "6080604052603260005534801561001557600080fd5b50610196806100256000396000f3fe6080604052600436106100295760003560e01c806351b80e411461002e578063b60d428814610059575b600080fd5b34801561003a57600080fd5b50610043610063565b6040516100509190610101565b60405180910390f35b610061610069565b005b60005481565b60005434116100ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016100a4906100e1565b60405180910390fd5b565b60006100bc60138361011c565b91506100c782610137565b602082019050919050565b6100db8161012d565b82525050565b600060208201905081810360008301526100fa816100af565b9050919050565b600060208201905061011660008301846100d2565b92915050565b600082825260208201905092915050565b6000819050919050565b7f4469646e27742073656e6420656e6f756768210000000000000000000000000060008201525056fea26469706673582212205ca3938c32a2408598b41816e843e0a7f2191d31738fb71a78f60c81c7a1782964736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x32 PUSH1 0x0 SSTORE CALLVALUE DUP1 ISZERO PUSH2 0x15 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x196 DUP1 PUSH2 0x25 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x29 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x51B80E41 EQ PUSH2 0x2E JUMPI DUP1 PUSH4 0xB60D4288 EQ PUSH2 0x59 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x43 PUSH2 0x63 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x50 SWAP2 SWAP1 PUSH2 0x101 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x61 PUSH2 0x69 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 SLOAD CALLVALUE GT PUSH2 0xAD JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA4 SWAP1 PUSH2 0xE1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBC PUSH1 0x13 DUP4 PUSH2 0x11C JUMP JUMPDEST SWAP2 POP PUSH2 0xC7 DUP3 PUSH2 0x137 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xDB DUP2 PUSH2 0x12D JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xFA DUP2 PUSH2 0xAF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x116 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xD2 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4469646E27742073656E6420656E6F7567682100000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x5C LOG3 SWAP4 DUP13 ORIGIN LOG2 BLOCKHASH DUP6 SWAP9 0xB4 XOR AND 0xE8 NUMBER 0xE0 0xA7 CALLCODE NOT SAR BALANCE PUSH20 0x8FB71A78F60C81C7A1782964736F6C6343000807 STOP CALLER ",
"sourceMap": "139:406:0:-:0;;;186:2;162:26;;139:406;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@fund_16": {
"entryPoint": 105,
"id": 16,
"parameterSlots": 0,
"returnSlots": 0
},
"@minUsd_4": {
"entryPoint": 99,
"id": 4,
"parameterSlots": 0,
"returnSlots": 0
},
"abi_encode_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5_to_t_string_memory_ptr_fromStack": {
"entryPoint": 175,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 210,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 225,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 257,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 284,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 301,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"store_literal_in_memory_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5": {
"entryPoint": 311,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:1586:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "153:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "163:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "229:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "234:2:1",
"type": "",
"value": "19"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "170:58:1"
},
"nodeType": "YulFunctionCall",
"src": "170:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "163:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "335:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5",
"nodeType": "YulIdentifier",
"src": "246:88:1"
},
"nodeType": "YulFunctionCall",
"src": "246:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "246:93:1"
},
{
"nodeType": "YulAssignment",
"src": "348:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "359:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "364:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "355:3:1"
},
"nodeType": "YulFunctionCall",
"src": "355:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "348:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "141:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "149:3:1",
"type": ""
}
],
"src": "7:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "444:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "461:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "484:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "466:17:1"
},
"nodeType": "YulFunctionCall",
"src": "466:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "454:6:1"
},
"nodeType": "YulFunctionCall",
"src": "454:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "454:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "432:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "439:3:1",
"type": ""
}
],
"src": "379:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "674:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "684:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "696:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "707:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "692:3:1"
},
"nodeType": "YulFunctionCall",
"src": "692:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "684:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "731:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "742:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "727:3:1"
},
"nodeType": "YulFunctionCall",
"src": "727:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "750:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "756:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "746:3:1"
},
"nodeType": "YulFunctionCall",
"src": "746:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "720:6:1"
},
"nodeType": "YulFunctionCall",
"src": "720:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "720:47:1"
},
{
"nodeType": "YulAssignment",
"src": "776:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "910:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "784:124:1"
},
"nodeType": "YulFunctionCall",
"src": "784:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "776:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "654:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "669:4:1",
"type": ""
}
],
"src": "503:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1026:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1036:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1048:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1059:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1044:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1044:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1036:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1116:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1129:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1140:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1125:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1125:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "1072:43:1"
},
"nodeType": "YulFunctionCall",
"src": "1072:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "1072:71:1"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "998:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1010:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1021:4:1",
"type": ""
}
],
"src": "928:222:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1252:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1269:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1274:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1262:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1262:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "1262:19:1"
},
{
"nodeType": "YulAssignment",
"src": "1290:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1309:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1314:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1305:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1305:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "1290:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1224:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1229:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "1240:11:1",
"type": ""
}
],
"src": "1156:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1376:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1386:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "1397:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1386:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1358:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1368:7:1",
"type": ""
}
],
"src": "1331:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1520:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1542:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1550:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1538:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1538:14:1"
},
{
"hexValue": "4469646e27742073656e6420656e6f75676821",
"kind": "string",
"nodeType": "YulLiteral",
"src": "1554:21:1",
"type": "",
"value": "Didn't send enough!"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1531:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1531:45:1"
},
"nodeType": "YulExpressionStatement",
"src": "1531:45:1"
}
]
},
"name": "store_literal_in_memory_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1512:6:1",
"type": ""
}
],
"src": "1414:169:1"
}
]
},
"contents": "{\n\n function abi_encode_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 19)\n store_literal_in_memory_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function store_literal_in_memory_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5(memPtr) {\n\n mstore(add(memPtr, 0), \"Didn't send enough!\")\n\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "6080604052600436106100295760003560e01c806351b80e411461002e578063b60d428814610059575b600080fd5b34801561003a57600080fd5b50610043610063565b6040516100509190610101565b60405180910390f35b610061610069565b005b60005481565b60005434116100ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016100a4906100e1565b60405180910390fd5b565b60006100bc60138361011c565b91506100c782610137565b602082019050919050565b6100db8161012d565b82525050565b600060208201905081810360008301526100fa816100af565b9050919050565b600060208201905061011660008301846100d2565b92915050565b600082825260208201905092915050565b6000819050919050565b7f4469646e27742073656e6420656e6f756768210000000000000000000000000060008201525056fea26469706673582212205ca3938c32a2408598b41816e843e0a7f2191d31738fb71a78f60c81c7a1782964736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x29 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x51B80E41 EQ PUSH2 0x2E JUMPI DUP1 PUSH4 0xB60D4288 EQ PUSH2 0x59 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x43 PUSH2 0x63 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x50 SWAP2 SWAP1 PUSH2 0x101 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x61 PUSH2 0x69 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 SLOAD CALLVALUE GT PUSH2 0xAD JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA4 SWAP1 PUSH2 0xE1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBC PUSH1 0x13 DUP4 PUSH2 0x11C JUMP JUMPDEST SWAP2 POP PUSH2 0xC7 DUP3 PUSH2 0x137 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xDB DUP2 PUSH2 0x12D JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xFA DUP2 PUSH2 0xAF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x116 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xD2 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4469646E27742073656E6420656E6F7567682100000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x5C LOG3 SWAP4 DUP13 ORIGIN LOG2 BLOCKHASH DUP6 SWAP9 0xB4 XOR AND 0xE8 NUMBER 0xE0 0xA7 CALLCODE NOT SAR BALANCE PUSH20 0x8FB71A78F60C81C7A1782964736F6C6343000807 STOP CALLER ",
"sourceMap": "139:406:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;162:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;195:318;;;:::i;:::-;;162:26;;;;:::o;195:318::-;367:6;;355:9;:18;347:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;195:318::o;7:366:1:-;149:3;170:67;234:2;229:3;170:67;:::i;:::-;163:74;;246:93;335:3;246:93;:::i;:::-;364:2;359:3;355:12;348:19;;7:366;;;:::o;379:118::-;466:24;484:5;466:24;:::i;:::-;461:3;454:37;379:118;;:::o;503:419::-;669:4;707:2;696:9;692:18;684:26;;756:9;750:4;746:20;742:1;731:9;727:17;720:47;784:131;910:4;784:131;:::i;:::-;776:139;;503:419;;;:::o;928:222::-;1021:4;1059:2;1048:9;1044:18;1036:26;;1072:71;1140:1;1129:9;1125:17;1116:6;1072:71;:::i;:::-;928:222;;;;:::o;1156:169::-;1240:11;1274:6;1269:3;1262:19;1314:4;1309:3;1305:14;1290:29;;1156:169;;;;:::o;1331:77::-;1368:7;1397:5;1386:16;;1331:77;;;:::o;1414:169::-;1554:21;1550:1;1542:6;1538:14;1531:45;1414:169;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "81200",
"executionCost": "22235",
"totalCost": "103435"
},
"external": {
"fund()": "2531",
"minUsd()": "2407"
}
},
"legacyAssembly": {
".code": [
{
"begin": 139,
"end": 545,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 139,
"end": 545,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 139,
"end": 545,
"name": "MSTORE",
"source": 0
},
{
"begin": 186,
"end": 188,
"name": "PUSH",
"source": 0,
"value": "32"
},
{
"begin": 162,
"end": 188,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 162,
"end": 188,
"name": "SSTORE",
"source": 0
},
{
"begin": 139,
"end": 545,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 139,
"end": 545,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 545,
"name": "ISZERO",
"source": 0
},
{
"begin": 139,
"end": 545,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 139,
"end": 545,
"name": "JUMPI",
"source": 0
},
{
"begin": 139,
"end": 545,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 545,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 545,
"name": "REVERT",
"source": 0
},
{
"begin": 139,
"end": 545,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 139,
"end": 545,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 139,
"end": 545,
"name": "POP",
"source": 0
},
{
"begin": 139,
"end": 545,
"name": "PUSH #[$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 139,
"end": 545,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 545,
"name": "PUSH [$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 139,
"end": 545,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 545,
"name": "CODECOPY",
"source": 0
},
{
"begin": 139,
"end": 545,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 545,
"name": "RETURN",
"source": 0
}
],
".data": {
"0": {
".auxdata": "a26469706673582212205ca3938c32a2408598b41816e843e0a7f2191d31738fb71a78f60c81c7a1782964736f6c63430008070033",
".code": [
{
"begin": 139,
"end": 545,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 139,
"end": 545,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 139,
"end": 545,
"name": "MSTORE",
"source": 0
},
{
"begin": 139,
"end": 545,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 139,
"end": 545,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 139,
"end": 545,
"name": "LT",
"source": 0
},
{
"begin": 139,
"end": 545,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 139,
"end": 545,
"name": "JUMPI",
"source": 0
},
{
"begin": 139,
"end": 545,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 545,
"name": "CALLDATALOAD",
"source": 0
},
{
"begin": 139,
"end": 545,
"name": "PUSH",
"source": 0,
"value": "E0"
},
{
"begin": 139,
"end": 545,
"name": "SHR",
"source": 0
},
{
"begin": 139,
"end": 545,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 545,
"name": "PUSH",
"source": 0,
"value": "51B80E41"
},
{
"begin": 139,
"end": 545,
"name": "EQ",
"source": 0
},
{
"begin": 139,
"end": 545,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 139,
"end": 545,
"name": "JUMPI",
"source": 0
},
{
"begin": 139,
"end": 545,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 545,
"name": "PUSH",
"source": 0,
"value": "B60D4288"
},
{
"begin": 139,
"end": 545,
"name": "EQ",
"source": 0
},
{
"begin": 139,
"end": 545,
"name": "PUSH [tag]",
"source": 0,
"value": "3"
},
{
"begin": 139,
"end": 545,
"name": "JUMPI",
"source": 0
},
{
"begin": 139,
"end": 545,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 139,
"end": 545,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 139,
"end": 545,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 545,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 545,
"name": "REVERT",
"source": 0
},
{
"begin": 162,
"end": 188,
"name": "tag",
"source": 0,
"value": "2"
},
{
"begin": 162,
"end": 188,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 162,
"end": 188,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 162,
"end": 188,
"name": "DUP1",
"source": 0
},
{
"begin": 162,
"end": 188,
"name": "ISZERO",
"source": 0
},
{
"begin": 162,
"end": 188,
"name": "PUSH [tag]",
"source": 0,
"value": "4"
},
{
"begin": 162,
"end": 188,
"name": "JUMPI",
"source": 0
},
{
"begin": 162,
"end": 188,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 162,
"end": 188,
"name": "DUP1",
"source": 0
},
{
"begin": 162,
"end": 188,
"name": "REVERT",
"source": 0
},
{
"begin": 162,
"end": 188,
"name": "tag",
"source": 0,
"value": "4"
},
{
"begin": 162,
"end": 188,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 162,
"end": 188,
"name": "POP",
"source": 0
},
{
"begin": 162,
"end": 188,
"name": "PUSH [tag]",
"source": 0,
"value": "5"
},
{
"begin": 162,
"end": 188,
"name": "PUSH [tag]",
"source": 0,
"value": "6"
},
{
"begin": 162,
"end": 188,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 162,
"end": 188,
"name": "tag",
"source": 0,
"value": "5"
},
{
"begin": 162,
"end": 188,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 162,
"end": 188,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 162,
"end": 188,
"name": "MLOAD",
"source": 0
},
{
"begin": 162,
"end": 188,
"name": "PUSH [tag]",
"source": 0,
"value": "7"
},
{
"begin": 162,
"end": 188,
"name": "SWAP2",
"source": 0
},
{
"begin": 162,
"end": 188,
"name": "SWAP1",
"source": 0
},
{
"begin": 162,
"end": 188,
"name": "PUSH [tag]",
"source": 0,
"value": "8"
},
{
"begin": 162,
"end": 188,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 162,
"end": 188,
"name": "tag",
"source": 0,
"value": "7"
},
{
"begin": 162,
"end": 188,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 162,
"end": 188,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 162,
"end": 188,
"name": "MLOAD",
"source": 0
},
{
"begin": 162,
"end": 188,
"name": "DUP1",
"source": 0
},
{
"begin": 162,
"end": 188,
"name": "SWAP2",
"source": 0
},
{
"begin": 162,
"end": 188,
"name": "SUB",
"source": 0
},
{
"begin": 162,
"end": 188,
"name": "SWAP1",
"source": 0
},
{
"begin": 162,
"end": 188,
"name": "RETURN",
"source": 0
},
{
"begin": 195,
"end": 513,
"name": "tag",
"source": 0,
"value": "3"
},
{
"begin": 195,
"end": 513,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 195,
"end": 513,
"name": "PUSH [tag]",
"source": 0,
"value": "9"
},
{
"begin": 195,
"end": 513,
"name": "PUSH [tag]",
"source": 0,
"value": "10"
},
{
"begin": 195,
"end": 513,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 195,
"end": 513,
"name": "tag",
"source": 0,
"value": "9"
},
{
"begin": 195,
"end": 513,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 195,
"end": 513,
"name": "STOP",
"source": 0
},
{
"begin": 162,
"end": 188,
"name": "tag",
"source": 0,
"value": "6"
},
{
"begin": 162,
"end": 188,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 162,
"end": 188,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 162,
"end": 188,
"name": "SLOAD",
"source": 0
},
{
"begin": 162,
"end": 188,
"name": "DUP2",
"source": 0
},
{
"begin": 162,
"end": 188,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 195,
"end": 513,
"name": "tag",
"source": 0,
"value": "10"
},
{
"begin": 195,
"end": 513,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 367,
"end": 373,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 367,
"end": 373,
"name": "SLOAD",
"source": 0
},
{
"begin": 355,
"end": 364,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 355,
"end": 373,
"name": "GT",
"source": 0
},
{
"begin": 347,
"end": 397,
"name": "PUSH [tag]",
"source": 0,
"value": "12"
},
{
"begin": 347,
"end": 397,
"name": "JUMPI",
"source": 0
},
{
"begin": 347,
"end": 397,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 347,
"end": 397,
"name": "MLOAD",
"source": 0
},
{
"begin": 347,
"end": 397,
"name": "PUSH",
"source": 0,
"value": "8C379A000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 347,
"end": 397,
"name": "DUP2",
"source": 0
},
{
"begin": 347,
"end": 397,
"name": "MSTORE",
"source": 0
},
{
"begin": 347,
"end": 397,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 347,
"end": 397,
"name": "ADD",
"source": 0
},
{
"begin": 347,
"end": 397,
"name": "PUSH [tag]",
"source": 0,
"value": "13"
},
{
"begin": 347,
"end": 397,
"name": "SWAP1",
"source": 0
},
{
"begin": 347,
"end": 397,
"name": "PUSH [tag]",
"source": 0,
"value": "14"
},
{
"begin": 347,
"end": 397,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 347,
"end": 397,
"name": "tag",
"source": 0,
"value": "13"
},
{
"begin": 347,
"end": 397,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 347,
"end": 397,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 347,
"end": 397,
"name": "MLOAD",
"source": 0
},
{
"begin": 347,
"end": 397,
"name": "DUP1",
"source": 0
},
{
"begin": 347,
"end": 397,
"name": "SWAP2",
"source": 0
},
{
"begin": 347,
"end": 397,
"name": "SUB",
"source": 0
},
{
"begin": 347,
"end": 397,
"name": "SWAP1",
"source": 0
},
{
"begin": 347,
"end": 397,
"name": "REVERT",
"source": 0
},
{
"begin": 347,
"end": 397,
"name": "tag",
"source": 0,
"value": "12"
},
{
"begin": 347,
"end": 397,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 195,
"end": 513,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 7,
"end": 373,
"name": "tag",
"source": 1,
"value": "16"
},
{
"begin": 7,
"end": 373,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 149,
"end": 152,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 170,
"end": 237,
"name": "PUSH [tag]",
"source": 1,
"value": "18"
},
{
"begin": 234,
"end": 236,
"name": "PUSH",
"source": 1,
"value": "13"
},
{
"begin": 229,
"end": 232,
"name": "DUP4",
"source": 1
},
{
"begin": 170,
"end": 237,
"name": "PUSH [tag]",
"source": 1,
"value": "19"
},
{
"begin": 170,
"end": 237,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 170,
"end": 237,
"name": "tag",
"source": 1,
"value": "18"
},
{
"begin": 170,
"end": 237,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 163,
"end": 237,
"name": "SWAP2",
"source": 1
},
{
"begin": 163,
"end": 237,
"name": "POP",
"source": 1
},
{
"begin": 246,
"end": 339,
"name": "PUSH [tag]",
"source": 1,
"value": "20"
},
{
"begin": 335,
"end": 338,
"name": "DUP3",
"source": 1
},
{
"begin": 246,
"end": 339,
"name": "PUSH [tag]",
"source": 1,
"value": "21"
},
{
"begin": 246,
"end": 339,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 246,
"end": 339,
"name": "tag",
"source": 1,
"value": "20"
},
{
"begin": 246,
"end": 339,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 364,
"end": 366,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 359,
"end": 362,
"name": "DUP3",
"source": 1
},
{
"begin": 355,
"end": 367,
"name": "ADD",
"source": 1
},
{
"begin": 348,
"end": 367,
"name": "SWAP1",
"source": 1
},
{
"begin": 348,
"end": 367,
"name": "POP",
"source": 1
},
{
"begin": 7,
"end": 373,
"name": "SWAP2",
"source": 1
},
{
"begin": 7,
"end": 373,
"name": "SWAP1",
"source": 1
},
{
"begin": 7,
"end": 373,
"name": "POP",
"source": 1
},
{
"begin": 7,
"end": 373,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 379,
"end": 497,
"name": "tag",
"source": 1,
"value": "22"
},
{
"begin": 379,
"end": 497,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 466,
"end": 490,
"name": "PUSH [tag]",
"source": 1,
"value": "24"
},
{
"begin": 484,
"end": 489,
"name": "DUP2",
"source": 1
},
{
"begin": 466,
"end": 490,
"name": "PUSH [tag]",
"source": 1,
"value": "25"
},
{
"begin": 466,
"end": 490,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 466,
"end": 490,
"name": "tag",
"source": 1,
"value": "24"
},
{
"begin": 466,
"end": 490,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 461,
"end": 464,
"name": "DUP3",
"source": 1
},
{
"begin": 454,
"end": 491,
"name": "MSTORE",
"source": 1
},
{
"begin": 379,
"end": 497,
"name": "POP",
"source": 1
},
{
"begin": 379,
"end": 497,
"name": "POP",
"source": 1
},
{
"begin": 379,
"end": 497,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 503,
"end": 922,
"name": "tag",
"source": 1,
"value": "14"
},
{
"begin": 503,
"end": 922,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 669,
"end": 673,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 707,
"end": 709,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 696,
"end": 705,
"name": "DUP3",
"source": 1
},
{
"begin": 692,
"end": 710,
"name": "ADD",
"source": 1
},
{
"begin": 684,
"end": 710,
"name": "SWAP1",
"source": 1
},
{
"begin": 684,
"end": 710,
"name": "POP",
"source": 1
},
{
"begin": 756,
"end": 765,
"name": "DUP2",
"source": 1
},
{
"begin": 750,
"end": 754,
"name": "DUP2",
"source": 1
},
{
"begin": 746,
"end": 766,
"name": "SUB",
"source": 1
},
{
"begin": 742,
"end": 743,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 731,
"end": 740,
"name": "DUP4",
"source": 1
},
{
"begin": 727,
"end": 744,
"name": "ADD",
"source": 1
},
{
"begin": 720,
"end": 767,
"name": "MSTORE",
"source": 1
},
{
"begin": 784,
"end": 915,
"name": "PUSH [tag]",
"source": 1,
"value": "27"
},
{
"begin": 910,
"end": 914,
"name": "DUP2",
"source": 1
},
{
"begin": 784,
"end": 915,
"name": "PUSH [tag]",
"source": 1,
"value": "16"
},
{
"begin": 784,
"end": 915,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 784,
"end": 915,
"name": "tag",
"source": 1,
"value": "27"
},
{
"begin": 784,
"end": 915,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 776,
"end": 915,
"name": "SWAP1",
"source": 1
},
{
"begin": 776,
"end": 915,
"name": "POP",
"source": 1
},
{
"begin": 503,
"end": 922,
"name": "SWAP2",
"source": 1
},
{
"begin": 503,
"end": 922,
"name": "SWAP1",
"source": 1
},
{
"begin": 503,
"end": 922,
"name": "POP",
"source": 1
},
{
"begin": 503,
"end": 922,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 928,
"end": 1150,
"name": "tag",
"source": 1,
"value": "8"
},
{
"begin": 928,
"end": 1150,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1021,
"end": 1025,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1059,
"end": 1061,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 1048,
"end": 1057,
"name": "DUP3",
"source": 1
},
{
"begin": 1044,
"end": 1062,
"name": "ADD",
"source": 1
},
{
"begin": 1036,
"end": 1062,
"name": "SWAP1",
"source": 1
},
{
"begin": 1036,
"end": 1062,
"name": "POP",
"source": 1
},
{
"begin": 1072,
"end": 1143,
"name": "PUSH [tag]",
"source": 1,
"value": "29"
},
{
"begin": 1140,
"end": 1141,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1129,
"end": 1138,
"name": "DUP4",
"source": 1
},
{
"begin": 1125,
"end": 1142,
"name": "ADD",
"source": 1
},
{
"begin": 1116,
"end": 1122,
"name": "DUP5",
"source": 1
},
{
"begin": 1072,
"end": 1143,
"name": "PUSH [tag]",
"source": 1,
"value": "22"
},
{
"begin": 1072,
"end": 1143,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1072,
"end": 1143,
"name": "tag",
"source": 1,
"value": "29"
},
{
"begin": 1072,
"end": 1143,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 928,
"end": 1150,
"name": "SWAP3",
"source": 1
},
{
"begin": 928,
"end": 1150,
"name": "SWAP2",
"source": 1
},
{
"begin": 928,
"end": 1150,
"name": "POP",
"source": 1
},
{
"begin": 928,
"end": 1150,
"name": "POP",
"source": 1
},
{
"begin": 928,
"end": 1150,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 1156,
"end": 1325,
"name": "tag",
"source": 1,
"value": "19"
},
{
"begin": 1156,
"end": 1325,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1240,
"end": 1251,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1274,
"end": 1280,
"name": "DUP3",
"source": 1
},
{
"begin": 1269,
"end": 1272,
"name": "DUP3",
"source": 1
},
{
"begin": 1262,
"end": 1281,
"name": "MSTORE",
"source": 1
},
{
"begin": 1314,
"end": 1318,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 1309,
"end": 1312,
"name": "DUP3",
"source": 1
},
{
"begin": 1305,
"end": 1319,
"name": "ADD",
"source": 1
},
{
"begin": 1290,
"end": 1319,
"name": "SWAP1",
"source": 1
},
{
"begin": 1290,
"end": 1319,
"name": "POP",
"source": 1
},
{
"begin": 1156,
"end": 1325,
"name": "SWAP3",
"source": 1
},
{
"begin": 1156,
"end": 1325,
"name": "SWAP2",
"source": 1
},
{
"begin": 1156,
"end": 1325,
"name": "POP",
"source": 1
},
{
"begin": 1156,
"end": 1325,
"name": "POP",
"source": 1
},
{
"begin": 1156,
"end": 1325,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 1331,
"end": 1408,
"name": "tag",
"source": 1,
"value": "25"
},
{
"begin": 1331,
"end": 1408,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1368,
"end": 1375,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1397,
"end": 1402,
"name": "DUP2",
"source": 1
},
{
"begin": 1386,
"end": 1402,
"name": "SWAP1",
"source": 1
},
{
"begin": 1386,
"end": 1402,
"name": "POP",
"source": 1
},
{
"begin": 1331,
"end": 1408,
"name": "SWAP2",
"source": 1
},
{
"begin": 1331,
"end": 1408,
"name": "SWAP1",
"source": 1
},
{
"begin": 1331,
"end": 1408,
"name": "POP",
"source": 1
},
{
"begin": 1331,
"end": 1408,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 1414,
"end": 1583,
"name": "tag",
"source": 1,
"value": "21"
},
{
"begin": 1414,
"end": 1583,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1554,
"end": 1575,
"name": "PUSH",
"source": 1,
"value": "4469646E27742073656E6420656E6F7567682100000000000000000000000000"
},
{
"begin": 1550,
"end": 1551,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1542,
"end": 1548,
"name": "DUP3",
"source": 1
},
{
"begin": 1538,
"end": 1552,
"name": "ADD",
"source": 1
},
{
"begin": 1531,
"end": 1576,
"name": "MSTORE",
"source": 1
},
{
"begin": 1414,
"end": 1583,
"name": "POP",
"source": 1
},
{
"begin": 1414,
"end": 1583,
"name": "JUMP",
"source": 1,
"value": "[out]"
}
]
}
}
},
"methodIdentifiers": {
"fund()": "b60d4288",
"minUsd()": "51b80e41"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.7+commit.e28d00a7\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"fund\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"minUsd\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/FundMe.sol\":\"FundMe\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/FundMe.sol\":{\"keccak256\":\"0x5034c5e2261f7241e7eec67d2063732f26a90c2dd6543e2ecfeaf3a35fac8cb3\",\"urls\":[\"bzz-raw://4c9aa67bb4ce391458f9bb84f2ae58f43c7cebcea7d9d55c8392dc7beb68afd6\",\"dweb:/ipfs/QmbAHSUxp8xGvoQ6QQAWAkf8q86Xi2gKunWRUvRAcZbu2s\"]}},\"version\":1}",
"storageLayout": {
"storage": [
{
"astId": 4,
"contract": "contracts/FundMe.sol:FundMe",
"label": "minUsd",
"offset": 0,
"slot": "0",
"type": "t_uint256"
}
],
"types": {
"t_uint256": {
"encoding": "inplace",
"label": "uint256",
"numberOfBytes": "32"
}
}
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
}
},
"errors": [
{
"component": "general",
"errorCode": "1878",
"formattedMessage": "Warning: SPDX license identifier not provided in source file. Before publishing, consider adding a comment containing \"SPDX-License-Identifier: <SPDX-License>\" to each source file. Use \"SPDX-License-Identifier: UNLICENSED\" for non-open-source code. Please see https://spdx.org for more information.\n--> contracts/FundMe.sol\n\n",
"message": "SPDX license identifier not provided in source file. Before publishing, consider adding a comment containing \"SPDX-License-Identifier: <SPDX-License>\" to each source file. Use \"SPDX-License-Identifier: UNLICENSED\" for non-open-source code. Please see https://spdx.org for more information.",
"severity": "warning",
"sourceLocation": {
"end": -1,
"file": "contracts/FundMe.sol",
"start": -1
},
"type": "Warning"
}
],
"sources": {
"contracts/FundMe.sol": {
"ast": {
"absolutePath": "contracts/FundMe.sol",
"exportedSymbols": {
"FundMe": [
17
]
},
"id": 18,
"nodeType": "SourceUnit",
"nodes": [
{
"id": 1,
"literals": [
"solidity",
"^",
"0.8",
".0"
],
"nodeType": "PragmaDirective",
"src": "114:23:0"
},
{
"abstract": false,
"baseContracts": [],
"contractDependencies": [],
"contractKind": "contract",
"fullyImplemented": true,
"id": 17,
"linearizedBaseContracts": [
17
],
"name": "FundMe",
"nameLocation": "148:6:0",
"nodeType": "ContractDefinition",
"nodes": [
{
"constant": false,
"functionSelector": "51b80e41",
"id": 4,
"mutability": "mutable",
"name": "minUsd",
"nameLocation": "177:6:0",
"nodeType": "VariableDeclaration",
"scope": 17,
"src": "162:26:0",
"stateVariable": true,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 2,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "162:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"value": {
"hexValue": "3530",
"id": 3,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "number",
"lValueRequested": false,
"nodeType": "Literal",
"src": "186:2:0",
"typeDescriptions": {
"typeIdentifier": "t_rational_50_by_1",
"typeString": "int_const 50"
},
"value": "50"
},
"visibility": "public"
},
{
"body": {
"id": 15,
"nodeType": "Block",
"src": "227:286:0",
"statements": [
{
"expression": {
"arguments": [
{
"commonType": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"id": 11,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftExpression": {
"expression": {
"id": 8,
"name": "msg",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967281,
"src": "355:3:0",
"typeDescriptions": {
"typeIdentifier": "t_magic_message",
"typeString": "msg"
}
},
"id": 9,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberName": "value",
"nodeType": "MemberAccess",
"src": "355:9:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"nodeType": "BinaryOperation",
"operator": ">",
"rightExpression": {
"id": 10,
"name": "minUsd",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4,
"src": "367:6:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"src": "355:18:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
{
"hexValue": "4469646e27742073656e6420656e6f75676821",
"id": 12,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "375:21:0",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5",
"typeString": "literal_string \"Didn't send enough!\""
},
"value": "Didn't send enough!"
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bool",
"typeString": "bool"
},
{
"typeIdentifier": "t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5",
"typeString": "literal_string \"Didn't send enough!\""
}
],
"id": 7,
"name": "require",
"nodeType": "Identifier",
"overloadedDeclarations": [
4294967278,
4294967278
],
"referencedDeclaration": 4294967278,
"src": "347:7:0",
"typeDescriptions": {
"typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
"typeString": "function (bool,string memory) pure"
}
},
"id": 13,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "347:50:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 14,
"nodeType": "ExpressionStatement",
"src": "347:50:0"
}
]
},
"functionSelector": "b60d4288",
"id": 16,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "fund",
"nameLocation": "204:4:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 5,
"nodeType": "ParameterList",
"parameters": [],
"src": "209:2:0"
},
"returnParameters": {
"id": 6,
"nodeType": "ParameterList",
"parameters": [],
"src": "227:0:0"
},
"scope": 17,
"src": "195:318:0",
"stateMutability": "payable",
"virtual": false,
"visibility": "public"
}
],
"scope": 18,
"src": "139:406:0",
"usedErrors": []
}
],
"src": "114:431:0"
},
"id": 0
}
}
}
}
{
"id": "8f5c86b9835e5d6b2a8d0f3c5fb92bf8",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.7",
"solcLongVersion": "0.8.7+commit.e28d00a7",
"input": {
"language": "Solidity",
"sources": {
"contracts/FundMe.sol": {
"content": "// SDPX-License-Identifier: MIT\n// Get funds from users\n// Withdraw funds\n// Set a minimum funding value in USD\n\n\npragma solidity ^0.8.0;\n\ncontract FundMe {\n uint256 public value;\n function fund () public payable {\n // Want to be able to set a minimum fund amount in USD\n // 1. How to send ETH to this contract\n value = 5;\n require(msg.value > 1e18, \"Didn't send enough!\"); // 1 * 10 ** 18\n\n // What's reverting\n // undo any action before, and send remaining gas back!\n }\n\n // function withdraw(){}\n}"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"storageLayout",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"contracts": {
"contracts/FundMe.sol": {
"FundMe": {
"abi": [
{
"inputs": [],
"name": "fund",
"outputs": [],
"stateMutability": "payable",
"type": "function"
},
{
"inputs": [],
"name": "value",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": " /* \"contracts/FundMe.sol\":139:554 contract FundMe {... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\ntag_1:\n pop\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"contracts/FundMe.sol\":139:554 contract FundMe {... */\n mstore(0x40, 0x80)\n jumpi(tag_1, lt(calldatasize, 0x04))\n shr(0xe0, calldataload(0x00))\n dup1\n 0x3fa4f245\n eq\n tag_2\n jumpi\n dup1\n 0xb60d4288\n eq\n tag_3\n jumpi\n tag_1:\n 0x00\n dup1\n revert\n /* \"contracts/FundMe.sol\":161:181 uint256 public value */\n tag_2:\n callvalue\n dup1\n iszero\n tag_4\n jumpi\n 0x00\n dup1\n revert\n tag_4:\n pop\n tag_5\n tag_6\n jump\t// in\n tag_5:\n mload(0x40)\n tag_7\n swap2\n swap1\n tag_8\n jump\t// in\n tag_7:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/FundMe.sol\":187:522 function fund () public payable {... */\n tag_3:\n tag_9\n tag_10\n jump\t// in\n tag_9:\n stop\n /* \"contracts/FundMe.sol\":161:181 uint256 public value */\n tag_6:\n sload(0x00)\n dup2\n jump\t// out\n /* \"contracts/FundMe.sol\":187:522 function fund () public payable {... */\n tag_10:\n /* \"contracts/FundMe.sol\":347:348 5 */\n 0x05\n /* \"contracts/FundMe.sol\":339:344 value */\n 0x00\n /* \"contracts/FundMe.sol\":339:348 value = 5 */\n dup2\n swap1\n sstore\n pop\n /* \"contracts/FundMe.sol\":378:382 1e18 */\n 0x0de0b6b3a7640000\n /* \"contracts/FundMe.sol\":366:375 msg.value */\n callvalue\n /* \"contracts/FundMe.sol\":366:382 msg.value > 1e18 */\n gt\n /* \"contracts/FundMe.sol\":358:406 require(msg.value > 1e18, \"Didn't send enough!\") */\n tag_12\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_13\n swap1\n tag_14\n jump\t// in\n tag_13:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_12:\n /* \"contracts/FundMe.sol\":187:522 function fund () public payable {... */\n jump\t// out\n /* \"#utility.yul\":7:373 */\n tag_16:\n /* \"#utility.yul\":149:152 */\n 0x00\n /* \"#utility.yul\":170:237 */\n tag_18\n /* \"#utility.yul\":234:236 */\n 0x13\n /* \"#utility.yul\":229:232 */\n dup4\n /* \"#utility.yul\":170:237 */\n tag_19\n jump\t// in\n tag_18:\n /* \"#utility.yul\":163:237 */\n swap2\n pop\n /* \"#utility.yul\":246:339 */\n tag_20\n /* \"#utility.yul\":335:338 */\n dup3\n /* \"#utility.yul\":246:339 */\n tag_21\n jump\t// in\n tag_20:\n /* \"#utility.yul\":364:366 */\n 0x20\n /* \"#utility.yul\":359:362 */\n dup3\n /* \"#utility.yul\":355:367 */\n add\n /* \"#utility.yul\":348:367 */\n swap1\n pop\n /* \"#utility.yul\":7:373 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":379:497 */\n tag_22:\n /* \"#utility.yul\":466:490 */\n tag_24\n /* \"#utility.yul\":484:489 */\n dup2\n /* \"#utility.yul\":466:490 */\n tag_25\n jump\t// in\n tag_24:\n /* \"#utility.yul\":461:464 */\n dup3\n /* \"#utility.yul\":454:491 */\n mstore\n /* \"#utility.yul\":379:497 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":503:922 */\n tag_14:\n /* \"#utility.yul\":669:673 */\n 0x00\n /* \"#utility.yul\":707:709 */\n 0x20\n /* \"#utility.yul\":696:705 */\n dup3\n /* \"#utility.yul\":692:710 */\n add\n /* \"#utility.yul\":684:710 */\n swap1\n pop\n /* \"#utility.yul\":756:765 */\n dup2\n /* \"#utility.yul\":750:754 */\n dup2\n /* \"#utility.yul\":746:766 */\n sub\n /* \"#utility.yul\":742:743 */\n 0x00\n /* \"#utility.yul\":731:740 */\n dup4\n /* \"#utility.yul\":727:744 */\n add\n /* \"#utility.yul\":720:767 */\n mstore\n /* \"#utility.yul\":784:915 */\n tag_27\n /* \"#utility.yul\":910:914 */\n dup2\n /* \"#utility.yul\":784:915 */\n tag_16\n jump\t// in\n tag_27:\n /* \"#utility.yul\":776:915 */\n swap1\n pop\n /* \"#utility.yul\":503:922 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":928:1150 */\n tag_8:\n /* \"#utility.yul\":1021:1025 */\n 0x00\n /* \"#utility.yul\":1059:1061 */\n 0x20\n /* \"#utility.yul\":1048:1057 */\n dup3\n /* \"#utility.yul\":1044:1062 */\n add\n /* \"#utility.yul\":1036:1062 */\n swap1\n pop\n /* \"#utility.yul\":1072:1143 */\n tag_29\n /* \"#utility.yul\":1140:1141 */\n 0x00\n /* \"#utility.yul\":1129:1138 */\n dup4\n /* \"#utility.yul\":1125:1142 */\n add\n /* \"#utility.yul\":1116:1122 */\n dup5\n /* \"#utility.yul\":1072:1143 */\n tag_22\n jump\t// in\n tag_29:\n /* \"#utility.yul\":928:1150 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1156:1325 */\n tag_19:\n /* \"#utility.yul\":1240:1251 */\n 0x00\n /* \"#utility.yul\":1274:1280 */\n dup3\n /* \"#utility.yul\":1269:1272 */\n dup3\n /* \"#utility.yul\":1262:1281 */\n mstore\n /* \"#utility.yul\":1314:1318 */\n 0x20\n /* \"#utility.yul\":1309:1312 */\n dup3\n /* \"#utility.yul\":1305:1319 */\n add\n /* \"#utility.yul\":1290:1319 */\n swap1\n pop\n /* \"#utility.yul\":1156:1325 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1331:1408 */\n tag_25:\n /* \"#utility.yul\":1368:1375 */\n 0x00\n /* \"#utility.yul\":1397:1402 */\n dup2\n /* \"#utility.yul\":1386:1402 */\n swap1\n pop\n /* \"#utility.yul\":1331:1408 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1414:1583 */\n tag_21:\n /* \"#utility.yul\":1554:1575 */\n 0x4469646e27742073656e6420656e6f7567682100000000000000000000000000\n /* \"#utility.yul\":1550:1551 */\n 0x00\n /* \"#utility.yul\":1542:1548 */\n dup3\n /* \"#utility.yul\":1538:1552 */\n add\n /* \"#utility.yul\":1531:1576 */\n mstore\n /* \"#utility.yul\":1414:1583 */\n pop\n jump\t// out\n\n auxdata: 0xa26469706673582212205e4c6f2005464cc68048ace1e3befe99b026858742af469dcf8eb462a0eb811d64736f6c63430008070033\n}\n",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b506101a4806100206000396000f3fe6080604052600436106100295760003560e01c80633fa4f2451461002e578063b60d428814610059575b600080fd5b34801561003a57600080fd5b50610043610063565b604051610050919061010f565b60405180910390f35b610061610069565b005b60005481565b6005600081905550670de0b6b3a764000034116100bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016100b2906100ef565b60405180910390fd5b565b60006100ca60138361012a565b91506100d582610145565b602082019050919050565b6100e98161013b565b82525050565b60006020820190508181036000830152610108816100bd565b9050919050565b600060208201905061012460008301846100e0565b92915050565b600082825260208201905092915050565b6000819050919050565b7f4469646e27742073656e6420656e6f756768210000000000000000000000000060008201525056fea26469706673582212205e4c6f2005464cc68048ace1e3befe99b026858742af469dcf8eb462a0eb811d64736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1A4 DUP1 PUSH2 0x20 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x29 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x3FA4F245 EQ PUSH2 0x2E JUMPI DUP1 PUSH4 0xB60D4288 EQ PUSH2 0x59 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x43 PUSH2 0x63 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x50 SWAP2 SWAP1 PUSH2 0x10F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x61 PUSH2 0x69 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x5 PUSH1 0x0 DUP2 SWAP1 SSTORE POP PUSH8 0xDE0B6B3A7640000 CALLVALUE GT PUSH2 0xBB JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB2 SWAP1 PUSH2 0xEF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH2 0xCA PUSH1 0x13 DUP4 PUSH2 0x12A JUMP JUMPDEST SWAP2 POP PUSH2 0xD5 DUP3 PUSH2 0x145 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xE9 DUP2 PUSH2 0x13B JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x108 DUP2 PUSH2 0xBD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x124 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xE0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4469646E27742073656E6420656E6F7567682100000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x5E 0x4C PUSH16 0x2005464CC68048ACE1E3BEFE99B02685 DUP8 TIMESTAMP 0xAF CHAINID SWAP14 0xCF DUP15 0xB4 PUSH3 0xA0EB81 SAR PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER ",
"sourceMap": "139:415:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@fund_19": {
"entryPoint": 105,
"id": 19,
"parameterSlots": 0,
"returnSlots": 0
},
"@value_3": {
"entryPoint": 99,
"id": 3,
"parameterSlots": 0,
"returnSlots": 0
},
"abi_encode_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5_to_t_string_memory_ptr_fromStack": {
"entryPoint": 189,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 224,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 239,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 271,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 298,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 315,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"store_literal_in_memory_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5": {
"entryPoint": 325,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:1586:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "153:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "163:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "229:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "234:2:1",
"type": "",
"value": "19"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "170:58:1"
},
"nodeType": "YulFunctionCall",
"src": "170:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "163:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "335:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5",
"nodeType": "YulIdentifier",
"src": "246:88:1"
},
"nodeType": "YulFunctionCall",
"src": "246:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "246:93:1"
},
{
"nodeType": "YulAssignment",
"src": "348:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "359:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "364:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "355:3:1"
},
"nodeType": "YulFunctionCall",
"src": "355:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "348:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "141:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "149:3:1",
"type": ""
}
],
"src": "7:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "444:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "461:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "484:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "466:17:1"
},
"nodeType": "YulFunctionCall",
"src": "466:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "454:6:1"
},
"nodeType": "YulFunctionCall",
"src": "454:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "454:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "432:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "439:3:1",
"type": ""
}
],
"src": "379:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "674:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "684:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "696:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "707:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "692:3:1"
},
"nodeType": "YulFunctionCall",
"src": "692:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "684:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "731:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "742:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "727:3:1"
},
"nodeType": "YulFunctionCall",
"src": "727:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "750:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "756:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "746:3:1"
},
"nodeType": "YulFunctionCall",
"src": "746:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "720:6:1"
},
"nodeType": "YulFunctionCall",
"src": "720:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "720:47:1"
},
{
"nodeType": "YulAssignment",
"src": "776:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "910:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "784:124:1"
},
"nodeType": "YulFunctionCall",
"src": "784:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "776:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "654:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "669:4:1",
"type": ""
}
],
"src": "503:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1026:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1036:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1048:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1059:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1044:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1044:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1036:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1116:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1129:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1140:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1125:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1125:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "1072:43:1"
},
"nodeType": "YulFunctionCall",
"src": "1072:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "1072:71:1"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "998:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1010:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1021:4:1",
"type": ""
}
],
"src": "928:222:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1252:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1269:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1274:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1262:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1262:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "1262:19:1"
},
{
"nodeType": "YulAssignment",
"src": "1290:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1309:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1314:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1305:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1305:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "1290:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1224:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1229:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "1240:11:1",
"type": ""
}
],
"src": "1156:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1376:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1386:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "1397:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1386:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1358:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1368:7:1",
"type": ""
}
],
"src": "1331:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1520:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1542:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1550:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1538:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1538:14:1"
},
{
"hexValue": "4469646e27742073656e6420656e6f75676821",
"kind": "string",
"nodeType": "YulLiteral",
"src": "1554:21:1",
"type": "",
"value": "Didn't send enough!"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1531:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1531:45:1"
},
"nodeType": "YulExpressionStatement",
"src": "1531:45:1"
}
]
},
"name": "store_literal_in_memory_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1512:6:1",
"type": ""
}
],
"src": "1414:169:1"
}
]
},
"contents": "{\n\n function abi_encode_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 19)\n store_literal_in_memory_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function store_literal_in_memory_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5(memPtr) {\n\n mstore(add(memPtr, 0), \"Didn't send enough!\")\n\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "6080604052600436106100295760003560e01c80633fa4f2451461002e578063b60d428814610059575b600080fd5b34801561003a57600080fd5b50610043610063565b604051610050919061010f565b60405180910390f35b610061610069565b005b60005481565b6005600081905550670de0b6b3a764000034116100bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016100b2906100ef565b60405180910390fd5b565b60006100ca60138361012a565b91506100d582610145565b602082019050919050565b6100e98161013b565b82525050565b60006020820190508181036000830152610108816100bd565b9050919050565b600060208201905061012460008301846100e0565b92915050565b600082825260208201905092915050565b6000819050919050565b7f4469646e27742073656e6420656e6f756768210000000000000000000000000060008201525056fea26469706673582212205e4c6f2005464cc68048ace1e3befe99b026858742af469dcf8eb462a0eb811d64736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x29 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x3FA4F245 EQ PUSH2 0x2E JUMPI DUP1 PUSH4 0xB60D4288 EQ PUSH2 0x59 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x43 PUSH2 0x63 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x50 SWAP2 SWAP1 PUSH2 0x10F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x61 PUSH2 0x69 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x5 PUSH1 0x0 DUP2 SWAP1 SSTORE POP PUSH8 0xDE0B6B3A7640000 CALLVALUE GT PUSH2 0xBB JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB2 SWAP1 PUSH2 0xEF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH2 0xCA PUSH1 0x13 DUP4 PUSH2 0x12A JUMP JUMPDEST SWAP2 POP PUSH2 0xD5 DUP3 PUSH2 0x145 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xE9 DUP2 PUSH2 0x13B JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x108 DUP2 PUSH2 0xBD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x124 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xE0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4469646E27742073656E6420656E6F7567682100000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x5E 0x4C PUSH16 0x2005464CC68048ACE1E3BEFE99B02685 DUP8 TIMESTAMP 0xAF CHAINID SWAP14 0xCF DUP15 0xB4 PUSH3 0xA0EB81 SAR PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER ",
"sourceMap": "139:415:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;161:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;187:335;;;:::i;:::-;;161:20;;;;:::o;187:335::-;347:1;339:5;:9;;;;378:4;366:9;:16;358:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;187:335::o;7:366:1:-;149:3;170:67;234:2;229:3;170:67;:::i;:::-;163:74;;246:93;335:3;246:93;:::i;:::-;364:2;359:3;355:12;348:19;;7:366;;;:::o;379:118::-;466:24;484:5;466:24;:::i;:::-;461:3;454:37;379:118;;:::o;503:419::-;669:4;707:2;696:9;692:18;684:26;;756:9;750:4;746:20;742:1;731:9;727:17;720:47;784:131;910:4;784:131;:::i;:::-;776:139;;503:419;;;:::o;928:222::-;1021:4;1059:2;1048:9;1044:18;1036:26;;1072:71;1140:1;1129:9;1125:17;1116:6;1072:71;:::i;:::-;928:222;;;;:::o;1156:169::-;1240:11;1274:6;1269:3;1262:19;1314:4;1309:3;1305:14;1290:29;;1156:169;;;;:::o;1331:77::-;1368:7;1397:5;1386:16;;1331:77;;;:::o;1414:169::-;1554:21;1550:1;1542:6;1538:14;1531:45;1414:169;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "84000",
"executionCost": "135",
"totalCost": "84135"
},
"external": {
"fund()": "22545",
"value()": "2407"
}
},
"legacyAssembly": {
".code": [
{
"begin": 139,
"end": 554,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 139,
"end": 554,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 139,
"end": 554,
"name": "MSTORE",
"source": 0
},
{
"begin": 139,
"end": 554,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 139,
"end": 554,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 554,
"name": "ISZERO",
"source": 0
},
{
"begin": 139,
"end": 554,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 139,
"end": 554,
"name": "JUMPI",
"source": 0
},
{
"begin": 139,
"end": 554,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 554,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 554,
"name": "REVERT",
"source": 0
},
{
"begin": 139,
"end": 554,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 139,
"end": 554,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 139,
"end": 554,
"name": "POP",
"source": 0
},
{
"begin": 139,
"end": 554,
"name": "PUSH #[$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 139,
"end": 554,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 554,
"name": "PUSH [$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 139,
"end": 554,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 554,
"name": "CODECOPY",
"source": 0
},
{
"begin": 139,
"end": 554,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 554,
"name": "RETURN",
"source": 0
}
],
".data": {
"0": {
".auxdata": "a26469706673582212205e4c6f2005464cc68048ace1e3befe99b026858742af469dcf8eb462a0eb811d64736f6c63430008070033",
".code": [
{
"begin": 139,
"end": 554,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 139,
"end": 554,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 139,
"end": 554,
"name": "MSTORE",
"source": 0
},
{
"begin": 139,
"end": 554,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 139,
"end": 554,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 139,
"end": 554,
"name": "LT",
"source": 0
},
{
"begin": 139,
"end": 554,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 139,
"end": 554,
"name": "JUMPI",
"source": 0
},
{
"begin": 139,
"end": 554,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 554,
"name": "CALLDATALOAD",
"source": 0
},
{
"begin": 139,
"end": 554,
"name": "PUSH",
"source": 0,
"value": "E0"
},
{
"begin": 139,
"end": 554,
"name": "SHR",
"source": 0
},
{
"begin": 139,
"end": 554,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 554,
"name": "PUSH",
"source": 0,
"value": "3FA4F245"
},
{
"begin": 139,
"end": 554,
"name": "EQ",
"source": 0
},
{
"begin": 139,
"end": 554,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 139,
"end": 554,
"name": "JUMPI",
"source": 0
},
{
"begin": 139,
"end": 554,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 554,
"name": "PUSH",
"source": 0,
"value": "B60D4288"
},
{
"begin": 139,
"end": 554,
"name": "EQ",
"source": 0
},
{
"begin": 139,
"end": 554,
"name": "PUSH [tag]",
"source": 0,
"value": "3"
},
{
"begin": 139,
"end": 554,
"name": "JUMPI",
"source": 0
},
{
"begin": 139,
"end": 554,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 139,
"end": 554,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 139,
"end": 554,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 554,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 554,
"name": "REVERT",
"source": 0
},
{
"begin": 161,
"end": 181,
"name": "tag",
"source": 0,
"value": "2"
},
{
"begin": 161,
"end": 181,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 161,
"end": 181,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 161,
"end": 181,
"name": "DUP1",
"source": 0
},
{
"begin": 161,
"end": 181,
"name": "ISZERO",
"source": 0
},
{
"begin": 161,
"end": 181,
"name": "PUSH [tag]",
"source": 0,
"value": "4"
},
{
"begin": 161,
"end": 181,
"name": "JUMPI",
"source": 0
},
{
"begin": 161,
"end": 181,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 161,
"end": 181,
"name": "DUP1",
"source": 0
},
{
"begin": 161,
"end": 181,
"name": "REVERT",
"source": 0
},
{
"begin": 161,
"end": 181,
"name": "tag",
"source": 0,
"value": "4"
},
{
"begin": 161,
"end": 181,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 161,
"end": 181,
"name": "POP",
"source": 0
},
{
"begin": 161,
"end": 181,
"name": "PUSH [tag]",
"source": 0,
"value": "5"
},
{
"begin": 161,
"end": 181,
"name": "PUSH [tag]",
"source": 0,
"value": "6"
},
{
"begin": 161,
"end": 181,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 161,
"end": 181,
"name": "tag",
"source": 0,
"value": "5"
},
{
"begin": 161,
"end": 181,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 161,
"end": 181,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 161,
"end": 181,
"name": "MLOAD",
"source": 0
},
{
"begin": 161,
"end": 181,
"name": "PUSH [tag]",
"source": 0,
"value": "7"
},
{
"begin": 161,
"end": 181,
"name": "SWAP2",
"source": 0
},
{
"begin": 161,
"end": 181,
"name": "SWAP1",
"source": 0
},
{
"begin": 161,
"end": 181,
"name": "PUSH [tag]",
"source": 0,
"value": "8"
},
{
"begin": 161,
"end": 181,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 161,
"end": 181,
"name": "tag",
"source": 0,
"value": "7"
},
{
"begin": 161,
"end": 181,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 161,
"end": 181,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 161,
"end": 181,
"name": "MLOAD",
"source": 0
},
{
"begin": 161,
"end": 181,
"name": "DUP1",
"source": 0
},
{
"begin": 161,
"end": 181,
"name": "SWAP2",
"source": 0
},
{
"begin": 161,
"end": 181,
"name": "SUB",
"source": 0
},
{
"begin": 161,
"end": 181,
"name": "SWAP1",
"source": 0
},
{
"begin": 161,
"end": 181,
"name": "RETURN",
"source": 0
},
{
"begin": 187,
"end": 522,
"name": "tag",
"source": 0,
"value": "3"
},
{
"begin": 187,
"end": 522,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 187,
"end": 522,
"name": "PUSH [tag]",
"source": 0,
"value": "9"
},
{
"begin": 187,
"end": 522,
"name": "PUSH [tag]",
"source": 0,
"value": "10"
},
{
"begin": 187,
"end": 522,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 187,
"end": 522,
"name": "tag",
"source": 0,
"value": "9"
},
{
"begin": 187,
"end": 522,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 187,
"end": 522,
"name": "STOP",
"source": 0
},
{
"begin": 161,
"end": 181,
"name": "tag",
"source": 0,
"value": "6"
},
{
"begin": 161,
"end": 181,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 161,
"end": 181,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 161,
"end": 181,
"name": "SLOAD",
"source": 0
},
{
"begin": 161,
"end": 181,
"name": "DUP2",
"source": 0
},
{
"begin": 161,
"end": 181,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 187,
"end": 522,
"name": "tag",
"source": 0,
"value": "10"
},
{
"begin": 187,
"end": 522,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 347,
"end": 348,
"name": "PUSH",
"source": 0,
"value": "5"
},
{
"begin": 339,
"end": 344,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 339,
"end": 348,
"name": "DUP2",
"source": 0
},
{
"begin": 339,
"end": 348,
"name": "SWAP1",
"source": 0
},
{
"begin": 339,
"end": 348,
"name": "SSTORE",
"source": 0
},
{
"begin": 339,
"end": 348,
"name": "POP",
"source": 0
},
{
"begin": 378,
"end": 382,
"name": "PUSH",
"source": 0,
"value": "DE0B6B3A7640000"
},
{
"begin": 366,
"end": 375,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 366,
"end": 382,
"name": "GT",
"source": 0
},
{
"begin": 358,
"end": 406,
"name": "PUSH [tag]",
"source": 0,
"value": "12"
},
{
"begin": 358,
"end": 406,
"name": "JUMPI",
"source": 0
},
{
"begin": 358,
"end": 406,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 358,
"end": 406,
"name": "MLOAD",
"source": 0
},
{
"begin": 358,
"end": 406,
"name": "PUSH",
"source": 0,
"value": "8C379A000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 358,
"end": 406,
"name": "DUP2",
"source": 0
},
{
"begin": 358,
"end": 406,
"name": "MSTORE",
"source": 0
},
{
"begin": 358,
"end": 406,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 358,
"end": 406,
"name": "ADD",
"source": 0
},
{
"begin": 358,
"end": 406,
"name": "PUSH [tag]",
"source": 0,
"value": "13"
},
{
"begin": 358,
"end": 406,
"name": "SWAP1",
"source": 0
},
{
"begin": 358,
"end": 406,
"name": "PUSH [tag]",
"source": 0,
"value": "14"
},
{
"begin": 358,
"end": 406,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 358,
"end": 406,
"name": "tag",
"source": 0,
"value": "13"
},
{
"begin": 358,
"end": 406,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 358,
"end": 406,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 358,
"end": 406,
"name": "MLOAD",
"source": 0
},
{
"begin": 358,
"end": 406,
"name": "DUP1",
"source": 0
},
{
"begin": 358,
"end": 406,
"name": "SWAP2",
"source": 0
},
{
"begin": 358,
"end": 406,
"name": "SUB",
"source": 0
},
{
"begin": 358,
"end": 406,
"name": "SWAP1",
"source": 0
},
{
"begin": 358,
"end": 406,
"name": "REVERT",
"source": 0
},
{
"begin": 358,
"end": 406,
"name": "tag",
"source": 0,
"value": "12"
},
{
"begin": 358,
"end": 406,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 187,
"end": 522,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 7,
"end": 373,
"name": "tag",
"source": 1,
"value": "16"
},
{
"begin": 7,
"end": 373,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 149,
"end": 152,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 170,
"end": 237,
"name": "PUSH [tag]",
"source": 1,
"value": "18"
},
{
"begin": 234,
"end": 236,
"name": "PUSH",
"source": 1,
"value": "13"
},
{
"begin": 229,
"end": 232,
"name": "DUP4",
"source": 1
},
{
"begin": 170,
"end": 237,
"name": "PUSH [tag]",
"source": 1,
"value": "19"
},
{
"begin": 170,
"end": 237,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 170,
"end": 237,
"name": "tag",
"source": 1,
"value": "18"
},
{
"begin": 170,
"end": 237,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 163,
"end": 237,
"name": "SWAP2",
"source": 1
},
{
"begin": 163,
"end": 237,
"name": "POP",
"source": 1
},
{
"begin": 246,
"end": 339,
"name": "PUSH [tag]",
"source": 1,
"value": "20"
},
{
"begin": 335,
"end": 338,
"name": "DUP3",
"source": 1
},
{
"begin": 246,
"end": 339,
"name": "PUSH [tag]",
"source": 1,
"value": "21"
},
{
"begin": 246,
"end": 339,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 246,
"end": 339,
"name": "tag",
"source": 1,
"value": "20"
},
{
"begin": 246,
"end": 339,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 364,
"end": 366,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 359,
"end": 362,
"name": "DUP3",
"source": 1
},
{
"begin": 355,
"end": 367,
"name": "ADD",
"source": 1
},
{
"begin": 348,
"end": 367,
"name": "SWAP1",
"source": 1
},
{
"begin": 348,
"end": 367,
"name": "POP",
"source": 1
},
{
"begin": 7,
"end": 373,
"name": "SWAP2",
"source": 1
},
{
"begin": 7,
"end": 373,
"name": "SWAP1",
"source": 1
},
{
"begin": 7,
"end": 373,
"name": "POP",
"source": 1
},
{
"begin": 7,
"end": 373,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 379,
"end": 497,
"name": "tag",
"source": 1,
"value": "22"
},
{
"begin": 379,
"end": 497,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 466,
"end": 490,
"name": "PUSH [tag]",
"source": 1,
"value": "24"
},
{
"begin": 484,
"end": 489,
"name": "DUP2",
"source": 1
},
{
"begin": 466,
"end": 490,
"name": "PUSH [tag]",
"source": 1,
"value": "25"
},
{
"begin": 466,
"end": 490,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 466,
"end": 490,
"name": "tag",
"source": 1,
"value": "24"
},
{
"begin": 466,
"end": 490,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 461,
"end": 464,
"name": "DUP3",
"source": 1
},
{
"begin": 454,
"end": 491,
"name": "MSTORE",
"source": 1
},
{
"begin": 379,
"end": 497,
"name": "POP",
"source": 1
},
{
"begin": 379,
"end": 497,
"name": "POP",
"source": 1
},
{
"begin": 379,
"end": 497,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 503,
"end": 922,
"name": "tag",
"source": 1,
"value": "14"
},
{
"begin": 503,
"end": 922,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 669,
"end": 673,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 707,
"end": 709,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 696,
"end": 705,
"name": "DUP3",
"source": 1
},
{
"begin": 692,
"end": 710,
"name": "ADD",
"source": 1
},
{
"begin": 684,
"end": 710,
"name": "SWAP1",
"source": 1
},
{
"begin": 684,
"end": 710,
"name": "POP",
"source": 1
},
{
"begin": 756,
"end": 765,
"name": "DUP2",
"source": 1
},
{
"begin": 750,
"end": 754,
"name": "DUP2",
"source": 1
},
{
"begin": 746,
"end": 766,
"name": "SUB",
"source": 1
},
{
"begin": 742,
"end": 743,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 731,
"end": 740,
"name": "DUP4",
"source": 1
},
{
"begin": 727,
"end": 744,
"name": "ADD",
"source": 1
},
{
"begin": 720,
"end": 767,
"name": "MSTORE",
"source": 1
},
{
"begin": 784,
"end": 915,
"name": "PUSH [tag]",
"source": 1,
"value": "27"
},
{
"begin": 910,
"end": 914,
"name": "DUP2",
"source": 1
},
{
"begin": 784,
"end": 915,
"name": "PUSH [tag]",
"source": 1,
"value": "16"
},
{
"begin": 784,
"end": 915,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 784,
"end": 915,
"name": "tag",
"source": 1,
"value": "27"
},
{
"begin": 784,
"end": 915,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 776,
"end": 915,
"name": "SWAP1",
"source": 1
},
{
"begin": 776,
"end": 915,
"name": "POP",
"source": 1
},
{
"begin": 503,
"end": 922,
"name": "SWAP2",
"source": 1
},
{
"begin": 503,
"end": 922,
"name": "SWAP1",
"source": 1
},
{
"begin": 503,
"end": 922,
"name": "POP",
"source": 1
},
{
"begin": 503,
"end": 922,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 928,
"end": 1150,
"name": "tag",
"source": 1,
"value": "8"
},
{
"begin": 928,
"end": 1150,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1021,
"end": 1025,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1059,
"end": 1061,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 1048,
"end": 1057,
"name": "DUP3",
"source": 1
},
{
"begin": 1044,
"end": 1062,
"name": "ADD",
"source": 1
},
{
"begin": 1036,
"end": 1062,
"name": "SWAP1",
"source": 1
},
{
"begin": 1036,
"end": 1062,
"name": "POP",
"source": 1
},
{
"begin": 1072,
"end": 1143,
"name": "PUSH [tag]",
"source": 1,
"value": "29"
},
{
"begin": 1140,
"end": 1141,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1129,
"end": 1138,
"name": "DUP4",
"source": 1
},
{
"begin": 1125,
"end": 1142,
"name": "ADD",
"source": 1
},
{
"begin": 1116,
"end": 1122,
"name": "DUP5",
"source": 1
},
{
"begin": 1072,
"end": 1143,
"name": "PUSH [tag]",
"source": 1,
"value": "22"
},
{
"begin": 1072,
"end": 1143,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1072,
"end": 1143,
"name": "tag",
"source": 1,
"value": "29"
},
{
"begin": 1072,
"end": 1143,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 928,
"end": 1150,
"name": "SWAP3",
"source": 1
},
{
"begin": 928,
"end": 1150,
"name": "SWAP2",
"source": 1
},
{
"begin": 928,
"end": 1150,
"name": "POP",
"source": 1
},
{
"begin": 928,
"end": 1150,
"name": "POP",
"source": 1
},
{
"begin": 928,
"end": 1150,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 1156,
"end": 1325,
"name": "tag",
"source": 1,
"value": "19"
},
{
"begin": 1156,
"end": 1325,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1240,
"end": 1251,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1274,
"end": 1280,
"name": "DUP3",
"source": 1
},
{
"begin": 1269,
"end": 1272,
"name": "DUP3",
"source": 1
},
{
"begin": 1262,
"end": 1281,
"name": "MSTORE",
"source": 1
},
{
"begin": 1314,
"end": 1318,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 1309,
"end": 1312,
"name": "DUP3",
"source": 1
},
{
"begin": 1305,
"end": 1319,
"name": "ADD",
"source": 1
},
{
"begin": 1290,
"end": 1319,
"name": "SWAP1",
"source": 1
},
{
"begin": 1290,
"end": 1319,
"name": "POP",
"source": 1
},
{
"begin": 1156,
"end": 1325,
"name": "SWAP3",
"source": 1
},
{
"begin": 1156,
"end": 1325,
"name": "SWAP2",
"source": 1
},
{
"begin": 1156,
"end": 1325,
"name": "POP",
"source": 1
},
{
"begin": 1156,
"end": 1325,
"name": "POP",
"source": 1
},
{
"begin": 1156,
"end": 1325,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 1331,
"end": 1408,
"name": "tag",
"source": 1,
"value": "25"
},
{
"begin": 1331,
"end": 1408,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1368,
"end": 1375,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1397,
"end": 1402,
"name": "DUP2",
"source": 1
},
{
"begin": 1386,
"end": 1402,
"name": "SWAP1",
"source": 1
},
{
"begin": 1386,
"end": 1402,
"name": "POP",
"source": 1
},
{
"begin": 1331,
"end": 1408,
"name": "SWAP2",
"source": 1
},
{
"begin": 1331,
"end": 1408,
"name": "SWAP1",
"source": 1
},
{
"begin": 1331,
"end": 1408,
"name": "POP",
"source": 1
},
{
"begin": 1331,
"end": 1408,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 1414,
"end": 1583,
"name": "tag",
"source": 1,
"value": "21"
},
{
"begin": 1414,
"end": 1583,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1554,
"end": 1575,
"name": "PUSH",
"source": 1,
"value": "4469646E27742073656E6420656E6F7567682100000000000000000000000000"
},
{
"begin": 1550,
"end": 1551,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1542,
"end": 1548,
"name": "DUP3",
"source": 1
},
{
"begin": 1538,
"end": 1552,
"name": "ADD",
"source": 1
},
{
"begin": 1531,
"end": 1576,
"name": "MSTORE",
"source": 1
},
{
"begin": 1414,
"end": 1583,
"name": "POP",
"source": 1
},
{
"begin": 1414,
"end": 1583,
"name": "JUMP",
"source": 1,
"value": "[out]"
}
]
}
}
},
"methodIdentifiers": {
"fund()": "b60d4288",
"value()": "3fa4f245"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.7+commit.e28d00a7\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"fund\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"value\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/FundMe.sol\":\"FundMe\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/FundMe.sol\":{\"keccak256\":\"0xf059bf1173b9cb8960dfef38b1da2e7b93ed5021ba478ccc3f16d0f823f6623d\",\"urls\":[\"bzz-raw://2cf9b8fe425c05d309b76829a932db407d27fccb88c2e7f7065823e43020da6f\",\"dweb:/ipfs/Qme48intG6E9eRQ3iiRS3KW861yabeH5iZWN8xGLRJpPTb\"]}},\"version\":1}",
"storageLayout": {
"storage": [
{
"astId": 3,
"contract": "contracts/FundMe.sol:FundMe",
"label": "value",
"offset": 0,
"slot": "0",
"type": "t_uint256"
}
],
"types": {
"t_uint256": {
"encoding": "inplace",
"label": "uint256",
"numberOfBytes": "32"
}
}
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
}
},
"errors": [
{
"component": "general",
"errorCode": "1878",
"formattedMessage": "Warning: SPDX license identifier not provided in source file. Before publishing, consider adding a comment containing \"SPDX-License-Identifier: <SPDX-License>\" to each source file. Use \"SPDX-License-Identifier: UNLICENSED\" for non-open-source code. Please see https://spdx.org for more information.\n--> contracts/FundMe.sol\n\n",
"message": "SPDX license identifier not provided in source file. Before publishing, consider adding a comment containing \"SPDX-License-Identifier: <SPDX-License>\" to each source file. Use \"SPDX-License-Identifier: UNLICENSED\" for non-open-source code. Please see https://spdx.org for more information.",
"severity": "warning",
"sourceLocation": {
"end": -1,
"file": "contracts/FundMe.sol",
"start": -1
},
"type": "Warning"
}
],
"sources": {
"contracts/FundMe.sol": {
"ast": {
"absolutePath": "contracts/FundMe.sol",
"exportedSymbols": {
"FundMe": [
20
]
},
"id": 21,
"nodeType": "SourceUnit",
"nodes": [
{
"id": 1,
"literals": [
"solidity",
"^",
"0.8",
".0"
],
"nodeType": "PragmaDirective",
"src": "114:23:0"
},
{
"abstract": false,
"baseContracts": [],
"contractDependencies": [],
"contractKind": "contract",
"fullyImplemented": true,
"id": 20,
"linearizedBaseContracts": [
20
],
"name": "FundMe",
"nameLocation": "148:6:0",
"nodeType": "ContractDefinition",
"nodes": [
{
"constant": false,
"functionSelector": "3fa4f245",
"id": 3,
"mutability": "mutable",
"name": "value",
"nameLocation": "176:5:0",
"nodeType": "VariableDeclaration",
"scope": 20,
"src": "161:20:0",
"stateVariable": true,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 2,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "161:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "public"
},
{
"body": {
"id": 18,
"nodeType": "Block",
"src": "219:303:0",
"statements": [
{
"expression": {
"id": 8,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftHandSide": {
"id": 6,
"name": "value",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 3,
"src": "339:5:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"nodeType": "Assignment",
"operator": "=",
"rightHandSide": {
"hexValue": "35",
"id": 7,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "number",
"lValueRequested": false,
"nodeType": "Literal",
"src": "347:1:0",
"typeDescriptions": {
"typeIdentifier": "t_rational_5_by_1",
"typeString": "int_const 5"
},
"value": "5"
},
"src": "339:9:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"id": 9,
"nodeType": "ExpressionStatement",
"src": "339:9:0"
},
{
"expression": {
"arguments": [
{
"commonType": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"id": 14,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftExpression": {
"expression": {
"id": 11,
"name": "msg",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967281,
"src": "366:3:0",
"typeDescriptions": {
"typeIdentifier": "t_magic_message",
"typeString": "msg"
}
},
"id": 12,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberName": "value",
"nodeType": "MemberAccess",
"src": "366:9:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"nodeType": "BinaryOperation",
"operator": ">",
"rightExpression": {
"hexValue": "31653138",
"id": 13,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "number",
"lValueRequested": false,
"nodeType": "Literal",
"src": "378:4:0",
"typeDescriptions": {
"typeIdentifier": "t_rational_1000000000000000000_by_1",
"typeString": "int_const 1000000000000000000"
},
"value": "1e18"
},
"src": "366:16:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
{
"hexValue": "4469646e27742073656e6420656e6f75676821",
"id": 15,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "384:21:0",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5",
"typeString": "literal_string \"Didn't send enough!\""
},
"value": "Didn't send enough!"
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bool",
"typeString": "bool"
},
{
"typeIdentifier": "t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5",
"typeString": "literal_string \"Didn't send enough!\""
}
],
"id": 10,
"name": "require",
"nodeType": "Identifier",
"overloadedDeclarations": [
4294967278,
4294967278
],
"referencedDeclaration": 4294967278,
"src": "358:7:0",
"typeDescriptions": {
"typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
"typeString": "function (bool,string memory) pure"
}
},
"id": 16,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "358:48:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 17,
"nodeType": "ExpressionStatement",
"src": "358:48:0"
}
]
},
"functionSelector": "b60d4288",
"id": 19,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "fund",
"nameLocation": "196:4:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 4,
"nodeType": "ParameterList",
"parameters": [],
"src": "201:2:0"
},
"returnParameters": {
"id": 5,
"nodeType": "ParameterList",
"parameters": [],
"src": "219:0:0"
},
"scope": 20,
"src": "187:335:0",
"stateMutability": "payable",
"virtual": false,
"visibility": "public"
}
],
"scope": 21,
"src": "139:415:0",
"usedErrors": []
}
],
"src": "114:440:0"
},
"id": 0
}
}
}
}
{
"id": "91277b1e3c4b6a6adf9dceefe4def772",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.7",
"solcLongVersion": "0.8.7+commit.e28d00a7",
"input": {
"language": "Solidity",
"sources": {
"contracts/FundMe.sol": {
"content": "// Get funds from users\n// Withdraw funds\n// Set a minimum funding value in USD\n\n// SDPX-License-Identifier: MIT\n\npragma solidity ^0.8.0;\n\ncontract FundMe {\n \n}"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"storageLayout",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"contracts": {
"contracts/FundMe.sol": {
"FundMe": {
"abi": [],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": " /* \"contracts/FundMe.sol\":139:163 contract FundMe {... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\ntag_1:\n pop\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"contracts/FundMe.sol\":139:163 contract FundMe {... */\n mstore(0x40, 0x80)\n 0x00\n dup1\n revert\n\n auxdata: 0xa2646970667358221220452191a20f8c955fe72e72de54aa7650371444396d46ffbf837007b4b827887964736f6c63430008070033\n}\n",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "6080604052348015600f57600080fd5b50603f80601d6000396000f3fe6080604052600080fdfea2646970667358221220452191a20f8c955fe72e72de54aa7650371444396d46ffbf837007b4b827887964736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH1 0xF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x3F DUP1 PUSH1 0x1D PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 GASLIMIT 0x21 SWAP2 LOG2 0xF DUP13 SWAP6 0x5F 0xE7 0x2E PUSH19 0xDE54AA7650371444396D46FFBF837007B4B827 DUP9 PUSH26 0x64736F6C63430008070033000000000000000000000000000000 ",
"sourceMap": "139:24:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "6080604052600080fdfea2646970667358221220452191a20f8c955fe72e72de54aa7650371444396d46ffbf837007b4b827887964736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 GASLIMIT 0x21 SWAP2 LOG2 0xF DUP13 SWAP6 0x5F 0xE7 0x2E PUSH19 0xDE54AA7650371444396D46FFBF837007B4B827 DUP9 PUSH26 0x64736F6C63430008070033000000000000000000000000000000 ",
"sourceMap": "139:24:0:-:0;;;;;"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "12600",
"executionCost": "66",
"totalCost": "12666"
}
},
"legacyAssembly": {
".code": [
{
"begin": 139,
"end": 163,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 139,
"end": 163,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 139,
"end": 163,
"name": "MSTORE",
"source": 0
},
{
"begin": 139,
"end": 163,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 139,
"end": 163,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 163,
"name": "ISZERO",
"source": 0
},
{
"begin": 139,
"end": 163,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 139,
"end": 163,
"name": "JUMPI",
"source": 0
},
{
"begin": 139,
"end": 163,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 163,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 163,
"name": "REVERT",
"source": 0
},
{
"begin": 139,
"end": 163,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 139,
"end": 163,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 139,
"end": 163,
"name": "POP",
"source": 0
},
{
"begin": 139,
"end": 163,
"name": "PUSH #[$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 139,
"end": 163,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 163,
"name": "PUSH [$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 139,
"end": 163,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 163,
"name": "CODECOPY",
"source": 0
},
{
"begin": 139,
"end": 163,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 163,
"name": "RETURN",
"source": 0
}
],
".data": {
"0": {
".auxdata": "a2646970667358221220452191a20f8c955fe72e72de54aa7650371444396d46ffbf837007b4b827887964736f6c63430008070033",
".code": [
{
"begin": 139,
"end": 163,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 139,
"end": 163,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 139,
"end": 163,
"name": "MSTORE",
"source": 0
},
{
"begin": 139,
"end": 163,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 163,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 163,
"name": "REVERT",
"source": 0
}
]
}
}
},
"methodIdentifiers": {}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.7+commit.e28d00a7\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/FundMe.sol\":\"FundMe\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/FundMe.sol\":{\"keccak256\":\"0x830bf820d5aef4dd0f6101bae5457add88bc6ae13c6b1e0b04200b4b414d774b\",\"urls\":[\"bzz-raw://13fec36831c72086eaa5b7a2704a20b02b55d0c9763c335115b6e559f222e179\",\"dweb:/ipfs/QmeE5Tpz4xzZiPXBgz4EyoX54RjKs6u6Nz1jbh5hdgZAxU\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
}
},
"errors": [
{
"component": "general",
"errorCode": "1878",
"formattedMessage": "Warning: SPDX license identifier not provided in source file. Before publishing, consider adding a comment containing \"SPDX-License-Identifier: <SPDX-License>\" to each source file. Use \"SPDX-License-Identifier: UNLICENSED\" for non-open-source code. Please see https://spdx.org for more information.\n--> contracts/FundMe.sol\n\n",
"message": "SPDX license identifier not provided in source file. Before publishing, consider adding a comment containing \"SPDX-License-Identifier: <SPDX-License>\" to each source file. Use \"SPDX-License-Identifier: UNLICENSED\" for non-open-source code. Please see https://spdx.org for more information.",
"severity": "warning",
"sourceLocation": {
"end": -1,
"file": "contracts/FundMe.sol",
"start": -1
},
"type": "Warning"
}
],
"sources": {
"contracts/FundMe.sol": {
"ast": {
"absolutePath": "contracts/FundMe.sol",
"exportedSymbols": {
"FundMe": [
2
]
},
"id": 3,
"nodeType": "SourceUnit",
"nodes": [
{
"id": 1,
"literals": [
"solidity",
"^",
"0.8",
".0"
],
"nodeType": "PragmaDirective",
"src": "114:23:0"
},
{
"abstract": false,
"baseContracts": [],
"contractDependencies": [],
"contractKind": "contract",
"fullyImplemented": true,
"id": 2,
"linearizedBaseContracts": [
2
],
"name": "FundMe",
"nameLocation": "148:6:0",
"nodeType": "ContractDefinition",
"nodes": [],
"scope": 3,
"src": "139:24:0",
"usedErrors": []
}
],
"src": "114:49:0"
},
"id": 0
}
}
}
}
{
"id": "a64b01470bc36b093be994cd31e45d81",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.7",
"solcLongVersion": "0.8.7+commit.e28d00a7",
"input": {
"language": "Solidity",
"sources": {
"contracts/FundMe.sol": {
"content": "// SDPX-License-Identifier: MIT\n// Get funds from users\n// Withdraw funds\n// Set a minimum funding value in USD\n\n\npragma solidity ^0.8.0;\n\ncontract FundMe {\n uint256 public value;\n function fund () public payable {\n // Want to be able to set a minimum fund amount in USD\n // 1. How to send ETH to this contract\n require(msg.value > 1e18, \"Didn't send enough!\"); // 1 * 10 ** 18\n value = 5;\n\n // What's reverting\n // undo any action before, and send remaining gas back!\n }\n\n // function withdraw(){}\n}"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"storageLayout",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"contracts": {
"contracts/FundMe.sol": {
"FundMe": {
"abi": [
{
"inputs": [],
"name": "fund",
"outputs": [],
"stateMutability": "payable",
"type": "function"
},
{
"inputs": [],
"name": "value",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": " /* \"contracts/FundMe.sol\":139:554 contract FundMe {... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\ntag_1:\n pop\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"contracts/FundMe.sol\":139:554 contract FundMe {... */\n mstore(0x40, 0x80)\n jumpi(tag_1, lt(calldatasize, 0x04))\n shr(0xe0, calldataload(0x00))\n dup1\n 0x3fa4f245\n eq\n tag_2\n jumpi\n dup1\n 0xb60d4288\n eq\n tag_3\n jumpi\n tag_1:\n 0x00\n dup1\n revert\n /* \"contracts/FundMe.sol\":161:181 uint256 public value */\n tag_2:\n callvalue\n dup1\n iszero\n tag_4\n jumpi\n 0x00\n dup1\n revert\n tag_4:\n pop\n tag_5\n tag_6\n jump\t// in\n tag_5:\n mload(0x40)\n tag_7\n swap2\n swap1\n tag_8\n jump\t// in\n tag_7:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/FundMe.sol\":187:522 function fund () public payable {... */\n tag_3:\n tag_9\n tag_10\n jump\t// in\n tag_9:\n stop\n /* \"contracts/FundMe.sol\":161:181 uint256 public value */\n tag_6:\n sload(0x00)\n dup2\n jump\t// out\n /* \"contracts/FundMe.sol\":187:522 function fund () public payable {... */\n tag_10:\n /* \"contracts/FundMe.sol\":359:363 1e18 */\n 0x0de0b6b3a7640000\n /* \"contracts/FundMe.sol\":347:356 msg.value */\n callvalue\n /* \"contracts/FundMe.sol\":347:363 msg.value > 1e18 */\n gt\n /* \"contracts/FundMe.sol\":339:387 require(msg.value > 1e18, \"Didn't send enough!\") */\n tag_12\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_13\n swap1\n tag_14\n jump\t// in\n tag_13:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_12:\n /* \"contracts/FundMe.sol\":421:422 5 */\n 0x05\n /* \"contracts/FundMe.sol\":413:418 value */\n 0x00\n /* \"contracts/FundMe.sol\":413:422 value = 5 */\n dup2\n swap1\n sstore\n pop\n /* \"contracts/FundMe.sol\":187:522 function fund () public payable {... */\n jump\t// out\n /* \"#utility.yul\":7:373 */\n tag_16:\n /* \"#utility.yul\":149:152 */\n 0x00\n /* \"#utility.yul\":170:237 */\n tag_18\n /* \"#utility.yul\":234:236 */\n 0x13\n /* \"#utility.yul\":229:232 */\n dup4\n /* \"#utility.yul\":170:237 */\n tag_19\n jump\t// in\n tag_18:\n /* \"#utility.yul\":163:237 */\n swap2\n pop\n /* \"#utility.yul\":246:339 */\n tag_20\n /* \"#utility.yul\":335:338 */\n dup3\n /* \"#utility.yul\":246:339 */\n tag_21\n jump\t// in\n tag_20:\n /* \"#utility.yul\":364:366 */\n 0x20\n /* \"#utility.yul\":359:362 */\n dup3\n /* \"#utility.yul\":355:367 */\n add\n /* \"#utility.yul\":348:367 */\n swap1\n pop\n /* \"#utility.yul\":7:373 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":379:497 */\n tag_22:\n /* \"#utility.yul\":466:490 */\n tag_24\n /* \"#utility.yul\":484:489 */\n dup2\n /* \"#utility.yul\":466:490 */\n tag_25\n jump\t// in\n tag_24:\n /* \"#utility.yul\":461:464 */\n dup3\n /* \"#utility.yul\":454:491 */\n mstore\n /* \"#utility.yul\":379:497 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":503:922 */\n tag_14:\n /* \"#utility.yul\":669:673 */\n 0x00\n /* \"#utility.yul\":707:709 */\n 0x20\n /* \"#utility.yul\":696:705 */\n dup3\n /* \"#utility.yul\":692:710 */\n add\n /* \"#utility.yul\":684:710 */\n swap1\n pop\n /* \"#utility.yul\":756:765 */\n dup2\n /* \"#utility.yul\":750:754 */\n dup2\n /* \"#utility.yul\":746:766 */\n sub\n /* \"#utility.yul\":742:743 */\n 0x00\n /* \"#utility.yul\":731:740 */\n dup4\n /* \"#utility.yul\":727:744 */\n add\n /* \"#utility.yul\":720:767 */\n mstore\n /* \"#utility.yul\":784:915 */\n tag_27\n /* \"#utility.yul\":910:914 */\n dup2\n /* \"#utility.yul\":784:915 */\n tag_16\n jump\t// in\n tag_27:\n /* \"#utility.yul\":776:915 */\n swap1\n pop\n /* \"#utility.yul\":503:922 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":928:1150 */\n tag_8:\n /* \"#utility.yul\":1021:1025 */\n 0x00\n /* \"#utility.yul\":1059:1061 */\n 0x20\n /* \"#utility.yul\":1048:1057 */\n dup3\n /* \"#utility.yul\":1044:1062 */\n add\n /* \"#utility.yul\":1036:1062 */\n swap1\n pop\n /* \"#utility.yul\":1072:1143 */\n tag_29\n /* \"#utility.yul\":1140:1141 */\n 0x00\n /* \"#utility.yul\":1129:1138 */\n dup4\n /* \"#utility.yul\":1125:1142 */\n add\n /* \"#utility.yul\":1116:1122 */\n dup5\n /* \"#utility.yul\":1072:1143 */\n tag_22\n jump\t// in\n tag_29:\n /* \"#utility.yul\":928:1150 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1156:1325 */\n tag_19:\n /* \"#utility.yul\":1240:1251 */\n 0x00\n /* \"#utility.yul\":1274:1280 */\n dup3\n /* \"#utility.yul\":1269:1272 */\n dup3\n /* \"#utility.yul\":1262:1281 */\n mstore\n /* \"#utility.yul\":1314:1318 */\n 0x20\n /* \"#utility.yul\":1309:1312 */\n dup3\n /* \"#utility.yul\":1305:1319 */\n add\n /* \"#utility.yul\":1290:1319 */\n swap1\n pop\n /* \"#utility.yul\":1156:1325 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1331:1408 */\n tag_25:\n /* \"#utility.yul\":1368:1375 */\n 0x00\n /* \"#utility.yul\":1397:1402 */\n dup2\n /* \"#utility.yul\":1386:1402 */\n swap1\n pop\n /* \"#utility.yul\":1331:1408 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1414:1583 */\n tag_21:\n /* \"#utility.yul\":1554:1575 */\n 0x4469646e27742073656e6420656e6f7567682100000000000000000000000000\n /* \"#utility.yul\":1550:1551 */\n 0x00\n /* \"#utility.yul\":1542:1548 */\n dup3\n /* \"#utility.yul\":1538:1552 */\n add\n /* \"#utility.yul\":1531:1576 */\n mstore\n /* \"#utility.yul\":1414:1583 */\n pop\n jump\t// out\n\n auxdata: 0xa26469706673582212200a1808945674f016d27264da42bfc297e25275390394050ca5b17dce2d36ee0664736f6c63430008070033\n}\n",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b506101a4806100206000396000f3fe6080604052600436106100295760003560e01c80633fa4f2451461002e578063b60d428814610059575b600080fd5b34801561003a57600080fd5b50610043610063565b604051610050919061010f565b60405180910390f35b610061610069565b005b60005481565b670de0b6b3a764000034116100b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016100aa906100ef565b60405180910390fd5b6005600081905550565b60006100ca60138361012a565b91506100d582610145565b602082019050919050565b6100e98161013b565b82525050565b60006020820190508181036000830152610108816100bd565b9050919050565b600060208201905061012460008301846100e0565b92915050565b600082825260208201905092915050565b6000819050919050565b7f4469646e27742073656e6420656e6f756768210000000000000000000000000060008201525056fea26469706673582212200a1808945674f016d27264da42bfc297e25275390394050ca5b17dce2d36ee0664736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1A4 DUP1 PUSH2 0x20 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x29 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x3FA4F245 EQ PUSH2 0x2E JUMPI DUP1 PUSH4 0xB60D4288 EQ PUSH2 0x59 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x43 PUSH2 0x63 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x50 SWAP2 SWAP1 PUSH2 0x10F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x61 PUSH2 0x69 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 SLOAD DUP2 JUMP JUMPDEST PUSH8 0xDE0B6B3A7640000 CALLVALUE GT PUSH2 0xB3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAA SWAP1 PUSH2 0xEF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x5 PUSH1 0x0 DUP2 SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xCA PUSH1 0x13 DUP4 PUSH2 0x12A JUMP JUMPDEST SWAP2 POP PUSH2 0xD5 DUP3 PUSH2 0x145 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xE9 DUP2 PUSH2 0x13B JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x108 DUP2 PUSH2 0xBD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x124 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xE0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4469646E27742073656E6420656E6F7567682100000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 EXP XOR ADDMOD SWAP5 JUMP PUSH21 0xF016D27264DA42BFC297E25275390394050CA5B17D 0xCE 0x2D CALLDATASIZE 0xEE MOD PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER ",
"sourceMap": "139:415:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@fund_19": {
"entryPoint": 105,
"id": 19,
"parameterSlots": 0,
"returnSlots": 0
},
"@value_3": {
"entryPoint": 99,
"id": 3,
"parameterSlots": 0,
"returnSlots": 0
},
"abi_encode_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5_to_t_string_memory_ptr_fromStack": {
"entryPoint": 189,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 224,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 239,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 271,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 298,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 315,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"store_literal_in_memory_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5": {
"entryPoint": 325,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:1586:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "153:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "163:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "229:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "234:2:1",
"type": "",
"value": "19"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "170:58:1"
},
"nodeType": "YulFunctionCall",
"src": "170:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "163:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "335:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5",
"nodeType": "YulIdentifier",
"src": "246:88:1"
},
"nodeType": "YulFunctionCall",
"src": "246:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "246:93:1"
},
{
"nodeType": "YulAssignment",
"src": "348:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "359:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "364:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "355:3:1"
},
"nodeType": "YulFunctionCall",
"src": "355:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "348:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "141:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "149:3:1",
"type": ""
}
],
"src": "7:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "444:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "461:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "484:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "466:17:1"
},
"nodeType": "YulFunctionCall",
"src": "466:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "454:6:1"
},
"nodeType": "YulFunctionCall",
"src": "454:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "454:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "432:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "439:3:1",
"type": ""
}
],
"src": "379:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "674:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "684:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "696:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "707:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "692:3:1"
},
"nodeType": "YulFunctionCall",
"src": "692:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "684:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "731:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "742:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "727:3:1"
},
"nodeType": "YulFunctionCall",
"src": "727:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "750:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "756:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "746:3:1"
},
"nodeType": "YulFunctionCall",
"src": "746:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "720:6:1"
},
"nodeType": "YulFunctionCall",
"src": "720:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "720:47:1"
},
{
"nodeType": "YulAssignment",
"src": "776:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "910:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "784:124:1"
},
"nodeType": "YulFunctionCall",
"src": "784:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "776:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "654:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "669:4:1",
"type": ""
}
],
"src": "503:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1026:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1036:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1048:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1059:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1044:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1044:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1036:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1116:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1129:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1140:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1125:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1125:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "1072:43:1"
},
"nodeType": "YulFunctionCall",
"src": "1072:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "1072:71:1"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "998:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1010:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1021:4:1",
"type": ""
}
],
"src": "928:222:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1252:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1269:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1274:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1262:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1262:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "1262:19:1"
},
{
"nodeType": "YulAssignment",
"src": "1290:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1309:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1314:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1305:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1305:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "1290:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1224:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1229:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "1240:11:1",
"type": ""
}
],
"src": "1156:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1376:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1386:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "1397:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1386:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1358:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1368:7:1",
"type": ""
}
],
"src": "1331:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1520:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1542:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1550:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1538:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1538:14:1"
},
{
"hexValue": "4469646e27742073656e6420656e6f75676821",
"kind": "string",
"nodeType": "YulLiteral",
"src": "1554:21:1",
"type": "",
"value": "Didn't send enough!"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1531:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1531:45:1"
},
"nodeType": "YulExpressionStatement",
"src": "1531:45:1"
}
]
},
"name": "store_literal_in_memory_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1512:6:1",
"type": ""
}
],
"src": "1414:169:1"
}
]
},
"contents": "{\n\n function abi_encode_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 19)\n store_literal_in_memory_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function store_literal_in_memory_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5(memPtr) {\n\n mstore(add(memPtr, 0), \"Didn't send enough!\")\n\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "6080604052600436106100295760003560e01c80633fa4f2451461002e578063b60d428814610059575b600080fd5b34801561003a57600080fd5b50610043610063565b604051610050919061010f565b60405180910390f35b610061610069565b005b60005481565b670de0b6b3a764000034116100b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016100aa906100ef565b60405180910390fd5b6005600081905550565b60006100ca60138361012a565b91506100d582610145565b602082019050919050565b6100e98161013b565b82525050565b60006020820190508181036000830152610108816100bd565b9050919050565b600060208201905061012460008301846100e0565b92915050565b600082825260208201905092915050565b6000819050919050565b7f4469646e27742073656e6420656e6f756768210000000000000000000000000060008201525056fea26469706673582212200a1808945674f016d27264da42bfc297e25275390394050ca5b17dce2d36ee0664736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x29 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x3FA4F245 EQ PUSH2 0x2E JUMPI DUP1 PUSH4 0xB60D4288 EQ PUSH2 0x59 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x43 PUSH2 0x63 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x50 SWAP2 SWAP1 PUSH2 0x10F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x61 PUSH2 0x69 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 SLOAD DUP2 JUMP JUMPDEST PUSH8 0xDE0B6B3A7640000 CALLVALUE GT PUSH2 0xB3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAA SWAP1 PUSH2 0xEF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x5 PUSH1 0x0 DUP2 SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xCA PUSH1 0x13 DUP4 PUSH2 0x12A JUMP JUMPDEST SWAP2 POP PUSH2 0xD5 DUP3 PUSH2 0x145 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xE9 DUP2 PUSH2 0x13B JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x108 DUP2 PUSH2 0xBD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x124 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xE0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4469646E27742073656E6420656E6F7567682100000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 EXP XOR ADDMOD SWAP5 JUMP PUSH21 0xF016D27264DA42BFC297E25275390394050CA5B17D 0xCE 0x2D CALLDATASIZE 0xEE MOD PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER ",
"sourceMap": "139:415:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;161:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;187:335;;;:::i;:::-;;161:20;;;;:::o;187:335::-;359:4;347:9;:16;339:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;421:1;413:5;:9;;;;187:335::o;7:366:1:-;149:3;170:67;234:2;229:3;170:67;:::i;:::-;163:74;;246:93;335:3;246:93;:::i;:::-;364:2;359:3;355:12;348:19;;7:366;;;:::o;379:118::-;466:24;484:5;466:24;:::i;:::-;461:3;454:37;379:118;;:::o;503:419::-;669:4;707:2;696:9;692:18;684:26;;756:9;750:4;746:20;742:1;731:9;727:17;720:47;784:131;910:4;784:131;:::i;:::-;776:139;;503:419;;;:::o;928:222::-;1021:4;1059:2;1048:9;1044:18;1036:26;;1072:71;1140:1;1129:9;1125:17;1116:6;1072:71;:::i;:::-;928:222;;;;:::o;1156:169::-;1240:11;1274:6;1269:3;1262:19;1314:4;1309:3;1305:14;1290:29;;1156:169;;;;:::o;1331:77::-;1368:7;1397:5;1386:16;;1331:77;;;:::o;1414:169::-;1554:21;1550:1;1542:6;1538:14;1531:45;1414:169;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "84000",
"executionCost": "135",
"totalCost": "84135"
},
"external": {
"fund()": "22256",
"value()": "2407"
}
},
"legacyAssembly": {
".code": [
{
"begin": 139,
"end": 554,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 139,
"end": 554,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 139,
"end": 554,
"name": "MSTORE",
"source": 0
},
{
"begin": 139,
"end": 554,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 139,
"end": 554,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 554,
"name": "ISZERO",
"source": 0
},
{
"begin": 139,
"end": 554,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 139,
"end": 554,
"name": "JUMPI",
"source": 0
},
{
"begin": 139,
"end": 554,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 554,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 554,
"name": "REVERT",
"source": 0
},
{
"begin": 139,
"end": 554,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 139,
"end": 554,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 139,
"end": 554,
"name": "POP",
"source": 0
},
{
"begin": 139,
"end": 554,
"name": "PUSH #[$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 139,
"end": 554,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 554,
"name": "PUSH [$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 139,
"end": 554,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 554,
"name": "CODECOPY",
"source": 0
},
{
"begin": 139,
"end": 554,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 554,
"name": "RETURN",
"source": 0
}
],
".data": {
"0": {
".auxdata": "a26469706673582212200a1808945674f016d27264da42bfc297e25275390394050ca5b17dce2d36ee0664736f6c63430008070033",
".code": [
{
"begin": 139,
"end": 554,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 139,
"end": 554,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 139,
"end": 554,
"name": "MSTORE",
"source": 0
},
{
"begin": 139,
"end": 554,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 139,
"end": 554,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 139,
"end": 554,
"name": "LT",
"source": 0
},
{
"begin": 139,
"end": 554,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 139,
"end": 554,
"name": "JUMPI",
"source": 0
},
{
"begin": 139,
"end": 554,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 554,
"name": "CALLDATALOAD",
"source": 0
},
{
"begin": 139,
"end": 554,
"name": "PUSH",
"source": 0,
"value": "E0"
},
{
"begin": 139,
"end": 554,
"name": "SHR",
"source": 0
},
{
"begin": 139,
"end": 554,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 554,
"name": "PUSH",
"source": 0,
"value": "3FA4F245"
},
{
"begin": 139,
"end": 554,
"name": "EQ",
"source": 0
},
{
"begin": 139,
"end": 554,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 139,
"end": 554,
"name": "JUMPI",
"source": 0
},
{
"begin": 139,
"end": 554,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 554,
"name": "PUSH",
"source": 0,
"value": "B60D4288"
},
{
"begin": 139,
"end": 554,
"name": "EQ",
"source": 0
},
{
"begin": 139,
"end": 554,
"name": "PUSH [tag]",
"source": 0,
"value": "3"
},
{
"begin": 139,
"end": 554,
"name": "JUMPI",
"source": 0
},
{
"begin": 139,
"end": 554,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 139,
"end": 554,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 139,
"end": 554,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 554,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 554,
"name": "REVERT",
"source": 0
},
{
"begin": 161,
"end": 181,
"name": "tag",
"source": 0,
"value": "2"
},
{
"begin": 161,
"end": 181,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 161,
"end": 181,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 161,
"end": 181,
"name": "DUP1",
"source": 0
},
{
"begin": 161,
"end": 181,
"name": "ISZERO",
"source": 0
},
{
"begin": 161,
"end": 181,
"name": "PUSH [tag]",
"source": 0,
"value": "4"
},
{
"begin": 161,
"end": 181,
"name": "JUMPI",
"source": 0
},
{
"begin": 161,
"end": 181,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 161,
"end": 181,
"name": "DUP1",
"source": 0
},
{
"begin": 161,
"end": 181,
"name": "REVERT",
"source": 0
},
{
"begin": 161,
"end": 181,
"name": "tag",
"source": 0,
"value": "4"
},
{
"begin": 161,
"end": 181,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 161,
"end": 181,
"name": "POP",
"source": 0
},
{
"begin": 161,
"end": 181,
"name": "PUSH [tag]",
"source": 0,
"value": "5"
},
{
"begin": 161,
"end": 181,
"name": "PUSH [tag]",
"source": 0,
"value": "6"
},
{
"begin": 161,
"end": 181,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 161,
"end": 181,
"name": "tag",
"source": 0,
"value": "5"
},
{
"begin": 161,
"end": 181,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 161,
"end": 181,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 161,
"end": 181,
"name": "MLOAD",
"source": 0
},
{
"begin": 161,
"end": 181,
"name": "PUSH [tag]",
"source": 0,
"value": "7"
},
{
"begin": 161,
"end": 181,
"name": "SWAP2",
"source": 0
},
{
"begin": 161,
"end": 181,
"name": "SWAP1",
"source": 0
},
{
"begin": 161,
"end": 181,
"name": "PUSH [tag]",
"source": 0,
"value": "8"
},
{
"begin": 161,
"end": 181,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 161,
"end": 181,
"name": "tag",
"source": 0,
"value": "7"
},
{
"begin": 161,
"end": 181,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 161,
"end": 181,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 161,
"end": 181,
"name": "MLOAD",
"source": 0
},
{
"begin": 161,
"end": 181,
"name": "DUP1",
"source": 0
},
{
"begin": 161,
"end": 181,
"name": "SWAP2",
"source": 0
},
{
"begin": 161,
"end": 181,
"name": "SUB",
"source": 0
},
{
"begin": 161,
"end": 181,
"name": "SWAP1",
"source": 0
},
{
"begin": 161,
"end": 181,
"name": "RETURN",
"source": 0
},
{
"begin": 187,
"end": 522,
"name": "tag",
"source": 0,
"value": "3"
},
{
"begin": 187,
"end": 522,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 187,
"end": 522,
"name": "PUSH [tag]",
"source": 0,
"value": "9"
},
{
"begin": 187,
"end": 522,
"name": "PUSH [tag]",
"source": 0,
"value": "10"
},
{
"begin": 187,
"end": 522,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 187,
"end": 522,
"name": "tag",
"source": 0,
"value": "9"
},
{
"begin": 187,
"end": 522,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 187,
"end": 522,
"name": "STOP",
"source": 0
},
{
"begin": 161,
"end": 181,
"name": "tag",
"source": 0,
"value": "6"
},
{
"begin": 161,
"end": 181,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 161,
"end": 181,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 161,
"end": 181,
"name": "SLOAD",
"source": 0
},
{
"begin": 161,
"end": 181,
"name": "DUP2",
"source": 0
},
{
"begin": 161,
"end": 181,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 187,
"end": 522,
"name": "tag",
"source": 0,
"value": "10"
},
{
"begin": 187,
"end": 522,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 359,
"end": 363,
"name": "PUSH",
"source": 0,
"value": "DE0B6B3A7640000"
},
{
"begin": 347,
"end": 356,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 347,
"end": 363,
"name": "GT",
"source": 0
},
{
"begin": 339,
"end": 387,
"name": "PUSH [tag]",
"source": 0,
"value": "12"
},
{
"begin": 339,
"end": 387,
"name": "JUMPI",
"source": 0
},
{
"begin": 339,
"end": 387,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 339,
"end": 387,
"name": "MLOAD",
"source": 0
},
{
"begin": 339,
"end": 387,
"name": "PUSH",
"source": 0,
"value": "8C379A000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 339,
"end": 387,
"name": "DUP2",
"source": 0
},
{
"begin": 339,
"end": 387,
"name": "MSTORE",
"source": 0
},
{
"begin": 339,
"end": 387,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 339,
"end": 387,
"name": "ADD",
"source": 0
},
{
"begin": 339,
"end": 387,
"name": "PUSH [tag]",
"source": 0,
"value": "13"
},
{
"begin": 339,
"end": 387,
"name": "SWAP1",
"source": 0
},
{
"begin": 339,
"end": 387,
"name": "PUSH [tag]",
"source": 0,
"value": "14"
},
{
"begin": 339,
"end": 387,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 339,
"end": 387,
"name": "tag",
"source": 0,
"value": "13"
},
{
"begin": 339,
"end": 387,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 339,
"end": 387,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 339,
"end": 387,
"name": "MLOAD",
"source": 0
},
{
"begin": 339,
"end": 387,
"name": "DUP1",
"source": 0
},
{
"begin": 339,
"end": 387,
"name": "SWAP2",
"source": 0
},
{
"begin": 339,
"end": 387,
"name": "SUB",
"source": 0
},
{
"begin": 339,
"end": 387,
"name": "SWAP1",
"source": 0
},
{
"begin": 339,
"end": 387,
"name": "REVERT",
"source": 0
},
{
"begin": 339,
"end": 387,
"name": "tag",
"source": 0,
"value": "12"
},
{
"begin": 339,
"end": 387,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 421,
"end": 422,
"name": "PUSH",
"source": 0,
"value": "5"
},
{
"begin": 413,
"end": 418,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 413,
"end": 422,
"name": "DUP2",
"source": 0
},
{
"begin": 413,
"end": 422,
"name": "SWAP1",
"source": 0
},
{
"begin": 413,
"end": 422,
"name": "SSTORE",
"source": 0
},
{
"begin": 413,
"end": 422,
"name": "POP",
"source": 0
},
{
"begin": 187,
"end": 522,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 7,
"end": 373,
"name": "tag",
"source": 1,
"value": "16"
},
{
"begin": 7,
"end": 373,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 149,
"end": 152,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 170,
"end": 237,
"name": "PUSH [tag]",
"source": 1,
"value": "18"
},
{
"begin": 234,
"end": 236,
"name": "PUSH",
"source": 1,
"value": "13"
},
{
"begin": 229,
"end": 232,
"name": "DUP4",
"source": 1
},
{
"begin": 170,
"end": 237,
"name": "PUSH [tag]",
"source": 1,
"value": "19"
},
{
"begin": 170,
"end": 237,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 170,
"end": 237,
"name": "tag",
"source": 1,
"value": "18"
},
{
"begin": 170,
"end": 237,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 163,
"end": 237,
"name": "SWAP2",
"source": 1
},
{
"begin": 163,
"end": 237,
"name": "POP",
"source": 1
},
{
"begin": 246,
"end": 339,
"name": "PUSH [tag]",
"source": 1,
"value": "20"
},
{
"begin": 335,
"end": 338,
"name": "DUP3",
"source": 1
},
{
"begin": 246,
"end": 339,
"name": "PUSH [tag]",
"source": 1,
"value": "21"
},
{
"begin": 246,
"end": 339,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 246,
"end": 339,
"name": "tag",
"source": 1,
"value": "20"
},
{
"begin": 246,
"end": 339,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 364,
"end": 366,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 359,
"end": 362,
"name": "DUP3",
"source": 1
},
{
"begin": 355,
"end": 367,
"name": "ADD",
"source": 1
},
{
"begin": 348,
"end": 367,
"name": "SWAP1",
"source": 1
},
{
"begin": 348,
"end": 367,
"name": "POP",
"source": 1
},
{
"begin": 7,
"end": 373,
"name": "SWAP2",
"source": 1
},
{
"begin": 7,
"end": 373,
"name": "SWAP1",
"source": 1
},
{
"begin": 7,
"end": 373,
"name": "POP",
"source": 1
},
{
"begin": 7,
"end": 373,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 379,
"end": 497,
"name": "tag",
"source": 1,
"value": "22"
},
{
"begin": 379,
"end": 497,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 466,
"end": 490,
"name": "PUSH [tag]",
"source": 1,
"value": "24"
},
{
"begin": 484,
"end": 489,
"name": "DUP2",
"source": 1
},
{
"begin": 466,
"end": 490,
"name": "PUSH [tag]",
"source": 1,
"value": "25"
},
{
"begin": 466,
"end": 490,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 466,
"end": 490,
"name": "tag",
"source": 1,
"value": "24"
},
{
"begin": 466,
"end": 490,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 461,
"end": 464,
"name": "DUP3",
"source": 1
},
{
"begin": 454,
"end": 491,
"name": "MSTORE",
"source": 1
},
{
"begin": 379,
"end": 497,
"name": "POP",
"source": 1
},
{
"begin": 379,
"end": 497,
"name": "POP",
"source": 1
},
{
"begin": 379,
"end": 497,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 503,
"end": 922,
"name": "tag",
"source": 1,
"value": "14"
},
{
"begin": 503,
"end": 922,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 669,
"end": 673,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 707,
"end": 709,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 696,
"end": 705,
"name": "DUP3",
"source": 1
},
{
"begin": 692,
"end": 710,
"name": "ADD",
"source": 1
},
{
"begin": 684,
"end": 710,
"name": "SWAP1",
"source": 1
},
{
"begin": 684,
"end": 710,
"name": "POP",
"source": 1
},
{
"begin": 756,
"end": 765,
"name": "DUP2",
"source": 1
},
{
"begin": 750,
"end": 754,
"name": "DUP2",
"source": 1
},
{
"begin": 746,
"end": 766,
"name": "SUB",
"source": 1
},
{
"begin": 742,
"end": 743,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 731,
"end": 740,
"name": "DUP4",
"source": 1
},
{
"begin": 727,
"end": 744,
"name": "ADD",
"source": 1
},
{
"begin": 720,
"end": 767,
"name": "MSTORE",
"source": 1
},
{
"begin": 784,
"end": 915,
"name": "PUSH [tag]",
"source": 1,
"value": "27"
},
{
"begin": 910,
"end": 914,
"name": "DUP2",
"source": 1
},
{
"begin": 784,
"end": 915,
"name": "PUSH [tag]",
"source": 1,
"value": "16"
},
{
"begin": 784,
"end": 915,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 784,
"end": 915,
"name": "tag",
"source": 1,
"value": "27"
},
{
"begin": 784,
"end": 915,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 776,
"end": 915,
"name": "SWAP1",
"source": 1
},
{
"begin": 776,
"end": 915,
"name": "POP",
"source": 1
},
{
"begin": 503,
"end": 922,
"name": "SWAP2",
"source": 1
},
{
"begin": 503,
"end": 922,
"name": "SWAP1",
"source": 1
},
{
"begin": 503,
"end": 922,
"name": "POP",
"source": 1
},
{
"begin": 503,
"end": 922,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 928,
"end": 1150,
"name": "tag",
"source": 1,
"value": "8"
},
{
"begin": 928,
"end": 1150,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1021,
"end": 1025,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1059,
"end": 1061,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 1048,
"end": 1057,
"name": "DUP3",
"source": 1
},
{
"begin": 1044,
"end": 1062,
"name": "ADD",
"source": 1
},
{
"begin": 1036,
"end": 1062,
"name": "SWAP1",
"source": 1
},
{
"begin": 1036,
"end": 1062,
"name": "POP",
"source": 1
},
{
"begin": 1072,
"end": 1143,
"name": "PUSH [tag]",
"source": 1,
"value": "29"
},
{
"begin": 1140,
"end": 1141,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1129,
"end": 1138,
"name": "DUP4",
"source": 1
},
{
"begin": 1125,
"end": 1142,
"name": "ADD",
"source": 1
},
{
"begin": 1116,
"end": 1122,
"name": "DUP5",
"source": 1
},
{
"begin": 1072,
"end": 1143,
"name": "PUSH [tag]",
"source": 1,
"value": "22"
},
{
"begin": 1072,
"end": 1143,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1072,
"end": 1143,
"name": "tag",
"source": 1,
"value": "29"
},
{
"begin": 1072,
"end": 1143,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 928,
"end": 1150,
"name": "SWAP3",
"source": 1
},
{
"begin": 928,
"end": 1150,
"name": "SWAP2",
"source": 1
},
{
"begin": 928,
"end": 1150,
"name": "POP",
"source": 1
},
{
"begin": 928,
"end": 1150,
"name": "POP",
"source": 1
},
{
"begin": 928,
"end": 1150,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 1156,
"end": 1325,
"name": "tag",
"source": 1,
"value": "19"
},
{
"begin": 1156,
"end": 1325,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1240,
"end": 1251,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1274,
"end": 1280,
"name": "DUP3",
"source": 1
},
{
"begin": 1269,
"end": 1272,
"name": "DUP3",
"source": 1
},
{
"begin": 1262,
"end": 1281,
"name": "MSTORE",
"source": 1
},
{
"begin": 1314,
"end": 1318,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 1309,
"end": 1312,
"name": "DUP3",
"source": 1
},
{
"begin": 1305,
"end": 1319,
"name": "ADD",
"source": 1
},
{
"begin": 1290,
"end": 1319,
"name": "SWAP1",
"source": 1
},
{
"begin": 1290,
"end": 1319,
"name": "POP",
"source": 1
},
{
"begin": 1156,
"end": 1325,
"name": "SWAP3",
"source": 1
},
{
"begin": 1156,
"end": 1325,
"name": "SWAP2",
"source": 1
},
{
"begin": 1156,
"end": 1325,
"name": "POP",
"source": 1
},
{
"begin": 1156,
"end": 1325,
"name": "POP",
"source": 1
},
{
"begin": 1156,
"end": 1325,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 1331,
"end": 1408,
"name": "tag",
"source": 1,
"value": "25"
},
{
"begin": 1331,
"end": 1408,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1368,
"end": 1375,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1397,
"end": 1402,
"name": "DUP2",
"source": 1
},
{
"begin": 1386,
"end": 1402,
"name": "SWAP1",
"source": 1
},
{
"begin": 1386,
"end": 1402,
"name": "POP",
"source": 1
},
{
"begin": 1331,
"end": 1408,
"name": "SWAP2",
"source": 1
},
{
"begin": 1331,
"end": 1408,
"name": "SWAP1",
"source": 1
},
{
"begin": 1331,
"end": 1408,
"name": "POP",
"source": 1
},
{
"begin": 1331,
"end": 1408,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 1414,
"end": 1583,
"name": "tag",
"source": 1,
"value": "21"
},
{
"begin": 1414,
"end": 1583,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1554,
"end": 1575,
"name": "PUSH",
"source": 1,
"value": "4469646E27742073656E6420656E6F7567682100000000000000000000000000"
},
{
"begin": 1550,
"end": 1551,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1542,
"end": 1548,
"name": "DUP3",
"source": 1
},
{
"begin": 1538,
"end": 1552,
"name": "ADD",
"source": 1
},
{
"begin": 1531,
"end": 1576,
"name": "MSTORE",
"source": 1
},
{
"begin": 1414,
"end": 1583,
"name": "POP",
"source": 1
},
{
"begin": 1414,
"end": 1583,
"name": "JUMP",
"source": 1,
"value": "[out]"
}
]
}
}
},
"methodIdentifiers": {
"fund()": "b60d4288",
"value()": "3fa4f245"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.7+commit.e28d00a7\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"fund\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"value\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/FundMe.sol\":\"FundMe\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/FundMe.sol\":{\"keccak256\":\"0x30bf38432d7848093c79ef25b16165e6fe34aa88ff42ffa326be5978bdb6c088\",\"urls\":[\"bzz-raw://faec56cb1cd72805c7ee1a45e469d21fa0875785b176a9fcf39ef1e54b0c95d8\",\"dweb:/ipfs/QmZkdW5L23biz3kHs7qpRYNK2WneSVxZwRaDuufw5j9CbF\"]}},\"version\":1}",
"storageLayout": {
"storage": [
{
"astId": 3,
"contract": "contracts/FundMe.sol:FundMe",
"label": "value",
"offset": 0,
"slot": "0",
"type": "t_uint256"
}
],
"types": {
"t_uint256": {
"encoding": "inplace",
"label": "uint256",
"numberOfBytes": "32"
}
}
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
}
},
"errors": [
{
"component": "general",
"errorCode": "1878",
"formattedMessage": "Warning: SPDX license identifier not provided in source file. Before publishing, consider adding a comment containing \"SPDX-License-Identifier: <SPDX-License>\" to each source file. Use \"SPDX-License-Identifier: UNLICENSED\" for non-open-source code. Please see https://spdx.org for more information.\n--> contracts/FundMe.sol\n\n",
"message": "SPDX license identifier not provided in source file. Before publishing, consider adding a comment containing \"SPDX-License-Identifier: <SPDX-License>\" to each source file. Use \"SPDX-License-Identifier: UNLICENSED\" for non-open-source code. Please see https://spdx.org for more information.",
"severity": "warning",
"sourceLocation": {
"end": -1,
"file": "contracts/FundMe.sol",
"start": -1
},
"type": "Warning"
}
],
"sources": {
"contracts/FundMe.sol": {
"ast": {
"absolutePath": "contracts/FundMe.sol",
"exportedSymbols": {
"FundMe": [
20
]
},
"id": 21,
"nodeType": "SourceUnit",
"nodes": [
{
"id": 1,
"literals": [
"solidity",
"^",
"0.8",
".0"
],
"nodeType": "PragmaDirective",
"src": "114:23:0"
},
{
"abstract": false,
"baseContracts": [],
"contractDependencies": [],
"contractKind": "contract",
"fullyImplemented": true,
"id": 20,
"linearizedBaseContracts": [
20
],
"name": "FundMe",
"nameLocation": "148:6:0",
"nodeType": "ContractDefinition",
"nodes": [
{
"constant": false,
"functionSelector": "3fa4f245",
"id": 3,
"mutability": "mutable",
"name": "value",
"nameLocation": "176:5:0",
"nodeType": "VariableDeclaration",
"scope": 20,
"src": "161:20:0",
"stateVariable": true,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 2,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "161:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "public"
},
{
"body": {
"id": 18,
"nodeType": "Block",
"src": "219:303:0",
"statements": [
{
"expression": {
"arguments": [
{
"commonType": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"id": 10,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftExpression": {
"expression": {
"id": 7,
"name": "msg",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967281,
"src": "347:3:0",
"typeDescriptions": {
"typeIdentifier": "t_magic_message",
"typeString": "msg"
}
},
"id": 8,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberName": "value",
"nodeType": "MemberAccess",
"src": "347:9:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"nodeType": "BinaryOperation",
"operator": ">",
"rightExpression": {
"hexValue": "31653138",
"id": 9,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "number",
"lValueRequested": false,
"nodeType": "Literal",
"src": "359:4:0",
"typeDescriptions": {
"typeIdentifier": "t_rational_1000000000000000000_by_1",
"typeString": "int_const 1000000000000000000"
},
"value": "1e18"
},
"src": "347:16:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
{
"hexValue": "4469646e27742073656e6420656e6f75676821",
"id": 11,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "365:21:0",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5",
"typeString": "literal_string \"Didn't send enough!\""
},
"value": "Didn't send enough!"
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bool",
"typeString": "bool"
},
{
"typeIdentifier": "t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5",
"typeString": "literal_string \"Didn't send enough!\""
}
],
"id": 6,
"name": "require",
"nodeType": "Identifier",
"overloadedDeclarations": [
4294967278,
4294967278
],
"referencedDeclaration": 4294967278,
"src": "339:7:0",
"typeDescriptions": {
"typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
"typeString": "function (bool,string memory) pure"
}
},
"id": 12,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "339:48:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 13,
"nodeType": "ExpressionStatement",
"src": "339:48:0"
},
{
"expression": {
"id": 16,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftHandSide": {
"id": 14,
"name": "value",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 3,
"src": "413:5:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"nodeType": "Assignment",
"operator": "=",
"rightHandSide": {
"hexValue": "35",
"id": 15,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "number",
"lValueRequested": false,
"nodeType": "Literal",
"src": "421:1:0",
"typeDescriptions": {
"typeIdentifier": "t_rational_5_by_1",
"typeString": "int_const 5"
},
"value": "5"
},
"src": "413:9:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"id": 17,
"nodeType": "ExpressionStatement",
"src": "413:9:0"
}
]
},
"functionSelector": "b60d4288",
"id": 19,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "fund",
"nameLocation": "196:4:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 4,
"nodeType": "ParameterList",
"parameters": [],
"src": "201:2:0"
},
"returnParameters": {
"id": 5,
"nodeType": "ParameterList",
"parameters": [],
"src": "219:0:0"
},
"scope": 20,
"src": "187:335:0",
"stateMutability": "payable",
"virtual": false,
"visibility": "public"
}
],
"scope": 21,
"src": "139:415:0",
"usedErrors": []
}
],
"src": "114:440:0"
},
"id": 0
}
}
}
}
{
"id": "b3f42cd9ebd3fcbeddcb8d44229783bd",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.7",
"solcLongVersion": "0.8.7+commit.e28d00a7",
"input": {
"language": "Solidity",
"sources": {
"contracts/FundMe.sol": {
"content": "// Get funds from users\n// Withdraw funds\n// Set a minimum funding value in USD\n\n// SDPX-License-Identifier: MIT\n\npragma solidity ^0.8.0;\n\ncontract FundMe {\n function fund () public payable {\n // Want to be able to set a minimum fund amount in USD\n // 1. How to send ETH to this contract\n }\n\n // function withdraw(){}\n}"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"storageLayout",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"contracts": {
"contracts/FundMe.sol": {
"FundMe": {
"abi": [
{
"inputs": [],
"name": "fund",
"outputs": [],
"stateMutability": "payable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": " /* \"contracts/FundMe.sol\":139:342 contract FundMe {... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\ntag_1:\n pop\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"contracts/FundMe.sol\":139:342 contract FundMe {... */\n mstore(0x40, 0x80)\n jumpi(tag_1, lt(calldatasize, 0x04))\n shr(0xe0, calldataload(0x00))\n dup1\n 0xb60d4288\n eq\n tag_2\n jumpi\n tag_1:\n 0x00\n dup1\n revert\n /* \"contracts/FundMe.sol\":161:310 function fund () public payable {... */\n tag_2:\n tag_3\n tag_4\n jump\t// in\n tag_3:\n stop\n tag_4:\n jump\t// out\n\n auxdata: 0xa2646970667358221220a815922693d2a2181f493d0e2de792dc91d7d6185f408965ad11ec0f10cc6d1564736f6c63430008070033\n}\n",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "6080604052348015600f57600080fd5b50606180601d6000396000f3fe608060405260043610601c5760003560e01c8063b60d4288146021575b600080fd5b60276029565b005b56fea2646970667358221220a815922693d2a2181f493d0e2de792dc91d7d6185f408965ad11ec0f10cc6d1564736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH1 0xF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x61 DUP1 PUSH1 0x1D PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH1 0x1C JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xB60D4288 EQ PUSH1 0x21 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x27 PUSH1 0x29 JUMP JUMPDEST STOP JUMPDEST JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xA8 ISZERO SWAP3 0x26 SWAP4 0xD2 LOG2 XOR 0x1F 0x49 RETURNDATASIZE 0xE 0x2D 0xE7 SWAP3 0xDC SWAP2 0xD7 0xD6 XOR 0x5F BLOCKHASH DUP10 PUSH6 0xAD11EC0F10CC PUSH14 0x1564736F6C634300080700330000 ",
"sourceMap": "139:203:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@fund_5": {
"entryPoint": 41,
"id": 5,
"parameterSlots": 0,
"returnSlots": 0
}
},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405260043610601c5760003560e01c8063b60d4288146021575b600080fd5b60276029565b005b56fea2646970667358221220a815922693d2a2181f493d0e2de792dc91d7d6185f408965ad11ec0f10cc6d1564736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH1 0x1C JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xB60D4288 EQ PUSH1 0x21 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x27 PUSH1 0x29 JUMP JUMPDEST STOP JUMPDEST JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xA8 ISZERO SWAP3 0x26 SWAP4 0xD2 LOG2 XOR 0x1F 0x49 RETURNDATASIZE 0xE 0x2D 0xE7 SWAP3 0xDC SWAP2 0xD7 0xD6 XOR 0x5F BLOCKHASH DUP10 PUSH6 0xAD11EC0F10CC PUSH14 0x1564736F6C634300080700330000 ",
"sourceMap": "139:203:0:-:0;;;;;;;;;;;;;;;;;;;;;161:149;;;:::i;:::-;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "19400",
"executionCost": "75",
"totalCost": "19475"
},
"external": {
"fund()": "98"
}
},
"legacyAssembly": {
".code": [
{
"begin": 139,
"end": 342,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 139,
"end": 342,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 139,
"end": 342,
"name": "MSTORE",
"source": 0
},
{
"begin": 139,
"end": 342,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 139,
"end": 342,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 342,
"name": "ISZERO",
"source": 0
},
{
"begin": 139,
"end": 342,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 139,
"end": 342,
"name": "JUMPI",
"source": 0
},
{
"begin": 139,
"end": 342,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 342,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 342,
"name": "REVERT",
"source": 0
},
{
"begin": 139,
"end": 342,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 139,
"end": 342,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 139,
"end": 342,
"name": "POP",
"source": 0
},
{
"begin": 139,
"end": 342,
"name": "PUSH #[$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 139,
"end": 342,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 342,
"name": "PUSH [$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 139,
"end": 342,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 342,
"name": "CODECOPY",
"source": 0
},
{
"begin": 139,
"end": 342,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 342,
"name": "RETURN",
"source": 0
}
],
".data": {
"0": {
".auxdata": "a2646970667358221220a815922693d2a2181f493d0e2de792dc91d7d6185f408965ad11ec0f10cc6d1564736f6c63430008070033",
".code": [
{
"begin": 139,
"end": 342,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 139,
"end": 342,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 139,
"end": 342,
"name": "MSTORE",
"source": 0
},
{
"begin": 139,
"end": 342,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 139,
"end": 342,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 139,
"end": 342,
"name": "LT",
"source": 0
},
{
"begin": 139,
"end": 342,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 139,
"end": 342,
"name": "JUMPI",
"source": 0
},
{
"begin": 139,
"end": 342,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 342,
"name": "CALLDATALOAD",
"source": 0
},
{
"begin": 139,
"end": 342,
"name": "PUSH",
"source": 0,
"value": "E0"
},
{
"begin": 139,
"end": 342,
"name": "SHR",
"source": 0
},
{
"begin": 139,
"end": 342,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 342,
"name": "PUSH",
"source": 0,
"value": "B60D4288"
},
{
"begin": 139,
"end": 342,
"name": "EQ",
"source": 0
},
{
"begin": 139,
"end": 342,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 139,
"end": 342,
"name": "JUMPI",
"source": 0
},
{
"begin": 139,
"end": 342,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 139,
"end": 342,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 139,
"end": 342,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 342,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 342,
"name": "REVERT",
"source": 0
},
{
"begin": 161,
"end": 310,
"name": "tag",
"source": 0,
"value": "2"
},
{
"begin": 161,
"end": 310,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 161,
"end": 310,
"name": "PUSH [tag]",
"source": 0,
"value": "3"
},
{
"begin": 161,
"end": 310,
"name": "PUSH [tag]",
"source": 0,
"value": "4"
},
{
"begin": 161,
"end": 310,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 161,
"end": 310,
"name": "tag",
"source": 0,
"value": "3"
},
{
"begin": 161,
"end": 310,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 161,
"end": 310,
"name": "STOP",
"source": 0
},
{
"begin": 161,
"end": 310,
"name": "tag",
"source": 0,
"value": "4"
},
{
"begin": 161,
"end": 310,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 161,
"end": 310,
"name": "JUMP",
"source": 0,
"value": "[out]"
}
]
}
}
},
"methodIdentifiers": {
"fund()": "b60d4288"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.7+commit.e28d00a7\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"fund\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/FundMe.sol\":\"FundMe\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/FundMe.sol\":{\"keccak256\":\"0x9315259104ac4c4ff9699429a2792a3ad8e4a1a33718acdea97cec30a0cb68d7\",\"urls\":[\"bzz-raw://1f309b6af9570ba3f32090e67c86887a93d6c5c8084874a5c8b7f579d8fdd20c\",\"dweb:/ipfs/QmZgEXbkGoCsGGnNqitKWmVyCGqMqqcs3jjYawXyjQ6JFv\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
}
},
"errors": [
{
"component": "general",
"errorCode": "1878",
"formattedMessage": "Warning: SPDX license identifier not provided in source file. Before publishing, consider adding a comment containing \"SPDX-License-Identifier: <SPDX-License>\" to each source file. Use \"SPDX-License-Identifier: UNLICENSED\" for non-open-source code. Please see https://spdx.org for more information.\n--> contracts/FundMe.sol\n\n",
"message": "SPDX license identifier not provided in source file. Before publishing, consider adding a comment containing \"SPDX-License-Identifier: <SPDX-License>\" to each source file. Use \"SPDX-License-Identifier: UNLICENSED\" for non-open-source code. Please see https://spdx.org for more information.",
"severity": "warning",
"sourceLocation": {
"end": -1,
"file": "contracts/FundMe.sol",
"start": -1
},
"type": "Warning"
}
],
"sources": {
"contracts/FundMe.sol": {
"ast": {
"absolutePath": "contracts/FundMe.sol",
"exportedSymbols": {
"FundMe": [
6
]
},
"id": 7,
"nodeType": "SourceUnit",
"nodes": [
{
"id": 1,
"literals": [
"solidity",
"^",
"0.8",
".0"
],
"nodeType": "PragmaDirective",
"src": "114:23:0"
},
{
"abstract": false,
"baseContracts": [],
"contractDependencies": [],
"contractKind": "contract",
"fullyImplemented": true,
"id": 6,
"linearizedBaseContracts": [
6
],
"name": "FundMe",
"nameLocation": "148:6:0",
"nodeType": "ContractDefinition",
"nodes": [
{
"body": {
"id": 4,
"nodeType": "Block",
"src": "193:117:0",
"statements": []
},
"functionSelector": "b60d4288",
"id": 5,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "fund",
"nameLocation": "170:4:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 2,
"nodeType": "ParameterList",
"parameters": [],
"src": "175:2:0"
},
"returnParameters": {
"id": 3,
"nodeType": "ParameterList",
"parameters": [],
"src": "193:0:0"
},
"scope": 6,
"src": "161:149:0",
"stateMutability": "payable",
"virtual": false,
"visibility": "public"
}
],
"scope": 7,
"src": "139:203:0",
"usedErrors": []
}
],
"src": "114:228:0"
},
"id": 0
}
}
}
}
{
"id": "bf21bdf33e857cdf3f3a64732a96ac87",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.7",
"solcLongVersion": "0.8.7+commit.e28d00a7",
"input": {
"language": "Solidity",
"sources": {
"contracts/FundMe.sol": {
"content": "// SDPX-License-Identifier: MIT\n// Get funds from users\n// Withdraw funds\n// Set a minimum funding value in USD\n\n\npragma solidity ^0.8.0;\n\ncontract FundMe {\n function fund () public payable {\n // Want to be able to set a minimum fund amount in USD\n // 1. How to send ETH to this contract\n require(msg.value > 1e18, \"Didn't send enough!\"); // 1 * 10 ** 18\n\n // What's reverting\n // undo any action before, and send remaining gas back!\n }\n\n // function withdraw(){}\n}"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"storageLayout",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"contracts": {
"contracts/FundMe.sol": {
"FundMe": {
"abi": [
{
"inputs": [],
"name": "fund",
"outputs": [],
"stateMutability": "payable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": " /* \"contracts/FundMe.sol\":139:509 contract FundMe {... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\ntag_1:\n pop\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"contracts/FundMe.sol\":139:509 contract FundMe {... */\n mstore(0x40, 0x80)\n jumpi(tag_1, lt(calldatasize, 0x04))\n shr(0xe0, calldataload(0x00))\n dup1\n 0xb60d4288\n eq\n tag_2\n jumpi\n tag_1:\n 0x00\n dup1\n revert\n /* \"contracts/FundMe.sol\":161:477 function fund () public payable {... */\n tag_2:\n tag_3\n tag_4\n jump\t// in\n tag_3:\n stop\n tag_4:\n /* \"contracts/FundMe.sol\":333:337 1e18 */\n 0x0de0b6b3a7640000\n /* \"contracts/FundMe.sol\":321:330 msg.value */\n callvalue\n /* \"contracts/FundMe.sol\":321:337 msg.value > 1e18 */\n gt\n /* \"contracts/FundMe.sol\":313:361 require(msg.value > 1e18, \"Didn't send enough!\") */\n tag_6\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_7\n swap1\n tag_8\n jump\t// in\n tag_7:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_6:\n /* \"contracts/FundMe.sol\":161:477 function fund () public payable {... */\n jump\t// out\n /* \"#utility.yul\":7:373 */\n tag_10:\n /* \"#utility.yul\":149:152 */\n 0x00\n /* \"#utility.yul\":170:237 */\n tag_12\n /* \"#utility.yul\":234:236 */\n 0x13\n /* \"#utility.yul\":229:232 */\n dup4\n /* \"#utility.yul\":170:237 */\n tag_13\n jump\t// in\n tag_12:\n /* \"#utility.yul\":163:237 */\n swap2\n pop\n /* \"#utility.yul\":246:339 */\n tag_14\n /* \"#utility.yul\":335:338 */\n dup3\n /* \"#utility.yul\":246:339 */\n tag_15\n jump\t// in\n tag_14:\n /* \"#utility.yul\":364:366 */\n 0x20\n /* \"#utility.yul\":359:362 */\n dup3\n /* \"#utility.yul\":355:367 */\n add\n /* \"#utility.yul\":348:367 */\n swap1\n pop\n /* \"#utility.yul\":7:373 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":379:798 */\n tag_8:\n /* \"#utility.yul\":545:549 */\n 0x00\n /* \"#utility.yul\":583:585 */\n 0x20\n /* \"#utility.yul\":572:581 */\n dup3\n /* \"#utility.yul\":568:586 */\n add\n /* \"#utility.yul\":560:586 */\n swap1\n pop\n /* \"#utility.yul\":632:641 */\n dup2\n /* \"#utility.yul\":626:630 */\n dup2\n /* \"#utility.yul\":622:642 */\n sub\n /* \"#utility.yul\":618:619 */\n 0x00\n /* \"#utility.yul\":607:616 */\n dup4\n /* \"#utility.yul\":603:620 */\n add\n /* \"#utility.yul\":596:643 */\n mstore\n /* \"#utility.yul\":660:791 */\n tag_17\n /* \"#utility.yul\":786:790 */\n dup2\n /* \"#utility.yul\":660:791 */\n tag_10\n jump\t// in\n tag_17:\n /* \"#utility.yul\":652:791 */\n swap1\n pop\n /* \"#utility.yul\":379:798 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":804:973 */\n tag_13:\n /* \"#utility.yul\":888:899 */\n 0x00\n /* \"#utility.yul\":922:928 */\n dup3\n /* \"#utility.yul\":917:920 */\n dup3\n /* \"#utility.yul\":910:929 */\n mstore\n /* \"#utility.yul\":962:966 */\n 0x20\n /* \"#utility.yul\":957:960 */\n dup3\n /* \"#utility.yul\":953:967 */\n add\n /* \"#utility.yul\":938:967 */\n swap1\n pop\n /* \"#utility.yul\":804:973 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":979:1148 */\n tag_15:\n /* \"#utility.yul\":1119:1140 */\n 0x4469646e27742073656e6420656e6f7567682100000000000000000000000000\n /* \"#utility.yul\":1115:1116 */\n 0x00\n /* \"#utility.yul\":1107:1113 */\n dup3\n /* \"#utility.yul\":1103:1117 */\n add\n /* \"#utility.yul\":1096:1141 */\n mstore\n /* \"#utility.yul\":979:1148 */\n pop\n jump\t// out\n\n auxdata: 0xa264697066735822122063bcace520bae4a104b68f7fa37085aa3008a491f1b6edf3dfcdadcb78c8601764736f6c63430008070033\n}\n",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b5061011f806100206000396000f3fe608060405260043610601c5760003560e01c8063b60d4288146021575b600080fd5b60276029565b005b670de0b6b3a764000034116070576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016067906091565b60405180910390fd5b565b6000607d60138360af565b915060868260c0565b602082019050919050565b6000602082019050818103600083015260a8816072565b9050919050565b600082825260208201905092915050565b7f4469646e27742073656e6420656e6f756768210000000000000000000000000060008201525056fea264697066735822122063bcace520bae4a104b68f7fa37085aa3008a491f1b6edf3dfcdadcb78c8601764736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x11F DUP1 PUSH2 0x20 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH1 0x1C JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xB60D4288 EQ PUSH1 0x21 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x27 PUSH1 0x29 JUMP JUMPDEST STOP JUMPDEST PUSH8 0xDE0B6B3A7640000 CALLVALUE GT PUSH1 0x70 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x67 SWAP1 PUSH1 0x91 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x7D PUSH1 0x13 DUP4 PUSH1 0xAF JUMP JUMPDEST SWAP2 POP PUSH1 0x86 DUP3 PUSH1 0xC0 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0xA8 DUP2 PUSH1 0x72 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4469646E27742073656E6420656E6F7567682100000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH4 0xBCACE520 0xBA 0xE4 LOG1 DIV 0xB6 DUP16 PUSH32 0xA37085AA3008A491F1B6EDF3DFCDADCB78C8601764736F6C6343000807003300 ",
"sourceMap": "139:370:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@fund_13": {
"entryPoint": 41,
"id": 13,
"parameterSlots": 0,
"returnSlots": 0
},
"abi_encode_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5_to_t_string_memory_ptr_fromStack": {
"entryPoint": 114,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 145,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 175,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"store_literal_in_memory_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5": {
"entryPoint": 192,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:1151:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "153:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "163:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "229:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "234:2:1",
"type": "",
"value": "19"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "170:58:1"
},
"nodeType": "YulFunctionCall",
"src": "170:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "163:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "335:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5",
"nodeType": "YulIdentifier",
"src": "246:88:1"
},
"nodeType": "YulFunctionCall",
"src": "246:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "246:93:1"
},
{
"nodeType": "YulAssignment",
"src": "348:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "359:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "364:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "355:3:1"
},
"nodeType": "YulFunctionCall",
"src": "355:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "348:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "141:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "149:3:1",
"type": ""
}
],
"src": "7:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "550:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "560:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "572:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "583:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "568:3:1"
},
"nodeType": "YulFunctionCall",
"src": "568:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "560:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "607:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "618:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "603:3:1"
},
"nodeType": "YulFunctionCall",
"src": "603:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "626:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "632:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "622:3:1"
},
"nodeType": "YulFunctionCall",
"src": "622:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "596:6:1"
},
"nodeType": "YulFunctionCall",
"src": "596:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "596:47:1"
},
{
"nodeType": "YulAssignment",
"src": "652:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "786:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "660:124:1"
},
"nodeType": "YulFunctionCall",
"src": "660:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "652:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "530:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "545:4:1",
"type": ""
}
],
"src": "379:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "900:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "917:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "922:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "910:6:1"
},
"nodeType": "YulFunctionCall",
"src": "910:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "910:19:1"
},
{
"nodeType": "YulAssignment",
"src": "938:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "957:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "962:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "953:3:1"
},
"nodeType": "YulFunctionCall",
"src": "953:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "938:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "872:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "877:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "888:11:1",
"type": ""
}
],
"src": "804:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1085:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1107:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1115:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1103:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1103:14:1"
},
{
"hexValue": "4469646e27742073656e6420656e6f75676821",
"kind": "string",
"nodeType": "YulLiteral",
"src": "1119:21:1",
"type": "",
"value": "Didn't send enough!"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1096:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1096:45:1"
},
"nodeType": "YulExpressionStatement",
"src": "1096:45:1"
}
]
},
"name": "store_literal_in_memory_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1077:6:1",
"type": ""
}
],
"src": "979:169:1"
}
]
},
"contents": "{\n\n function abi_encode_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 19)\n store_literal_in_memory_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function store_literal_in_memory_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5(memPtr) {\n\n mstore(add(memPtr, 0), \"Didn't send enough!\")\n\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405260043610601c5760003560e01c8063b60d4288146021575b600080fd5b60276029565b005b670de0b6b3a764000034116070576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016067906091565b60405180910390fd5b565b6000607d60138360af565b915060868260c0565b602082019050919050565b6000602082019050818103600083015260a8816072565b9050919050565b600082825260208201905092915050565b7f4469646e27742073656e6420656e6f756768210000000000000000000000000060008201525056fea264697066735822122063bcace520bae4a104b68f7fa37085aa3008a491f1b6edf3dfcdadcb78c8601764736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH1 0x1C JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xB60D4288 EQ PUSH1 0x21 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x27 PUSH1 0x29 JUMP JUMPDEST STOP JUMPDEST PUSH8 0xDE0B6B3A7640000 CALLVALUE GT PUSH1 0x70 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x67 SWAP1 PUSH1 0x91 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x7D PUSH1 0x13 DUP4 PUSH1 0xAF JUMP JUMPDEST SWAP2 POP PUSH1 0x86 DUP3 PUSH1 0xC0 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0xA8 DUP2 PUSH1 0x72 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4469646E27742073656E6420656E6F7567682100000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH4 0xBCACE520 0xBA 0xE4 LOG1 DIV 0xB6 DUP16 PUSH32 0xA37085AA3008A491F1B6EDF3DFCDADCB78C8601764736F6C6343000807003300 ",
"sourceMap": "139:370:0:-:0;;;;;;;;;;;;;;;;;;;;;161:316;;;:::i;:::-;;;333:4;321:9;:16;313:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;161:316::o;7:366:1:-;149:3;170:67;234:2;229:3;170:67;:::i;:::-;163:74;;246:93;335:3;246:93;:::i;:::-;364:2;359:3;355:12;348:19;;7:366;;;:::o;379:419::-;545:4;583:2;572:9;568:18;560:26;;632:9;626:4;622:20;618:1;607:9;603:17;596:47;660:131;786:4;660:131;:::i;:::-;652:139;;379:419;;;:::o;804:169::-;888:11;922:6;917:3;910:19;962:4;957:3;953:14;938:29;;804:169;;;;:::o;979:::-;1119:21;1115:1;1107:6;1103:14;1096:45;979:169;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "57400",
"executionCost": "105",
"totalCost": "57505"
},
"external": {
"fund()": "409"
}
},
"legacyAssembly": {
".code": [
{
"begin": 139,
"end": 509,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 139,
"end": 509,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 139,
"end": 509,
"name": "MSTORE",
"source": 0
},
{
"begin": 139,
"end": 509,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 139,
"end": 509,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 509,
"name": "ISZERO",
"source": 0
},
{
"begin": 139,
"end": 509,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 139,
"end": 509,
"name": "JUMPI",
"source": 0
},
{
"begin": 139,
"end": 509,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 509,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 509,
"name": "REVERT",
"source": 0
},
{
"begin": 139,
"end": 509,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 139,
"end": 509,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 139,
"end": 509,
"name": "POP",
"source": 0
},
{
"begin": 139,
"end": 509,
"name": "PUSH #[$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 139,
"end": 509,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 509,
"name": "PUSH [$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 139,
"end": 509,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 509,
"name": "CODECOPY",
"source": 0
},
{
"begin": 139,
"end": 509,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 509,
"name": "RETURN",
"source": 0
}
],
".data": {
"0": {
".auxdata": "a264697066735822122063bcace520bae4a104b68f7fa37085aa3008a491f1b6edf3dfcdadcb78c8601764736f6c63430008070033",
".code": [
{
"begin": 139,
"end": 509,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 139,
"end": 509,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 139,
"end": 509,
"name": "MSTORE",
"source": 0
},
{
"begin": 139,
"end": 509,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 139,
"end": 509,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 139,
"end": 509,
"name": "LT",
"source": 0
},
{
"begin": 139,
"end": 509,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 139,
"end": 509,
"name": "JUMPI",
"source": 0
},
{
"begin": 139,
"end": 509,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 509,
"name": "CALLDATALOAD",
"source": 0
},
{
"begin": 139,
"end": 509,
"name": "PUSH",
"source": 0,
"value": "E0"
},
{
"begin": 139,
"end": 509,
"name": "SHR",
"source": 0
},
{
"begin": 139,
"end": 509,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 509,
"name": "PUSH",
"source": 0,
"value": "B60D4288"
},
{
"begin": 139,
"end": 509,
"name": "EQ",
"source": 0
},
{
"begin": 139,
"end": 509,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 139,
"end": 509,
"name": "JUMPI",
"source": 0
},
{
"begin": 139,
"end": 509,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 139,
"end": 509,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 139,
"end": 509,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 509,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 509,
"name": "REVERT",
"source": 0
},
{
"begin": 161,
"end": 477,
"name": "tag",
"source": 0,
"value": "2"
},
{
"begin": 161,
"end": 477,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 161,
"end": 477,
"name": "PUSH [tag]",
"source": 0,
"value": "3"
},
{
"begin": 161,
"end": 477,
"name": "PUSH [tag]",
"source": 0,
"value": "4"
},
{
"begin": 161,
"end": 477,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 161,
"end": 477,
"name": "tag",
"source": 0,
"value": "3"
},
{
"begin": 161,
"end": 477,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 161,
"end": 477,
"name": "STOP",
"source": 0
},
{
"begin": 161,
"end": 477,
"name": "tag",
"source": 0,
"value": "4"
},
{
"begin": 161,
"end": 477,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 333,
"end": 337,
"name": "PUSH",
"source": 0,
"value": "DE0B6B3A7640000"
},
{
"begin": 321,
"end": 330,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 321,
"end": 337,
"name": "GT",
"source": 0
},
{
"begin": 313,
"end": 361,
"name": "PUSH [tag]",
"source": 0,
"value": "6"
},
{
"begin": 313,
"end": 361,
"name": "JUMPI",
"source": 0
},
{
"begin": 313,
"end": 361,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 313,
"end": 361,
"name": "MLOAD",
"source": 0
},
{
"begin": 313,
"end": 361,
"name": "PUSH",
"source": 0,
"value": "8C379A000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 313,
"end": 361,
"name": "DUP2",
"source": 0
},
{
"begin": 313,
"end": 361,
"name": "MSTORE",
"source": 0
},
{
"begin": 313,
"end": 361,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 313,
"end": 361,
"name": "ADD",
"source": 0
},
{
"begin": 313,
"end": 361,
"name": "PUSH [tag]",
"source": 0,
"value": "7"
},
{
"begin": 313,
"end": 361,
"name": "SWAP1",
"source": 0
},
{
"begin": 313,
"end": 361,
"name": "PUSH [tag]",
"source": 0,
"value": "8"
},
{
"begin": 313,
"end": 361,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 313,
"end": 361,
"name": "tag",
"source": 0,
"value": "7"
},
{
"begin": 313,
"end": 361,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 313,
"end": 361,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 313,
"end": 361,
"name": "MLOAD",
"source": 0
},
{
"begin": 313,
"end": 361,
"name": "DUP1",
"source": 0
},
{
"begin": 313,
"end": 361,
"name": "SWAP2",
"source": 0
},
{
"begin": 313,
"end": 361,
"name": "SUB",
"source": 0
},
{
"begin": 313,
"end": 361,
"name": "SWAP1",
"source": 0
},
{
"begin": 313,
"end": 361,
"name": "REVERT",
"source": 0
},
{
"begin": 313,
"end": 361,
"name": "tag",
"source": 0,
"value": "6"
},
{
"begin": 313,
"end": 361,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 161,
"end": 477,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 7,
"end": 373,
"name": "tag",
"source": 1,
"value": "10"
},
{
"begin": 7,
"end": 373,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 149,
"end": 152,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 170,
"end": 237,
"name": "PUSH [tag]",
"source": 1,
"value": "12"
},
{
"begin": 234,
"end": 236,
"name": "PUSH",
"source": 1,
"value": "13"
},
{
"begin": 229,
"end": 232,
"name": "DUP4",
"source": 1
},
{
"begin": 170,
"end": 237,
"name": "PUSH [tag]",
"source": 1,
"value": "13"
},
{
"begin": 170,
"end": 237,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 170,
"end": 237,
"name": "tag",
"source": 1,
"value": "12"
},
{
"begin": 170,
"end": 237,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 163,
"end": 237,
"name": "SWAP2",
"source": 1
},
{
"begin": 163,
"end": 237,
"name": "POP",
"source": 1
},
{
"begin": 246,
"end": 339,
"name": "PUSH [tag]",
"source": 1,
"value": "14"
},
{
"begin": 335,
"end": 338,
"name": "DUP3",
"source": 1
},
{
"begin": 246,
"end": 339,
"name": "PUSH [tag]",
"source": 1,
"value": "15"
},
{
"begin": 246,
"end": 339,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 246,
"end": 339,
"name": "tag",
"source": 1,
"value": "14"
},
{
"begin": 246,
"end": 339,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 364,
"end": 366,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 359,
"end": 362,
"name": "DUP3",
"source": 1
},
{
"begin": 355,
"end": 367,
"name": "ADD",
"source": 1
},
{
"begin": 348,
"end": 367,
"name": "SWAP1",
"source": 1
},
{
"begin": 348,
"end": 367,
"name": "POP",
"source": 1
},
{
"begin": 7,
"end": 373,
"name": "SWAP2",
"source": 1
},
{
"begin": 7,
"end": 373,
"name": "SWAP1",
"source": 1
},
{
"begin": 7,
"end": 373,
"name": "POP",
"source": 1
},
{
"begin": 7,
"end": 373,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 379,
"end": 798,
"name": "tag",
"source": 1,
"value": "8"
},
{
"begin": 379,
"end": 798,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 545,
"end": 549,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 583,
"end": 585,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 572,
"end": 581,
"name": "DUP3",
"source": 1
},
{
"begin": 568,
"end": 586,
"name": "ADD",
"source": 1
},
{
"begin": 560,
"end": 586,
"name": "SWAP1",
"source": 1
},
{
"begin": 560,
"end": 586,
"name": "POP",
"source": 1
},
{
"begin": 632,
"end": 641,
"name": "DUP2",
"source": 1
},
{
"begin": 626,
"end": 630,
"name": "DUP2",
"source": 1
},
{
"begin": 622,
"end": 642,
"name": "SUB",
"source": 1
},
{
"begin": 618,
"end": 619,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 607,
"end": 616,
"name": "DUP4",
"source": 1
},
{
"begin": 603,
"end": 620,
"name": "ADD",
"source": 1
},
{
"begin": 596,
"end": 643,
"name": "MSTORE",
"source": 1
},
{
"begin": 660,
"end": 791,
"name": "PUSH [tag]",
"source": 1,
"value": "17"
},
{
"begin": 786,
"end": 790,
"name": "DUP2",
"source": 1
},
{
"begin": 660,
"end": 791,
"name": "PUSH [tag]",
"source": 1,
"value": "10"
},
{
"begin": 660,
"end": 791,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 660,
"end": 791,
"name": "tag",
"source": 1,
"value": "17"
},
{
"begin": 660,
"end": 791,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 652,
"end": 791,
"name": "SWAP1",
"source": 1
},
{
"begin": 652,
"end": 791,
"name": "POP",
"source": 1
},
{
"begin": 379,
"end": 798,
"name": "SWAP2",
"source": 1
},
{
"begin": 379,
"end": 798,
"name": "SWAP1",
"source": 1
},
{
"begin": 379,
"end": 798,
"name": "POP",
"source": 1
},
{
"begin": 379,
"end": 798,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 804,
"end": 973,
"name": "tag",
"source": 1,
"value": "13"
},
{
"begin": 804,
"end": 973,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 888,
"end": 899,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 922,
"end": 928,
"name": "DUP3",
"source": 1
},
{
"begin": 917,
"end": 920,
"name": "DUP3",
"source": 1
},
{
"begin": 910,
"end": 929,
"name": "MSTORE",
"source": 1
},
{
"begin": 962,
"end": 966,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 957,
"end": 960,
"name": "DUP3",
"source": 1
},
{
"begin": 953,
"end": 967,
"name": "ADD",
"source": 1
},
{
"begin": 938,
"end": 967,
"name": "SWAP1",
"source": 1
},
{
"begin": 938,
"end": 967,
"name": "POP",
"source": 1
},
{
"begin": 804,
"end": 973,
"name": "SWAP3",
"source": 1
},
{
"begin": 804,
"end": 973,
"name": "SWAP2",
"source": 1
},
{
"begin": 804,
"end": 973,
"name": "POP",
"source": 1
},
{
"begin": 804,
"end": 973,
"name": "POP",
"source": 1
},
{
"begin": 804,
"end": 973,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 979,
"end": 1148,
"name": "tag",
"source": 1,
"value": "15"
},
{
"begin": 979,
"end": 1148,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1119,
"end": 1140,
"name": "PUSH",
"source": 1,
"value": "4469646E27742073656E6420656E6F7567682100000000000000000000000000"
},
{
"begin": 1115,
"end": 1116,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1107,
"end": 1113,
"name": "DUP3",
"source": 1
},
{
"begin": 1103,
"end": 1117,
"name": "ADD",
"source": 1
},
{
"begin": 1096,
"end": 1141,
"name": "MSTORE",
"source": 1
},
{
"begin": 979,
"end": 1148,
"name": "POP",
"source": 1
},
{
"begin": 979,
"end": 1148,
"name": "JUMP",
"source": 1,
"value": "[out]"
}
]
}
}
},
"methodIdentifiers": {
"fund()": "b60d4288"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.7+commit.e28d00a7\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"fund\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/FundMe.sol\":\"FundMe\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/FundMe.sol\":{\"keccak256\":\"0x4577ffb2080f40b0e5a6912e1227835f639c23561fdd23c177cd53a4428d3a91\",\"urls\":[\"bzz-raw://965451b100ac3c6601c68e5c1ebeb4cc0e948fb3bfb7d726656d5e930dd76071\",\"dweb:/ipfs/QmdRG6T9wSYZ3y7ua88xkmwQ8n9EbF3jMZaifR5eRuo82b\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
}
},
"errors": [
{
"component": "general",
"errorCode": "1878",
"formattedMessage": "Warning: SPDX license identifier not provided in source file. Before publishing, consider adding a comment containing \"SPDX-License-Identifier: <SPDX-License>\" to each source file. Use \"SPDX-License-Identifier: UNLICENSED\" for non-open-source code. Please see https://spdx.org for more information.\n--> contracts/FundMe.sol\n\n",
"message": "SPDX license identifier not provided in source file. Before publishing, consider adding a comment containing \"SPDX-License-Identifier: <SPDX-License>\" to each source file. Use \"SPDX-License-Identifier: UNLICENSED\" for non-open-source code. Please see https://spdx.org for more information.",
"severity": "warning",
"sourceLocation": {
"end": -1,
"file": "contracts/FundMe.sol",
"start": -1
},
"type": "Warning"
}
],
"sources": {
"contracts/FundMe.sol": {
"ast": {
"absolutePath": "contracts/FundMe.sol",
"exportedSymbols": {
"FundMe": [
14
]
},
"id": 15,
"nodeType": "SourceUnit",
"nodes": [
{
"id": 1,
"literals": [
"solidity",
"^",
"0.8",
".0"
],
"nodeType": "PragmaDirective",
"src": "114:23:0"
},
{
"abstract": false,
"baseContracts": [],
"contractDependencies": [],
"contractKind": "contract",
"fullyImplemented": true,
"id": 14,
"linearizedBaseContracts": [
14
],
"name": "FundMe",
"nameLocation": "148:6:0",
"nodeType": "ContractDefinition",
"nodes": [
{
"body": {
"id": 12,
"nodeType": "Block",
"src": "193:284:0",
"statements": [
{
"expression": {
"arguments": [
{
"commonType": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"id": 8,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftExpression": {
"expression": {
"id": 5,
"name": "msg",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967281,
"src": "321:3:0",
"typeDescriptions": {
"typeIdentifier": "t_magic_message",
"typeString": "msg"
}
},
"id": 6,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberName": "value",
"nodeType": "MemberAccess",
"src": "321:9:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"nodeType": "BinaryOperation",
"operator": ">",
"rightExpression": {
"hexValue": "31653138",
"id": 7,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "number",
"lValueRequested": false,
"nodeType": "Literal",
"src": "333:4:0",
"typeDescriptions": {
"typeIdentifier": "t_rational_1000000000000000000_by_1",
"typeString": "int_const 1000000000000000000"
},
"value": "1e18"
},
"src": "321:16:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
{
"hexValue": "4469646e27742073656e6420656e6f75676821",
"id": 9,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "339:21:0",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5",
"typeString": "literal_string \"Didn't send enough!\""
},
"value": "Didn't send enough!"
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bool",
"typeString": "bool"
},
{
"typeIdentifier": "t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5",
"typeString": "literal_string \"Didn't send enough!\""
}
],
"id": 4,
"name": "require",
"nodeType": "Identifier",
"overloadedDeclarations": [
4294967278,
4294967278
],
"referencedDeclaration": 4294967278,
"src": "313:7:0",
"typeDescriptions": {
"typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
"typeString": "function (bool,string memory) pure"
}
},
"id": 10,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "313:48:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 11,
"nodeType": "ExpressionStatement",
"src": "313:48:0"
}
]
},
"functionSelector": "b60d4288",
"id": 13,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "fund",
"nameLocation": "170:4:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 2,
"nodeType": "ParameterList",
"parameters": [],
"src": "175:2:0"
},
"returnParameters": {
"id": 3,
"nodeType": "ParameterList",
"parameters": [],
"src": "193:0:0"
},
"scope": 14,
"src": "161:316:0",
"stateMutability": "payable",
"virtual": false,
"visibility": "public"
}
],
"scope": 15,
"src": "139:370:0",
"usedErrors": []
}
],
"src": "114:395:0"
},
"id": 0
}
}
}
}
{
"id": "d0048f545e4a88b60a364874be5334b6",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.7",
"solcLongVersion": "0.8.7+commit.e28d00a7",
"input": {
"language": "Solidity",
"sources": {
"contracts/FundMe.sol": {
"content": "// SDPX-License-Identifier: MIT\n// Get funds from users\n// Withdraw funds\n// Set a minimum funding value in USD\n\n\npragma solidity ^0.8.0;\n\ncontract FundMe {\n function fund () public payable {\n // Want to be able to set a minimum fund amount in USD\n // 1. How to send ETH to this contract\n require(msg.value > 1e18, \"Didn't send enough!\"); // 1 * 10 ** 18\n msg.value;\n }\n\n // function withdraw(){}\n}"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"storageLayout",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"contracts": {
"contracts/FundMe.sol": {
"FundMe": {
"abi": [
{
"inputs": [],
"name": "fund",
"outputs": [],
"stateMutability": "payable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": " /* \"contracts/FundMe.sol\":139:435 contract FundMe {... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\ntag_1:\n pop\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"contracts/FundMe.sol\":139:435 contract FundMe {... */\n mstore(0x40, 0x80)\n jumpi(tag_1, lt(calldatasize, 0x04))\n shr(0xe0, calldataload(0x00))\n dup1\n 0xb60d4288\n eq\n tag_2\n jumpi\n tag_1:\n 0x00\n dup1\n revert\n /* \"contracts/FundMe.sol\":161:403 function fund () public payable {... */\n tag_2:\n tag_3\n tag_4\n jump\t// in\n tag_3:\n stop\n tag_4:\n /* \"contracts/FundMe.sol\":333:337 1e18 */\n 0x0de0b6b3a7640000\n /* \"contracts/FundMe.sol\":321:330 msg.value */\n callvalue\n /* \"contracts/FundMe.sol\":321:337 msg.value > 1e18 */\n gt\n /* \"contracts/FundMe.sol\":313:361 require(msg.value > 1e18, \"Didn't send enough!\") */\n tag_6\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_7\n swap1\n tag_8\n jump\t// in\n tag_7:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_6:\n /* \"contracts/FundMe.sol\":161:403 function fund () public payable {... */\n jump\t// out\n /* \"#utility.yul\":7:373 */\n tag_10:\n /* \"#utility.yul\":149:152 */\n 0x00\n /* \"#utility.yul\":170:237 */\n tag_12\n /* \"#utility.yul\":234:236 */\n 0x13\n /* \"#utility.yul\":229:232 */\n dup4\n /* \"#utility.yul\":170:237 */\n tag_13\n jump\t// in\n tag_12:\n /* \"#utility.yul\":163:237 */\n swap2\n pop\n /* \"#utility.yul\":246:339 */\n tag_14\n /* \"#utility.yul\":335:338 */\n dup3\n /* \"#utility.yul\":246:339 */\n tag_15\n jump\t// in\n tag_14:\n /* \"#utility.yul\":364:366 */\n 0x20\n /* \"#utility.yul\":359:362 */\n dup3\n /* \"#utility.yul\":355:367 */\n add\n /* \"#utility.yul\":348:367 */\n swap1\n pop\n /* \"#utility.yul\":7:373 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":379:798 */\n tag_8:\n /* \"#utility.yul\":545:549 */\n 0x00\n /* \"#utility.yul\":583:585 */\n 0x20\n /* \"#utility.yul\":572:581 */\n dup3\n /* \"#utility.yul\":568:586 */\n add\n /* \"#utility.yul\":560:586 */\n swap1\n pop\n /* \"#utility.yul\":632:641 */\n dup2\n /* \"#utility.yul\":626:630 */\n dup2\n /* \"#utility.yul\":622:642 */\n sub\n /* \"#utility.yul\":618:619 */\n 0x00\n /* \"#utility.yul\":607:616 */\n dup4\n /* \"#utility.yul\":603:620 */\n add\n /* \"#utility.yul\":596:643 */\n mstore\n /* \"#utility.yul\":660:791 */\n tag_17\n /* \"#utility.yul\":786:790 */\n dup2\n /* \"#utility.yul\":660:791 */\n tag_10\n jump\t// in\n tag_17:\n /* \"#utility.yul\":652:791 */\n swap1\n pop\n /* \"#utility.yul\":379:798 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":804:973 */\n tag_13:\n /* \"#utility.yul\":888:899 */\n 0x00\n /* \"#utility.yul\":922:928 */\n dup3\n /* \"#utility.yul\":917:920 */\n dup3\n /* \"#utility.yul\":910:929 */\n mstore\n /* \"#utility.yul\":962:966 */\n 0x20\n /* \"#utility.yul\":957:960 */\n dup3\n /* \"#utility.yul\":953:967 */\n add\n /* \"#utility.yul\":938:967 */\n swap1\n pop\n /* \"#utility.yul\":804:973 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":979:1148 */\n tag_15:\n /* \"#utility.yul\":1119:1140 */\n 0x4469646e27742073656e6420656e6f7567682100000000000000000000000000\n /* \"#utility.yul\":1115:1116 */\n 0x00\n /* \"#utility.yul\":1107:1113 */\n dup3\n /* \"#utility.yul\":1103:1117 */\n add\n /* \"#utility.yul\":1096:1141 */\n mstore\n /* \"#utility.yul\":979:1148 */\n pop\n jump\t// out\n\n auxdata: 0xa264697066735822122027ccc78e7f57b5769a705984a3dded55431e7f8e85301fe93901a59f47c3e7f664736f6c63430008070033\n}\n",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b5061011f806100206000396000f3fe608060405260043610601c5760003560e01c8063b60d4288146021575b600080fd5b60276029565b005b670de0b6b3a764000034116070576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016067906091565b60405180910390fd5b565b6000607d60138360af565b915060868260c0565b602082019050919050565b6000602082019050818103600083015260a8816072565b9050919050565b600082825260208201905092915050565b7f4469646e27742073656e6420656e6f756768210000000000000000000000000060008201525056fea264697066735822122027ccc78e7f57b5769a705984a3dded55431e7f8e85301fe93901a59f47c3e7f664736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x11F DUP1 PUSH2 0x20 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH1 0x1C JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xB60D4288 EQ PUSH1 0x21 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x27 PUSH1 0x29 JUMP JUMPDEST STOP JUMPDEST PUSH8 0xDE0B6B3A7640000 CALLVALUE GT PUSH1 0x70 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x67 SWAP1 PUSH1 0x91 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x7D PUSH1 0x13 DUP4 PUSH1 0xAF JUMP JUMPDEST SWAP2 POP PUSH1 0x86 DUP3 PUSH1 0xC0 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0xA8 DUP2 PUSH1 0x72 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4469646E27742073656E6420656E6F7567682100000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x27 0xCC 0xC7 DUP15 PUSH32 0x57B5769A705984A3DDED55431E7F8E85301FE93901A59F47C3E7F664736F6C63 NUMBER STOP ADDMOD SMOD STOP CALLER ",
"sourceMap": "139:296:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@fund_17": {
"entryPoint": 41,
"id": 17,
"parameterSlots": 0,
"returnSlots": 0
},
"abi_encode_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5_to_t_string_memory_ptr_fromStack": {
"entryPoint": 114,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 145,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 175,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"store_literal_in_memory_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5": {
"entryPoint": 192,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:1151:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "153:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "163:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "229:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "234:2:1",
"type": "",
"value": "19"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "170:58:1"
},
"nodeType": "YulFunctionCall",
"src": "170:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "163:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "335:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5",
"nodeType": "YulIdentifier",
"src": "246:88:1"
},
"nodeType": "YulFunctionCall",
"src": "246:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "246:93:1"
},
{
"nodeType": "YulAssignment",
"src": "348:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "359:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "364:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "355:3:1"
},
"nodeType": "YulFunctionCall",
"src": "355:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "348:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "141:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "149:3:1",
"type": ""
}
],
"src": "7:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "550:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "560:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "572:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "583:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "568:3:1"
},
"nodeType": "YulFunctionCall",
"src": "568:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "560:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "607:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "618:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "603:3:1"
},
"nodeType": "YulFunctionCall",
"src": "603:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "626:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "632:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "622:3:1"
},
"nodeType": "YulFunctionCall",
"src": "622:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "596:6:1"
},
"nodeType": "YulFunctionCall",
"src": "596:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "596:47:1"
},
{
"nodeType": "YulAssignment",
"src": "652:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "786:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "660:124:1"
},
"nodeType": "YulFunctionCall",
"src": "660:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "652:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "530:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "545:4:1",
"type": ""
}
],
"src": "379:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "900:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "917:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "922:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "910:6:1"
},
"nodeType": "YulFunctionCall",
"src": "910:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "910:19:1"
},
{
"nodeType": "YulAssignment",
"src": "938:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "957:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "962:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "953:3:1"
},
"nodeType": "YulFunctionCall",
"src": "953:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "938:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "872:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "877:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "888:11:1",
"type": ""
}
],
"src": "804:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1085:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1107:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1115:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1103:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1103:14:1"
},
{
"hexValue": "4469646e27742073656e6420656e6f75676821",
"kind": "string",
"nodeType": "YulLiteral",
"src": "1119:21:1",
"type": "",
"value": "Didn't send enough!"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1096:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1096:45:1"
},
"nodeType": "YulExpressionStatement",
"src": "1096:45:1"
}
]
},
"name": "store_literal_in_memory_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1077:6:1",
"type": ""
}
],
"src": "979:169:1"
}
]
},
"contents": "{\n\n function abi_encode_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 19)\n store_literal_in_memory_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function store_literal_in_memory_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5(memPtr) {\n\n mstore(add(memPtr, 0), \"Didn't send enough!\")\n\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405260043610601c5760003560e01c8063b60d4288146021575b600080fd5b60276029565b005b670de0b6b3a764000034116070576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016067906091565b60405180910390fd5b565b6000607d60138360af565b915060868260c0565b602082019050919050565b6000602082019050818103600083015260a8816072565b9050919050565b600082825260208201905092915050565b7f4469646e27742073656e6420656e6f756768210000000000000000000000000060008201525056fea264697066735822122027ccc78e7f57b5769a705984a3dded55431e7f8e85301fe93901a59f47c3e7f664736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH1 0x1C JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xB60D4288 EQ PUSH1 0x21 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x27 PUSH1 0x29 JUMP JUMPDEST STOP JUMPDEST PUSH8 0xDE0B6B3A7640000 CALLVALUE GT PUSH1 0x70 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x67 SWAP1 PUSH1 0x91 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x7D PUSH1 0x13 DUP4 PUSH1 0xAF JUMP JUMPDEST SWAP2 POP PUSH1 0x86 DUP3 PUSH1 0xC0 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0xA8 DUP2 PUSH1 0x72 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4469646E27742073656E6420656E6F7567682100000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x27 0xCC 0xC7 DUP15 PUSH32 0x57B5769A705984A3DDED55431E7F8E85301FE93901A59F47C3E7F664736F6C63 NUMBER STOP ADDMOD SMOD STOP CALLER ",
"sourceMap": "139:296:0:-:0;;;;;;;;;;;;;;;;;;;;;161:242;;;:::i;:::-;;;333:4;321:9;:16;313:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;161:242::o;7:366:1:-;149:3;170:67;234:2;229:3;170:67;:::i;:::-;163:74;;246:93;335:3;246:93;:::i;:::-;364:2;359:3;355:12;348:19;;7:366;;;:::o;379:419::-;545:4;583:2;572:9;568:18;560:26;;632:9;626:4;622:20;618:1;607:9;603:17;596:47;660:131;786:4;660:131;:::i;:::-;652:139;;379:419;;;:::o;804:169::-;888:11;922:6;917:3;910:19;962:4;957:3;953:14;938:29;;804:169;;;;:::o;979:::-;1119:21;1115:1;1107:6;1103:14;1096:45;979:169;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "57400",
"executionCost": "105",
"totalCost": "57505"
},
"external": {
"fund()": "409"
}
},
"legacyAssembly": {
".code": [
{
"begin": 139,
"end": 435,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 139,
"end": 435,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 139,
"end": 435,
"name": "MSTORE",
"source": 0
},
{
"begin": 139,
"end": 435,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 139,
"end": 435,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 435,
"name": "ISZERO",
"source": 0
},
{
"begin": 139,
"end": 435,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 139,
"end": 435,
"name": "JUMPI",
"source": 0
},
{
"begin": 139,
"end": 435,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 435,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 435,
"name": "REVERT",
"source": 0
},
{
"begin": 139,
"end": 435,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 139,
"end": 435,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 139,
"end": 435,
"name": "POP",
"source": 0
},
{
"begin": 139,
"end": 435,
"name": "PUSH #[$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 139,
"end": 435,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 435,
"name": "PUSH [$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 139,
"end": 435,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 435,
"name": "CODECOPY",
"source": 0
},
{
"begin": 139,
"end": 435,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 435,
"name": "RETURN",
"source": 0
}
],
".data": {
"0": {
".auxdata": "a264697066735822122027ccc78e7f57b5769a705984a3dded55431e7f8e85301fe93901a59f47c3e7f664736f6c63430008070033",
".code": [
{
"begin": 139,
"end": 435,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 139,
"end": 435,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 139,
"end": 435,
"name": "MSTORE",
"source": 0
},
{
"begin": 139,
"end": 435,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 139,
"end": 435,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 139,
"end": 435,
"name": "LT",
"source": 0
},
{
"begin": 139,
"end": 435,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 139,
"end": 435,
"name": "JUMPI",
"source": 0
},
{
"begin": 139,
"end": 435,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 435,
"name": "CALLDATALOAD",
"source": 0
},
{
"begin": 139,
"end": 435,
"name": "PUSH",
"source": 0,
"value": "E0"
},
{
"begin": 139,
"end": 435,
"name": "SHR",
"source": 0
},
{
"begin": 139,
"end": 435,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 435,
"name": "PUSH",
"source": 0,
"value": "B60D4288"
},
{
"begin": 139,
"end": 435,
"name": "EQ",
"source": 0
},
{
"begin": 139,
"end": 435,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 139,
"end": 435,
"name": "JUMPI",
"source": 0
},
{
"begin": 139,
"end": 435,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 139,
"end": 435,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 139,
"end": 435,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 435,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 435,
"name": "REVERT",
"source": 0
},
{
"begin": 161,
"end": 403,
"name": "tag",
"source": 0,
"value": "2"
},
{
"begin": 161,
"end": 403,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 161,
"end": 403,
"name": "PUSH [tag]",
"source": 0,
"value": "3"
},
{
"begin": 161,
"end": 403,
"name": "PUSH [tag]",
"source": 0,
"value": "4"
},
{
"begin": 161,
"end": 403,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 161,
"end": 403,
"name": "tag",
"source": 0,
"value": "3"
},
{
"begin": 161,
"end": 403,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 161,
"end": 403,
"name": "STOP",
"source": 0
},
{
"begin": 161,
"end": 403,
"name": "tag",
"source": 0,
"value": "4"
},
{
"begin": 161,
"end": 403,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 333,
"end": 337,
"name": "PUSH",
"source": 0,
"value": "DE0B6B3A7640000"
},
{
"begin": 321,
"end": 330,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 321,
"end": 337,
"name": "GT",
"source": 0
},
{
"begin": 313,
"end": 361,
"name": "PUSH [tag]",
"source": 0,
"value": "6"
},
{
"begin": 313,
"end": 361,
"name": "JUMPI",
"source": 0
},
{
"begin": 313,
"end": 361,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 313,
"end": 361,
"name": "MLOAD",
"source": 0
},
{
"begin": 313,
"end": 361,
"name": "PUSH",
"source": 0,
"value": "8C379A000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 313,
"end": 361,
"name": "DUP2",
"source": 0
},
{
"begin": 313,
"end": 361,
"name": "MSTORE",
"source": 0
},
{
"begin": 313,
"end": 361,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 313,
"end": 361,
"name": "ADD",
"source": 0
},
{
"begin": 313,
"end": 361,
"name": "PUSH [tag]",
"source": 0,
"value": "7"
},
{
"begin": 313,
"end": 361,
"name": "SWAP1",
"source": 0
},
{
"begin": 313,
"end": 361,
"name": "PUSH [tag]",
"source": 0,
"value": "8"
},
{
"begin": 313,
"end": 361,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 313,
"end": 361,
"name": "tag",
"source": 0,
"value": "7"
},
{
"begin": 313,
"end": 361,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 313,
"end": 361,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 313,
"end": 361,
"name": "MLOAD",
"source": 0
},
{
"begin": 313,
"end": 361,
"name": "DUP1",
"source": 0
},
{
"begin": 313,
"end": 361,
"name": "SWAP2",
"source": 0
},
{
"begin": 313,
"end": 361,
"name": "SUB",
"source": 0
},
{
"begin": 313,
"end": 361,
"name": "SWAP1",
"source": 0
},
{
"begin": 313,
"end": 361,
"name": "REVERT",
"source": 0
},
{
"begin": 313,
"end": 361,
"name": "tag",
"source": 0,
"value": "6"
},
{
"begin": 313,
"end": 361,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 161,
"end": 403,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 7,
"end": 373,
"name": "tag",
"source": 1,
"value": "10"
},
{
"begin": 7,
"end": 373,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 149,
"end": 152,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 170,
"end": 237,
"name": "PUSH [tag]",
"source": 1,
"value": "12"
},
{
"begin": 234,
"end": 236,
"name": "PUSH",
"source": 1,
"value": "13"
},
{
"begin": 229,
"end": 232,
"name": "DUP4",
"source": 1
},
{
"begin": 170,
"end": 237,
"name": "PUSH [tag]",
"source": 1,
"value": "13"
},
{
"begin": 170,
"end": 237,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 170,
"end": 237,
"name": "tag",
"source": 1,
"value": "12"
},
{
"begin": 170,
"end": 237,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 163,
"end": 237,
"name": "SWAP2",
"source": 1
},
{
"begin": 163,
"end": 237,
"name": "POP",
"source": 1
},
{
"begin": 246,
"end": 339,
"name": "PUSH [tag]",
"source": 1,
"value": "14"
},
{
"begin": 335,
"end": 338,
"name": "DUP3",
"source": 1
},
{
"begin": 246,
"end": 339,
"name": "PUSH [tag]",
"source": 1,
"value": "15"
},
{
"begin": 246,
"end": 339,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 246,
"end": 339,
"name": "tag",
"source": 1,
"value": "14"
},
{
"begin": 246,
"end": 339,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 364,
"end": 366,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 359,
"end": 362,
"name": "DUP3",
"source": 1
},
{
"begin": 355,
"end": 367,
"name": "ADD",
"source": 1
},
{
"begin": 348,
"end": 367,
"name": "SWAP1",
"source": 1
},
{
"begin": 348,
"end": 367,
"name": "POP",
"source": 1
},
{
"begin": 7,
"end": 373,
"name": "SWAP2",
"source": 1
},
{
"begin": 7,
"end": 373,
"name": "SWAP1",
"source": 1
},
{
"begin": 7,
"end": 373,
"name": "POP",
"source": 1
},
{
"begin": 7,
"end": 373,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 379,
"end": 798,
"name": "tag",
"source": 1,
"value": "8"
},
{
"begin": 379,
"end": 798,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 545,
"end": 549,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 583,
"end": 585,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 572,
"end": 581,
"name": "DUP3",
"source": 1
},
{
"begin": 568,
"end": 586,
"name": "ADD",
"source": 1
},
{
"begin": 560,
"end": 586,
"name": "SWAP1",
"source": 1
},
{
"begin": 560,
"end": 586,
"name": "POP",
"source": 1
},
{
"begin": 632,
"end": 641,
"name": "DUP2",
"source": 1
},
{
"begin": 626,
"end": 630,
"name": "DUP2",
"source": 1
},
{
"begin": 622,
"end": 642,
"name": "SUB",
"source": 1
},
{
"begin": 618,
"end": 619,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 607,
"end": 616,
"name": "DUP4",
"source": 1
},
{
"begin": 603,
"end": 620,
"name": "ADD",
"source": 1
},
{
"begin": 596,
"end": 643,
"name": "MSTORE",
"source": 1
},
{
"begin": 660,
"end": 791,
"name": "PUSH [tag]",
"source": 1,
"value": "17"
},
{
"begin": 786,
"end": 790,
"name": "DUP2",
"source": 1
},
{
"begin": 660,
"end": 791,
"name": "PUSH [tag]",
"source": 1,
"value": "10"
},
{
"begin": 660,
"end": 791,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 660,
"end": 791,
"name": "tag",
"source": 1,
"value": "17"
},
{
"begin": 660,
"end": 791,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 652,
"end": 791,
"name": "SWAP1",
"source": 1
},
{
"begin": 652,
"end": 791,
"name": "POP",
"source": 1
},
{
"begin": 379,
"end": 798,
"name": "SWAP2",
"source": 1
},
{
"begin": 379,
"end": 798,
"name": "SWAP1",
"source": 1
},
{
"begin": 379,
"end": 798,
"name": "POP",
"source": 1
},
{
"begin": 379,
"end": 798,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 804,
"end": 973,
"name": "tag",
"source": 1,
"value": "13"
},
{
"begin": 804,
"end": 973,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 888,
"end": 899,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 922,
"end": 928,
"name": "DUP3",
"source": 1
},
{
"begin": 917,
"end": 920,
"name": "DUP3",
"source": 1
},
{
"begin": 910,
"end": 929,
"name": "MSTORE",
"source": 1
},
{
"begin": 962,
"end": 966,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 957,
"end": 960,
"name": "DUP3",
"source": 1
},
{
"begin": 953,
"end": 967,
"name": "ADD",
"source": 1
},
{
"begin": 938,
"end": 967,
"name": "SWAP1",
"source": 1
},
{
"begin": 938,
"end": 967,
"name": "POP",
"source": 1
},
{
"begin": 804,
"end": 973,
"name": "SWAP3",
"source": 1
},
{
"begin": 804,
"end": 973,
"name": "SWAP2",
"source": 1
},
{
"begin": 804,
"end": 973,
"name": "POP",
"source": 1
},
{
"begin": 804,
"end": 973,
"name": "POP",
"source": 1
},
{
"begin": 804,
"end": 973,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 979,
"end": 1148,
"name": "tag",
"source": 1,
"value": "15"
},
{
"begin": 979,
"end": 1148,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1119,
"end": 1140,
"name": "PUSH",
"source": 1,
"value": "4469646E27742073656E6420656E6F7567682100000000000000000000000000"
},
{
"begin": 1115,
"end": 1116,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1107,
"end": 1113,
"name": "DUP3",
"source": 1
},
{
"begin": 1103,
"end": 1117,
"name": "ADD",
"source": 1
},
{
"begin": 1096,
"end": 1141,
"name": "MSTORE",
"source": 1
},
{
"begin": 979,
"end": 1148,
"name": "POP",
"source": 1
},
{
"begin": 979,
"end": 1148,
"name": "JUMP",
"source": 1,
"value": "[out]"
}
]
}
}
},
"methodIdentifiers": {
"fund()": "b60d4288"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.7+commit.e28d00a7\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"fund\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/FundMe.sol\":\"FundMe\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/FundMe.sol\":{\"keccak256\":\"0xffcbcc0da56da014043fec243c3746a50f1ea19014e6fa7a81442126efbf04fc\",\"urls\":[\"bzz-raw://474089b3741b614025f95e517fb6f818af84f6d1182f45f6dcd9f2e689b53cf5\",\"dweb:/ipfs/QmcvBs1Stx5dcZSer37mmgaQLXvbrurNLU1kUQRQe5HaAt\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
}
},
"errors": [
{
"component": "general",
"errorCode": "1878",
"formattedMessage": "Warning: SPDX license identifier not provided in source file. Before publishing, consider adding a comment containing \"SPDX-License-Identifier: <SPDX-License>\" to each source file. Use \"SPDX-License-Identifier: UNLICENSED\" for non-open-source code. Please see https://spdx.org for more information.\n--> contracts/FundMe.sol\n\n",
"message": "SPDX license identifier not provided in source file. Before publishing, consider adding a comment containing \"SPDX-License-Identifier: <SPDX-License>\" to each source file. Use \"SPDX-License-Identifier: UNLICENSED\" for non-open-source code. Please see https://spdx.org for more information.",
"severity": "warning",
"sourceLocation": {
"end": -1,
"file": "contracts/FundMe.sol",
"start": -1
},
"type": "Warning"
}
],
"sources": {
"contracts/FundMe.sol": {
"ast": {
"absolutePath": "contracts/FundMe.sol",
"exportedSymbols": {
"FundMe": [
18
]
},
"id": 19,
"nodeType": "SourceUnit",
"nodes": [
{
"id": 1,
"literals": [
"solidity",
"^",
"0.8",
".0"
],
"nodeType": "PragmaDirective",
"src": "114:23:0"
},
{
"abstract": false,
"baseContracts": [],
"contractDependencies": [],
"contractKind": "contract",
"fullyImplemented": true,
"id": 18,
"linearizedBaseContracts": [
18
],
"name": "FundMe",
"nameLocation": "148:6:0",
"nodeType": "ContractDefinition",
"nodes": [
{
"body": {
"id": 16,
"nodeType": "Block",
"src": "193:210:0",
"statements": [
{
"expression": {
"arguments": [
{
"commonType": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"id": 8,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftExpression": {
"expression": {
"id": 5,
"name": "msg",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967281,
"src": "321:3:0",
"typeDescriptions": {
"typeIdentifier": "t_magic_message",
"typeString": "msg"
}
},
"id": 6,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberName": "value",
"nodeType": "MemberAccess",
"src": "321:9:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"nodeType": "BinaryOperation",
"operator": ">",
"rightExpression": {
"hexValue": "31653138",
"id": 7,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "number",
"lValueRequested": false,
"nodeType": "Literal",
"src": "333:4:0",
"typeDescriptions": {
"typeIdentifier": "t_rational_1000000000000000000_by_1",
"typeString": "int_const 1000000000000000000"
},
"value": "1e18"
},
"src": "321:16:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
{
"hexValue": "4469646e27742073656e6420656e6f75676821",
"id": 9,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "339:21:0",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5",
"typeString": "literal_string \"Didn't send enough!\""
},
"value": "Didn't send enough!"
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bool",
"typeString": "bool"
},
{
"typeIdentifier": "t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5",
"typeString": "literal_string \"Didn't send enough!\""
}
],
"id": 4,
"name": "require",
"nodeType": "Identifier",
"overloadedDeclarations": [
4294967278,
4294967278
],
"referencedDeclaration": 4294967278,
"src": "313:7:0",
"typeDescriptions": {
"typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
"typeString": "function (bool,string memory) pure"
}
},
"id": 10,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "313:48:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 11,
"nodeType": "ExpressionStatement",
"src": "313:48:0"
},
{
"expression": {
"expression": {
"id": 12,
"name": "msg",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967281,
"src": "387:3:0",
"typeDescriptions": {
"typeIdentifier": "t_magic_message",
"typeString": "msg"
}
},
"id": 14,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberName": "value",
"nodeType": "MemberAccess",
"src": "387:9:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"id": 15,
"nodeType": "ExpressionStatement",
"src": "387:9:0"
}
]
},
"functionSelector": "b60d4288",
"id": 17,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "fund",
"nameLocation": "170:4:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 2,
"nodeType": "ParameterList",
"parameters": [],
"src": "175:2:0"
},
"returnParameters": {
"id": 3,
"nodeType": "ParameterList",
"parameters": [],
"src": "193:0:0"
},
"scope": 18,
"src": "161:242:0",
"stateMutability": "payable",
"virtual": false,
"visibility": "public"
}
],
"scope": 19,
"src": "139:296:0",
"usedErrors": []
}
],
"src": "114:321:0"
},
"id": 0
}
}
}
}
{
"id": "db38273259c58c16f3279b6bf0b8799d",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.7",
"solcLongVersion": "0.8.7+commit.e28d00a7",
"input": {
"language": "Solidity",
"sources": {
"contracts/FundMe.sol": {
"content": "// SDPX-License-Identifier: MIT\n// Get funds from users\n// Withdraw funds\n// Set a minimum funding value in USD\n\n\npragma solidity ^0.8.0;\n\ncontract FundMe {\n uint256 value;\n function fund () public payable {\n // Want to be able to set a minimum fund amount in USD\n // 1. How to send ETH to this contract\n require(msg.value > 1e18, \"Didn't send enough!\"); // 1 * 10 ** 18\n value = 5;\n\n // What's reverting\n // undo any action before, and send remaining gas back!\n }\n\n // function withdraw(){}\n}"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"storageLayout",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"contracts": {
"contracts/FundMe.sol": {
"FundMe": {
"abi": [
{
"inputs": [],
"name": "fund",
"outputs": [],
"stateMutability": "payable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": " /* \"contracts/FundMe.sol\":139:547 contract FundMe {... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\ntag_1:\n pop\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"contracts/FundMe.sol\":139:547 contract FundMe {... */\n mstore(0x40, 0x80)\n jumpi(tag_1, lt(calldatasize, 0x04))\n shr(0xe0, calldataload(0x00))\n dup1\n 0xb60d4288\n eq\n tag_2\n jumpi\n tag_1:\n 0x00\n dup1\n revert\n /* \"contracts/FundMe.sol\":180:515 function fund () public payable {... */\n tag_2:\n tag_3\n tag_4\n jump\t// in\n tag_3:\n stop\n tag_4:\n /* \"contracts/FundMe.sol\":352:356 1e18 */\n 0x0de0b6b3a7640000\n /* \"contracts/FundMe.sol\":340:349 msg.value */\n callvalue\n /* \"contracts/FundMe.sol\":340:356 msg.value > 1e18 */\n gt\n /* \"contracts/FundMe.sol\":332:380 require(msg.value > 1e18, \"Didn't send enough!\") */\n tag_6\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_7\n swap1\n tag_8\n jump\t// in\n tag_7:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_6:\n /* \"contracts/FundMe.sol\":414:415 5 */\n 0x05\n /* \"contracts/FundMe.sol\":406:411 value */\n 0x00\n /* \"contracts/FundMe.sol\":406:415 value = 5 */\n dup2\n swap1\n sstore\n pop\n /* \"contracts/FundMe.sol\":180:515 function fund () public payable {... */\n jump\t// out\n /* \"#utility.yul\":7:373 */\n tag_10:\n /* \"#utility.yul\":149:152 */\n 0x00\n /* \"#utility.yul\":170:237 */\n tag_12\n /* \"#utility.yul\":234:236 */\n 0x13\n /* \"#utility.yul\":229:232 */\n dup4\n /* \"#utility.yul\":170:237 */\n tag_13\n jump\t// in\n tag_12:\n /* \"#utility.yul\":163:237 */\n swap2\n pop\n /* \"#utility.yul\":246:339 */\n tag_14\n /* \"#utility.yul\":335:338 */\n dup3\n /* \"#utility.yul\":246:339 */\n tag_15\n jump\t// in\n tag_14:\n /* \"#utility.yul\":364:366 */\n 0x20\n /* \"#utility.yul\":359:362 */\n dup3\n /* \"#utility.yul\":355:367 */\n add\n /* \"#utility.yul\":348:367 */\n swap1\n pop\n /* \"#utility.yul\":7:373 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":379:798 */\n tag_8:\n /* \"#utility.yul\":545:549 */\n 0x00\n /* \"#utility.yul\":583:585 */\n 0x20\n /* \"#utility.yul\":572:581 */\n dup3\n /* \"#utility.yul\":568:586 */\n add\n /* \"#utility.yul\":560:586 */\n swap1\n pop\n /* \"#utility.yul\":632:641 */\n dup2\n /* \"#utility.yul\":626:630 */\n dup2\n /* \"#utility.yul\":622:642 */\n sub\n /* \"#utility.yul\":618:619 */\n 0x00\n /* \"#utility.yul\":607:616 */\n dup4\n /* \"#utility.yul\":603:620 */\n add\n /* \"#utility.yul\":596:643 */\n mstore\n /* \"#utility.yul\":660:791 */\n tag_17\n /* \"#utility.yul\":786:790 */\n dup2\n /* \"#utility.yul\":660:791 */\n tag_10\n jump\t// in\n tag_17:\n /* \"#utility.yul\":652:791 */\n swap1\n pop\n /* \"#utility.yul\":379:798 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":804:973 */\n tag_13:\n /* \"#utility.yul\":888:899 */\n 0x00\n /* \"#utility.yul\":922:928 */\n dup3\n /* \"#utility.yul\":917:920 */\n dup3\n /* \"#utility.yul\":910:929 */\n mstore\n /* \"#utility.yul\":962:966 */\n 0x20\n /* \"#utility.yul\":957:960 */\n dup3\n /* \"#utility.yul\":953:967 */\n add\n /* \"#utility.yul\":938:967 */\n swap1\n pop\n /* \"#utility.yul\":804:973 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":979:1148 */\n tag_15:\n /* \"#utility.yul\":1119:1140 */\n 0x4469646e27742073656e6420656e6f7567682100000000000000000000000000\n /* \"#utility.yul\":1115:1116 */\n 0x00\n /* \"#utility.yul\":1107:1113 */\n dup3\n /* \"#utility.yul\":1103:1117 */\n add\n /* \"#utility.yul\":1096:1141 */\n mstore\n /* \"#utility.yul\":979:1148 */\n pop\n jump\t// out\n\n auxdata: 0xa26469706673582212200936acccdcd69d4e368e68d0de3a5f63ff4e08d3ac22d1a2c7de2b33397b073c64736f6c63430008070033\n}\n",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50610127806100206000396000f3fe608060405260043610601c5760003560e01c8063b60d4288146021575b600080fd5b60276029565b005b670de0b6b3a764000034116070576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016067906099565b60405180910390fd5b6005600081905550565b6000608560138360b7565b9150608e8260c8565b602082019050919050565b6000602082019050818103600083015260b081607a565b9050919050565b600082825260208201905092915050565b7f4469646e27742073656e6420656e6f756768210000000000000000000000000060008201525056fea26469706673582212200936acccdcd69d4e368e68d0de3a5f63ff4e08d3ac22d1a2c7de2b33397b073c64736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x127 DUP1 PUSH2 0x20 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH1 0x1C JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xB60D4288 EQ PUSH1 0x21 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x27 PUSH1 0x29 JUMP JUMPDEST STOP JUMPDEST PUSH8 0xDE0B6B3A7640000 CALLVALUE GT PUSH1 0x70 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x67 SWAP1 PUSH1 0x99 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x5 PUSH1 0x0 DUP2 SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x85 PUSH1 0x13 DUP4 PUSH1 0xB7 JUMP JUMPDEST SWAP2 POP PUSH1 0x8E DUP3 PUSH1 0xC8 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0xB0 DUP2 PUSH1 0x7A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4469646E27742073656E6420656E6F7567682100000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 MULMOD CALLDATASIZE 0xAC 0xCC 0xDC 0xD6 SWAP14 0x4E CALLDATASIZE DUP15 PUSH9 0xD0DE3A5F63FF4E08D3 0xAC 0x22 0xD1 LOG2 0xC7 0xDE 0x2B CALLER CODECOPY PUSH28 0x73C64736F6C63430008070033000000000000000000000000000000 ",
"sourceMap": "139:408:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@fund_19": {
"entryPoint": 41,
"id": 19,
"parameterSlots": 0,
"returnSlots": 0
},
"abi_encode_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5_to_t_string_memory_ptr_fromStack": {
"entryPoint": 122,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 153,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 183,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"store_literal_in_memory_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5": {
"entryPoint": 200,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:1151:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "153:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "163:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "229:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "234:2:1",
"type": "",
"value": "19"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "170:58:1"
},
"nodeType": "YulFunctionCall",
"src": "170:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "163:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "335:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5",
"nodeType": "YulIdentifier",
"src": "246:88:1"
},
"nodeType": "YulFunctionCall",
"src": "246:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "246:93:1"
},
{
"nodeType": "YulAssignment",
"src": "348:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "359:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "364:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "355:3:1"
},
"nodeType": "YulFunctionCall",
"src": "355:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "348:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "141:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "149:3:1",
"type": ""
}
],
"src": "7:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "550:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "560:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "572:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "583:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "568:3:1"
},
"nodeType": "YulFunctionCall",
"src": "568:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "560:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "607:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "618:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "603:3:1"
},
"nodeType": "YulFunctionCall",
"src": "603:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "626:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "632:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "622:3:1"
},
"nodeType": "YulFunctionCall",
"src": "622:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "596:6:1"
},
"nodeType": "YulFunctionCall",
"src": "596:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "596:47:1"
},
{
"nodeType": "YulAssignment",
"src": "652:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "786:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "660:124:1"
},
"nodeType": "YulFunctionCall",
"src": "660:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "652:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "530:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "545:4:1",
"type": ""
}
],
"src": "379:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "900:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "917:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "922:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "910:6:1"
},
"nodeType": "YulFunctionCall",
"src": "910:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "910:19:1"
},
{
"nodeType": "YulAssignment",
"src": "938:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "957:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "962:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "953:3:1"
},
"nodeType": "YulFunctionCall",
"src": "953:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "938:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "872:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "877:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "888:11:1",
"type": ""
}
],
"src": "804:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1085:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1107:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1115:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1103:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1103:14:1"
},
{
"hexValue": "4469646e27742073656e6420656e6f75676821",
"kind": "string",
"nodeType": "YulLiteral",
"src": "1119:21:1",
"type": "",
"value": "Didn't send enough!"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1096:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1096:45:1"
},
"nodeType": "YulExpressionStatement",
"src": "1096:45:1"
}
]
},
"name": "store_literal_in_memory_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1077:6:1",
"type": ""
}
],
"src": "979:169:1"
}
]
},
"contents": "{\n\n function abi_encode_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 19)\n store_literal_in_memory_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function store_literal_in_memory_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5(memPtr) {\n\n mstore(add(memPtr, 0), \"Didn't send enough!\")\n\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405260043610601c5760003560e01c8063b60d4288146021575b600080fd5b60276029565b005b670de0b6b3a764000034116070576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016067906099565b60405180910390fd5b6005600081905550565b6000608560138360b7565b9150608e8260c8565b602082019050919050565b6000602082019050818103600083015260b081607a565b9050919050565b600082825260208201905092915050565b7f4469646e27742073656e6420656e6f756768210000000000000000000000000060008201525056fea26469706673582212200936acccdcd69d4e368e68d0de3a5f63ff4e08d3ac22d1a2c7de2b33397b073c64736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH1 0x1C JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xB60D4288 EQ PUSH1 0x21 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x27 PUSH1 0x29 JUMP JUMPDEST STOP JUMPDEST PUSH8 0xDE0B6B3A7640000 CALLVALUE GT PUSH1 0x70 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x67 SWAP1 PUSH1 0x99 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x5 PUSH1 0x0 DUP2 SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x85 PUSH1 0x13 DUP4 PUSH1 0xB7 JUMP JUMPDEST SWAP2 POP PUSH1 0x8E DUP3 PUSH1 0xC8 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0xB0 DUP2 PUSH1 0x7A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4469646E27742073656E6420656E6F7567682100000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 MULMOD CALLDATASIZE 0xAC 0xCC 0xDC 0xD6 SWAP14 0x4E CALLDATASIZE DUP15 PUSH9 0xD0DE3A5F63FF4E08D3 0xAC 0x22 0xD1 LOG2 0xC7 0xDE 0x2B CALLER CODECOPY PUSH28 0x73C64736F6C63430008070033000000000000000000000000000000 ",
"sourceMap": "139:408:0:-:0;;;;;;;;;;;;;;;;;;;;;180:335;;;:::i;:::-;;;352:4;340:9;:16;332:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;414:1;406:5;:9;;;;180:335::o;7:366:1:-;149:3;170:67;234:2;229:3;170:67;:::i;:::-;163:74;;246:93;335:3;246:93;:::i;:::-;364:2;359:3;355:12;348:19;;7:366;;;:::o;379:419::-;545:4;583:2;572:9;568:18;560:26;;632:9;626:4;622:20;618:1;607:9;603:17;596:47;660:131;786:4;660:131;:::i;:::-;652:139;;379:419;;;:::o;804:169::-;888:11;922:6;917:3;910:19;962:4;957:3;953:14;938:29;;804:169;;;;:::o;979:::-;1119:21;1115:1;1107:6;1103:14;1096:45;979:169;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "59000",
"executionCost": "111",
"totalCost": "59111"
},
"external": {
"fund()": "22234"
}
},
"legacyAssembly": {
".code": [
{
"begin": 139,
"end": 547,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 139,
"end": 547,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 139,
"end": 547,
"name": "MSTORE",
"source": 0
},
{
"begin": 139,
"end": 547,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 139,
"end": 547,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 547,
"name": "ISZERO",
"source": 0
},
{
"begin": 139,
"end": 547,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 139,
"end": 547,
"name": "JUMPI",
"source": 0
},
{
"begin": 139,
"end": 547,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 547,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 547,
"name": "REVERT",
"source": 0
},
{
"begin": 139,
"end": 547,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 139,
"end": 547,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 139,
"end": 547,
"name": "POP",
"source": 0
},
{
"begin": 139,
"end": 547,
"name": "PUSH #[$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 139,
"end": 547,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 547,
"name": "PUSH [$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 139,
"end": 547,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 547,
"name": "CODECOPY",
"source": 0
},
{
"begin": 139,
"end": 547,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 547,
"name": "RETURN",
"source": 0
}
],
".data": {
"0": {
".auxdata": "a26469706673582212200936acccdcd69d4e368e68d0de3a5f63ff4e08d3ac22d1a2c7de2b33397b073c64736f6c63430008070033",
".code": [
{
"begin": 139,
"end": 547,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 139,
"end": 547,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 139,
"end": 547,
"name": "MSTORE",
"source": 0
},
{
"begin": 139,
"end": 547,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 139,
"end": 547,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 139,
"end": 547,
"name": "LT",
"source": 0
},
{
"begin": 139,
"end": 547,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 139,
"end": 547,
"name": "JUMPI",
"source": 0
},
{
"begin": 139,
"end": 547,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 547,
"name": "CALLDATALOAD",
"source": 0
},
{
"begin": 139,
"end": 547,
"name": "PUSH",
"source": 0,
"value": "E0"
},
{
"begin": 139,
"end": 547,
"name": "SHR",
"source": 0
},
{
"begin": 139,
"end": 547,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 547,
"name": "PUSH",
"source": 0,
"value": "B60D4288"
},
{
"begin": 139,
"end": 547,
"name": "EQ",
"source": 0
},
{
"begin": 139,
"end": 547,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 139,
"end": 547,
"name": "JUMPI",
"source": 0
},
{
"begin": 139,
"end": 547,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 139,
"end": 547,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 139,
"end": 547,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 139,
"end": 547,
"name": "DUP1",
"source": 0
},
{
"begin": 139,
"end": 547,
"name": "REVERT",
"source": 0
},
{
"begin": 180,
"end": 515,
"name": "tag",
"source": 0,
"value": "2"
},
{
"begin": 180,
"end": 515,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 180,
"end": 515,
"name": "PUSH [tag]",
"source": 0,
"value": "3"
},
{
"begin": 180,
"end": 515,
"name": "PUSH [tag]",
"source": 0,
"value": "4"
},
{
"begin": 180,
"end": 515,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 180,
"end": 515,
"name": "tag",
"source": 0,
"value": "3"
},
{
"begin": 180,
"end": 515,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 180,
"end": 515,
"name": "STOP",
"source": 0
},
{
"begin": 180,
"end": 515,
"name": "tag",
"source": 0,
"value": "4"
},
{
"begin": 180,
"end": 515,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 352,
"end": 356,
"name": "PUSH",
"source": 0,
"value": "DE0B6B3A7640000"
},
{
"begin": 340,
"end": 349,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 340,
"end": 356,
"name": "GT",
"source": 0
},
{
"begin": 332,
"end": 380,
"name": "PUSH [tag]",
"source": 0,
"value": "6"
},
{
"begin": 332,
"end": 380,
"name": "JUMPI",
"source": 0
},
{
"begin": 332,
"end": 380,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 332,
"end": 380,
"name": "MLOAD",
"source": 0
},
{
"begin": 332,
"end": 380,
"name": "PUSH",
"source": 0,
"value": "8C379A000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 332,
"end": 380,
"name": "DUP2",
"source": 0
},
{
"begin": 332,
"end": 380,
"name": "MSTORE",
"source": 0
},
{
"begin": 332,
"end": 380,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 332,
"end": 380,
"name": "ADD",
"source": 0
},
{
"begin": 332,
"end": 380,
"name": "PUSH [tag]",
"source": 0,
"value": "7"
},
{
"begin": 332,
"end": 380,
"name": "SWAP1",
"source": 0
},
{
"begin": 332,
"end": 380,
"name": "PUSH [tag]",
"source": 0,
"value": "8"
},
{
"begin": 332,
"end": 380,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 332,
"end": 380,
"name": "tag",
"source": 0,
"value": "7"
},
{
"begin": 332,
"end": 380,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 332,
"end": 380,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 332,
"end": 380,
"name": "MLOAD",
"source": 0
},
{
"begin": 332,
"end": 380,
"name": "DUP1",
"source": 0
},
{
"begin": 332,
"end": 380,
"name": "SWAP2",
"source": 0
},
{
"begin": 332,
"end": 380,
"name": "SUB",
"source": 0
},
{
"begin": 332,
"end": 380,
"name": "SWAP1",
"source": 0
},
{
"begin": 332,
"end": 380,
"name": "REVERT",
"source": 0
},
{
"begin": 332,
"end": 380,
"name": "tag",
"source": 0,
"value": "6"
},
{
"begin": 332,
"end": 380,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 414,
"end": 415,
"name": "PUSH",
"source": 0,
"value": "5"
},
{
"begin": 406,
"end": 411,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 406,
"end": 415,
"name": "DUP2",
"source": 0
},
{
"begin": 406,
"end": 415,
"name": "SWAP1",
"source": 0
},
{
"begin": 406,
"end": 415,
"name": "SSTORE",
"source": 0
},
{
"begin": 406,
"end": 415,
"name": "POP",
"source": 0
},
{
"begin": 180,
"end": 515,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 7,
"end": 373,
"name": "tag",
"source": 1,
"value": "10"
},
{
"begin": 7,
"end": 373,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 149,
"end": 152,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 170,
"end": 237,
"name": "PUSH [tag]",
"source": 1,
"value": "12"
},
{
"begin": 234,
"end": 236,
"name": "PUSH",
"source": 1,
"value": "13"
},
{
"begin": 229,
"end": 232,
"name": "DUP4",
"source": 1
},
{
"begin": 170,
"end": 237,
"name": "PUSH [tag]",
"source": 1,
"value": "13"
},
{
"begin": 170,
"end": 237,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 170,
"end": 237,
"name": "tag",
"source": 1,
"value": "12"
},
{
"begin": 170,
"end": 237,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 163,
"end": 237,
"name": "SWAP2",
"source": 1
},
{
"begin": 163,
"end": 237,
"name": "POP",
"source": 1
},
{
"begin": 246,
"end": 339,
"name": "PUSH [tag]",
"source": 1,
"value": "14"
},
{
"begin": 335,
"end": 338,
"name": "DUP3",
"source": 1
},
{
"begin": 246,
"end": 339,
"name": "PUSH [tag]",
"source": 1,
"value": "15"
},
{
"begin": 246,
"end": 339,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 246,
"end": 339,
"name": "tag",
"source": 1,
"value": "14"
},
{
"begin": 246,
"end": 339,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 364,
"end": 366,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 359,
"end": 362,
"name": "DUP3",
"source": 1
},
{
"begin": 355,
"end": 367,
"name": "ADD",
"source": 1
},
{
"begin": 348,
"end": 367,
"name": "SWAP1",
"source": 1
},
{
"begin": 348,
"end": 367,
"name": "POP",
"source": 1
},
{
"begin": 7,
"end": 373,
"name": "SWAP2",
"source": 1
},
{
"begin": 7,
"end": 373,
"name": "SWAP1",
"source": 1
},
{
"begin": 7,
"end": 373,
"name": "POP",
"source": 1
},
{
"begin": 7,
"end": 373,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 379,
"end": 798,
"name": "tag",
"source": 1,
"value": "8"
},
{
"begin": 379,
"end": 798,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 545,
"end": 549,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 583,
"end": 585,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 572,
"end": 581,
"name": "DUP3",
"source": 1
},
{
"begin": 568,
"end": 586,
"name": "ADD",
"source": 1
},
{
"begin": 560,
"end": 586,
"name": "SWAP1",
"source": 1
},
{
"begin": 560,
"end": 586,
"name": "POP",
"source": 1
},
{
"begin": 632,
"end": 641,
"name": "DUP2",
"source": 1
},
{
"begin": 626,
"end": 630,
"name": "DUP2",
"source": 1
},
{
"begin": 622,
"end": 642,
"name": "SUB",
"source": 1
},
{
"begin": 618,
"end": 619,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 607,
"end": 616,
"name": "DUP4",
"source": 1
},
{
"begin": 603,
"end": 620,
"name": "ADD",
"source": 1
},
{
"begin": 596,
"end": 643,
"name": "MSTORE",
"source": 1
},
{
"begin": 660,
"end": 791,
"name": "PUSH [tag]",
"source": 1,
"value": "17"
},
{
"begin": 786,
"end": 790,
"name": "DUP2",
"source": 1
},
{
"begin": 660,
"end": 791,
"name": "PUSH [tag]",
"source": 1,
"value": "10"
},
{
"begin": 660,
"end": 791,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 660,
"end": 791,
"name": "tag",
"source": 1,
"value": "17"
},
{
"begin": 660,
"end": 791,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 652,
"end": 791,
"name": "SWAP1",
"source": 1
},
{
"begin": 652,
"end": 791,
"name": "POP",
"source": 1
},
{
"begin": 379,
"end": 798,
"name": "SWAP2",
"source": 1
},
{
"begin": 379,
"end": 798,
"name": "SWAP1",
"source": 1
},
{
"begin": 379,
"end": 798,
"name": "POP",
"source": 1
},
{
"begin": 379,
"end": 798,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 804,
"end": 973,
"name": "tag",
"source": 1,
"value": "13"
},
{
"begin": 804,
"end": 973,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 888,
"end": 899,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 922,
"end": 928,
"name": "DUP3",
"source": 1
},
{
"begin": 917,
"end": 920,
"name": "DUP3",
"source": 1
},
{
"begin": 910,
"end": 929,
"name": "MSTORE",
"source": 1
},
{
"begin": 962,
"end": 966,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 957,
"end": 960,
"name": "DUP3",
"source": 1
},
{
"begin": 953,
"end": 967,
"name": "ADD",
"source": 1
},
{
"begin": 938,
"end": 967,
"name": "SWAP1",
"source": 1
},
{
"begin": 938,
"end": 967,
"name": "POP",
"source": 1
},
{
"begin": 804,
"end": 973,
"name": "SWAP3",
"source": 1
},
{
"begin": 804,
"end": 973,
"name": "SWAP2",
"source": 1
},
{
"begin": 804,
"end": 973,
"name": "POP",
"source": 1
},
{
"begin": 804,
"end": 973,
"name": "POP",
"source": 1
},
{
"begin": 804,
"end": 973,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 979,
"end": 1148,
"name": "tag",
"source": 1,
"value": "15"
},
{
"begin": 979,
"end": 1148,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1119,
"end": 1140,
"name": "PUSH",
"source": 1,
"value": "4469646E27742073656E6420656E6F7567682100000000000000000000000000"
},
{
"begin": 1115,
"end": 1116,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1107,
"end": 1113,
"name": "DUP3",
"source": 1
},
{
"begin": 1103,
"end": 1117,
"name": "ADD",
"source": 1
},
{
"begin": 1096,
"end": 1141,
"name": "MSTORE",
"source": 1
},
{
"begin": 979,
"end": 1148,
"name": "POP",
"source": 1
},
{
"begin": 979,
"end": 1148,
"name": "JUMP",
"source": 1,
"value": "[out]"
}
]
}
}
},
"methodIdentifiers": {
"fund()": "b60d4288"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.7+commit.e28d00a7\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"fund\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/FundMe.sol\":\"FundMe\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/FundMe.sol\":{\"keccak256\":\"0x3ad388b8406abbfd8b7b0c6032c5442f09dc837636e2b9c24b46ffd018be14ed\",\"urls\":[\"bzz-raw://367faa7b52da22ebc739ef063cdfc36072fabc9e1694efed4ad4ede21a6aa170\",\"dweb:/ipfs/QmWjeNe69umKGfWgSNVFVYQ789JK8efqsAoFQRY89uw919\"]}},\"version\":1}",
"storageLayout": {
"storage": [
{
"astId": 3,
"contract": "contracts/FundMe.sol:FundMe",
"label": "value",
"offset": 0,
"slot": "0",
"type": "t_uint256"
}
],
"types": {
"t_uint256": {
"encoding": "inplace",
"label": "uint256",
"numberOfBytes": "32"
}
}
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
}
},
"errors": [
{
"component": "general",
"errorCode": "1878",
"formattedMessage": "Warning: SPDX license identifier not provided in source file. Before publishing, consider adding a comment containing \"SPDX-License-Identifier: <SPDX-License>\" to each source file. Use \"SPDX-License-Identifier: UNLICENSED\" for non-open-source code. Please see https://spdx.org for more information.\n--> contracts/FundMe.sol\n\n",
"message": "SPDX license identifier not provided in source file. Before publishing, consider adding a comment containing \"SPDX-License-Identifier: <SPDX-License>\" to each source file. Use \"SPDX-License-Identifier: UNLICENSED\" for non-open-source code. Please see https://spdx.org for more information.",
"severity": "warning",
"sourceLocation": {
"end": -1,
"file": "contracts/FundMe.sol",
"start": -1
},
"type": "Warning"
}
],
"sources": {
"contracts/FundMe.sol": {
"ast": {
"absolutePath": "contracts/FundMe.sol",
"exportedSymbols": {
"FundMe": [
20
]
},
"id": 21,
"nodeType": "SourceUnit",
"nodes": [
{
"id": 1,
"literals": [
"solidity",
"^",
"0.8",
".0"
],
"nodeType": "PragmaDirective",
"src": "114:23:0"
},
{
"abstract": false,
"baseContracts": [],
"contractDependencies": [],
"contractKind": "contract",
"fullyImplemented": true,
"id": 20,
"linearizedBaseContracts": [
20
],
"name": "FundMe",
"nameLocation": "148:6:0",
"nodeType": "ContractDefinition",
"nodes": [
{
"constant": false,
"id": 3,
"mutability": "mutable",
"name": "value",
"nameLocation": "169:5:0",
"nodeType": "VariableDeclaration",
"scope": 20,
"src": "161:13:0",
"stateVariable": true,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 2,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "161:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
},
{
"body": {
"id": 18,
"nodeType": "Block",
"src": "212:303:0",
"statements": [
{
"expression": {
"arguments": [
{
"commonType": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"id": 10,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftExpression": {
"expression": {
"id": 7,
"name": "msg",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967281,
"src": "340:3:0",
"typeDescriptions": {
"typeIdentifier": "t_magic_message",
"typeString": "msg"
}
},
"id": 8,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberName": "value",
"nodeType": "MemberAccess",
"src": "340:9:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"nodeType": "BinaryOperation",
"operator": ">",
"rightExpression": {
"hexValue": "31653138",
"id": 9,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "number",
"lValueRequested": false,
"nodeType": "Literal",
"src": "352:4:0",
"typeDescriptions": {
"typeIdentifier": "t_rational_1000000000000000000_by_1",
"typeString": "int_const 1000000000000000000"
},
"value": "1e18"
},
"src": "340:16:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
{
"hexValue": "4469646e27742073656e6420656e6f75676821",
"id": 11,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "358:21:0",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5",
"typeString": "literal_string \"Didn't send enough!\""
},
"value": "Didn't send enough!"
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bool",
"typeString": "bool"
},
{
"typeIdentifier": "t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5",
"typeString": "literal_string \"Didn't send enough!\""
}
],
"id": 6,
"name": "require",
"nodeType": "Identifier",
"overloadedDeclarations": [
4294967278,
4294967278
],
"referencedDeclaration": 4294967278,
"src": "332:7:0",
"typeDescriptions": {
"typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
"typeString": "function (bool,string memory) pure"
}
},
"id": 12,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "332:48:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 13,
"nodeType": "ExpressionStatement",
"src": "332:48:0"
},
{
"expression": {
"id": 16,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftHandSide": {
"id": 14,
"name": "value",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 3,
"src": "406:5:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"nodeType": "Assignment",
"operator": "=",
"rightHandSide": {
"hexValue": "35",
"id": 15,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "number",
"lValueRequested": false,
"nodeType": "Literal",
"src": "414:1:0",
"typeDescriptions": {
"typeIdentifier": "t_rational_5_by_1",
"typeString": "int_const 5"
},
"value": "5"
},
"src": "406:9:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"id": 17,
"nodeType": "ExpressionStatement",
"src": "406:9:0"
}
]
},
"functionSelector": "b60d4288",
"id": 19,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "fund",
"nameLocation": "189:4:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 4,
"nodeType": "ParameterList",
"parameters": [],
"src": "194:2:0"
},
"returnParameters": {
"id": 5,
"nodeType": "ParameterList",
"parameters": [],
"src": "212:0:0"
},
"scope": 20,
"src": "180:335:0",
"stateMutability": "payable",
"virtual": false,
"visibility": "public"
}
],
"scope": 21,
"src": "139:408:0",
"usedErrors": []
}
],
"src": "114:433:0"
},
"id": 0
}
}
}
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "6080604052603260005534801561001557600080fd5b50610196806100256000396000f3fe6080604052600436106100295760003560e01c806351b80e411461002e578063b60d428814610059575b600080fd5b34801561003a57600080fd5b50610043610063565b6040516100509190610101565b60405180910390f35b610061610069565b005b60005481565b60005434116100ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016100a4906100e1565b60405180910390fd5b565b60006100bc60138361011c565b91506100c782610137565b602082019050919050565b6100db8161012d565b82525050565b600060208201905081810360008301526100fa816100af565b9050919050565b600060208201905061011660008301846100d2565b92915050565b600082825260208201905092915050565b6000819050919050565b7f4469646e27742073656e6420656e6f756768210000000000000000000000000060008201525056fea26469706673582212205ca3938c32a2408598b41816e843e0a7f2191d31738fb71a78f60c81c7a1782964736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x32 PUSH1 0x0 SSTORE CALLVALUE DUP1 ISZERO PUSH2 0x15 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x196 DUP1 PUSH2 0x25 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x29 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x51B80E41 EQ PUSH2 0x2E JUMPI DUP1 PUSH4 0xB60D4288 EQ PUSH2 0x59 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x43 PUSH2 0x63 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x50 SWAP2 SWAP1 PUSH2 0x101 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x61 PUSH2 0x69 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 SLOAD CALLVALUE GT PUSH2 0xAD JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA4 SWAP1 PUSH2 0xE1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBC PUSH1 0x13 DUP4 PUSH2 0x11C JUMP JUMPDEST SWAP2 POP PUSH2 0xC7 DUP3 PUSH2 0x137 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xDB DUP2 PUSH2 0x12D JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xFA DUP2 PUSH2 0xAF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x116 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xD2 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4469646E27742073656E6420656E6F7567682100000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x5C LOG3 SWAP4 DUP13 ORIGIN LOG2 BLOCKHASH DUP6 SWAP9 0xB4 XOR AND 0xE8 NUMBER 0xE0 0xA7 CALLCODE NOT SAR BALANCE PUSH20 0x8FB71A78F60C81C7A1782964736F6C6343000807 STOP CALLER ",
"sourceMap": "139:406:0:-:0;;;186:2;162:26;;139:406;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@fund_16": {
"entryPoint": 105,
"id": 16,
"parameterSlots": 0,
"returnSlots": 0
},
"@minUsd_4": {
"entryPoint": 99,
"id": 4,
"parameterSlots": 0,
"returnSlots": 0
},
"abi_encode_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5_to_t_string_memory_ptr_fromStack": {
"entryPoint": 175,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 210,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 225,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 257,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 284,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 301,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"store_literal_in_memory_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5": {
"entryPoint": 311,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:1586:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "153:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "163:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "229:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "234:2:1",
"type": "",
"value": "19"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "170:58:1"
},
"nodeType": "YulFunctionCall",
"src": "170:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "163:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "335:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5",
"nodeType": "YulIdentifier",
"src": "246:88:1"
},
"nodeType": "YulFunctionCall",
"src": "246:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "246:93:1"
},
{
"nodeType": "YulAssignment",
"src": "348:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "359:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "364:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "355:3:1"
},
"nodeType": "YulFunctionCall",
"src": "355:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "348:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "141:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "149:3:1",
"type": ""
}
],
"src": "7:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "444:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "461:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "484:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "466:17:1"
},
"nodeType": "YulFunctionCall",
"src": "466:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "454:6:1"
},
"nodeType": "YulFunctionCall",
"src": "454:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "454:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "432:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "439:3:1",
"type": ""
}
],
"src": "379:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "674:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "684:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "696:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "707:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "692:3:1"
},
"nodeType": "YulFunctionCall",
"src": "692:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "684:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "731:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "742:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "727:3:1"
},
"nodeType": "YulFunctionCall",
"src": "727:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "750:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "756:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "746:3:1"
},
"nodeType": "YulFunctionCall",
"src": "746:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "720:6:1"
},
"nodeType": "YulFunctionCall",
"src": "720:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "720:47:1"
},
{
"nodeType": "YulAssignment",
"src": "776:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "910:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "784:124:1"
},
"nodeType": "YulFunctionCall",
"src": "784:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "776:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "654:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "669:4:1",
"type": ""
}
],
"src": "503:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1026:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1036:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1048:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1059:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1044:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1044:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1036:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1116:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1129:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1140:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1125:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1125:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "1072:43:1"
},
"nodeType": "YulFunctionCall",
"src": "1072:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "1072:71:1"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "998:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1010:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1021:4:1",
"type": ""
}
],
"src": "928:222:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1252:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1269:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1274:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1262:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1262:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "1262:19:1"
},
{
"nodeType": "YulAssignment",
"src": "1290:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1309:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1314:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1305:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1305:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "1290:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1224:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1229:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "1240:11:1",
"type": ""
}
],
"src": "1156:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1376:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1386:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "1397:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1386:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1358:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1368:7:1",
"type": ""
}
],
"src": "1331:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1520:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1542:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1550:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1538:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1538:14:1"
},
{
"hexValue": "4469646e27742073656e6420656e6f75676821",
"kind": "string",
"nodeType": "YulLiteral",
"src": "1554:21:1",
"type": "",
"value": "Didn't send enough!"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1531:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1531:45:1"
},
"nodeType": "YulExpressionStatement",
"src": "1531:45:1"
}
]
},
"name": "store_literal_in_memory_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1512:6:1",
"type": ""
}
],
"src": "1414:169:1"
}
]
},
"contents": "{\n\n function abi_encode_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 19)\n store_literal_in_memory_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function store_literal_in_memory_e57fb47ed1cde63601adae5d9926eaa3dc656011717be82a7dcbd96957822db5(memPtr) {\n\n mstore(add(memPtr, 0), \"Didn't send enough!\")\n\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "6080604052600436106100295760003560e01c806351b80e411461002e578063b60d428814610059575b600080fd5b34801561003a57600080fd5b50610043610063565b6040516100509190610101565b60405180910390f35b610061610069565b005b60005481565b60005434116100ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016100a4906100e1565b60405180910390fd5b565b60006100bc60138361011c565b91506100c782610137565b602082019050919050565b6100db8161012d565b82525050565b600060208201905081810360008301526100fa816100af565b9050919050565b600060208201905061011660008301846100d2565b92915050565b600082825260208201905092915050565b6000819050919050565b7f4469646e27742073656e6420656e6f756768210000000000000000000000000060008201525056fea26469706673582212205ca3938c32a2408598b41816e843e0a7f2191d31738fb71a78f60c81c7a1782964736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x29 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x51B80E41 EQ PUSH2 0x2E JUMPI DUP1 PUSH4 0xB60D4288 EQ PUSH2 0x59 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x43 PUSH2 0x63 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x50 SWAP2 SWAP1 PUSH2 0x101 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x61 PUSH2 0x69 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x0 SLOAD CALLVALUE GT PUSH2 0xAD JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA4 SWAP1 PUSH2 0xE1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBC PUSH1 0x13 DUP4 PUSH2 0x11C JUMP JUMPDEST SWAP2 POP PUSH2 0xC7 DUP3 PUSH2 0x137 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xDB DUP2 PUSH2 0x12D JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xFA DUP2 PUSH2 0xAF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x116 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xD2 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4469646E27742073656E6420656E6F7567682100000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x5C LOG3 SWAP4 DUP13 ORIGIN LOG2 BLOCKHASH DUP6 SWAP9 0xB4 XOR AND 0xE8 NUMBER 0xE0 0xA7 CALLCODE NOT SAR BALANCE PUSH20 0x8FB71A78F60C81C7A1782964736F6C6343000807 STOP CALLER ",
"sourceMap": "139:406:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;162:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;195:318;;;:::i;:::-;;162:26;;;;:::o;195:318::-;367:6;;355:9;:18;347:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;195:318::o;7:366:1:-;149:3;170:67;234:2;229:3;170:67;:::i;:::-;163:74;;246:93;335:3;246:93;:::i;:::-;364:2;359:3;355:12;348:19;;7:366;;;:::o;379:118::-;466:24;484:5;466:24;:::i;:::-;461:3;454:37;379:118;;:::o;503:419::-;669:4;707:2;696:9;692:18;684:26;;756:9;750:4;746:20;742:1;731:9;727:17;720:47;784:131;910:4;784:131;:::i;:::-;776:139;;503:419;;;:::o;928:222::-;1021:4;1059:2;1048:9;1044:18;1036:26;;1072:71;1140:1;1129:9;1125:17;1116:6;1072:71;:::i;:::-;928:222;;;;:::o;1156:169::-;1240:11;1274:6;1269:3;1262:19;1314:4;1309:3;1305:14;1290:29;;1156:169;;;;:::o;1331:77::-;1368:7;1397:5;1386:16;;1331:77;;;:::o;1414:169::-;1554:21;1550:1;1542:6;1538:14;1531:45;1414:169;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "81200",
"executionCost": "22235",
"totalCost": "103435"
},
"external": {
"fund()": "2531",
"minUsd()": "2407"
}
},
"methodIdentifiers": {
"fund()": "b60d4288",
"minUsd()": "51b80e41"
}
},
"abi": [
{
"inputs": [],
"name": "fund",
"outputs": [],
"stateMutability": "payable",
"type": "function"
},
{
"inputs": [],
"name": "minUsd",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"name": "fund",
"outputs": [],
"stateMutability": "payable",
"type": "function"
},
{
"inputs": [],
"name": "minUsd",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/FundMe.sol": "FundMe"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/FundMe.sol": {
"keccak256": "0x5034c5e2261f7241e7eec67d2063732f26a90c2dd6543e2ecfeaf3a35fac8cb3",
"urls": [
"bzz-raw://4c9aa67bb4ce391458f9bb84f2ae58f43c7cebcea7d9d55c8392dc7beb68afd6",
"dweb:/ipfs/QmbAHSUxp8xGvoQ6QQAWAkf8q86Xi2gKunWRUvRAcZbu2s"
]
}
},
"version": 1
}
// SDPX-License-Identifier: MIT
// Get funds from users
// Withdraw funds
// Set a minimum funding value in USD
pragma solidity ^0.8.0;
contract FundMe {
uint256 public minUsd = 50;
function fund () public payable {
// Want to be able to set a minimum fund amount in USD
// 1. How to send ETH to this contract
require(msg.value > minUsd, "Didn't send enough!"); // 1 * 10 ** 18
// What's reverting
// undo any action before, and send remaining gas back!
}
// function withdraw(){}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment