Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mgrigajtis/d3d709bfa40711df91ef9b9e92bc7a17 to your computer and use it in GitHub Desktop.
Save mgrigajtis/d3d709bfa40711df91ef9b9e92bc7a17 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=builtin&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* The default value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless this function is
* overridden;
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address to, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_transfer(owner, to, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_approve(owner, spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function transferFrom(
address from,
address to,
uint256 amount
) public virtual override returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_transfer(from, to, amount);
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, allowance(owner, spender) + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
address owner = _msgSender();
uint256 currentAllowance = allowance(owner, spender);
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
function _transfer(
address from,
address to,
uint256 amount
) internal virtual {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(from, to, amount);
uint256 fromBalance = _balances[from];
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[from] = fromBalance - amount;
// Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
// decrementing then incrementing.
_balances[to] += amount;
}
emit Transfer(from, to, amount);
_afterTokenTransfer(from, to, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
unchecked {
// Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
_balances[account] += amount;
}
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
// Overflow not possible: amount <= accountBalance <= totalSupply.
_totalSupply -= amount;
}
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(
address owner,
address spender,
uint256 amount
) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Updates `owner` s allowance for `spender` based on spent `amount`.
*
* Does not update the allowance amount in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Might emit an {Approval} event.
*/
function _spendAllowance(
address owner,
address spender,
uint256 amount
) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(currentAllowance >= amount, "ERC20: insufficient allowance");
unchecked {
_approve(owner, spender, currentAllowance - amount);
}
}
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 amount
) external returns (bool);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
[core]
repositoryformatversion = 0
filemode = false
bare = false
logallrefupdates = true
symlinks = false
ignorecase = true
ref: refs/heads/main
DIRCc���,*�@c���,*�@������o#q{K���Sc��X�W�n.prettierrc.jsonc���)׫�c���)׫����܋,�G�����0I "�{�contracts/MyToken.solc���*B{@c���*B{@������0����~�]nY��}��scripts/deploy_with_ethers.tsc���*�Kc���*�K���޲+�F�^-�M����$���%scripts/deploy_with_web3.tsc���+']c���+']�����uۚCl�j��{�f� X�.Bscripts/ethers-lib.tsc���+�oc���+�o���O���:���V�)��?�(GY�scripts/web3-lib.tsl�v�,.�����cI����GS
x�+)JMU0�d040031Q� ��N��+��a��-�s�]�W{G�mO�/�sdE�
x�+)JMU047c040031QHI-�ɯ�/�,ɈO-�H-*�+)fXv����g��m���ܻ��� �I� 围'�-�����}��7*O�\S�*������R����,眓Y�NU��O���H� �dL������t�[�y�� Iw��`NJ�
x�+)JMU044a040031Q�+(J-)�L-*J��*��cش4_���{v?���#����31��������b��[�u�a�6�ԴO��秏DMqrQfPE�=�?�){w1����h����W�1a
x�]�A
�0E]�!4�Ѕ Ao�ΝM۱-���D$���J�B�b>�ޔ�K��~��#� 5��=�{�َ\K�nuW�I"��C!q<aJ0��O*��!��G���\t���/��!��z�?k�47�Pu=�����H�؄b!*����ۯ��~�W E`�A
���F-
x�]�A
�0D]����F�;Ao�ΝM�X�iS�H %w�Ҹ�Y}���(���X5m �魋H���Ѩ��6�¤���8�0� C��'�u>`0�e���lB62z��4��z�?��FXW�RV� ���"�I�B$h���ٯÈv����I��7~�D�
x����
�0 �=�)F�2ă��-D��xh�L��)m&�ػ�6�1�9%��|��"�m�E�M1|��2����?�U���
�<��+��%� I�m>\�R�Y�to�t���E�oF������^p�`�pR�J$������hx��8��~������N񯌇���=ꐶ������5��/�̢�
x�mTMo�0 �ٿ��v��nQ�0��m�i ���0 ��8�l)��A��>J��;D@[�{|�He�������Qo�����KXiUC���0����MI�1����d� �V� 6V(i�����v���a$����w�TjvMP��0�8� j�ao��lG�=��=��CX�g���Z����ԥ�J� c�&�J���ɒ6�B�D0�U#-4�
�p�>>���s�S�l�t %��D-��4�FK���j{�L;�? ������]���dѴ)tBg>�)ϼ���_����* ]�Jn���A�����8�����}3�E��TEq��h٩�H�q?U�.;�$�{e�dk��v&�bc��
�7�_�`����$i�\�a�Q����Z�������L��IO0Ka�0���`����v͹/3���t2p�dtI�K3~6J.���-2�ϧ�����P�[4��5α��p�
(�$� ,����p�^��ɔ��H���Ӊy�b��{c�2�M�х�xG�`��1f�(��������K�uD��p�c:�%��lg)W�*{&�WFg��&�"�����wZX� ���Q�4�c�3v�:��*����m����?��<+��\v��:wk���)>" V��+h���ζ
x��R�o�0�9�)O����`�/?*(L�H<Q9�eX8�u��Z��'M�t b�!�����+����t��1�|��������j/K�t��2��o*�(YH��o��W��$��5�!�4��E%5F{�»q�7� �B������������!9�������G��h� ��k��:8����t:.:�>���4K�vÂ�ʱ��^r%�=�d_�Ͳ6
��#`�w�F��`�� N�����t)��0۽�8�v��1Wʬ!*t�������}t��gUȦu�ɍNfM�.i~e�����0��p!�!WR�YWͰ�4J[�� ���}ڲ�p{Sv���ޚ�Tk�Q�d�k��B��&�E�=�-f� 迡�P�$��~ċ�� o21pv�xe���s7�uQ n�ʱ4���K�ڕH]˒L��,���w����;���k�����H$ l�.X�ɠ����1���dz�
x���A� @Qלb.`��b�q�1:m118F��M4�n���T���5a#�|�S0}�蝍S;�����0 ��uh �e)x�yƳ��Ez4�t��ڤ�0���t�t��Nk�>g� u�dɸ��A%�O��BP^T��� �JT
x�]SMo�0 �ٿ����@ƺÀ���u(�K ����m�QgK��4 ���Q�G��`D���#�7:�O�_.?ȶ����m�X8Bet q��(����~R��=�-��Z9����;4���:#U}��V�(��UH�i(�<���_���Mm����TNc�mᴉ!�cv��ն��p^Q�r����2��0ς�;m���!�5
w�����fJ���_��׀v�
H溗л�R�p�8#�m *pO��� ����|1r�������}qݐht��{\>����4g��#�.�����ET�pq��vYl@Z�I�ADz'�
�v�A'�b-NV\A�ؿ�/Cnͬ��ҧx�U9�X�G��w�xB�a;׹�;K&1m6�d���V���r�AU{�L��JYUd���1l4���%:�R��W�g�R�;� ��]�4I\��ߨ�&/ ����M�8'�NF�;�?s�d��������H�އ���D���xYY�9�*Q�6Rt�f�ɼT�
�����p�s՞�6~\g������h��\.&�D��{G�.I��߳"��R?�����D��!���m{ٜO����}{r_aG�n= �8ـ ��T�$��F1�'}s���V��[��S
e1648c3f81974e8691282e6f04f5ba1b25abfddd
{
"overrides": [
{
"files": "*.sol",
"options": {
"printWidth": 80,
"tabWidth": 4,
"useTabs": false,
"singleQuote": false,
"bracketSpacing": false
}
},
{
"files": "*.yml",
"options": {}
},
{
"files": "*.yaml",
"options": {}
},
{
"files": "*.toml",
"options": {}
},
{
"files": "*.json",
"options": {}
},
{
"files": "*.js",
"options": {}
},
{
"files": "*.ts",
"options": {}
}
]
}
{
"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": {
"@_44": {
"entryPoint": null,
"id": 44,
"parameterSlots": 2,
"returnSlots": 0
},
"@_748": {
"entryPoint": null,
"id": 748,
"parameterSlots": 3,
"returnSlots": 0
},
"abi_decode_t_address_fromMemory": {
"entryPoint": 488,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_addresst_address_fromMemory": {
"entryPoint": 511,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_dataslot_t_string_storage": {
"entryPoint": 761,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 603,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"clean_up_bytearray_end_slots_t_string_storage": {
"entryPoint": 1082,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"cleanup_t_address": {
"entryPoint": 442,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 410,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 897,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"clear_storage_range_t_bytes1": {
"entryPoint": 1043,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"convert_t_uint256_to_t_uint256": {
"entryPoint": 917,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage": {
"entryPoint": 1237,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"divide_by_32_ceil": {
"entryPoint": 782,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 708,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_used_part_and_set_length_of_short_byte_array": {
"entryPoint": 1207,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"identity": {
"entryPoint": 907,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mask_bytes_dynamic": {
"entryPoint": 1175,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x22": {
"entryPoint": 661,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 614,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"prepare_store_t_uint256": {
"entryPoint": 957,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 405,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"shift_left_dynamic": {
"entryPoint": 798,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"shift_right_unsigned_dynamic": {
"entryPoint": 1162,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"storage_set_to_zero_t_uint256": {
"entryPoint": 1015,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"update_byte_slice_dynamic32": {
"entryPoint": 811,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"update_storage_value_t_uint256_to_t_uint256": {
"entryPoint": 967,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 462,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"zero_value_for_split_t_uint256": {
"entryPoint": 1010,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:6738:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "47:35:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "57:19:5",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "73:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "67:5:5"
},
"nodeType": "YulFunctionCall",
"src": "67:9:5"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "57:6:5"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40:6:5",
"type": ""
}
],
"src": "7:75:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "177:28:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "194:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "197:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "187:6:5"
},
"nodeType": "YulFunctionCall",
"src": "187:12:5"
},
"nodeType": "YulExpressionStatement",
"src": "187:12:5"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "88:117:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "300:28:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "317:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "320:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "310:6:5"
},
"nodeType": "YulFunctionCall",
"src": "310:12:5"
},
"nodeType": "YulExpressionStatement",
"src": "310:12:5"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "211:117:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "379:81:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "389:65:5",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "404:5:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "411:42:5",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "400:3:5"
},
"nodeType": "YulFunctionCall",
"src": "400:54:5"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "389:7:5"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "361:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "371:7:5",
"type": ""
}
],
"src": "334:126:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "511:51:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "521:35:5",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "550:5:5"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "532:17:5"
},
"nodeType": "YulFunctionCall",
"src": "532:24:5"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "521:7:5"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "493:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "503:7:5",
"type": ""
}
],
"src": "466:96:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "611:79:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "668:16:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "677:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "680:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "670:6:5"
},
"nodeType": "YulFunctionCall",
"src": "670:12:5"
},
"nodeType": "YulExpressionStatement",
"src": "670:12:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "634:5:5"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "659:5:5"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "641:17:5"
},
"nodeType": "YulFunctionCall",
"src": "641:24:5"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "631:2:5"
},
"nodeType": "YulFunctionCall",
"src": "631:35:5"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "624:6:5"
},
"nodeType": "YulFunctionCall",
"src": "624:43:5"
},
"nodeType": "YulIf",
"src": "621:63:5"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "604:5:5",
"type": ""
}
],
"src": "568:122:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "759:80:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "769:22:5",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "784:6:5"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "778:5:5"
},
"nodeType": "YulFunctionCall",
"src": "778:13:5"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "769:5:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "827:5:5"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "800:26:5"
},
"nodeType": "YulFunctionCall",
"src": "800:33:5"
},
"nodeType": "YulExpressionStatement",
"src": "800:33:5"
}
]
},
"name": "abi_decode_t_address_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "737:6:5",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "745:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "753:5:5",
"type": ""
}
],
"src": "696:143:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "956:552:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1002:83:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1004:77:5"
},
"nodeType": "YulFunctionCall",
"src": "1004:79:5"
},
"nodeType": "YulExpressionStatement",
"src": "1004:79:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "977:7:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "986:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "973:3:5"
},
"nodeType": "YulFunctionCall",
"src": "973:23:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "998:2:5",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "969:3:5"
},
"nodeType": "YulFunctionCall",
"src": "969:32:5"
},
"nodeType": "YulIf",
"src": "966:119:5"
},
{
"nodeType": "YulBlock",
"src": "1095:128:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1110:15:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1124:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1114:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1139:74:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1185:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1196:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1181:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1181:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1205:7:5"
}
],
"functionName": {
"name": "abi_decode_t_address_fromMemory",
"nodeType": "YulIdentifier",
"src": "1149:31:5"
},
"nodeType": "YulFunctionCall",
"src": "1149:64:5"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1139:6:5"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1233:129:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1248:16:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1262:2:5",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1252:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1278:74:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1324:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1335:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1320:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1320:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1344:7:5"
}
],
"functionName": {
"name": "abi_decode_t_address_fromMemory",
"nodeType": "YulIdentifier",
"src": "1288:31:5"
},
"nodeType": "YulFunctionCall",
"src": "1288:64:5"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1278:6:5"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1372:129:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1387:16:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1401:2:5",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1391:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1417:74:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1463:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1474:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1459:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1459:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1483:7:5"
}
],
"functionName": {
"name": "abi_decode_t_address_fromMemory",
"nodeType": "YulIdentifier",
"src": "1427:31:5"
},
"nodeType": "YulFunctionCall",
"src": "1427:64:5"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "1417:6:5"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_address_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "910:9:5",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "921:7:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "933:6:5",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "941:6:5",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "949:6:5",
"type": ""
}
],
"src": "845:663:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1573:40:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1584:22:5",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1600:5:5"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1594:5:5"
},
"nodeType": "YulFunctionCall",
"src": "1594:12:5"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1584:6:5"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1556:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1566:6:5",
"type": ""
}
],
"src": "1514:99:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1647:152:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1664:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1667:77:5",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1657:6:5"
},
"nodeType": "YulFunctionCall",
"src": "1657:88:5"
},
"nodeType": "YulExpressionStatement",
"src": "1657:88:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1761:1:5",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1764:4:5",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1754:6:5"
},
"nodeType": "YulFunctionCall",
"src": "1754:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "1754:15:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1785:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1788:4:5",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1778:6:5"
},
"nodeType": "YulFunctionCall",
"src": "1778:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "1778:15:5"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "1619:180:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1833:152:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1850:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1853:77:5",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1843:6:5"
},
"nodeType": "YulFunctionCall",
"src": "1843:88:5"
},
"nodeType": "YulExpressionStatement",
"src": "1843:88:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1947:1:5",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1950:4:5",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1940:6:5"
},
"nodeType": "YulFunctionCall",
"src": "1940:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "1940:15:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1971:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1974:4:5",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1964:6:5"
},
"nodeType": "YulFunctionCall",
"src": "1964:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "1964:15:5"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "1805:180:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2042:269:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2052:22:5",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "2066:4:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2072:1:5",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "2062:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2062:12:5"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2052:6:5"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "2083:38:5",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "2113:4:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2119:1:5",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2109:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2109:12:5"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "2087:18:5",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2160:51:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2174:27:5",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2188:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2196:4:5",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2184:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2184:17:5"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2174:6:5"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "2140:18:5"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2133:6:5"
},
"nodeType": "YulFunctionCall",
"src": "2133:26:5"
},
"nodeType": "YulIf",
"src": "2130:81:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2263:42:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "2277:16:5"
},
"nodeType": "YulFunctionCall",
"src": "2277:18:5"
},
"nodeType": "YulExpressionStatement",
"src": "2277:18:5"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "2227:18:5"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2250:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2258:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "2247:2:5"
},
"nodeType": "YulFunctionCall",
"src": "2247:14:5"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "2224:2:5"
},
"nodeType": "YulFunctionCall",
"src": "2224:38:5"
},
"nodeType": "YulIf",
"src": "2221:84:5"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "2026:4:5",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2035:6:5",
"type": ""
}
],
"src": "1991:320:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2371:87:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2381:11:5",
"value": {
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "2389:3:5"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "2381:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2409:1:5",
"type": "",
"value": "0"
},
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "2412:3:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2402:6:5"
},
"nodeType": "YulFunctionCall",
"src": "2402:14:5"
},
"nodeType": "YulExpressionStatement",
"src": "2402:14:5"
},
{
"nodeType": "YulAssignment",
"src": "2425:26:5",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2443:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2446:4:5",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "keccak256",
"nodeType": "YulIdentifier",
"src": "2433:9:5"
},
"nodeType": "YulFunctionCall",
"src": "2433:18:5"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "2425:4:5"
}
]
}
]
},
"name": "array_dataslot_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "2358:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "2366:4:5",
"type": ""
}
],
"src": "2317:141:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2508:49:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2518:33:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2536:5:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2543:2:5",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2532:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2532:14:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2548:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "2528:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2528:23:5"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "2518:6:5"
}
]
}
]
},
"name": "divide_by_32_ceil",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2491:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "2501:6:5",
"type": ""
}
],
"src": "2464:93:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2616:54:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2626:37:5",
"value": {
"arguments": [
{
"name": "bits",
"nodeType": "YulIdentifier",
"src": "2651:4:5"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2657:5:5"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "2647:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2647:16:5"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "2626:8:5"
}
]
}
]
},
"name": "shift_left_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nodeType": "YulTypedName",
"src": "2591:4:5",
"type": ""
},
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2597:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "2607:8:5",
"type": ""
}
],
"src": "2563:107:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2752:317:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2762:35:5",
"value": {
"arguments": [
{
"name": "shiftBytes",
"nodeType": "YulIdentifier",
"src": "2783:10:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2795:1:5",
"type": "",
"value": "8"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "2779:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2779:18:5"
},
"variables": [
{
"name": "shiftBits",
"nodeType": "YulTypedName",
"src": "2766:9:5",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "2806:109:5",
"value": {
"arguments": [
{
"name": "shiftBits",
"nodeType": "YulIdentifier",
"src": "2837:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2848:66:5",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nodeType": "YulIdentifier",
"src": "2818:18:5"
},
"nodeType": "YulFunctionCall",
"src": "2818:97:5"
},
"variables": [
{
"name": "mask",
"nodeType": "YulTypedName",
"src": "2810:4:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2924:51:5",
"value": {
"arguments": [
{
"name": "shiftBits",
"nodeType": "YulIdentifier",
"src": "2955:9:5"
},
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "2966:8:5"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nodeType": "YulIdentifier",
"src": "2936:18:5"
},
"nodeType": "YulFunctionCall",
"src": "2936:39:5"
},
"variableNames": [
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "2924:8:5"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2984:30:5",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2997:5:5"
},
{
"arguments": [
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "3008:4:5"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "3004:3:5"
},
"nodeType": "YulFunctionCall",
"src": "3004:9:5"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2993:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2993:21:5"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2984:5:5"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3023:40:5",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3036:5:5"
},
{
"arguments": [
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "3047:8:5"
},
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "3057:4:5"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3043:3:5"
},
"nodeType": "YulFunctionCall",
"src": "3043:19:5"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "3033:2:5"
},
"nodeType": "YulFunctionCall",
"src": "3033:30:5"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "3023:6:5"
}
]
}
]
},
"name": "update_byte_slice_dynamic32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2713:5:5",
"type": ""
},
{
"name": "shiftBytes",
"nodeType": "YulTypedName",
"src": "2720:10:5",
"type": ""
},
{
"name": "toInsert",
"nodeType": "YulTypedName",
"src": "2732:8:5",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "2745:6:5",
"type": ""
}
],
"src": "2676:393:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3120:32:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3130:16:5",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "3141:5:5"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "3130:7:5"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3102:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "3112:7:5",
"type": ""
}
],
"src": "3075:77:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3190:28:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3200:12:5",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "3207:5:5"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "3200:3:5"
}
]
}
]
},
"name": "identity",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3176:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "3186:3:5",
"type": ""
}
],
"src": "3158:60:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3284:82:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3294:66:5",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3352:5:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3334:17:5"
},
"nodeType": "YulFunctionCall",
"src": "3334:24:5"
}
],
"functionName": {
"name": "identity",
"nodeType": "YulIdentifier",
"src": "3325:8:5"
},
"nodeType": "YulFunctionCall",
"src": "3325:34:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3307:17:5"
},
"nodeType": "YulFunctionCall",
"src": "3307:53:5"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "3294:9:5"
}
]
}
]
},
"name": "convert_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3264:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "3274:9:5",
"type": ""
}
],
"src": "3224:142:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3419:28:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3429:12:5",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "3436:5:5"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "3429:3:5"
}
]
}
]
},
"name": "prepare_store_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3405:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "3415:3:5",
"type": ""
}
],
"src": "3372:75:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3529:193:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3539:63:5",
"value": {
"arguments": [
{
"name": "value_0",
"nodeType": "YulIdentifier",
"src": "3594:7:5"
}
],
"functionName": {
"name": "convert_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "3563:30:5"
},
"nodeType": "YulFunctionCall",
"src": "3563:39:5"
},
"variables": [
{
"name": "convertedValue_0",
"nodeType": "YulTypedName",
"src": "3543:16:5",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "3618:4:5"
},
{
"arguments": [
{
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "3658:4:5"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "3652:5:5"
},
"nodeType": "YulFunctionCall",
"src": "3652:11:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3665:6:5"
},
{
"arguments": [
{
"name": "convertedValue_0",
"nodeType": "YulIdentifier",
"src": "3697:16:5"
}
],
"functionName": {
"name": "prepare_store_t_uint256",
"nodeType": "YulIdentifier",
"src": "3673:23:5"
},
"nodeType": "YulFunctionCall",
"src": "3673:41:5"
}
],
"functionName": {
"name": "update_byte_slice_dynamic32",
"nodeType": "YulIdentifier",
"src": "3624:27:5"
},
"nodeType": "YulFunctionCall",
"src": "3624:91:5"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "3611:6:5"
},
"nodeType": "YulFunctionCall",
"src": "3611:105:5"
},
"nodeType": "YulExpressionStatement",
"src": "3611:105:5"
}
]
},
"name": "update_storage_value_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "3506:4:5",
"type": ""
},
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3512:6:5",
"type": ""
},
{
"name": "value_0",
"nodeType": "YulTypedName",
"src": "3520:7:5",
"type": ""
}
],
"src": "3453:269:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3777:24:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3787:8:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3794:1:5",
"type": "",
"value": "0"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "3787:3:5"
}
]
}
]
},
"name": "zero_value_for_split_t_uint256",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "3773:3:5",
"type": ""
}
],
"src": "3728:73:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3860:136:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3870:46:5",
"value": {
"arguments": [],
"functionName": {
"name": "zero_value_for_split_t_uint256",
"nodeType": "YulIdentifier",
"src": "3884:30:5"
},
"nodeType": "YulFunctionCall",
"src": "3884:32:5"
},
"variables": [
{
"name": "zero_0",
"nodeType": "YulTypedName",
"src": "3874:6:5",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "3969:4:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3975:6:5"
},
{
"name": "zero_0",
"nodeType": "YulIdentifier",
"src": "3983:6:5"
}
],
"functionName": {
"name": "update_storage_value_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "3925:43:5"
},
"nodeType": "YulFunctionCall",
"src": "3925:65:5"
},
"nodeType": "YulExpressionStatement",
"src": "3925:65:5"
}
]
},
"name": "storage_set_to_zero_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "3846:4:5",
"type": ""
},
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3852:6:5",
"type": ""
}
],
"src": "3807:189:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4052:136:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4119:63:5",
"statements": [
{
"expression": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "4163:5:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4170:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "storage_set_to_zero_t_uint256",
"nodeType": "YulIdentifier",
"src": "4133:29:5"
},
"nodeType": "YulFunctionCall",
"src": "4133:39:5"
},
"nodeType": "YulExpressionStatement",
"src": "4133:39:5"
}
]
},
"condition": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "4072:5:5"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4079:3:5"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4069:2:5"
},
"nodeType": "YulFunctionCall",
"src": "4069:14:5"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "4084:26:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4086:22:5",
"value": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "4099:5:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4106:1:5",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4095:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4095:13:5"
},
"variableNames": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "4086:5:5"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "4066:2:5",
"statements": []
},
"src": "4062:120:5"
}
]
},
"name": "clear_storage_range_t_bytes1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "start",
"nodeType": "YulTypedName",
"src": "4040:5:5",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4047:3:5",
"type": ""
}
],
"src": "4002:186:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4273:464:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4299:431:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4313:54:5",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "4361:5:5"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nodeType": "YulIdentifier",
"src": "4329:31:5"
},
"nodeType": "YulFunctionCall",
"src": "4329:38:5"
},
"variables": [
{
"name": "dataArea",
"nodeType": "YulTypedName",
"src": "4317:8:5",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "4380:63:5",
"value": {
"arguments": [
{
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "4403:8:5"
},
{
"arguments": [
{
"name": "startIndex",
"nodeType": "YulIdentifier",
"src": "4431:10:5"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nodeType": "YulIdentifier",
"src": "4413:17:5"
},
"nodeType": "YulFunctionCall",
"src": "4413:29:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4399:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4399:44:5"
},
"variables": [
{
"name": "deleteStart",
"nodeType": "YulTypedName",
"src": "4384:11:5",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4600:27:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4602:23:5",
"value": {
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "4617:8:5"
},
"variableNames": [
{
"name": "deleteStart",
"nodeType": "YulIdentifier",
"src": "4602:11:5"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "startIndex",
"nodeType": "YulIdentifier",
"src": "4584:10:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4596:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4581:2:5"
},
"nodeType": "YulFunctionCall",
"src": "4581:18:5"
},
"nodeType": "YulIf",
"src": "4578:49:5"
},
{
"expression": {
"arguments": [
{
"name": "deleteStart",
"nodeType": "YulIdentifier",
"src": "4669:11:5"
},
{
"arguments": [
{
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "4686:8:5"
},
{
"arguments": [
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "4714:3:5"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nodeType": "YulIdentifier",
"src": "4696:17:5"
},
"nodeType": "YulFunctionCall",
"src": "4696:22:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4682:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4682:37:5"
}
],
"functionName": {
"name": "clear_storage_range_t_bytes1",
"nodeType": "YulIdentifier",
"src": "4640:28:5"
},
"nodeType": "YulFunctionCall",
"src": "4640:80:5"
},
"nodeType": "YulExpressionStatement",
"src": "4640:80:5"
}
]
},
"condition": {
"arguments": [
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "4290:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4295:2:5",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4287:2:5"
},
"nodeType": "YulFunctionCall",
"src": "4287:11:5"
},
"nodeType": "YulIf",
"src": "4284:446:5"
}
]
},
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "4249:5:5",
"type": ""
},
{
"name": "len",
"nodeType": "YulTypedName",
"src": "4256:3:5",
"type": ""
},
{
"name": "startIndex",
"nodeType": "YulTypedName",
"src": "4261:10:5",
"type": ""
}
],
"src": "4194:543:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4806:54:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4816:37:5",
"value": {
"arguments": [
{
"name": "bits",
"nodeType": "YulIdentifier",
"src": "4841:4:5"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4847:5:5"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "4837:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4837:16:5"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "4816:8:5"
}
]
}
]
},
"name": "shift_right_unsigned_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nodeType": "YulTypedName",
"src": "4781:4:5",
"type": ""
},
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4787:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "4797:8:5",
"type": ""
}
],
"src": "4743:117:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4917:118:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4927:68:5",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4976:1:5",
"type": "",
"value": "8"
},
{
"name": "bytes",
"nodeType": "YulIdentifier",
"src": "4979:5:5"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "4972:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4972:13:5"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4991:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "4987:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4987:6:5"
}
],
"functionName": {
"name": "shift_right_unsigned_dynamic",
"nodeType": "YulIdentifier",
"src": "4943:28:5"
},
"nodeType": "YulFunctionCall",
"src": "4943:51:5"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "4939:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4939:56:5"
},
"variables": [
{
"name": "mask",
"nodeType": "YulTypedName",
"src": "4931:4:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5004:25:5",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "5018:4:5"
},
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "5024:4:5"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5014:3:5"
},
"nodeType": "YulFunctionCall",
"src": "5014:15:5"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "5004:6:5"
}
]
}
]
},
"name": "mask_bytes_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "4894:4:5",
"type": ""
},
{
"name": "bytes",
"nodeType": "YulTypedName",
"src": "4900:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "4910:6:5",
"type": ""
}
],
"src": "4866:169:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5121:214:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5254:37:5",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "5281:4:5"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "5287:3:5"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nodeType": "YulIdentifier",
"src": "5262:18:5"
},
"nodeType": "YulFunctionCall",
"src": "5262:29:5"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "5254:4:5"
}
]
},
{
"nodeType": "YulAssignment",
"src": "5300:29:5",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "5311:4:5"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5321:1:5",
"type": "",
"value": "2"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "5324:3:5"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "5317:3:5"
},
"nodeType": "YulFunctionCall",
"src": "5317:11:5"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "5308:2:5"
},
"nodeType": "YulFunctionCall",
"src": "5308:21:5"
},
"variableNames": [
{
"name": "used",
"nodeType": "YulIdentifier",
"src": "5300:4:5"
}
]
}
]
},
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "5102:4:5",
"type": ""
},
{
"name": "len",
"nodeType": "YulTypedName",
"src": "5108:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "used",
"nodeType": "YulTypedName",
"src": "5116:4:5",
"type": ""
}
],
"src": "5040:295:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5432:1303:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5443:51:5",
"value": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "5490:3:5"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "5457:32:5"
},
"nodeType": "YulFunctionCall",
"src": "5457:37:5"
},
"variables": [
{
"name": "newLen",
"nodeType": "YulTypedName",
"src": "5447:6:5",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5579:22:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "5581:16:5"
},
"nodeType": "YulFunctionCall",
"src": "5581:18:5"
},
"nodeType": "YulExpressionStatement",
"src": "5581:18:5"
}
]
},
"condition": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "5551:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5559:18:5",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5548:2:5"
},
"nodeType": "YulFunctionCall",
"src": "5548:30:5"
},
"nodeType": "YulIf",
"src": "5545:56:5"
},
{
"nodeType": "YulVariableDeclaration",
"src": "5611:52:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "5657:4:5"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "5651:5:5"
},
"nodeType": "YulFunctionCall",
"src": "5651:11:5"
}
],
"functionName": {
"name": "extract_byte_array_length",
"nodeType": "YulIdentifier",
"src": "5625:25:5"
},
"nodeType": "YulFunctionCall",
"src": "5625:38:5"
},
"variables": [
{
"name": "oldLen",
"nodeType": "YulTypedName",
"src": "5615:6:5",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "5756:4:5"
},
{
"name": "oldLen",
"nodeType": "YulIdentifier",
"src": "5762:6:5"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "5770:6:5"
}
],
"functionName": {
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nodeType": "YulIdentifier",
"src": "5710:45:5"
},
"nodeType": "YulFunctionCall",
"src": "5710:67:5"
},
"nodeType": "YulExpressionStatement",
"src": "5710:67:5"
},
{
"nodeType": "YulVariableDeclaration",
"src": "5787:18:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5804:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "srcOffset",
"nodeType": "YulTypedName",
"src": "5791:9:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5815:17:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5828:4:5",
"type": "",
"value": "0x20"
},
"variableNames": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "5815:9:5"
}
]
},
{
"cases": [
{
"body": {
"nodeType": "YulBlock",
"src": "5879:611:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5893:37:5",
"value": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "5912:6:5"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5924:4:5",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "5920:3:5"
},
"nodeType": "YulFunctionCall",
"src": "5920:9:5"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5908:3:5"
},
"nodeType": "YulFunctionCall",
"src": "5908:22:5"
},
"variables": [
{
"name": "loopEnd",
"nodeType": "YulTypedName",
"src": "5897:7:5",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "5944:51:5",
"value": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "5990:4:5"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nodeType": "YulIdentifier",
"src": "5958:31:5"
},
"nodeType": "YulFunctionCall",
"src": "5958:37:5"
},
"variables": [
{
"name": "dstPtr",
"nodeType": "YulTypedName",
"src": "5948:6:5",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "6008:10:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6017:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "6012:1:5",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6076:163:5",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "6101:6:5"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "6119:3:5"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "6124:9:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6115:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6115:19:5"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "6109:5:5"
},
"nodeType": "YulFunctionCall",
"src": "6109:26:5"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "6094:6:5"
},
"nodeType": "YulFunctionCall",
"src": "6094:42:5"
},
"nodeType": "YulExpressionStatement",
"src": "6094:42:5"
},
{
"nodeType": "YulAssignment",
"src": "6153:24:5",
"value": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "6167:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6175:1:5",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6163:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6163:14:5"
},
"variableNames": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "6153:6:5"
}
]
},
{
"nodeType": "YulAssignment",
"src": "6194:31:5",
"value": {
"arguments": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "6211:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6222:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6207:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6207:18:5"
},
"variableNames": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "6194:9:5"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "6042:1:5"
},
{
"name": "loopEnd",
"nodeType": "YulIdentifier",
"src": "6045:7:5"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "6039:2:5"
},
"nodeType": "YulFunctionCall",
"src": "6039:14:5"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "6054:21:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6056:17:5",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "6065:1:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6068:4:5",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6061:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6061:12:5"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "6056:1:5"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "6035:3:5",
"statements": []
},
"src": "6031:208:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6275:156:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6293:43:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "6320:3:5"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "6325:9:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6316:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6316:19:5"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "6310:5:5"
},
"nodeType": "YulFunctionCall",
"src": "6310:26:5"
},
"variables": [
{
"name": "lastValue",
"nodeType": "YulTypedName",
"src": "6297:9:5",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "6360:6:5"
},
{
"arguments": [
{
"name": "lastValue",
"nodeType": "YulIdentifier",
"src": "6387:9:5"
},
{
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "6402:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6410:4:5",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6398:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6398:17:5"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nodeType": "YulIdentifier",
"src": "6368:18:5"
},
"nodeType": "YulFunctionCall",
"src": "6368:48:5"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "6353:6:5"
},
"nodeType": "YulFunctionCall",
"src": "6353:64:5"
},
"nodeType": "YulExpressionStatement",
"src": "6353:64:5"
}
]
},
"condition": {
"arguments": [
{
"name": "loopEnd",
"nodeType": "YulIdentifier",
"src": "6258:7:5"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "6267:6:5"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "6255:2:5"
},
"nodeType": "YulFunctionCall",
"src": "6255:19:5"
},
"nodeType": "YulIf",
"src": "6252:179:5"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "6451:4:5"
},
{
"arguments": [
{
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "6465:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6473:1:5",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "6461:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6461:14:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6477:1:5",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6457:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6457:22:5"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "6444:6:5"
},
"nodeType": "YulFunctionCall",
"src": "6444:36:5"
},
"nodeType": "YulExpressionStatement",
"src": "6444:36:5"
}
]
},
"nodeType": "YulCase",
"src": "5872:618:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5877:1:5",
"type": "",
"value": "1"
}
},
{
"body": {
"nodeType": "YulBlock",
"src": "6507:222:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6521:14:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6534:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6525:5:5",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6558:67:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6576:35:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "6595:3:5"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "6600:9:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6591:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6591:19:5"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "6585:5:5"
},
"nodeType": "YulFunctionCall",
"src": "6585:26:5"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6576:5:5"
}
]
}
]
},
"condition": {
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "6551:6:5"
},
"nodeType": "YulIf",
"src": "6548:77:5"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "6645:4:5"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6704:5:5"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "6711:6:5"
}
],
"functionName": {
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nodeType": "YulIdentifier",
"src": "6651:52:5"
},
"nodeType": "YulFunctionCall",
"src": "6651:67:5"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "6638:6:5"
},
"nodeType": "YulFunctionCall",
"src": "6638:81:5"
},
"nodeType": "YulExpressionStatement",
"src": "6638:81:5"
}
]
},
"nodeType": "YulCase",
"src": "6499:230:5",
"value": "default"
}
],
"expression": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "5852:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5860:2:5",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5849:2:5"
},
"nodeType": "YulFunctionCall",
"src": "5849:14:5"
},
"nodeType": "YulSwitch",
"src": "5842:887:5"
}
]
},
"name": "copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "5421:4:5",
"type": ""
},
{
"name": "src",
"nodeType": "YulTypedName",
"src": "5427:3:5",
"type": ""
}
],
"src": "5340:1395:5"
}
]
},
"contents": "{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_tuple_t_addresst_addresst_address_fromMemory(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_address_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function array_dataslot_t_string_storage(ptr) -> data {\n data := ptr\n\n mstore(0, ptr)\n data := keccak256(0, 0x20)\n\n }\n\n function divide_by_32_ceil(value) -> result {\n result := div(add(value, 31), 32)\n }\n\n function shift_left_dynamic(bits, value) -> newValue {\n newValue :=\n\n shl(bits, value)\n\n }\n\n function update_byte_slice_dynamic32(value, shiftBytes, toInsert) -> result {\n let shiftBits := mul(shiftBytes, 8)\n let mask := shift_left_dynamic(shiftBits, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n toInsert := shift_left_dynamic(shiftBits, toInsert)\n value := and(value, not(mask))\n result := or(value, and(toInsert, mask))\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function identity(value) -> ret {\n ret := value\n }\n\n function convert_t_uint256_to_t_uint256(value) -> converted {\n converted := cleanup_t_uint256(identity(cleanup_t_uint256(value)))\n }\n\n function prepare_store_t_uint256(value) -> ret {\n ret := value\n }\n\n function update_storage_value_t_uint256_to_t_uint256(slot, offset, value_0) {\n let convertedValue_0 := convert_t_uint256_to_t_uint256(value_0)\n sstore(slot, update_byte_slice_dynamic32(sload(slot), offset, prepare_store_t_uint256(convertedValue_0)))\n }\n\n function zero_value_for_split_t_uint256() -> ret {\n ret := 0\n }\n\n function storage_set_to_zero_t_uint256(slot, offset) {\n let zero_0 := zero_value_for_split_t_uint256()\n update_storage_value_t_uint256_to_t_uint256(slot, offset, zero_0)\n }\n\n function clear_storage_range_t_bytes1(start, end) {\n for {} lt(start, end) { start := add(start, 1) }\n {\n storage_set_to_zero_t_uint256(start, 0)\n }\n }\n\n function clean_up_bytearray_end_slots_t_string_storage(array, len, startIndex) {\n\n if gt(len, 31) {\n let dataArea := array_dataslot_t_string_storage(array)\n let deleteStart := add(dataArea, divide_by_32_ceil(startIndex))\n // If we are clearing array to be short byte array, we want to clear only data starting from array data area.\n if lt(startIndex, 32) { deleteStart := dataArea }\n clear_storage_range_t_bytes1(deleteStart, add(dataArea, divide_by_32_ceil(len)))\n }\n\n }\n\n function shift_right_unsigned_dynamic(bits, value) -> newValue {\n newValue :=\n\n shr(bits, value)\n\n }\n\n function mask_bytes_dynamic(data, bytes) -> result {\n let mask := not(shift_right_unsigned_dynamic(mul(8, bytes), not(0)))\n result := and(data, mask)\n }\n function extract_used_part_and_set_length_of_short_byte_array(data, len) -> used {\n // we want to save only elements that are part of the array after resizing\n // others should be set to zero\n data := mask_bytes_dynamic(data, len)\n used := or(data, mul(2, len))\n }\n function copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage(slot, src) {\n\n let newLen := array_length_t_string_memory_ptr(src)\n // Make sure array length is sane\n if gt(newLen, 0xffffffffffffffff) { panic_error_0x41() }\n\n let oldLen := extract_byte_array_length(sload(slot))\n\n // potentially truncate data\n clean_up_bytearray_end_slots_t_string_storage(slot, oldLen, newLen)\n\n let srcOffset := 0\n\n srcOffset := 0x20\n\n switch gt(newLen, 31)\n case 1 {\n let loopEnd := and(newLen, not(0x1f))\n\n let dstPtr := array_dataslot_t_string_storage(slot)\n let i := 0\n for { } lt(i, loopEnd) { i := add(i, 0x20) } {\n sstore(dstPtr, mload(add(src, srcOffset)))\n dstPtr := add(dstPtr, 1)\n srcOffset := add(srcOffset, 32)\n }\n if lt(loopEnd, newLen) {\n let lastValue := mload(add(src, srcOffset))\n sstore(dstPtr, mask_bytes_dynamic(lastValue, and(newLen, 0x1f)))\n }\n sstore(slot, add(mul(newLen, 2), 1))\n }\n default {\n let value := 0\n if newLen {\n value := mload(add(src, srcOffset))\n }\n sstore(slot, extract_used_part_and_set_length_of_short_byte_array(value, newLen))\n }\n }\n\n}\n",
"id": 5,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b5060405162001e2138038062001e218339818101604052810190620000379190620001ff565b6040518060400160405280600581526020017f417572756d0000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f41555200000000000000000000000000000000000000000000000000000000008152508160039081620000b49190620004d5565b508060049081620000c69190620004d5565b50505082600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050620005bc565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620001c7826200019a565b9050919050565b620001d981620001ba565b8114620001e557600080fd5b50565b600081519050620001f981620001ce565b92915050565b6000806000606084860312156200021b576200021a62000195565b5b60006200022b86828701620001e8565b93505060206200023e86828701620001e8565b92505060406200025186828701620001e8565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002dd57607f821691505b602082108103620002f357620002f262000295565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200035d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200031e565b6200036986836200031e565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003b6620003b0620003aa8462000381565b6200038b565b62000381565b9050919050565b6000819050919050565b620003d28362000395565b620003ea620003e182620003bd565b8484546200032b565b825550505050565b600090565b62000401620003f2565b6200040e818484620003c7565b505050565b5b8181101562000436576200042a600082620003f7565b60018101905062000414565b5050565b601f82111562000485576200044f81620002f9565b6200045a846200030e565b810160208510156200046a578190505b6200048262000479856200030e565b83018262000413565b50505b505050565b600082821c905092915050565b6000620004aa600019846008026200048a565b1980831691505092915050565b6000620004c5838362000497565b9150826002028217905092915050565b620004e0826200025b565b67ffffffffffffffff811115620004fc57620004fb62000266565b5b620005088254620002c4565b620005158282856200043a565b600060209050601f8311600181146200054d576000841562000538578287015190505b620005448582620004b7565b865550620005b4565b601f1984166200055d86620002f9565b60005b82811015620005875784890151825560018201915060208501945060208101905062000560565b86831015620005a75784890151620005a3601f89168262000497565b8355505b6001600288020188555050505b505050505050565b61185580620005cc6000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806370a082311161008c578063a457c2d711610066578063a457c2d714610263578063a9059cbb14610293578063d4698016146102c3578063dd62ed3e146102e1576100ea565b806370a08231146101f757806375f0a8741461022757806395d89b4114610245576100ea565b8063185870f9116100c8578063185870f91461015b57806323b872dd14610179578063313ce567146101a957806339509351146101c7576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f7610311565b6040516101049190610ef7565b60405180910390f35b61012760048036038101906101229190610fb2565b6103a3565b604051610134919061100d565b60405180910390f35b6101456103c6565b6040516101529190611037565b60405180910390f35b6101636103d0565b6040516101709190611061565b60405180910390f35b610193600480360381019061018e919061107c565b6103f6565b6040516101a0919061100d565b60405180910390f35b6101b1610425565b6040516101be91906110eb565b60405180910390f35b6101e160048036038101906101dc9190610fb2565b61042e565b6040516101ee919061100d565b60405180910390f35b610211600480360381019061020c9190611106565b610465565b60405161021e9190611037565b60405180910390f35b61022f6104ad565b60405161023c9190611061565b60405180910390f35b61024d6104d3565b60405161025a9190610ef7565b60405180910390f35b61027d60048036038101906102789190610fb2565b610565565b60405161028a919061100d565b60405180910390f35b6102ad60048036038101906102a89190610fb2565b6105dc565b6040516102ba919061100d565b60405180910390f35b6102cb610721565b6040516102d89190611061565b60405180910390f35b6102fb60048036038101906102f69190611133565b610747565b6040516103089190611037565b60405180910390f35b606060038054610320906111a2565b80601f016020809104026020016040519081016040528092919081815260200182805461034c906111a2565b80156103995780601f1061036e57610100808354040283529160200191610399565b820191906000526020600020905b81548152906001019060200180831161037c57829003601f168201915b5050505050905090565b6000806103ae6107ce565b90506103bb8185856107d6565b600191505092915050565b6000600254905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806104016107ce565b905061040e85828561099f565b610419858585610a2b565b60019150509392505050565b60006012905090565b6000806104396107ce565b905061045a81858561044b8589610747565b6104559190611202565b6107d6565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600480546104e2906111a2565b80601f016020809104026020016040519081016040528092919081815260200182805461050e906111a2565b801561055b5780601f106105305761010080835404028352916020019161055b565b820191906000526020600020905b81548152906001019060200180831161053e57829003601f168201915b5050505050905090565b6000806105706107ce565b9050600061057e8286610747565b9050838110156105c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ba906112a8565b60405180910390fd5b6105d082868684036107d6565b60019250505092915050565b600080600a836105ec91906112f7565b9050600081846105fc9190611328565b905061063e6106096107ce565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600285610639919061135c565b610a2b565b61067e6106496107ce565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600285610679919061135c565b610a2b565b6106be6106896107ce565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166005856106b9919061135c565b610a2b565b60006106ca6000610465565b6106d26103c6565b6106dc9190611328565b9050600081111561070257600081846106f591906112f7565b905061070081610ca1565b505b61071461070d6107ce565b8784610a2b565b6001935050505092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083c90611410565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ab906114a2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109929190611037565b60405180910390a3505050565b60006109ab8484610747565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a255781811015610a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0e9061150e565b60405180910390fd5b610a2484848484036107d6565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a91906115a0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0090611632565b60405180910390fd5b610b14838383610e5d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b91906116c4565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c889190611037565b60405180910390a3610c9b848484610e62565b50505050565b6000610cab6103c6565b67ffffffffffffffff811115610cc457610cc36116e4565b5b604051908082528060200260200182016040528015610cf25781602001602082028036833780820191505090505b5090506000805b610d016103c6565b811015610df35760003082604051602001610d1d92919061177c565b6040516020818303038152906040528051906020012060001c9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015610d7d57506000610d7b82610465565b115b15610ddf5780848481518110610d9657610d956117a8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508280610ddb906117d7565b9350505b508080610deb906117d7565b915050610cf9565b5060005b81811015610e57576000838281518110610e1457610e136117a8565b5b60200260200101519050600085610e2a83610465565b610e34919061135c565b9050610e4260008383610a2b565b50508080610e4f906117d7565b915050610df7565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610ea1578082015181840152602081019050610e86565b60008484015250505050565b6000601f19601f8301169050919050565b6000610ec982610e67565b610ed38185610e72565b9350610ee3818560208601610e83565b610eec81610ead565b840191505092915050565b60006020820190508181036000830152610f118184610ebe565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610f4982610f1e565b9050919050565b610f5981610f3e565b8114610f6457600080fd5b50565b600081359050610f7681610f50565b92915050565b6000819050919050565b610f8f81610f7c565b8114610f9a57600080fd5b50565b600081359050610fac81610f86565b92915050565b60008060408385031215610fc957610fc8610f19565b5b6000610fd785828601610f67565b9250506020610fe885828601610f9d565b9150509250929050565b60008115159050919050565b61100781610ff2565b82525050565b60006020820190506110226000830184610ffe565b92915050565b61103181610f7c565b82525050565b600060208201905061104c6000830184611028565b92915050565b61105b81610f3e565b82525050565b60006020820190506110766000830184611052565b92915050565b60008060006060848603121561109557611094610f19565b5b60006110a386828701610f67565b93505060206110b486828701610f67565b92505060406110c586828701610f9d565b9150509250925092565b600060ff82169050919050565b6110e5816110cf565b82525050565b600060208201905061110060008301846110dc565b92915050565b60006020828403121561111c5761111b610f19565b5b600061112a84828501610f67565b91505092915050565b6000806040838503121561114a57611149610f19565b5b600061115885828601610f67565b925050602061116985828601610f67565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806111ba57607f821691505b6020821081036111cd576111cc611173565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061120d82610f7c565b915061121883610f7c565b92508282019050808211156112305761122f6111d3565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611292602583610e72565b915061129d82611236565b604082019050919050565b600060208201905081810360008301526112c181611285565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061130282610f7c565b915061130d83610f7c565b92508261131d5761131c6112c8565b5b828204905092915050565b600061133382610f7c565b915061133e83610f7c565b9250828203905081811115611356576113556111d3565b5b92915050565b600061136782610f7c565b915061137283610f7c565b925082820261138081610f7c565b91508282048414831517611397576113966111d3565b5b5092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006113fa602483610e72565b91506114058261139e565b604082019050919050565b60006020820190508181036000830152611429816113ed565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061148c602283610e72565b915061149782611430565b604082019050919050565b600060208201905081810360008301526114bb8161147f565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006114f8601d83610e72565b9150611503826114c2565b602082019050919050565b60006020820190508181036000830152611527816114eb565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061158a602583610e72565b91506115958261152e565b604082019050919050565b600060208201905081810360008301526115b98161157d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061161c602383610e72565b9150611627826115c0565b604082019050919050565b6000602082019050818103600083015261164b8161160f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006116ae602683610e72565b91506116b982611652565b604082019050919050565b600060208201905081810360008301526116dd816116a1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008160601b9050919050565b600061172b82611713565b9050919050565b600061173d82611720565b9050919050565b61175561175082610f3e565b611732565b82525050565b6000819050919050565b61177661177182610f7c565b61175b565b82525050565b60006117888285611744565b6014820191506117988284611765565b6020820191508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006117e282610f7c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611814576118136111d3565b5b60018201905091905056fea26469706673582212208f0a90ee91df49afb135f7aae56ee1de1240cfc39b7a71881adf49d0e4a0c26664736f6c63430008110033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x1E21 CODESIZE SUB DUP1 PUSH3 0x1E21 DUP4 CODECOPY DUP2 DUP2 ADD PUSH1 0x40 MSTORE DUP2 ADD SWAP1 PUSH3 0x37 SWAP2 SWAP1 PUSH3 0x1FF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x417572756D000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x3 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4155520000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 PUSH1 0x3 SWAP1 DUP2 PUSH3 0xB4 SWAP2 SWAP1 PUSH3 0x4D5 JUMP JUMPDEST POP DUP1 PUSH1 0x4 SWAP1 DUP2 PUSH3 0xC6 SWAP2 SWAP1 PUSH3 0x4D5 JUMP JUMPDEST POP POP POP DUP3 PUSH1 0x5 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH1 0x6 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 PUSH1 0x7 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP POP POP PUSH3 0x5BC JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x1C7 DUP3 PUSH3 0x19A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x1D9 DUP2 PUSH3 0x1BA JUMP JUMPDEST DUP2 EQ PUSH3 0x1E5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH3 0x1F9 DUP2 PUSH3 0x1CE JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH3 0x21B JUMPI PUSH3 0x21A PUSH3 0x195 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH3 0x22B DUP7 DUP3 DUP8 ADD PUSH3 0x1E8 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH3 0x23E DUP7 DUP3 DUP8 ADD PUSH3 0x1E8 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH3 0x251 DUP7 DUP3 DUP8 ADD PUSH3 0x1E8 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x2DD JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH3 0x2F3 JUMPI PUSH3 0x2F2 PUSH3 0x295 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP DUP2 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x8 DUP4 MUL PUSH3 0x35D PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH3 0x31E JUMP JUMPDEST PUSH3 0x369 DUP7 DUP4 PUSH3 0x31E JUMP JUMPDEST SWAP6 POP DUP1 NOT DUP5 AND SWAP4 POP DUP1 DUP7 AND DUP5 OR SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x3B6 PUSH3 0x3B0 PUSH3 0x3AA DUP5 PUSH3 0x381 JUMP JUMPDEST PUSH3 0x38B JUMP JUMPDEST PUSH3 0x381 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x3D2 DUP4 PUSH3 0x395 JUMP JUMPDEST PUSH3 0x3EA PUSH3 0x3E1 DUP3 PUSH3 0x3BD JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH3 0x32B JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH3 0x401 PUSH3 0x3F2 JUMP JUMPDEST PUSH3 0x40E DUP2 DUP5 DUP5 PUSH3 0x3C7 JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH3 0x436 JUMPI PUSH3 0x42A PUSH1 0x0 DUP3 PUSH3 0x3F7 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH3 0x414 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH3 0x485 JUMPI PUSH3 0x44F DUP2 PUSH3 0x2F9 JUMP JUMPDEST PUSH3 0x45A DUP5 PUSH3 0x30E JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH3 0x46A JUMPI DUP2 SWAP1 POP JUMPDEST PUSH3 0x482 PUSH3 0x479 DUP6 PUSH3 0x30E JUMP JUMPDEST DUP4 ADD DUP3 PUSH3 0x413 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x4AA PUSH1 0x0 NOT DUP5 PUSH1 0x8 MUL PUSH3 0x48A JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x4C5 DUP4 DUP4 PUSH3 0x497 JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH3 0x4E0 DUP3 PUSH3 0x25B JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x4FC JUMPI PUSH3 0x4FB PUSH3 0x266 JUMP JUMPDEST JUMPDEST PUSH3 0x508 DUP3 SLOAD PUSH3 0x2C4 JUMP JUMPDEST PUSH3 0x515 DUP3 DUP3 DUP6 PUSH3 0x43A JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH3 0x54D JUMPI PUSH1 0x0 DUP5 ISZERO PUSH3 0x538 JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH3 0x544 DUP6 DUP3 PUSH3 0x4B7 JUMP JUMPDEST DUP7 SSTORE POP PUSH3 0x5B4 JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH3 0x55D DUP7 PUSH3 0x2F9 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH3 0x587 JUMPI DUP5 DUP10 ADD MLOAD DUP3 SSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP6 ADD SWAP5 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0x560 JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH3 0x5A7 JUMPI DUP5 DUP10 ADD MLOAD PUSH3 0x5A3 PUSH1 0x1F DUP10 AND DUP3 PUSH3 0x497 JUMP JUMPDEST DUP4 SSTORE POP JUMPDEST PUSH1 0x1 PUSH1 0x2 DUP9 MUL ADD DUP9 SSTORE POP POP POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x1855 DUP1 PUSH3 0x5CC PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xEA JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x70A08231 GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xA457C2D7 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x263 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x293 JUMPI DUP1 PUSH4 0xD4698016 EQ PUSH2 0x2C3 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x2E1 JUMPI PUSH2 0xEA JUMP JUMPDEST DUP1 PUSH4 0x70A08231 EQ PUSH2 0x1F7 JUMPI DUP1 PUSH4 0x75F0A874 EQ PUSH2 0x227 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x245 JUMPI PUSH2 0xEA JUMP JUMPDEST DUP1 PUSH4 0x185870F9 GT PUSH2 0xC8 JUMPI DUP1 PUSH4 0x185870F9 EQ PUSH2 0x15B JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x179 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x1A9 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x1C7 JUMPI PUSH2 0xEA JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xEF JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x10D JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x13D JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xF7 PUSH2 0x311 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x104 SWAP2 SWAP1 PUSH2 0xEF7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x127 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x122 SWAP2 SWAP1 PUSH2 0xFB2 JUMP JUMPDEST PUSH2 0x3A3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x134 SWAP2 SWAP1 PUSH2 0x100D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x145 PUSH2 0x3C6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x152 SWAP2 SWAP1 PUSH2 0x1037 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x163 PUSH2 0x3D0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x170 SWAP2 SWAP1 PUSH2 0x1061 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x193 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x18E SWAP2 SWAP1 PUSH2 0x107C JUMP JUMPDEST PUSH2 0x3F6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1A0 SWAP2 SWAP1 PUSH2 0x100D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1B1 PUSH2 0x425 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1BE SWAP2 SWAP1 PUSH2 0x10EB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1E1 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1DC SWAP2 SWAP1 PUSH2 0xFB2 JUMP JUMPDEST PUSH2 0x42E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1EE SWAP2 SWAP1 PUSH2 0x100D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x211 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x20C SWAP2 SWAP1 PUSH2 0x1106 JUMP JUMPDEST PUSH2 0x465 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x21E SWAP2 SWAP1 PUSH2 0x1037 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x22F PUSH2 0x4AD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x23C SWAP2 SWAP1 PUSH2 0x1061 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x24D PUSH2 0x4D3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x25A SWAP2 SWAP1 PUSH2 0xEF7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x27D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x278 SWAP2 SWAP1 PUSH2 0xFB2 JUMP JUMPDEST PUSH2 0x565 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x28A SWAP2 SWAP1 PUSH2 0x100D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2AD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2A8 SWAP2 SWAP1 PUSH2 0xFB2 JUMP JUMPDEST PUSH2 0x5DC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2BA SWAP2 SWAP1 PUSH2 0x100D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2CB PUSH2 0x721 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2D8 SWAP2 SWAP1 PUSH2 0x1061 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2FB PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2F6 SWAP2 SWAP1 PUSH2 0x1133 JUMP JUMPDEST PUSH2 0x747 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x308 SWAP2 SWAP1 PUSH2 0x1037 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x320 SWAP1 PUSH2 0x11A2 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x34C SWAP1 PUSH2 0x11A2 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x399 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x36E JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x399 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x37C JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x3AE PUSH2 0x7CE JUMP JUMPDEST SWAP1 POP PUSH2 0x3BB DUP2 DUP6 DUP6 PUSH2 0x7D6 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x7 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x401 PUSH2 0x7CE JUMP JUMPDEST SWAP1 POP PUSH2 0x40E DUP6 DUP3 DUP6 PUSH2 0x99F JUMP JUMPDEST PUSH2 0x419 DUP6 DUP6 DUP6 PUSH2 0xA2B JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x439 PUSH2 0x7CE JUMP JUMPDEST SWAP1 POP PUSH2 0x45A DUP2 DUP6 DUP6 PUSH2 0x44B DUP6 DUP10 PUSH2 0x747 JUMP JUMPDEST PUSH2 0x455 SWAP2 SWAP1 PUSH2 0x1202 JUMP JUMPDEST PUSH2 0x7D6 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x4E2 SWAP1 PUSH2 0x11A2 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x50E SWAP1 PUSH2 0x11A2 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x55B JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x530 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x55B JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x53E JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x570 PUSH2 0x7CE JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x57E DUP3 DUP7 PUSH2 0x747 JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x5C3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5BA SWAP1 PUSH2 0x12A8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x5D0 DUP3 DUP7 DUP7 DUP5 SUB PUSH2 0x7D6 JUMP JUMPDEST PUSH1 0x1 SWAP3 POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0xA DUP4 PUSH2 0x5EC SWAP2 SWAP1 PUSH2 0x12F7 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 DUP5 PUSH2 0x5FC SWAP2 SWAP1 PUSH2 0x1328 JUMP JUMPDEST SWAP1 POP PUSH2 0x63E PUSH2 0x609 PUSH2 0x7CE JUMP JUMPDEST PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x2 DUP6 PUSH2 0x639 SWAP2 SWAP1 PUSH2 0x135C JUMP JUMPDEST PUSH2 0xA2B JUMP JUMPDEST PUSH2 0x67E PUSH2 0x649 PUSH2 0x7CE JUMP JUMPDEST PUSH1 0x6 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x2 DUP6 PUSH2 0x679 SWAP2 SWAP1 PUSH2 0x135C JUMP JUMPDEST PUSH2 0xA2B JUMP JUMPDEST PUSH2 0x6BE PUSH2 0x689 PUSH2 0x7CE JUMP JUMPDEST PUSH1 0x7 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x5 DUP6 PUSH2 0x6B9 SWAP2 SWAP1 PUSH2 0x135C JUMP JUMPDEST PUSH2 0xA2B JUMP JUMPDEST PUSH1 0x0 PUSH2 0x6CA PUSH1 0x0 PUSH2 0x465 JUMP JUMPDEST PUSH2 0x6D2 PUSH2 0x3C6 JUMP JUMPDEST PUSH2 0x6DC SWAP2 SWAP1 PUSH2 0x1328 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 GT ISZERO PUSH2 0x702 JUMPI PUSH1 0x0 DUP2 DUP5 PUSH2 0x6F5 SWAP2 SWAP1 PUSH2 0x12F7 JUMP JUMPDEST SWAP1 POP PUSH2 0x700 DUP2 PUSH2 0xCA1 JUMP JUMPDEST POP JUMPDEST PUSH2 0x714 PUSH2 0x70D PUSH2 0x7CE JUMP JUMPDEST DUP8 DUP5 PUSH2 0xA2B JUMP JUMPDEST PUSH1 0x1 SWAP4 POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x6 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x845 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x83C SWAP1 PUSH2 0x1410 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x8B4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8AB SWAP1 PUSH2 0x14A2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP4 PUSH1 0x40 MLOAD PUSH2 0x992 SWAP2 SWAP1 PUSH2 0x1037 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x9AB DUP5 DUP5 PUSH2 0x747 JUMP JUMPDEST SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 EQ PUSH2 0xA25 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0xA17 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA0E SWAP1 PUSH2 0x150E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xA24 DUP5 DUP5 DUP5 DUP5 SUB PUSH2 0x7D6 JUMP JUMPDEST JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xA9A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA91 SWAP1 PUSH2 0x15A0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xB09 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB00 SWAP1 PUSH2 0x1632 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xB14 DUP4 DUP4 DUP4 PUSH2 0xE5D JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0xB9A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB91 SWAP1 PUSH2 0x16C4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH1 0x0 DUP1 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xC88 SWAP2 SWAP1 PUSH2 0x1037 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xC9B DUP5 DUP5 DUP5 PUSH2 0xE62 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xCAB PUSH2 0x3C6 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xCC4 JUMPI PUSH2 0xCC3 PUSH2 0x16E4 JUMP JUMPDEST JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xCF2 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 DUP1 JUMPDEST PUSH2 0xD01 PUSH2 0x3C6 JUMP JUMPDEST DUP2 LT ISZERO PUSH2 0xDF3 JUMPI PUSH1 0x0 ADDRESS DUP3 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xD1D SWAP3 SWAP2 SWAP1 PUSH2 0x177C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 PUSH1 0x0 SHR SWAP1 POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO DUP1 ISZERO PUSH2 0xD7D JUMPI POP PUSH1 0x0 PUSH2 0xD7B DUP3 PUSH2 0x465 JUMP JUMPDEST GT JUMPDEST ISZERO PUSH2 0xDDF JUMPI DUP1 DUP5 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0xD96 JUMPI PUSH2 0xD95 PUSH2 0x17A8 JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP POP DUP3 DUP1 PUSH2 0xDDB SWAP1 PUSH2 0x17D7 JUMP JUMPDEST SWAP4 POP POP JUMPDEST POP DUP1 DUP1 PUSH2 0xDEB SWAP1 PUSH2 0x17D7 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xCF9 JUMP JUMPDEST POP PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xE57 JUMPI PUSH1 0x0 DUP4 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xE14 JUMPI PUSH2 0xE13 PUSH2 0x17A8 JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 POP PUSH1 0x0 DUP6 PUSH2 0xE2A DUP4 PUSH2 0x465 JUMP JUMPDEST PUSH2 0xE34 SWAP2 SWAP1 PUSH2 0x135C JUMP JUMPDEST SWAP1 POP PUSH2 0xE42 PUSH1 0x0 DUP4 DUP4 PUSH2 0xA2B JUMP JUMPDEST POP POP DUP1 DUP1 PUSH2 0xE4F SWAP1 PUSH2 0x17D7 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xDF7 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xEA1 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xE86 JUMP JUMPDEST PUSH1 0x0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xEC9 DUP3 PUSH2 0xE67 JUMP JUMPDEST PUSH2 0xED3 DUP2 DUP6 PUSH2 0xE72 JUMP JUMPDEST SWAP4 POP PUSH2 0xEE3 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xE83 JUMP JUMPDEST PUSH2 0xEEC DUP2 PUSH2 0xEAD JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xF11 DUP2 DUP5 PUSH2 0xEBE JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF49 DUP3 PUSH2 0xF1E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xF59 DUP2 PUSH2 0xF3E JUMP JUMPDEST DUP2 EQ PUSH2 0xF64 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xF76 DUP2 PUSH2 0xF50 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xF8F DUP2 PUSH2 0xF7C JUMP JUMPDEST DUP2 EQ PUSH2 0xF9A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xFAC DUP2 PUSH2 0xF86 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xFC9 JUMPI PUSH2 0xFC8 PUSH2 0xF19 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xFD7 DUP6 DUP3 DUP7 ADD PUSH2 0xF67 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xFE8 DUP6 DUP3 DUP7 ADD PUSH2 0xF9D JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1007 DUP2 PUSH2 0xFF2 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1022 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xFFE JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1031 DUP2 PUSH2 0xF7C JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x104C PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1028 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x105B DUP2 PUSH2 0xF3E JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1076 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1052 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1095 JUMPI PUSH2 0x1094 PUSH2 0xF19 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x10A3 DUP7 DUP3 DUP8 ADD PUSH2 0xF67 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x10B4 DUP7 DUP3 DUP8 ADD PUSH2 0xF67 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x10C5 DUP7 DUP3 DUP8 ADD PUSH2 0xF9D JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x10E5 DUP2 PUSH2 0x10CF JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1100 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x10DC JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x111C JUMPI PUSH2 0x111B PUSH2 0xF19 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x112A DUP5 DUP3 DUP6 ADD PUSH2 0xF67 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x114A JUMPI PUSH2 0x1149 PUSH2 0xF19 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1158 DUP6 DUP3 DUP7 ADD PUSH2 0xF67 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1169 DUP6 DUP3 DUP7 ADD PUSH2 0xF67 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x11BA JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x11CD JUMPI PUSH2 0x11CC PUSH2 0x1173 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x120D DUP3 PUSH2 0xF7C JUMP JUMPDEST SWAP2 POP PUSH2 0x1218 DUP4 PUSH2 0xF7C JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0x1230 JUMPI PUSH2 0x122F PUSH2 0x11D3 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1292 PUSH1 0x25 DUP4 PUSH2 0xE72 JUMP JUMPDEST SWAP2 POP PUSH2 0x129D DUP3 PUSH2 0x1236 JUMP JUMPDEST PUSH1 0x40 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 PUSH2 0x12C1 DUP2 PUSH2 0x1285 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1302 DUP3 PUSH2 0xF7C JUMP JUMPDEST SWAP2 POP PUSH2 0x130D DUP4 PUSH2 0xF7C JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x131D JUMPI PUSH2 0x131C PUSH2 0x12C8 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1333 DUP3 PUSH2 0xF7C JUMP JUMPDEST SWAP2 POP PUSH2 0x133E DUP4 PUSH2 0xF7C JUMP JUMPDEST SWAP3 POP DUP3 DUP3 SUB SWAP1 POP DUP2 DUP2 GT ISZERO PUSH2 0x1356 JUMPI PUSH2 0x1355 PUSH2 0x11D3 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1367 DUP3 PUSH2 0xF7C JUMP JUMPDEST SWAP2 POP PUSH2 0x1372 DUP4 PUSH2 0xF7C JUMP JUMPDEST SWAP3 POP DUP3 DUP3 MUL PUSH2 0x1380 DUP2 PUSH2 0xF7C JUMP JUMPDEST SWAP2 POP DUP3 DUP3 DIV DUP5 EQ DUP4 ISZERO OR PUSH2 0x1397 JUMPI PUSH2 0x1396 PUSH2 0x11D3 JUMP JUMPDEST JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x13FA PUSH1 0x24 DUP4 PUSH2 0xE72 JUMP JUMPDEST SWAP2 POP PUSH2 0x1405 DUP3 PUSH2 0x139E JUMP JUMPDEST PUSH1 0x40 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 PUSH2 0x1429 DUP2 PUSH2 0x13ED JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x148C PUSH1 0x22 DUP4 PUSH2 0xE72 JUMP JUMPDEST SWAP2 POP PUSH2 0x1497 DUP3 PUSH2 0x1430 JUMP JUMPDEST PUSH1 0x40 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 PUSH2 0x14BB DUP2 PUSH2 0x147F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x14F8 PUSH1 0x1D DUP4 PUSH2 0xE72 JUMP JUMPDEST SWAP2 POP PUSH2 0x1503 DUP3 PUSH2 0x14C2 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 PUSH2 0x1527 DUP2 PUSH2 0x14EB JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x158A PUSH1 0x25 DUP4 PUSH2 0xE72 JUMP JUMPDEST SWAP2 POP PUSH2 0x1595 DUP3 PUSH2 0x152E JUMP JUMPDEST PUSH1 0x40 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 PUSH2 0x15B9 DUP2 PUSH2 0x157D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x161C PUSH1 0x23 DUP4 PUSH2 0xE72 JUMP JUMPDEST SWAP2 POP PUSH2 0x1627 DUP3 PUSH2 0x15C0 JUMP JUMPDEST PUSH1 0x40 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 PUSH2 0x164B DUP2 PUSH2 0x160F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x16AE PUSH1 0x26 DUP4 PUSH2 0xE72 JUMP JUMPDEST SWAP2 POP PUSH2 0x16B9 DUP3 PUSH2 0x1652 JUMP JUMPDEST PUSH1 0x40 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 PUSH2 0x16DD DUP2 PUSH2 0x16A1 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x60 SHL SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x172B DUP3 PUSH2 0x1713 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x173D DUP3 PUSH2 0x1720 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1755 PUSH2 0x1750 DUP3 PUSH2 0xF3E JUMP JUMPDEST PUSH2 0x1732 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1776 PUSH2 0x1771 DUP3 PUSH2 0xF7C JUMP JUMPDEST PUSH2 0x175B JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1788 DUP3 DUP6 PUSH2 0x1744 JUMP JUMPDEST PUSH1 0x14 DUP3 ADD SWAP2 POP PUSH2 0x1798 DUP3 DUP5 PUSH2 0x1765 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x17E2 DUP3 PUSH2 0xF7C JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 SUB PUSH2 0x1814 JUMPI PUSH2 0x1813 PUSH2 0x11D3 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP16 EXP SWAP1 0xEE SWAP2 0xDF 0x49 0xAF 0xB1 CALLDATALOAD 0xF7 0xAA 0xE5 PUSH15 0xE1DE1240CFC39B7A71881ADF49D0E4 LOG0 0xC2 PUSH7 0x64736F6C634300 ADDMOD GT STOP CALLER ",
"sourceMap": "119:1867:4:-:0;;;263:255;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1976:113:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2050:5;2042;:13;;;;;;:::i;:::-;;2075:7;2065;:17;;;;;;:::i;:::-;;1976:113;;404:16:4::1;386:15;;:34;;;;;;;;;;;;;;;;;;449:16;431:15;;:34;;;;;;;;;;;;;;;;;;494:16;476:15;;:34;;;;;;;;;;;;;;;;;;263:255:::0;;;119:1867;;88:117:5;197:1;194;187:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:143::-;753:5;784:6;778:13;769:22;;800:33;827:5;800:33;:::i;:::-;696:143;;;;:::o;845:663::-;933:6;941;949;998:2;986:9;977:7;973:23;969:32;966:119;;;1004:79;;:::i;:::-;966:119;1124:1;1149:64;1205:7;1196:6;1185:9;1181:22;1149:64;:::i;:::-;1139:74;;1095:128;1262:2;1288:64;1344:7;1335:6;1324:9;1320:22;1288:64;:::i;:::-;1278:74;;1233:129;1401:2;1427:64;1483:7;1474:6;1463:9;1459:22;1427:64;:::i;:::-;1417:74;;1372:129;845:663;;;;;:::o;1514:99::-;1566:6;1600:5;1594:12;1584:22;;1514:99;;;:::o;1619:180::-;1667:77;1664:1;1657:88;1764:4;1761:1;1754:15;1788:4;1785:1;1778:15;1805:180;1853:77;1850:1;1843:88;1950:4;1947:1;1940:15;1974:4;1971:1;1964:15;1991:320;2035:6;2072:1;2066:4;2062:12;2052:22;;2119:1;2113:4;2109:12;2140:18;2130:81;;2196:4;2188:6;2184:17;2174:27;;2130:81;2258:2;2250:6;2247:14;2227:18;2224:38;2221:84;;2277:18;;:::i;:::-;2221:84;2042:269;1991:320;;;:::o;2317:141::-;2366:4;2389:3;2381:11;;2412:3;2409:1;2402:14;2446:4;2443:1;2433:18;2425:26;;2317:141;;;:::o;2464:93::-;2501:6;2548:2;2543;2536:5;2532:14;2528:23;2518:33;;2464:93;;;:::o;2563:107::-;2607:8;2657:5;2651:4;2647:16;2626:37;;2563:107;;;;:::o;2676:393::-;2745:6;2795:1;2783:10;2779:18;2818:97;2848:66;2837:9;2818:97;:::i;:::-;2936:39;2966:8;2955:9;2936:39;:::i;:::-;2924:51;;3008:4;3004:9;2997:5;2993:21;2984:30;;3057:4;3047:8;3043:19;3036:5;3033:30;3023:40;;2752:317;;2676:393;;;;;:::o;3075:77::-;3112:7;3141:5;3130:16;;3075:77;;;:::o;3158:60::-;3186:3;3207:5;3200:12;;3158:60;;;:::o;3224:142::-;3274:9;3307:53;3325:34;3334:24;3352:5;3334:24;:::i;:::-;3325:34;:::i;:::-;3307:53;:::i;:::-;3294:66;;3224:142;;;:::o;3372:75::-;3415:3;3436:5;3429:12;;3372:75;;;:::o;3453:269::-;3563:39;3594:7;3563:39;:::i;:::-;3624:91;3673:41;3697:16;3673:41;:::i;:::-;3665:6;3658:4;3652:11;3624:91;:::i;:::-;3618:4;3611:105;3529:193;3453:269;;;:::o;3728:73::-;3773:3;3728:73;:::o;3807:189::-;3884:32;;:::i;:::-;3925:65;3983:6;3975;3969:4;3925:65;:::i;:::-;3860:136;3807:189;;:::o;4002:186::-;4062:120;4079:3;4072:5;4069:14;4062:120;;;4133:39;4170:1;4163:5;4133:39;:::i;:::-;4106:1;4099:5;4095:13;4086:22;;4062:120;;;4002:186;;:::o;4194:543::-;4295:2;4290:3;4287:11;4284:446;;;4329:38;4361:5;4329:38;:::i;:::-;4413:29;4431:10;4413:29;:::i;:::-;4403:8;4399:44;4596:2;4584:10;4581:18;4578:49;;;4617:8;4602:23;;4578:49;4640:80;4696:22;4714:3;4696:22;:::i;:::-;4686:8;4682:37;4669:11;4640:80;:::i;:::-;4299:431;;4284:446;4194:543;;;:::o;4743:117::-;4797:8;4847:5;4841:4;4837:16;4816:37;;4743:117;;;;:::o;4866:169::-;4910:6;4943:51;4991:1;4987:6;4979:5;4976:1;4972:13;4943:51;:::i;:::-;4939:56;5024:4;5018;5014:15;5004:25;;4917:118;4866:169;;;;:::o;5040:295::-;5116:4;5262:29;5287:3;5281:4;5262:29;:::i;:::-;5254:37;;5324:3;5321:1;5317:11;5311:4;5308:21;5300:29;;5040:295;;;;:::o;5340:1395::-;5457:37;5490:3;5457:37;:::i;:::-;5559:18;5551:6;5548:30;5545:56;;;5581:18;;:::i;:::-;5545:56;5625:38;5657:4;5651:11;5625:38;:::i;:::-;5710:67;5770:6;5762;5756:4;5710:67;:::i;:::-;5804:1;5828:4;5815:17;;5860:2;5852:6;5849:14;5877:1;5872:618;;;;6534:1;6551:6;6548:77;;;6600:9;6595:3;6591:19;6585:26;6576:35;;6548:77;6651:67;6711:6;6704:5;6651:67;:::i;:::-;6645:4;6638:81;6507:222;5842:887;;5872:618;5924:4;5920:9;5912:6;5908:22;5958:37;5990:4;5958:37;:::i;:::-;6017:1;6031:208;6045:7;6042:1;6039:14;6031:208;;;6124:9;6119:3;6115:19;6109:26;6101:6;6094:42;6175:1;6167:6;6163:14;6153:24;;6222:2;6211:9;6207:18;6194:31;;6068:4;6065:1;6061:12;6056:17;;6031:208;;;6267:6;6258:7;6255:19;6252:179;;;6325:9;6320:3;6316:19;6310:26;6368:48;6410:4;6402:6;6398:17;6387:9;6368:48;:::i;:::-;6360:6;6353:64;6275:156;6252:179;6477:1;6473;6465:6;6461:14;6457:22;6451:4;6444:36;5879:611;;;5842:887;;5432:1303;;;5340:1395;;:::o;119:1867:4:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_afterTokenTransfer_585": {
"entryPoint": 3682,
"id": 585,
"parameterSlots": 3,
"returnSlots": 0
},
"@_approve_520": {
"entryPoint": 2006,
"id": 520,
"parameterSlots": 3,
"returnSlots": 0
},
"@_beforeTokenTransfer_574": {
"entryPoint": 3677,
"id": 574,
"parameterSlots": 3,
"returnSlots": 0
},
"@_distributeTokens_949": {
"entryPoint": 3233,
"id": 949,
"parameterSlots": 1,
"returnSlots": 0
},
"@_msgSender_701": {
"entryPoint": 1998,
"id": 701,
"parameterSlots": 0,
"returnSlots": 1
},
"@_spendAllowance_563": {
"entryPoint": 2463,
"id": 563,
"parameterSlots": 3,
"returnSlots": 0
},
"@_transfer_346": {
"entryPoint": 2603,
"id": 346,
"parameterSlots": 3,
"returnSlots": 0
},
"@allowance_141": {
"entryPoint": 1863,
"id": 141,
"parameterSlots": 2,
"returnSlots": 1
},
"@approve_166": {
"entryPoint": 931,
"id": 166,
"parameterSlots": 2,
"returnSlots": 1
},
"@balanceOf_98": {
"entryPoint": 1125,
"id": 98,
"parameterSlots": 1,
"returnSlots": 1
},
"@decimals_74": {
"entryPoint": 1061,
"id": 74,
"parameterSlots": 0,
"returnSlots": 1
},
"@decreaseAllowance_269": {
"entryPoint": 1381,
"id": 269,
"parameterSlots": 2,
"returnSlots": 1
},
"@developerWallet_722": {
"entryPoint": 976,
"id": 722,
"parameterSlots": 0,
"returnSlots": 0
},
"@increaseAllowance_228": {
"entryPoint": 1070,
"id": 228,
"parameterSlots": 2,
"returnSlots": 1
},
"@liquidityWallet_720": {
"entryPoint": 1825,
"id": 720,
"parameterSlots": 0,
"returnSlots": 0
},
"@marketingWallet_718": {
"entryPoint": 1197,
"id": 718,
"parameterSlots": 0,
"returnSlots": 0
},
"@name_54": {
"entryPoint": 785,
"id": 54,
"parameterSlots": 0,
"returnSlots": 1
},
"@symbol_64": {
"entryPoint": 1235,
"id": 64,
"parameterSlots": 0,
"returnSlots": 1
},
"@totalSupply_84": {
"entryPoint": 966,
"id": 84,
"parameterSlots": 0,
"returnSlots": 1
},
"@transferFrom_199": {
"entryPoint": 1014,
"id": 199,
"parameterSlots": 3,
"returnSlots": 1
},
"@transfer_834": {
"entryPoint": 1500,
"id": 834,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_address": {
"entryPoint": 3943,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 3997,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 4358,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_address": {
"entryPoint": 4403,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_addresst_uint256": {
"entryPoint": 4220,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 4018,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 4178,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_address_to_t_address_nonPadded_inplace_fromStack": {
"entryPoint": 5956,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 4094,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 3774,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5647,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5247,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5355,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5793,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5501,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5101,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack": {
"entryPoint": 4741,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 4136,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint256_to_t_uint256_nonPadded_inplace_fromStack": {
"entryPoint": 5989,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint8_to_t_uint8_fromStack": {
"entryPoint": 4316,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_packed_t_address_t_uint256__to_t_address_t_uint256__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 6012,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 4193,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": 4109,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 3831,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 5682,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 5282,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 5390,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 5828,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 5536,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 5136,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 4776,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 4151,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed": {
"entryPoint": 4331,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 3687,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 3698,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 4610,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_div_t_uint256": {
"entryPoint": 4855,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_mul_t_uint256": {
"entryPoint": 4956,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 4904,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 3902,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 4082,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 3870,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 3964,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint8": {
"entryPoint": 4303,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_memory_to_memory_with_cleanup": {
"entryPoint": 3715,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 4514,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"increment_t_uint256": {
"entryPoint": 6103,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"leftAlign_t_address": {
"entryPoint": 5938,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"leftAlign_t_uint160": {
"entryPoint": 5920,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"leftAlign_t_uint256": {
"entryPoint": 5979,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 4563,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x12": {
"entryPoint": 4808,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 4467,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x32": {
"entryPoint": 6056,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 5860,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 3865,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 3757,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"shift_left_96": {
"entryPoint": 5907,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f": {
"entryPoint": 5568,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029": {
"entryPoint": 5168,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe": {
"entryPoint": 5314,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6": {
"entryPoint": 5714,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea": {
"entryPoint": 5422,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208": {
"entryPoint": 5022,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8": {
"entryPoint": 4662,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 3920,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 3974,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:16775:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "66:40:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "77:22:5",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "93:5:5"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "87:5:5"
},
"nodeType": "YulFunctionCall",
"src": "87:12:5"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "77:6:5"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "49:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "59:6:5",
"type": ""
}
],
"src": "7:99:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "208:73:5",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "225:3:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "230:6:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "218:6:5"
},
"nodeType": "YulFunctionCall",
"src": "218:19:5"
},
"nodeType": "YulExpressionStatement",
"src": "218:19:5"
},
{
"nodeType": "YulAssignment",
"src": "246:29:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "265:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "270:4:5",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "261:3:5"
},
"nodeType": "YulFunctionCall",
"src": "261:14:5"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "246:11:5"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "180:3:5",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "185:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "196:11:5",
"type": ""
}
],
"src": "112:169:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "349:184:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "359:10:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "368:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "363:1:5",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "428:63:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "453:3:5"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "458:1:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "449:3:5"
},
"nodeType": "YulFunctionCall",
"src": "449:11:5"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "472:3:5"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "477:1:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "468:3:5"
},
"nodeType": "YulFunctionCall",
"src": "468:11:5"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "462:5:5"
},
"nodeType": "YulFunctionCall",
"src": "462:18:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "442:6:5"
},
"nodeType": "YulFunctionCall",
"src": "442:39:5"
},
"nodeType": "YulExpressionStatement",
"src": "442:39:5"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "389:1:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "392:6:5"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "386:2:5"
},
"nodeType": "YulFunctionCall",
"src": "386:13:5"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "400:19:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "402:15:5",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "411:1:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "414:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "407:3:5"
},
"nodeType": "YulFunctionCall",
"src": "407:10:5"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "402:1:5"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "382:3:5",
"statements": []
},
"src": "378:113:5"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "511:3:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "516:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "507:3:5"
},
"nodeType": "YulFunctionCall",
"src": "507:16:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "525:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "500:6:5"
},
"nodeType": "YulFunctionCall",
"src": "500:27:5"
},
"nodeType": "YulExpressionStatement",
"src": "500:27:5"
}
]
},
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "331:3:5",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "336:3:5",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "341:6:5",
"type": ""
}
],
"src": "287:246:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "587:54:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "597:38:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "615:5:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "622:2:5",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "611:3:5"
},
"nodeType": "YulFunctionCall",
"src": "611:14:5"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "631:2:5",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "627:3:5"
},
"nodeType": "YulFunctionCall",
"src": "627:7:5"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "607:3:5"
},
"nodeType": "YulFunctionCall",
"src": "607:28:5"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "597:6:5"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "570:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "580:6:5",
"type": ""
}
],
"src": "539:102:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "739:285:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "749:53:5",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "796:5:5"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "763:32:5"
},
"nodeType": "YulFunctionCall",
"src": "763:39:5"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "753:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "811:78:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "877:3:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "882:6:5"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "818:58:5"
},
"nodeType": "YulFunctionCall",
"src": "818:71:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "811:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "937:5:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "944:4:5",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "933:3:5"
},
"nodeType": "YulFunctionCall",
"src": "933:16:5"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "951:3:5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "956:6:5"
}
],
"functionName": {
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulIdentifier",
"src": "898:34:5"
},
"nodeType": "YulFunctionCall",
"src": "898:65:5"
},
"nodeType": "YulExpressionStatement",
"src": "898:65:5"
},
{
"nodeType": "YulAssignment",
"src": "972:46:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "983:3:5"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1010:6:5"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "988:21:5"
},
"nodeType": "YulFunctionCall",
"src": "988:29:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "979:3:5"
},
"nodeType": "YulFunctionCall",
"src": "979:39:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "972:3:5"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "720:5:5",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "727:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "735:3:5",
"type": ""
}
],
"src": "647:377:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1148:195:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1158:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1170:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1181:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1166:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1166:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1158:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1205:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1216:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1201:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1201:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1224:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1230:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1220:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1220:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1194:6:5"
},
"nodeType": "YulFunctionCall",
"src": "1194:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "1194:47:5"
},
{
"nodeType": "YulAssignment",
"src": "1250:86:5",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1322:6:5"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1331:4:5"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1258:63:5"
},
"nodeType": "YulFunctionCall",
"src": "1258:78:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1250:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1120:9:5",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1132:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1143:4:5",
"type": ""
}
],
"src": "1030:313:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1389:35:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1399:19:5",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1415:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1409:5:5"
},
"nodeType": "YulFunctionCall",
"src": "1409:9:5"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1399:6:5"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1382:6:5",
"type": ""
}
],
"src": "1349:75:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1519:28:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1536:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1539:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1529:6:5"
},
"nodeType": "YulFunctionCall",
"src": "1529:12:5"
},
"nodeType": "YulExpressionStatement",
"src": "1529:12:5"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "1430:117:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1642:28:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1659:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1662:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1652:6:5"
},
"nodeType": "YulFunctionCall",
"src": "1652:12:5"
},
"nodeType": "YulExpressionStatement",
"src": "1652:12:5"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "1553:117:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1721:81:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1731:65:5",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1746:5:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1753:42:5",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1742:3:5"
},
"nodeType": "YulFunctionCall",
"src": "1742:54:5"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1731:7:5"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1703:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1713:7:5",
"type": ""
}
],
"src": "1676:126:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1853:51:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1863:35:5",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1892:5:5"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "1874:17:5"
},
"nodeType": "YulFunctionCall",
"src": "1874:24:5"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1863:7:5"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1835:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1845:7:5",
"type": ""
}
],
"src": "1808:96:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1953:79:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2010:16:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2019:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2022:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2012:6:5"
},
"nodeType": "YulFunctionCall",
"src": "2012:12:5"
},
"nodeType": "YulExpressionStatement",
"src": "2012:12:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1976:5:5"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2001:5:5"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "1983:17:5"
},
"nodeType": "YulFunctionCall",
"src": "1983:24:5"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "1973:2:5"
},
"nodeType": "YulFunctionCall",
"src": "1973:35:5"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1966:6:5"
},
"nodeType": "YulFunctionCall",
"src": "1966:43:5"
},
"nodeType": "YulIf",
"src": "1963:63:5"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1946:5:5",
"type": ""
}
],
"src": "1910:122:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2090:87:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2100:29:5",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2122:6:5"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2109:12:5"
},
"nodeType": "YulFunctionCall",
"src": "2109:20:5"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2100:5:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2165:5:5"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "2138:26:5"
},
"nodeType": "YulFunctionCall",
"src": "2138:33:5"
},
"nodeType": "YulExpressionStatement",
"src": "2138:33:5"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2068:6:5",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2076:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2084:5:5",
"type": ""
}
],
"src": "2038:139:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2228:32:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2238:16:5",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "2249:5:5"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2238:7:5"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2210:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2220:7:5",
"type": ""
}
],
"src": "2183:77:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2309:79:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2366:16:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2375:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2378:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2368:6:5"
},
"nodeType": "YulFunctionCall",
"src": "2368:12:5"
},
"nodeType": "YulExpressionStatement",
"src": "2368:12:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2332:5:5"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2357:5:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2339:17:5"
},
"nodeType": "YulFunctionCall",
"src": "2339:24:5"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "2329:2:5"
},
"nodeType": "YulFunctionCall",
"src": "2329:35:5"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2322:6:5"
},
"nodeType": "YulFunctionCall",
"src": "2322:43:5"
},
"nodeType": "YulIf",
"src": "2319:63:5"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2302:5:5",
"type": ""
}
],
"src": "2266:122:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2446:87:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2456:29:5",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2478:6:5"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2465:12:5"
},
"nodeType": "YulFunctionCall",
"src": "2465:20:5"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2456:5:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2521:5:5"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "2494:26:5"
},
"nodeType": "YulFunctionCall",
"src": "2494:33:5"
},
"nodeType": "YulExpressionStatement",
"src": "2494:33:5"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2424:6:5",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2432:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2440:5:5",
"type": ""
}
],
"src": "2394:139:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2622:391:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2668:83:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2670:77:5"
},
"nodeType": "YulFunctionCall",
"src": "2670:79:5"
},
"nodeType": "YulExpressionStatement",
"src": "2670:79:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2643:7:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2652:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2639:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2639:23:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2664:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2635:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2635:32:5"
},
"nodeType": "YulIf",
"src": "2632:119:5"
},
{
"nodeType": "YulBlock",
"src": "2761:117:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2776:15:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2790:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2780:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2805:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2840:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2851:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2836:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2836:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2860:7:5"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2815:20:5"
},
"nodeType": "YulFunctionCall",
"src": "2815:53:5"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2805:6:5"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2888:118:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2903:16:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2917:2:5",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2907:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2933:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2968:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2979:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2964:3:5"
},
"nodeType": "YulFunctionCall",
"src": "2964:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2988:7:5"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "2943:20:5"
},
"nodeType": "YulFunctionCall",
"src": "2943:53:5"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2933:6:5"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2584:9:5",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2595:7:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2607:6:5",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2615:6:5",
"type": ""
}
],
"src": "2539:474:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3061:48:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3071:32:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3096:5:5"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3089:6:5"
},
"nodeType": "YulFunctionCall",
"src": "3089:13:5"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3082:6:5"
},
"nodeType": "YulFunctionCall",
"src": "3082:21:5"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "3071:7:5"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3043:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "3053:7:5",
"type": ""
}
],
"src": "3019:90:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3174:50:5",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3191:3:5"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3211:5:5"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "3196:14:5"
},
"nodeType": "YulFunctionCall",
"src": "3196:21:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3184:6:5"
},
"nodeType": "YulFunctionCall",
"src": "3184:34:5"
},
"nodeType": "YulExpressionStatement",
"src": "3184:34:5"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3162:5:5",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3169:3:5",
"type": ""
}
],
"src": "3115:109:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3322:118:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3332:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3344:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3355:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3340:3:5"
},
"nodeType": "YulFunctionCall",
"src": "3340:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3332:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3406:6:5"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3419:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3430:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3415:3:5"
},
"nodeType": "YulFunctionCall",
"src": "3415:17:5"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "3368:37:5"
},
"nodeType": "YulFunctionCall",
"src": "3368:65:5"
},
"nodeType": "YulExpressionStatement",
"src": "3368:65:5"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3294:9:5",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3306:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3317:4:5",
"type": ""
}
],
"src": "3230:210:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3511:53:5",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3528:3:5"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3551:5:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3533:17:5"
},
"nodeType": "YulFunctionCall",
"src": "3533:24:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3521:6:5"
},
"nodeType": "YulFunctionCall",
"src": "3521:37:5"
},
"nodeType": "YulExpressionStatement",
"src": "3521:37:5"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3499:5:5",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3506:3:5",
"type": ""
}
],
"src": "3446:118:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3668:124:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3678:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3690:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3701:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3686:3:5"
},
"nodeType": "YulFunctionCall",
"src": "3686:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3678:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3758:6:5"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3771:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3782:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3767:3:5"
},
"nodeType": "YulFunctionCall",
"src": "3767:17:5"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "3714:43:5"
},
"nodeType": "YulFunctionCall",
"src": "3714:71:5"
},
"nodeType": "YulExpressionStatement",
"src": "3714:71:5"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3640:9:5",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3652:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3663:4:5",
"type": ""
}
],
"src": "3570:222:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3863:53:5",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3880:3:5"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3903:5:5"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "3885:17:5"
},
"nodeType": "YulFunctionCall",
"src": "3885:24:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3873:6:5"
},
"nodeType": "YulFunctionCall",
"src": "3873:37:5"
},
"nodeType": "YulExpressionStatement",
"src": "3873:37:5"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3851:5:5",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3858:3:5",
"type": ""
}
],
"src": "3798:118:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4020:124:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4030:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4042:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4053:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4038:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4038:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4030:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4110:6:5"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4123:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4134:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4119:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4119:17:5"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "4066:43:5"
},
"nodeType": "YulFunctionCall",
"src": "4066:71:5"
},
"nodeType": "YulExpressionStatement",
"src": "4066:71:5"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3992:9:5",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4004:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4015:4:5",
"type": ""
}
],
"src": "3922:222:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4250:519:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4296:83:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "4298:77:5"
},
"nodeType": "YulFunctionCall",
"src": "4298:79:5"
},
"nodeType": "YulExpressionStatement",
"src": "4298:79:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4271:7:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4280:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4267:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4267:23:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4292:2:5",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4263:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4263:32:5"
},
"nodeType": "YulIf",
"src": "4260:119:5"
},
{
"nodeType": "YulBlock",
"src": "4389:117:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4404:15:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4418:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4408:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4433:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4468:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4479:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4464:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4464:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4488:7:5"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4443:20:5"
},
"nodeType": "YulFunctionCall",
"src": "4443:53:5"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4433:6:5"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4516:118:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4531:16:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4545:2:5",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4535:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4561:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4596:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4607:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4592:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4592:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4616:7:5"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4571:20:5"
},
"nodeType": "YulFunctionCall",
"src": "4571:53:5"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4561:6:5"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4644:118:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4659:16:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4673:2:5",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4663:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4689:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4724:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4735:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4720:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4720:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4744:7:5"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "4699:20:5"
},
"nodeType": "YulFunctionCall",
"src": "4699:53:5"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "4689:6:5"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4204:9:5",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4215:7:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4227:6:5",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "4235:6:5",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "4243:6:5",
"type": ""
}
],
"src": "4150:619:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4818:43:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4828:27:5",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4843:5:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4850:4:5",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4839:3:5"
},
"nodeType": "YulFunctionCall",
"src": "4839:16:5"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "4828:7:5"
}
]
}
]
},
"name": "cleanup_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4800:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "4810:7:5",
"type": ""
}
],
"src": "4775:86:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4928:51:5",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4945:3:5"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4966:5:5"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "4950:15:5"
},
"nodeType": "YulFunctionCall",
"src": "4950:22:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4938:6:5"
},
"nodeType": "YulFunctionCall",
"src": "4938:35:5"
},
"nodeType": "YulExpressionStatement",
"src": "4938:35:5"
}
]
},
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4916:5:5",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4923:3:5",
"type": ""
}
],
"src": "4867:112:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5079:120:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5089:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5101:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5112:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5097:3:5"
},
"nodeType": "YulFunctionCall",
"src": "5097:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5089:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5165:6:5"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5178:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5189:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5174:3:5"
},
"nodeType": "YulFunctionCall",
"src": "5174:17:5"
}
],
"functionName": {
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulIdentifier",
"src": "5125:39:5"
},
"nodeType": "YulFunctionCall",
"src": "5125:67:5"
},
"nodeType": "YulExpressionStatement",
"src": "5125:67:5"
}
]
},
"name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5051:9:5",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5063:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5074:4:5",
"type": ""
}
],
"src": "4985:214:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5271:263:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5317:83:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "5319:77:5"
},
"nodeType": "YulFunctionCall",
"src": "5319:79:5"
},
"nodeType": "YulExpressionStatement",
"src": "5319:79:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5292:7:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5301:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5288:3:5"
},
"nodeType": "YulFunctionCall",
"src": "5288:23:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5313:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5284:3:5"
},
"nodeType": "YulFunctionCall",
"src": "5284:32:5"
},
"nodeType": "YulIf",
"src": "5281:119:5"
},
{
"nodeType": "YulBlock",
"src": "5410:117:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5425:15:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5439:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5429:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5454:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5489:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5500:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5485:3:5"
},
"nodeType": "YulFunctionCall",
"src": "5485:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5509:7:5"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "5464:20:5"
},
"nodeType": "YulFunctionCall",
"src": "5464:53:5"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5454:6:5"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5241:9:5",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5252:7:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5264:6:5",
"type": ""
}
],
"src": "5205:329:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5623:391:5",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5669:83:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "5671:77:5"
},
"nodeType": "YulFunctionCall",
"src": "5671:79:5"
},
"nodeType": "YulExpressionStatement",
"src": "5671:79:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5644:7:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5653:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5640:3:5"
},
"nodeType": "YulFunctionCall",
"src": "5640:23:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5665:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5636:3:5"
},
"nodeType": "YulFunctionCall",
"src": "5636:32:5"
},
"nodeType": "YulIf",
"src": "5633:119:5"
},
{
"nodeType": "YulBlock",
"src": "5762:117:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5777:15:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5791:1:5",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5781:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5806:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5841:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5852:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5837:3:5"
},
"nodeType": "YulFunctionCall",
"src": "5837:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5861:7:5"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "5816:20:5"
},
"nodeType": "YulFunctionCall",
"src": "5816:53:5"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5806:6:5"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5889:118:5",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5904:16:5",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5918:2:5",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5908:6:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5934:63:5",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5969:9:5"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5980:6:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5965:3:5"
},
"nodeType": "YulFunctionCall",
"src": "5965:22:5"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5989:7:5"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "5944:20:5"
},
"nodeType": "YulFunctionCall",
"src": "5944:53:5"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "5934:6:5"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5585:9:5",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5596:7:5",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5608:6:5",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "5616:6:5",
"type": ""
}
],
"src": "5540:474:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6048:152:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6065:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6068:77:5",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6058:6:5"
},
"nodeType": "YulFunctionCall",
"src": "6058:88:5"
},
"nodeType": "YulExpressionStatement",
"src": "6058:88:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6162:1:5",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6165:4:5",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6155:6:5"
},
"nodeType": "YulFunctionCall",
"src": "6155:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "6155:15:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6186:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6189:4:5",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6179:6:5"
},
"nodeType": "YulFunctionCall",
"src": "6179:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "6179:15:5"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "6020:180:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6257:269:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6267:22:5",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "6281:4:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6287:1:5",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "6277:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6277:12:5"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6267:6:5"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "6298:38:5",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "6328:4:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6334:1:5",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6324:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6324:12:5"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "6302:18:5",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6375:51:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6389:27:5",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6403:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6411:4:5",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6399:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6399:17:5"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6389:6:5"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "6355:18:5"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "6348:6:5"
},
"nodeType": "YulFunctionCall",
"src": "6348:26:5"
},
"nodeType": "YulIf",
"src": "6345:81:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6478:42:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "6492:16:5"
},
"nodeType": "YulFunctionCall",
"src": "6492:18:5"
},
"nodeType": "YulExpressionStatement",
"src": "6492:18:5"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "6442:18:5"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6465:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6473:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "6462:2:5"
},
"nodeType": "YulFunctionCall",
"src": "6462:14:5"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "6439:2:5"
},
"nodeType": "YulFunctionCall",
"src": "6439:38:5"
},
"nodeType": "YulIf",
"src": "6436:84:5"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "6241:4:5",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "6250:6:5",
"type": ""
}
],
"src": "6206:320:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6560:152:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6577:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6580:77:5",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6570:6:5"
},
"nodeType": "YulFunctionCall",
"src": "6570:88:5"
},
"nodeType": "YulExpressionStatement",
"src": "6570:88:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6674:1:5",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6677:4:5",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6667:6:5"
},
"nodeType": "YulFunctionCall",
"src": "6667:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "6667:15:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6698:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6701:4:5",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6691:6:5"
},
"nodeType": "YulFunctionCall",
"src": "6691:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "6691:15:5"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "6532:180:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6762:147:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6772:25:5",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6795:1:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "6777:17:5"
},
"nodeType": "YulFunctionCall",
"src": "6777:20:5"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6772:1:5"
}
]
},
{
"nodeType": "YulAssignment",
"src": "6806:25:5",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6829:1:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "6811:17:5"
},
"nodeType": "YulFunctionCall",
"src": "6811:20:5"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6806:1:5"
}
]
},
{
"nodeType": "YulAssignment",
"src": "6840:16:5",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6851:1:5"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6854:1:5"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6847:3:5"
},
"nodeType": "YulFunctionCall",
"src": "6847:9:5"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "6840:3:5"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6880:22:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "6882:16:5"
},
"nodeType": "YulFunctionCall",
"src": "6882:18:5"
},
"nodeType": "YulExpressionStatement",
"src": "6882:18:5"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6872:1:5"
},
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "6875:3:5"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "6869:2:5"
},
"nodeType": "YulFunctionCall",
"src": "6869:10:5"
},
"nodeType": "YulIf",
"src": "6866:36:5"
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "6749:1:5",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "6752:1:5",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "6758:3:5",
"type": ""
}
],
"src": "6718:191:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7021:118:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7043:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7051:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7039:3:5"
},
"nodeType": "YulFunctionCall",
"src": "7039:14:5"
},
{
"hexValue": "45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77",
"kind": "string",
"nodeType": "YulLiteral",
"src": "7055:34:5",
"type": "",
"value": "ERC20: decreased allowance below"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7032:6:5"
},
"nodeType": "YulFunctionCall",
"src": "7032:58:5"
},
"nodeType": "YulExpressionStatement",
"src": "7032:58:5"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7111:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7119:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7107:3:5"
},
"nodeType": "YulFunctionCall",
"src": "7107:15:5"
},
{
"hexValue": "207a65726f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "7124:7:5",
"type": "",
"value": " zero"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7100:6:5"
},
"nodeType": "YulFunctionCall",
"src": "7100:32:5"
},
"nodeType": "YulExpressionStatement",
"src": "7100:32:5"
}
]
},
"name": "store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "7013:6:5",
"type": ""
}
],
"src": "6915:224:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7291:220:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7301:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7367:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7372:2:5",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7308:58:5"
},
"nodeType": "YulFunctionCall",
"src": "7308:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7301:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7473:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8",
"nodeType": "YulIdentifier",
"src": "7384:88:5"
},
"nodeType": "YulFunctionCall",
"src": "7384:93:5"
},
"nodeType": "YulExpressionStatement",
"src": "7384:93:5"
},
{
"nodeType": "YulAssignment",
"src": "7486:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7497:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7502:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7493:3:5"
},
"nodeType": "YulFunctionCall",
"src": "7493:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "7486:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7279:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7287:3:5",
"type": ""
}
],
"src": "7145:366:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7688:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7698:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7710:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7721:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7706:3:5"
},
"nodeType": "YulFunctionCall",
"src": "7706:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7698:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7745:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7756:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7741:3:5"
},
"nodeType": "YulFunctionCall",
"src": "7741:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7764:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7770:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7760:3:5"
},
"nodeType": "YulFunctionCall",
"src": "7760:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7734:6:5"
},
"nodeType": "YulFunctionCall",
"src": "7734:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "7734:47:5"
},
{
"nodeType": "YulAssignment",
"src": "7790:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7924:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7798:124:5"
},
"nodeType": "YulFunctionCall",
"src": "7798:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7790:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7668:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7683:4:5",
"type": ""
}
],
"src": "7517:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7970:152:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7987:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7990:77:5",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7980:6:5"
},
"nodeType": "YulFunctionCall",
"src": "7980:88:5"
},
"nodeType": "YulExpressionStatement",
"src": "7980:88:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8084:1:5",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8087:4:5",
"type": "",
"value": "0x12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8077:6:5"
},
"nodeType": "YulFunctionCall",
"src": "8077:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "8077:15:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8108:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8111:4:5",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "8101:6:5"
},
"nodeType": "YulFunctionCall",
"src": "8101:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "8101:15:5"
}
]
},
"name": "panic_error_0x12",
"nodeType": "YulFunctionDefinition",
"src": "7942:180:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8170:143:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8180:25:5",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "8203:1:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "8185:17:5"
},
"nodeType": "YulFunctionCall",
"src": "8185:20:5"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "8180:1:5"
}
]
},
{
"nodeType": "YulAssignment",
"src": "8214:25:5",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "8237:1:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "8219:17:5"
},
"nodeType": "YulFunctionCall",
"src": "8219:20:5"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "8214:1:5"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "8261:22:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "8263:16:5"
},
"nodeType": "YulFunctionCall",
"src": "8263:18:5"
},
"nodeType": "YulExpressionStatement",
"src": "8263:18:5"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "8258:1:5"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "8251:6:5"
},
"nodeType": "YulFunctionCall",
"src": "8251:9:5"
},
"nodeType": "YulIf",
"src": "8248:35:5"
},
{
"nodeType": "YulAssignment",
"src": "8293:14:5",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "8302:1:5"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "8305:1:5"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "8298:3:5"
},
"nodeType": "YulFunctionCall",
"src": "8298:9:5"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "8293:1:5"
}
]
}
]
},
"name": "checked_div_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "8159:1:5",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "8162:1:5",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "8168:1:5",
"type": ""
}
],
"src": "8128:185:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8364:149:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8374:25:5",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "8397:1:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "8379:17:5"
},
"nodeType": "YulFunctionCall",
"src": "8379:20:5"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "8374:1:5"
}
]
},
{
"nodeType": "YulAssignment",
"src": "8408:25:5",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "8431:1:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "8413:17:5"
},
"nodeType": "YulFunctionCall",
"src": "8413:20:5"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "8408:1:5"
}
]
},
{
"nodeType": "YulAssignment",
"src": "8442:17:5",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "8454:1:5"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "8457:1:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "8450:3:5"
},
"nodeType": "YulFunctionCall",
"src": "8450:9:5"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "8442:4:5"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "8484:22:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "8486:16:5"
},
"nodeType": "YulFunctionCall",
"src": "8486:18:5"
},
"nodeType": "YulExpressionStatement",
"src": "8486:18:5"
}
]
},
"condition": {
"arguments": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "8475:4:5"
},
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "8481:1:5"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "8472:2:5"
},
"nodeType": "YulFunctionCall",
"src": "8472:11:5"
},
"nodeType": "YulIf",
"src": "8469:37:5"
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "8350:1:5",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "8353:1:5",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "8359:4:5",
"type": ""
}
],
"src": "8319:194:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8567:362:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8577:25:5",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "8600:1:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "8582:17:5"
},
"nodeType": "YulFunctionCall",
"src": "8582:20:5"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "8577:1:5"
}
]
},
{
"nodeType": "YulAssignment",
"src": "8611:25:5",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "8634:1:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "8616:17:5"
},
"nodeType": "YulFunctionCall",
"src": "8616:20:5"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "8611:1:5"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "8645:28:5",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "8668:1:5"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "8671:1:5"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "8664:3:5"
},
"nodeType": "YulFunctionCall",
"src": "8664:9:5"
},
"variables": [
{
"name": "product_raw",
"nodeType": "YulTypedName",
"src": "8649:11:5",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8682:41:5",
"value": {
"arguments": [
{
"name": "product_raw",
"nodeType": "YulIdentifier",
"src": "8711:11:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "8693:17:5"
},
"nodeType": "YulFunctionCall",
"src": "8693:30:5"
},
"variableNames": [
{
"name": "product",
"nodeType": "YulIdentifier",
"src": "8682:7:5"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "8900:22:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "8902:16:5"
},
"nodeType": "YulFunctionCall",
"src": "8902:18:5"
},
"nodeType": "YulExpressionStatement",
"src": "8902:18:5"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "8833:1:5"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "8826:6:5"
},
"nodeType": "YulFunctionCall",
"src": "8826:9:5"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "8856:1:5"
},
{
"arguments": [
{
"name": "product",
"nodeType": "YulIdentifier",
"src": "8863:7:5"
},
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "8872:1:5"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "8859:3:5"
},
"nodeType": "YulFunctionCall",
"src": "8859:15:5"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "8853:2:5"
},
"nodeType": "YulFunctionCall",
"src": "8853:22:5"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "8806:2:5"
},
"nodeType": "YulFunctionCall",
"src": "8806:83:5"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "8786:6:5"
},
"nodeType": "YulFunctionCall",
"src": "8786:113:5"
},
"nodeType": "YulIf",
"src": "8783:139:5"
}
]
},
"name": "checked_mul_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "8550:1:5",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "8553:1:5",
"type": ""
}
],
"returnVariables": [
{
"name": "product",
"nodeType": "YulTypedName",
"src": "8559:7:5",
"type": ""
}
],
"src": "8519:410:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9041:117:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "9063:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9071:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9059:3:5"
},
"nodeType": "YulFunctionCall",
"src": "9059:14:5"
},
{
"hexValue": "45524332303a20617070726f76652066726f6d20746865207a65726f20616464",
"kind": "string",
"nodeType": "YulLiteral",
"src": "9075:34:5",
"type": "",
"value": "ERC20: approve from the zero add"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9052:6:5"
},
"nodeType": "YulFunctionCall",
"src": "9052:58:5"
},
"nodeType": "YulExpressionStatement",
"src": "9052:58:5"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "9131:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9139:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9127:3:5"
},
"nodeType": "YulFunctionCall",
"src": "9127:15:5"
},
{
"hexValue": "72657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "9144:6:5",
"type": "",
"value": "ress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9120:6:5"
},
"nodeType": "YulFunctionCall",
"src": "9120:31:5"
},
"nodeType": "YulExpressionStatement",
"src": "9120:31:5"
}
]
},
"name": "store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "9033:6:5",
"type": ""
}
],
"src": "8935:223:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9310:220:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9320:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9386:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9391:2:5",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9327:58:5"
},
"nodeType": "YulFunctionCall",
"src": "9327:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9320:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9492:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208",
"nodeType": "YulIdentifier",
"src": "9403:88:5"
},
"nodeType": "YulFunctionCall",
"src": "9403:93:5"
},
"nodeType": "YulExpressionStatement",
"src": "9403:93:5"
},
{
"nodeType": "YulAssignment",
"src": "9505:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9516:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9521:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9512:3:5"
},
"nodeType": "YulFunctionCall",
"src": "9512:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9505:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9298:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9306:3:5",
"type": ""
}
],
"src": "9164:366:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9707:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9717:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9729:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9740:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9725:3:5"
},
"nodeType": "YulFunctionCall",
"src": "9725:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9717:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9764:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9775:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9760:3:5"
},
"nodeType": "YulFunctionCall",
"src": "9760:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9783:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9789:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "9779:3:5"
},
"nodeType": "YulFunctionCall",
"src": "9779:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9753:6:5"
},
"nodeType": "YulFunctionCall",
"src": "9753:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "9753:47:5"
},
{
"nodeType": "YulAssignment",
"src": "9809:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9943:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9817:124:5"
},
"nodeType": "YulFunctionCall",
"src": "9817:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9809:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9687:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9702:4:5",
"type": ""
}
],
"src": "9536:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10067:115:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "10089:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10097:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10085:3:5"
},
"nodeType": "YulFunctionCall",
"src": "10085:14:5"
},
{
"hexValue": "45524332303a20617070726f766520746f20746865207a65726f206164647265",
"kind": "string",
"nodeType": "YulLiteral",
"src": "10101:34:5",
"type": "",
"value": "ERC20: approve to the zero addre"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10078:6:5"
},
"nodeType": "YulFunctionCall",
"src": "10078:58:5"
},
"nodeType": "YulExpressionStatement",
"src": "10078:58:5"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "10157:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10165:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10153:3:5"
},
"nodeType": "YulFunctionCall",
"src": "10153:15:5"
},
{
"hexValue": "7373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "10170:4:5",
"type": "",
"value": "ss"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10146:6:5"
},
"nodeType": "YulFunctionCall",
"src": "10146:29:5"
},
"nodeType": "YulExpressionStatement",
"src": "10146:29:5"
}
]
},
"name": "store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "10059:6:5",
"type": ""
}
],
"src": "9961:221:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10334:220:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10344:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10410:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10415:2:5",
"type": "",
"value": "34"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10351:58:5"
},
"nodeType": "YulFunctionCall",
"src": "10351:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10344:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10516:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029",
"nodeType": "YulIdentifier",
"src": "10427:88:5"
},
"nodeType": "YulFunctionCall",
"src": "10427:93:5"
},
"nodeType": "YulExpressionStatement",
"src": "10427:93:5"
},
{
"nodeType": "YulAssignment",
"src": "10529:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10540:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10545:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10536:3:5"
},
"nodeType": "YulFunctionCall",
"src": "10536:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10529:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10322:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10330:3:5",
"type": ""
}
],
"src": "10188:366:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10731:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10741:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10753:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10764:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10749:3:5"
},
"nodeType": "YulFunctionCall",
"src": "10749:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10741:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10788:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10799:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10784:3:5"
},
"nodeType": "YulFunctionCall",
"src": "10784:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10807:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10813:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "10803:3:5"
},
"nodeType": "YulFunctionCall",
"src": "10803:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10777:6:5"
},
"nodeType": "YulFunctionCall",
"src": "10777:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "10777:47:5"
},
{
"nodeType": "YulAssignment",
"src": "10833:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10967:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10841:124:5"
},
"nodeType": "YulFunctionCall",
"src": "10841:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10833:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10711:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "10726:4:5",
"type": ""
}
],
"src": "10560:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11091:73:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "11113:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11121:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11109:3:5"
},
"nodeType": "YulFunctionCall",
"src": "11109:14:5"
},
{
"hexValue": "45524332303a20696e73756666696369656e7420616c6c6f77616e6365",
"kind": "string",
"nodeType": "YulLiteral",
"src": "11125:31:5",
"type": "",
"value": "ERC20: insufficient allowance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11102:6:5"
},
"nodeType": "YulFunctionCall",
"src": "11102:55:5"
},
"nodeType": "YulExpressionStatement",
"src": "11102:55:5"
}
]
},
"name": "store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "11083:6:5",
"type": ""
}
],
"src": "10985:179:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11316:220:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11326:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11392:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11397:2:5",
"type": "",
"value": "29"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11333:58:5"
},
"nodeType": "YulFunctionCall",
"src": "11333:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11326:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11498:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe",
"nodeType": "YulIdentifier",
"src": "11409:88:5"
},
"nodeType": "YulFunctionCall",
"src": "11409:93:5"
},
"nodeType": "YulExpressionStatement",
"src": "11409:93:5"
},
{
"nodeType": "YulAssignment",
"src": "11511:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11522:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11527:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11518:3:5"
},
"nodeType": "YulFunctionCall",
"src": "11518:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11511:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11304:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11312:3:5",
"type": ""
}
],
"src": "11170:366:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11713:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11723:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11735:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11746:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11731:3:5"
},
"nodeType": "YulFunctionCall",
"src": "11731:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11723:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11770:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11781:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11766:3:5"
},
"nodeType": "YulFunctionCall",
"src": "11766:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11789:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11795:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "11785:3:5"
},
"nodeType": "YulFunctionCall",
"src": "11785:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11759:6:5"
},
"nodeType": "YulFunctionCall",
"src": "11759:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "11759:47:5"
},
{
"nodeType": "YulAssignment",
"src": "11815:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11949:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11823:124:5"
},
"nodeType": "YulFunctionCall",
"src": "11823:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11815:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11693:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "11708:4:5",
"type": ""
}
],
"src": "11542:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12073:118:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "12095:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12103:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12091:3:5"
},
"nodeType": "YulFunctionCall",
"src": "12091:14:5"
},
{
"hexValue": "45524332303a207472616e736665722066726f6d20746865207a65726f206164",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12107:34:5",
"type": "",
"value": "ERC20: transfer from the zero ad"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12084:6:5"
},
"nodeType": "YulFunctionCall",
"src": "12084:58:5"
},
"nodeType": "YulExpressionStatement",
"src": "12084:58:5"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "12163:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12171:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12159:3:5"
},
"nodeType": "YulFunctionCall",
"src": "12159:15:5"
},
{
"hexValue": "6472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12176:7:5",
"type": "",
"value": "dress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12152:6:5"
},
"nodeType": "YulFunctionCall",
"src": "12152:32:5"
},
"nodeType": "YulExpressionStatement",
"src": "12152:32:5"
}
]
},
"name": "store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "12065:6:5",
"type": ""
}
],
"src": "11967:224:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12343:220:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12353:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12419:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12424:2:5",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12360:58:5"
},
"nodeType": "YulFunctionCall",
"src": "12360:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12353:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12525:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea",
"nodeType": "YulIdentifier",
"src": "12436:88:5"
},
"nodeType": "YulFunctionCall",
"src": "12436:93:5"
},
"nodeType": "YulExpressionStatement",
"src": "12436:93:5"
},
{
"nodeType": "YulAssignment",
"src": "12538:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12549:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12554:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12545:3:5"
},
"nodeType": "YulFunctionCall",
"src": "12545:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12538:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12331:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12339:3:5",
"type": ""
}
],
"src": "12197:366:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12740:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12750:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12762:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12773:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12758:3:5"
},
"nodeType": "YulFunctionCall",
"src": "12758:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12750:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12797:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12808:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12793:3:5"
},
"nodeType": "YulFunctionCall",
"src": "12793:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12816:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12822:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "12812:3:5"
},
"nodeType": "YulFunctionCall",
"src": "12812:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12786:6:5"
},
"nodeType": "YulFunctionCall",
"src": "12786:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "12786:47:5"
},
{
"nodeType": "YulAssignment",
"src": "12842:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12976:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12850:124:5"
},
"nodeType": "YulFunctionCall",
"src": "12850:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12842:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "12720:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "12735:4:5",
"type": ""
}
],
"src": "12569:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13100:116:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "13122:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13130:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13118:3:5"
},
"nodeType": "YulFunctionCall",
"src": "13118:14:5"
},
{
"hexValue": "45524332303a207472616e7366657220746f20746865207a65726f2061646472",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13134:34:5",
"type": "",
"value": "ERC20: transfer to the zero addr"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13111:6:5"
},
"nodeType": "YulFunctionCall",
"src": "13111:58:5"
},
"nodeType": "YulExpressionStatement",
"src": "13111:58:5"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "13190:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13198:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13186:3:5"
},
"nodeType": "YulFunctionCall",
"src": "13186:15:5"
},
{
"hexValue": "657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13203:5:5",
"type": "",
"value": "ess"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13179:6:5"
},
"nodeType": "YulFunctionCall",
"src": "13179:30:5"
},
"nodeType": "YulExpressionStatement",
"src": "13179:30:5"
}
]
},
"name": "store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "13092:6:5",
"type": ""
}
],
"src": "12994:222:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13368:220:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13378:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13444:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13449:2:5",
"type": "",
"value": "35"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13385:58:5"
},
"nodeType": "YulFunctionCall",
"src": "13385:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13378:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13550:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f",
"nodeType": "YulIdentifier",
"src": "13461:88:5"
},
"nodeType": "YulFunctionCall",
"src": "13461:93:5"
},
"nodeType": "YulExpressionStatement",
"src": "13461:93:5"
},
{
"nodeType": "YulAssignment",
"src": "13563:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13574:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13579:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13570:3:5"
},
"nodeType": "YulFunctionCall",
"src": "13570:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "13563:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13356:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "13364:3:5",
"type": ""
}
],
"src": "13222:366:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13765:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13775:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13787:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13798:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13783:3:5"
},
"nodeType": "YulFunctionCall",
"src": "13783:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13775:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13822:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13833:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13818:3:5"
},
"nodeType": "YulFunctionCall",
"src": "13818:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13841:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13847:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "13837:3:5"
},
"nodeType": "YulFunctionCall",
"src": "13837:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13811:6:5"
},
"nodeType": "YulFunctionCall",
"src": "13811:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "13811:47:5"
},
{
"nodeType": "YulAssignment",
"src": "13867:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14001:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13875:124:5"
},
"nodeType": "YulFunctionCall",
"src": "13875:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13867:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13745:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13760:4:5",
"type": ""
}
],
"src": "13594:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14125:119:5",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "14147:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14155:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14143:3:5"
},
"nodeType": "YulFunctionCall",
"src": "14143:14:5"
},
{
"hexValue": "45524332303a207472616e7366657220616d6f756e7420657863656564732062",
"kind": "string",
"nodeType": "YulLiteral",
"src": "14159:34:5",
"type": "",
"value": "ERC20: transfer amount exceeds b"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14136:6:5"
},
"nodeType": "YulFunctionCall",
"src": "14136:58:5"
},
"nodeType": "YulExpressionStatement",
"src": "14136:58:5"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "14215:6:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14223:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14211:3:5"
},
"nodeType": "YulFunctionCall",
"src": "14211:15:5"
},
{
"hexValue": "616c616e6365",
"kind": "string",
"nodeType": "YulLiteral",
"src": "14228:8:5",
"type": "",
"value": "alance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14204:6:5"
},
"nodeType": "YulFunctionCall",
"src": "14204:33:5"
},
"nodeType": "YulExpressionStatement",
"src": "14204:33:5"
}
]
},
"name": "store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "14117:6:5",
"type": ""
}
],
"src": "14019:225:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14396:220:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14406:74:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14472:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14477:2:5",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14413:58:5"
},
"nodeType": "YulFunctionCall",
"src": "14413:67:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14406:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14578:3:5"
}
],
"functionName": {
"name": "store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6",
"nodeType": "YulIdentifier",
"src": "14489:88:5"
},
"nodeType": "YulFunctionCall",
"src": "14489:93:5"
},
"nodeType": "YulExpressionStatement",
"src": "14489:93:5"
},
{
"nodeType": "YulAssignment",
"src": "14591:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14602:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14607:2:5",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14598:3:5"
},
"nodeType": "YulFunctionCall",
"src": "14598:12:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "14591:3:5"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "14384:3:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "14392:3:5",
"type": ""
}
],
"src": "14250:366:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14793:248:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14803:26:5",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14815:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14826:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14811:3:5"
},
"nodeType": "YulFunctionCall",
"src": "14811:18:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14803:4:5"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14850:9:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14861:1:5",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14846:3:5"
},
"nodeType": "YulFunctionCall",
"src": "14846:17:5"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14869:4:5"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14875:9:5"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "14865:3:5"
},
"nodeType": "YulFunctionCall",
"src": "14865:20:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14839:6:5"
},
"nodeType": "YulFunctionCall",
"src": "14839:47:5"
},
"nodeType": "YulExpressionStatement",
"src": "14839:47:5"
},
{
"nodeType": "YulAssignment",
"src": "14895:139:5",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15029:4:5"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14903:124:5"
},
"nodeType": "YulFunctionCall",
"src": "14903:131:5"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14895:4:5"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14773:9:5",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "14788:4:5",
"type": ""
}
],
"src": "14622:419:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15075:152:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15092:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15095:77:5",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15085:6:5"
},
"nodeType": "YulFunctionCall",
"src": "15085:88:5"
},
"nodeType": "YulExpressionStatement",
"src": "15085:88:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15189:1:5",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15192:4:5",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15182:6:5"
},
"nodeType": "YulFunctionCall",
"src": "15182:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "15182:15:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15213:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15216:4:5",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "15206:6:5"
},
"nodeType": "YulFunctionCall",
"src": "15206:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "15206:15:5"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "15047:180:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15275:52:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15285:35:5",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15310:2:5",
"type": "",
"value": "96"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "15314:5:5"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "15306:3:5"
},
"nodeType": "YulFunctionCall",
"src": "15306:14:5"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "15285:8:5"
}
]
}
]
},
"name": "shift_left_96",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "15256:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "15266:8:5",
"type": ""
}
],
"src": "15233:94:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15380:47:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15390:31:5",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "15415:5:5"
}
],
"functionName": {
"name": "shift_left_96",
"nodeType": "YulIdentifier",
"src": "15401:13:5"
},
"nodeType": "YulFunctionCall",
"src": "15401:20:5"
},
"variableNames": [
{
"name": "aligned",
"nodeType": "YulIdentifier",
"src": "15390:7:5"
}
]
}
]
},
"name": "leftAlign_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "15362:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "aligned",
"nodeType": "YulTypedName",
"src": "15372:7:5",
"type": ""
}
],
"src": "15333:94:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15480:53:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15490:37:5",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "15521:5:5"
}
],
"functionName": {
"name": "leftAlign_t_uint160",
"nodeType": "YulIdentifier",
"src": "15501:19:5"
},
"nodeType": "YulFunctionCall",
"src": "15501:26:5"
},
"variableNames": [
{
"name": "aligned",
"nodeType": "YulIdentifier",
"src": "15490:7:5"
}
]
}
]
},
"name": "leftAlign_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "15462:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "aligned",
"nodeType": "YulTypedName",
"src": "15472:7:5",
"type": ""
}
],
"src": "15433:100:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15622:74:5",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15639:3:5"
},
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "15682:5:5"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "15664:17:5"
},
"nodeType": "YulFunctionCall",
"src": "15664:24:5"
}
],
"functionName": {
"name": "leftAlign_t_address",
"nodeType": "YulIdentifier",
"src": "15644:19:5"
},
"nodeType": "YulFunctionCall",
"src": "15644:45:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15632:6:5"
},
"nodeType": "YulFunctionCall",
"src": "15632:58:5"
},
"nodeType": "YulExpressionStatement",
"src": "15632:58:5"
}
]
},
"name": "abi_encode_t_address_to_t_address_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "15610:5:5",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "15617:3:5",
"type": ""
}
],
"src": "15539:157:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15749:32:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15759:16:5",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "15770:5:5"
},
"variableNames": [
{
"name": "aligned",
"nodeType": "YulIdentifier",
"src": "15759:7:5"
}
]
}
]
},
"name": "leftAlign_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "15731:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "aligned",
"nodeType": "YulTypedName",
"src": "15741:7:5",
"type": ""
}
],
"src": "15702:79:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15870:74:5",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15887:3:5"
},
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "15930:5:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "15912:17:5"
},
"nodeType": "YulFunctionCall",
"src": "15912:24:5"
}
],
"functionName": {
"name": "leftAlign_t_uint256",
"nodeType": "YulIdentifier",
"src": "15892:19:5"
},
"nodeType": "YulFunctionCall",
"src": "15892:45:5"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15880:6:5"
},
"nodeType": "YulFunctionCall",
"src": "15880:58:5"
},
"nodeType": "YulExpressionStatement",
"src": "15880:58:5"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "15858:5:5",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "15865:3:5",
"type": ""
}
],
"src": "15787:157:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16094:253:5",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "16167:6:5"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16176:3:5"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "16105:61:5"
},
"nodeType": "YulFunctionCall",
"src": "16105:75:5"
},
"nodeType": "YulExpressionStatement",
"src": "16105:75:5"
},
{
"nodeType": "YulAssignment",
"src": "16189:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16200:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16205:2:5",
"type": "",
"value": "20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16196:3:5"
},
"nodeType": "YulFunctionCall",
"src": "16196:12:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16189:3:5"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "16280:6:5"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16289:3:5"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "16218:61:5"
},
"nodeType": "YulFunctionCall",
"src": "16218:75:5"
},
"nodeType": "YulExpressionStatement",
"src": "16218:75:5"
},
{
"nodeType": "YulAssignment",
"src": "16302:19:5",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16313:3:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16318:2:5",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16309:3:5"
},
"nodeType": "YulFunctionCall",
"src": "16309:12:5"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16302:3:5"
}
]
},
{
"nodeType": "YulAssignment",
"src": "16331:10:5",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16338:3:5"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "16331:3:5"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_address_t_uint256__to_t_address_t_uint256__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "16065:3:5",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "16071:6:5",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "16079:6:5",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "16090:3:5",
"type": ""
}
],
"src": "15950:397:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16381:152:5",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16398:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16401:77:5",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16391:6:5"
},
"nodeType": "YulFunctionCall",
"src": "16391:88:5"
},
"nodeType": "YulExpressionStatement",
"src": "16391:88:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16495:1:5",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16498:4:5",
"type": "",
"value": "0x32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16488:6:5"
},
"nodeType": "YulFunctionCall",
"src": "16488:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "16488:15:5"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16519:1:5",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16522:4:5",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "16512:6:5"
},
"nodeType": "YulFunctionCall",
"src": "16512:15:5"
},
"nodeType": "YulExpressionStatement",
"src": "16512:15:5"
}
]
},
"name": "panic_error_0x32",
"nodeType": "YulFunctionDefinition",
"src": "16353:180:5"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16582:190:5",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16592:33:5",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "16619:5:5"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "16601:17:5"
},
"nodeType": "YulFunctionCall",
"src": "16601:24:5"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "16592:5:5"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "16715:22:5",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "16717:16:5"
},
"nodeType": "YulFunctionCall",
"src": "16717:18:5"
},
"nodeType": "YulExpressionStatement",
"src": "16717:18:5"
}
]
},
"condition": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "16640:5:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16647:66:5",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "16637:2:5"
},
"nodeType": "YulFunctionCall",
"src": "16637:77:5"
},
"nodeType": "YulIf",
"src": "16634:103:5"
},
{
"nodeType": "YulAssignment",
"src": "16746:20:5",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "16757:5:5"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16764:1:5",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16753:3:5"
},
"nodeType": "YulFunctionCall",
"src": "16753:13:5"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "16746:3:5"
}
]
}
]
},
"name": "increment_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "16568:5:5",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "16578:3:5",
"type": ""
}
],
"src": "16539:233:5"
}
]
},
"contents": "{\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\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 copy_memory_to_memory_with_cleanup(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n mstore(add(dst, length), 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory_with_cleanup(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\n\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_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 abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_uint8(value) -> cleaned {\n cleaned := and(value, 0xff)\n }\n\n function abi_encode_t_uint8_to_t_uint8_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint8(value))\n }\n\n function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint8_to_t_uint8_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n sum := add(x, y)\n\n if gt(x, sum) { panic_error_0x11() }\n\n }\n\n function store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: decreased allowance below\")\n\n mstore(add(memPtr, 32), \" zero\")\n\n }\n\n function abi_encode_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__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_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function panic_error_0x12() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x12)\n revert(0, 0x24)\n }\n\n function checked_div_t_uint256(x, y) -> r {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n if iszero(y) { panic_error_0x12() }\n\n r := div(x, y)\n }\n\n function checked_sub_t_uint256(x, y) -> diff {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n diff := sub(x, y)\n\n if gt(diff, x) { panic_error_0x11() }\n\n }\n\n function checked_mul_t_uint256(x, y) -> product {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n let product_raw := mul(x, y)\n product := cleanup_t_uint256(product_raw)\n\n // overflow, if x != 0 and y != product/x\n if iszero(\n or(\n iszero(x),\n eq(y, div(product, x))\n )\n ) { panic_error_0x11() }\n\n }\n\n function store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: approve from the zero add\")\n\n mstore(add(memPtr, 32), \"ress\")\n\n }\n\n function abi_encode_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 36)\n store_literal_in_memory_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__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_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: approve to the zero addre\")\n\n mstore(add(memPtr, 32), \"ss\")\n\n }\n\n function abi_encode_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 34)\n store_literal_in_memory_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__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_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: insufficient allowance\")\n\n }\n\n function abi_encode_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 29)\n store_literal_in_memory_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__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_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer from the zero ad\")\n\n mstore(add(memPtr, 32), \"dress\")\n\n }\n\n function abi_encode_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__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_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer to the zero addr\")\n\n mstore(add(memPtr, 32), \"ess\")\n\n }\n\n function abi_encode_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 35)\n store_literal_in_memory_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__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_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC20: transfer amount exceeds b\")\n\n mstore(add(memPtr, 32), \"alance\")\n\n }\n\n function abi_encode_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 38)\n store_literal_in_memory_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__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_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function shift_left_96(value) -> newValue {\n newValue :=\n\n shl(96, value)\n\n }\n\n function leftAlign_t_uint160(value) -> aligned {\n aligned := shift_left_96(value)\n }\n\n function leftAlign_t_address(value) -> aligned {\n aligned := leftAlign_t_uint160(value)\n }\n\n function abi_encode_t_address_to_t_address_nonPadded_inplace_fromStack(value, pos) {\n mstore(pos, leftAlign_t_address(cleanup_t_address(value)))\n }\n\n function leftAlign_t_uint256(value) -> aligned {\n aligned := value\n }\n\n function abi_encode_t_uint256_to_t_uint256_nonPadded_inplace_fromStack(value, pos) {\n mstore(pos, leftAlign_t_uint256(cleanup_t_uint256(value)))\n }\n\n function abi_encode_tuple_packed_t_address_t_uint256__to_t_address_t_uint256__nonPadded_inplace_fromStack_reversed(pos , value1, value0) -> end {\n\n abi_encode_t_address_to_t_address_nonPadded_inplace_fromStack(value0, pos)\n pos := add(pos, 20)\n\n abi_encode_t_uint256_to_t_uint256_nonPadded_inplace_fromStack(value1, pos)\n pos := add(pos, 32)\n\n end := pos\n }\n\n function panic_error_0x32() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x32)\n revert(0, 0x24)\n }\n\n function increment_t_uint256(value) -> ret {\n value := cleanup_t_uint256(value)\n if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n ret := add(value, 1)\n }\n\n}\n",
"id": 5,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100ea5760003560e01c806370a082311161008c578063a457c2d711610066578063a457c2d714610263578063a9059cbb14610293578063d4698016146102c3578063dd62ed3e146102e1576100ea565b806370a08231146101f757806375f0a8741461022757806395d89b4114610245576100ea565b8063185870f9116100c8578063185870f91461015b57806323b872dd14610179578063313ce567146101a957806339509351146101c7576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f7610311565b6040516101049190610ef7565b60405180910390f35b61012760048036038101906101229190610fb2565b6103a3565b604051610134919061100d565b60405180910390f35b6101456103c6565b6040516101529190611037565b60405180910390f35b6101636103d0565b6040516101709190611061565b60405180910390f35b610193600480360381019061018e919061107c565b6103f6565b6040516101a0919061100d565b60405180910390f35b6101b1610425565b6040516101be91906110eb565b60405180910390f35b6101e160048036038101906101dc9190610fb2565b61042e565b6040516101ee919061100d565b60405180910390f35b610211600480360381019061020c9190611106565b610465565b60405161021e9190611037565b60405180910390f35b61022f6104ad565b60405161023c9190611061565b60405180910390f35b61024d6104d3565b60405161025a9190610ef7565b60405180910390f35b61027d60048036038101906102789190610fb2565b610565565b60405161028a919061100d565b60405180910390f35b6102ad60048036038101906102a89190610fb2565b6105dc565b6040516102ba919061100d565b60405180910390f35b6102cb610721565b6040516102d89190611061565b60405180910390f35b6102fb60048036038101906102f69190611133565b610747565b6040516103089190611037565b60405180910390f35b606060038054610320906111a2565b80601f016020809104026020016040519081016040528092919081815260200182805461034c906111a2565b80156103995780601f1061036e57610100808354040283529160200191610399565b820191906000526020600020905b81548152906001019060200180831161037c57829003601f168201915b5050505050905090565b6000806103ae6107ce565b90506103bb8185856107d6565b600191505092915050565b6000600254905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806104016107ce565b905061040e85828561099f565b610419858585610a2b565b60019150509392505050565b60006012905090565b6000806104396107ce565b905061045a81858561044b8589610747565b6104559190611202565b6107d6565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600480546104e2906111a2565b80601f016020809104026020016040519081016040528092919081815260200182805461050e906111a2565b801561055b5780601f106105305761010080835404028352916020019161055b565b820191906000526020600020905b81548152906001019060200180831161053e57829003601f168201915b5050505050905090565b6000806105706107ce565b9050600061057e8286610747565b9050838110156105c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ba906112a8565b60405180910390fd5b6105d082868684036107d6565b60019250505092915050565b600080600a836105ec91906112f7565b9050600081846105fc9190611328565b905061063e6106096107ce565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600285610639919061135c565b610a2b565b61067e6106496107ce565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600285610679919061135c565b610a2b565b6106be6106896107ce565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166005856106b9919061135c565b610a2b565b60006106ca6000610465565b6106d26103c6565b6106dc9190611328565b9050600081111561070257600081846106f591906112f7565b905061070081610ca1565b505b61071461070d6107ce565b8784610a2b565b6001935050505092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083c90611410565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ab906114a2565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109929190611037565b60405180910390a3505050565b60006109ab8484610747565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a255781811015610a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0e9061150e565b60405180910390fd5b610a2484848484036107d6565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a91906115a0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0090611632565b60405180910390fd5b610b14838383610e5d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b91906116c4565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c889190611037565b60405180910390a3610c9b848484610e62565b50505050565b6000610cab6103c6565b67ffffffffffffffff811115610cc457610cc36116e4565b5b604051908082528060200260200182016040528015610cf25781602001602082028036833780820191505090505b5090506000805b610d016103c6565b811015610df35760003082604051602001610d1d92919061177c565b6040516020818303038152906040528051906020012060001c9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614158015610d7d57506000610d7b82610465565b115b15610ddf5780848481518110610d9657610d956117a8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508280610ddb906117d7565b9350505b508080610deb906117d7565b915050610cf9565b5060005b81811015610e57576000838281518110610e1457610e136117a8565b5b60200260200101519050600085610e2a83610465565b610e34919061135c565b9050610e4260008383610a2b565b50508080610e4f906117d7565b915050610df7565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610ea1578082015181840152602081019050610e86565b60008484015250505050565b6000601f19601f8301169050919050565b6000610ec982610e67565b610ed38185610e72565b9350610ee3818560208601610e83565b610eec81610ead565b840191505092915050565b60006020820190508181036000830152610f118184610ebe565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610f4982610f1e565b9050919050565b610f5981610f3e565b8114610f6457600080fd5b50565b600081359050610f7681610f50565b92915050565b6000819050919050565b610f8f81610f7c565b8114610f9a57600080fd5b50565b600081359050610fac81610f86565b92915050565b60008060408385031215610fc957610fc8610f19565b5b6000610fd785828601610f67565b9250506020610fe885828601610f9d565b9150509250929050565b60008115159050919050565b61100781610ff2565b82525050565b60006020820190506110226000830184610ffe565b92915050565b61103181610f7c565b82525050565b600060208201905061104c6000830184611028565b92915050565b61105b81610f3e565b82525050565b60006020820190506110766000830184611052565b92915050565b60008060006060848603121561109557611094610f19565b5b60006110a386828701610f67565b93505060206110b486828701610f67565b92505060406110c586828701610f9d565b9150509250925092565b600060ff82169050919050565b6110e5816110cf565b82525050565b600060208201905061110060008301846110dc565b92915050565b60006020828403121561111c5761111b610f19565b5b600061112a84828501610f67565b91505092915050565b6000806040838503121561114a57611149610f19565b5b600061115885828601610f67565b925050602061116985828601610f67565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806111ba57607f821691505b6020821081036111cd576111cc611173565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061120d82610f7c565b915061121883610f7c565b92508282019050808211156112305761122f6111d3565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611292602583610e72565b915061129d82611236565b604082019050919050565b600060208201905081810360008301526112c181611285565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061130282610f7c565b915061130d83610f7c565b92508261131d5761131c6112c8565b5b828204905092915050565b600061133382610f7c565b915061133e83610f7c565b9250828203905081811115611356576113556111d3565b5b92915050565b600061136782610f7c565b915061137283610f7c565b925082820261138081610f7c565b91508282048414831517611397576113966111d3565b5b5092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006113fa602483610e72565b91506114058261139e565b604082019050919050565b60006020820190508181036000830152611429816113ed565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061148c602283610e72565b915061149782611430565b604082019050919050565b600060208201905081810360008301526114bb8161147f565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006114f8601d83610e72565b9150611503826114c2565b602082019050919050565b60006020820190508181036000830152611527816114eb565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061158a602583610e72565b91506115958261152e565b604082019050919050565b600060208201905081810360008301526115b98161157d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061161c602383610e72565b9150611627826115c0565b604082019050919050565b6000602082019050818103600083015261164b8161160f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006116ae602683610e72565b91506116b982611652565b604082019050919050565b600060208201905081810360008301526116dd816116a1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008160601b9050919050565b600061172b82611713565b9050919050565b600061173d82611720565b9050919050565b61175561175082610f3e565b611732565b82525050565b6000819050919050565b61177661177182610f7c565b61175b565b82525050565b60006117888285611744565b6014820191506117988284611765565b6020820191508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006117e282610f7c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611814576118136111d3565b5b60018201905091905056fea26469706673582212208f0a90ee91df49afb135f7aae56ee1de1240cfc39b7a71881adf49d0e4a0c26664736f6c63430008110033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xEA JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x70A08231 GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xA457C2D7 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x263 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x293 JUMPI DUP1 PUSH4 0xD4698016 EQ PUSH2 0x2C3 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x2E1 JUMPI PUSH2 0xEA JUMP JUMPDEST DUP1 PUSH4 0x70A08231 EQ PUSH2 0x1F7 JUMPI DUP1 PUSH4 0x75F0A874 EQ PUSH2 0x227 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x245 JUMPI PUSH2 0xEA JUMP JUMPDEST DUP1 PUSH4 0x185870F9 GT PUSH2 0xC8 JUMPI DUP1 PUSH4 0x185870F9 EQ PUSH2 0x15B JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x179 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x1A9 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x1C7 JUMPI PUSH2 0xEA JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xEF JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x10D JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x13D JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xF7 PUSH2 0x311 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x104 SWAP2 SWAP1 PUSH2 0xEF7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x127 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x122 SWAP2 SWAP1 PUSH2 0xFB2 JUMP JUMPDEST PUSH2 0x3A3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x134 SWAP2 SWAP1 PUSH2 0x100D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x145 PUSH2 0x3C6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x152 SWAP2 SWAP1 PUSH2 0x1037 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x163 PUSH2 0x3D0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x170 SWAP2 SWAP1 PUSH2 0x1061 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x193 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x18E SWAP2 SWAP1 PUSH2 0x107C JUMP JUMPDEST PUSH2 0x3F6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1A0 SWAP2 SWAP1 PUSH2 0x100D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1B1 PUSH2 0x425 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1BE SWAP2 SWAP1 PUSH2 0x10EB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1E1 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1DC SWAP2 SWAP1 PUSH2 0xFB2 JUMP JUMPDEST PUSH2 0x42E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1EE SWAP2 SWAP1 PUSH2 0x100D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x211 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x20C SWAP2 SWAP1 PUSH2 0x1106 JUMP JUMPDEST PUSH2 0x465 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x21E SWAP2 SWAP1 PUSH2 0x1037 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x22F PUSH2 0x4AD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x23C SWAP2 SWAP1 PUSH2 0x1061 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x24D PUSH2 0x4D3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x25A SWAP2 SWAP1 PUSH2 0xEF7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x27D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x278 SWAP2 SWAP1 PUSH2 0xFB2 JUMP JUMPDEST PUSH2 0x565 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x28A SWAP2 SWAP1 PUSH2 0x100D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2AD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2A8 SWAP2 SWAP1 PUSH2 0xFB2 JUMP JUMPDEST PUSH2 0x5DC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2BA SWAP2 SWAP1 PUSH2 0x100D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2CB PUSH2 0x721 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2D8 SWAP2 SWAP1 PUSH2 0x1061 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2FB PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2F6 SWAP2 SWAP1 PUSH2 0x1133 JUMP JUMPDEST PUSH2 0x747 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x308 SWAP2 SWAP1 PUSH2 0x1037 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x320 SWAP1 PUSH2 0x11A2 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x34C SWAP1 PUSH2 0x11A2 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x399 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x36E JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x399 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x37C JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x3AE PUSH2 0x7CE JUMP JUMPDEST SWAP1 POP PUSH2 0x3BB DUP2 DUP6 DUP6 PUSH2 0x7D6 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x7 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x401 PUSH2 0x7CE JUMP JUMPDEST SWAP1 POP PUSH2 0x40E DUP6 DUP3 DUP6 PUSH2 0x99F JUMP JUMPDEST PUSH2 0x419 DUP6 DUP6 DUP6 PUSH2 0xA2B JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x439 PUSH2 0x7CE JUMP JUMPDEST SWAP1 POP PUSH2 0x45A DUP2 DUP6 DUP6 PUSH2 0x44B DUP6 DUP10 PUSH2 0x747 JUMP JUMPDEST PUSH2 0x455 SWAP2 SWAP1 PUSH2 0x1202 JUMP JUMPDEST PUSH2 0x7D6 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x4E2 SWAP1 PUSH2 0x11A2 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x50E SWAP1 PUSH2 0x11A2 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x55B JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x530 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x55B JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x53E JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x570 PUSH2 0x7CE JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x57E DUP3 DUP7 PUSH2 0x747 JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x5C3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5BA SWAP1 PUSH2 0x12A8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x5D0 DUP3 DUP7 DUP7 DUP5 SUB PUSH2 0x7D6 JUMP JUMPDEST PUSH1 0x1 SWAP3 POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0xA DUP4 PUSH2 0x5EC SWAP2 SWAP1 PUSH2 0x12F7 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 DUP5 PUSH2 0x5FC SWAP2 SWAP1 PUSH2 0x1328 JUMP JUMPDEST SWAP1 POP PUSH2 0x63E PUSH2 0x609 PUSH2 0x7CE JUMP JUMPDEST PUSH1 0x5 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x2 DUP6 PUSH2 0x639 SWAP2 SWAP1 PUSH2 0x135C JUMP JUMPDEST PUSH2 0xA2B JUMP JUMPDEST PUSH2 0x67E PUSH2 0x649 PUSH2 0x7CE JUMP JUMPDEST PUSH1 0x6 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x2 DUP6 PUSH2 0x679 SWAP2 SWAP1 PUSH2 0x135C JUMP JUMPDEST PUSH2 0xA2B JUMP JUMPDEST PUSH2 0x6BE PUSH2 0x689 PUSH2 0x7CE JUMP JUMPDEST PUSH1 0x7 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x5 DUP6 PUSH2 0x6B9 SWAP2 SWAP1 PUSH2 0x135C JUMP JUMPDEST PUSH2 0xA2B JUMP JUMPDEST PUSH1 0x0 PUSH2 0x6CA PUSH1 0x0 PUSH2 0x465 JUMP JUMPDEST PUSH2 0x6D2 PUSH2 0x3C6 JUMP JUMPDEST PUSH2 0x6DC SWAP2 SWAP1 PUSH2 0x1328 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 GT ISZERO PUSH2 0x702 JUMPI PUSH1 0x0 DUP2 DUP5 PUSH2 0x6F5 SWAP2 SWAP1 PUSH2 0x12F7 JUMP JUMPDEST SWAP1 POP PUSH2 0x700 DUP2 PUSH2 0xCA1 JUMP JUMPDEST POP JUMPDEST PUSH2 0x714 PUSH2 0x70D PUSH2 0x7CE JUMP JUMPDEST DUP8 DUP5 PUSH2 0xA2B JUMP JUMPDEST PUSH1 0x1 SWAP4 POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x6 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x845 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x83C SWAP1 PUSH2 0x1410 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x8B4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8AB SWAP1 PUSH2 0x14A2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP4 PUSH1 0x40 MLOAD PUSH2 0x992 SWAP2 SWAP1 PUSH2 0x1037 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x9AB DUP5 DUP5 PUSH2 0x747 JUMP JUMPDEST SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 EQ PUSH2 0xA25 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0xA17 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA0E SWAP1 PUSH2 0x150E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xA24 DUP5 DUP5 DUP5 DUP5 SUB PUSH2 0x7D6 JUMP JUMPDEST JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xA9A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA91 SWAP1 PUSH2 0x15A0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xB09 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB00 SWAP1 PUSH2 0x1632 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xB14 DUP4 DUP4 DUP4 PUSH2 0xE5D JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0xB9A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB91 SWAP1 PUSH2 0x16C4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH1 0x0 DUP1 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP5 PUSH1 0x40 MLOAD PUSH2 0xC88 SWAP2 SWAP1 PUSH2 0x1037 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0xC9B DUP5 DUP5 DUP5 PUSH2 0xE62 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xCAB PUSH2 0x3C6 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xCC4 JUMPI PUSH2 0xCC3 PUSH2 0x16E4 JUMP JUMPDEST JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xCF2 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 DUP1 JUMPDEST PUSH2 0xD01 PUSH2 0x3C6 JUMP JUMPDEST DUP2 LT ISZERO PUSH2 0xDF3 JUMPI PUSH1 0x0 ADDRESS DUP3 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xD1D SWAP3 SWAP2 SWAP1 PUSH2 0x177C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 PUSH1 0x0 SHR SWAP1 POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO DUP1 ISZERO PUSH2 0xD7D JUMPI POP PUSH1 0x0 PUSH2 0xD7B DUP3 PUSH2 0x465 JUMP JUMPDEST GT JUMPDEST ISZERO PUSH2 0xDDF JUMPI DUP1 DUP5 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0xD96 JUMPI PUSH2 0xD95 PUSH2 0x17A8 JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP POP DUP3 DUP1 PUSH2 0xDDB SWAP1 PUSH2 0x17D7 JUMP JUMPDEST SWAP4 POP POP JUMPDEST POP DUP1 DUP1 PUSH2 0xDEB SWAP1 PUSH2 0x17D7 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xCF9 JUMP JUMPDEST POP PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xE57 JUMPI PUSH1 0x0 DUP4 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xE14 JUMPI PUSH2 0xE13 PUSH2 0x17A8 JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP1 POP PUSH1 0x0 DUP6 PUSH2 0xE2A DUP4 PUSH2 0x465 JUMP JUMPDEST PUSH2 0xE34 SWAP2 SWAP1 PUSH2 0x135C JUMP JUMPDEST SWAP1 POP PUSH2 0xE42 PUSH1 0x0 DUP4 DUP4 PUSH2 0xA2B JUMP JUMPDEST POP POP DUP1 DUP1 PUSH2 0xE4F SWAP1 PUSH2 0x17D7 JUMP JUMPDEST SWAP2 POP POP PUSH2 0xDF7 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xEA1 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xE86 JUMP JUMPDEST PUSH1 0x0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xEC9 DUP3 PUSH2 0xE67 JUMP JUMPDEST PUSH2 0xED3 DUP2 DUP6 PUSH2 0xE72 JUMP JUMPDEST SWAP4 POP PUSH2 0xEE3 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xE83 JUMP JUMPDEST PUSH2 0xEEC DUP2 PUSH2 0xEAD JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0xF11 DUP2 DUP5 PUSH2 0xEBE JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF49 DUP3 PUSH2 0xF1E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xF59 DUP2 PUSH2 0xF3E JUMP JUMPDEST DUP2 EQ PUSH2 0xF64 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xF76 DUP2 PUSH2 0xF50 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xF8F DUP2 PUSH2 0xF7C JUMP JUMPDEST DUP2 EQ PUSH2 0xF9A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xFAC DUP2 PUSH2 0xF86 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xFC9 JUMPI PUSH2 0xFC8 PUSH2 0xF19 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xFD7 DUP6 DUP3 DUP7 ADD PUSH2 0xF67 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xFE8 DUP6 DUP3 DUP7 ADD PUSH2 0xF9D JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1007 DUP2 PUSH2 0xFF2 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1022 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xFFE JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1031 DUP2 PUSH2 0xF7C JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x104C PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1028 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x105B DUP2 PUSH2 0xF3E JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1076 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1052 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1095 JUMPI PUSH2 0x1094 PUSH2 0xF19 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x10A3 DUP7 DUP3 DUP8 ADD PUSH2 0xF67 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x10B4 DUP7 DUP3 DUP8 ADD PUSH2 0xF67 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x10C5 DUP7 DUP3 DUP8 ADD PUSH2 0xF9D JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x10E5 DUP2 PUSH2 0x10CF JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1100 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x10DC JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x111C JUMPI PUSH2 0x111B PUSH2 0xF19 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x112A DUP5 DUP3 DUP6 ADD PUSH2 0xF67 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x114A JUMPI PUSH2 0x1149 PUSH2 0xF19 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1158 DUP6 DUP3 DUP7 ADD PUSH2 0xF67 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1169 DUP6 DUP3 DUP7 ADD PUSH2 0xF67 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x11BA JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x11CD JUMPI PUSH2 0x11CC PUSH2 0x1173 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x120D DUP3 PUSH2 0xF7C JUMP JUMPDEST SWAP2 POP PUSH2 0x1218 DUP4 PUSH2 0xF7C JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0x1230 JUMPI PUSH2 0x122F PUSH2 0x11D3 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x45524332303A2064656372656173656420616C6C6F77616E63652062656C6F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x207A65726F000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1292 PUSH1 0x25 DUP4 PUSH2 0xE72 JUMP JUMPDEST SWAP2 POP PUSH2 0x129D DUP3 PUSH2 0x1236 JUMP JUMPDEST PUSH1 0x40 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 PUSH2 0x12C1 DUP2 PUSH2 0x1285 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1302 DUP3 PUSH2 0xF7C JUMP JUMPDEST SWAP2 POP PUSH2 0x130D DUP4 PUSH2 0xF7C JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x131D JUMPI PUSH2 0x131C PUSH2 0x12C8 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1333 DUP3 PUSH2 0xF7C JUMP JUMPDEST SWAP2 POP PUSH2 0x133E DUP4 PUSH2 0xF7C JUMP JUMPDEST SWAP3 POP DUP3 DUP3 SUB SWAP1 POP DUP2 DUP2 GT ISZERO PUSH2 0x1356 JUMPI PUSH2 0x1355 PUSH2 0x11D3 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1367 DUP3 PUSH2 0xF7C JUMP JUMPDEST SWAP2 POP PUSH2 0x1372 DUP4 PUSH2 0xF7C JUMP JUMPDEST SWAP3 POP DUP3 DUP3 MUL PUSH2 0x1380 DUP2 PUSH2 0xF7C JUMP JUMPDEST SWAP2 POP DUP3 DUP3 DIV DUP5 EQ DUP4 ISZERO OR PUSH2 0x1397 JUMPI PUSH2 0x1396 PUSH2 0x11D3 JUMP JUMPDEST JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F76652066726F6D20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x13FA PUSH1 0x24 DUP4 PUSH2 0xE72 JUMP JUMPDEST SWAP2 POP PUSH2 0x1405 DUP3 PUSH2 0x139E JUMP JUMPDEST PUSH1 0x40 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 PUSH2 0x1429 DUP2 PUSH2 0x13ED JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20617070726F766520746F20746865207A65726F206164647265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7373000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x148C PUSH1 0x22 DUP4 PUSH2 0xE72 JUMP JUMPDEST SWAP2 POP PUSH2 0x1497 DUP3 PUSH2 0x1430 JUMP JUMPDEST PUSH1 0x40 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 PUSH2 0x14BB DUP2 PUSH2 0x147F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x14F8 PUSH1 0x1D DUP4 PUSH2 0xE72 JUMP JUMPDEST SWAP2 POP PUSH2 0x1503 DUP3 PUSH2 0x14C2 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 PUSH2 0x1527 DUP2 PUSH2 0x14EB JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6472657373000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x158A PUSH1 0x25 DUP4 PUSH2 0xE72 JUMP JUMPDEST SWAP2 POP PUSH2 0x1595 DUP3 PUSH2 0x152E JUMP JUMPDEST PUSH1 0x40 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 PUSH2 0x15B9 DUP2 PUSH2 0x157D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220746F20746865207A65726F2061646472 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6573730000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x161C PUSH1 0x23 DUP4 PUSH2 0xE72 JUMP JUMPDEST SWAP2 POP PUSH2 0x1627 DUP3 PUSH2 0x15C0 JUMP JUMPDEST PUSH1 0x40 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 PUSH2 0x164B DUP2 PUSH2 0x160F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x45524332303A207472616E7366657220616D6F756E7420657863656564732062 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616C616E63650000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x16AE PUSH1 0x26 DUP4 PUSH2 0xE72 JUMP JUMPDEST SWAP2 POP PUSH2 0x16B9 DUP3 PUSH2 0x1652 JUMP JUMPDEST PUSH1 0x40 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 PUSH2 0x16DD DUP2 PUSH2 0x16A1 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x60 SHL SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x172B DUP3 PUSH2 0x1713 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x173D DUP3 PUSH2 0x1720 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1755 PUSH2 0x1750 DUP3 PUSH2 0xF3E JUMP JUMPDEST PUSH2 0x1732 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1776 PUSH2 0x1771 DUP3 PUSH2 0xF7C JUMP JUMPDEST PUSH2 0x175B JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1788 DUP3 DUP6 PUSH2 0x1744 JUMP JUMPDEST PUSH1 0x14 DUP3 ADD SWAP2 POP PUSH2 0x1798 DUP3 DUP5 PUSH2 0x1765 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x17E2 DUP3 PUSH2 0xF7C JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 SUB PUSH2 0x1814 JUMPI PUSH2 0x1813 PUSH2 0x11D3 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP16 EXP SWAP1 0xEE SWAP2 0xDF 0x49 0xAF 0xB1 CALLDATALOAD 0xF7 0xAA 0xE5 PUSH15 0xE1DE1240CFC39B7A71881ADF49D0E4 LOG0 0xC2 PUSH7 0x64736F6C634300 ADDMOD GT STOP CALLER ",
"sourceMap": "119:1867:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2154:98:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4431:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3242:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;224:30:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5190:286:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3091:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5871:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3406:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;150:30:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2365:102:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6592:427;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;526:716:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;187:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3974:149:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2154:98;2208:13;2240:5;2233:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2154:98;:::o;4431:197::-;4514:4;4530:13;4546:12;:10;:12::i;:::-;4530:28;;4568:32;4577:5;4584:7;4593:6;4568:8;:32::i;:::-;4617:4;4610:11;;;4431:197;;;;:::o;3242:106::-;3303:7;3329:12;;3322:19;;3242:106;:::o;224:30:4:-;;;;;;;;;;;;;:::o;5190:286:0:-;5317:4;5333:15;5351:12;:10;:12::i;:::-;5333:30;;5373:38;5389:4;5395:7;5404:6;5373:15;:38::i;:::-;5421:27;5431:4;5437:2;5441:6;5421:9;:27::i;:::-;5465:4;5458:11;;;5190:286;;;;;:::o;3091:91::-;3149:5;3173:2;3166:9;;3091:91;:::o;5871:234::-;5959:4;5975:13;5991:12;:10;:12::i;:::-;5975:28;;6013:64;6022:5;6029:7;6066:10;6038:25;6048:5;6055:7;6038:9;:25::i;:::-;:38;;;;:::i;:::-;6013:8;:64::i;:::-;6094:4;6087:11;;;5871:234;;;;:::o;3406:125::-;3480:7;3506:9;:18;3516:7;3506:18;;;;;;;;;;;;;;;;3499:25;;3406:125;;;:::o;150:30:4:-;;;;;;;;;;;;;:::o;2365:102:0:-;2421:13;2453:7;2446:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2365:102;:::o;6592:427::-;6685:4;6701:13;6717:12;:10;:12::i;:::-;6701:28;;6739:24;6766:25;6776:5;6783:7;6766:9;:25::i;:::-;6739:52;;6829:15;6809:16;:35;;6801:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6920:60;6929:5;6936:7;6964:15;6945:16;:34;6920:8;:60::i;:::-;7008:4;7001:11;;;;6592:427;;;;:::o;526:716:4:-;612:4;629:17;658:2;649:6;:11;;;;:::i;:::-;629:31;;671:24;707:9;698:6;:18;;;;:::i;:::-;671:45;;727:55;737:12;:10;:12::i;:::-;751:15;;;;;;;;;;;780:1;768:9;:13;;;;:::i;:::-;727:9;:55::i;:::-;793;803:12;:10;:12::i;:::-;817:15;;;;;;;;;;;846:1;834:9;:13;;;;:::i;:::-;793:9;:55::i;:::-;859;869:12;:10;:12::i;:::-;883:15;;;;;;;;;;;912:1;900:9;:13;;;;:::i;:::-;859:9;:55::i;:::-;925:20;964:21;982:1;964:9;:21::i;:::-;948:13;:11;:13::i;:::-;:37;;;;:::i;:::-;925:60;;1015:1;1000:12;:16;996:154;;;1033:26;1074:12;1062:9;:24;;;;:::i;:::-;1033:53;;1101:37;1119:18;1101:17;:37::i;:::-;1018:132;996:154;1160:52;1170:12;:10;:12::i;:::-;1184:9;1195:16;1160:9;:52::i;:::-;1230:4;1223:11;;;;;526:716;;;;:::o;187:30::-;;;;;;;;;;;;;:::o;3974:149:0:-;4063:7;4089:11;:18;4101:5;4089:18;;;;;;;;;;;;;;;:27;4108:7;4089:27;;;;;;;;;;;;;;;;4082:34;;3974:149;;;;:::o;640:96:3:-;693:7;719:10;712:17;;640:96;:::o;10504:370:0:-;10652:1;10635:19;;:5;:19;;;10627:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10732:1;10713:21;;:7;:21;;;10705:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10814:6;10784:11;:18;10796:5;10784:18;;;;;;;;;;;;;;;:27;10803:7;10784:27;;;;;;;;;;;;;;;:36;;;;10851:7;10835:32;;10844:5;10835:32;;;10860:6;10835:32;;;;;;:::i;:::-;;;;;;;;10504:370;;;:::o;11155:441::-;11285:24;11312:25;11322:5;11329:7;11312:9;:25::i;:::-;11285:52;;11371:17;11351:16;:37;11347:243;;11432:6;11412:16;:26;;11404:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11514:51;11523:5;11530:7;11558:6;11539:16;:25;11514:8;:51::i;:::-;11347:243;11275:321;11155:441;;;:::o;7473:818::-;7615:1;7599:18;;:4;:18;;;7591:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7691:1;7677:16;;:2;:16;;;7669:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;7744:38;7765:4;7771:2;7775:6;7744:20;:38::i;:::-;7793:19;7815:9;:15;7825:4;7815:15;;;;;;;;;;;;;;;;7793:37;;7863:6;7848:11;:21;;7840:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;7978:6;7964:11;:20;7946:9;:15;7956:4;7946:15;;;;;;;;;;;;;;;:38;;;;8178:6;8161:9;:13;8171:2;8161:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;8225:2;8210:26;;8219:4;8210:26;;;8229:6;8210:26;;;;;;:::i;:::-;;;;;;;;8247:37;8267:4;8273:2;8277:6;8247:19;:37::i;:::-;7581:710;7473:818;;;:::o;1250:733:4:-;1312:24;1353:13;:11;:13::i;:::-;1339:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1312:55;;1378:19;1417:9;1412:350;1436:13;:11;:13::i;:::-;1432:1;:17;1412:350;;;1471:14;1562:4;1569:1;1519:66;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1509:77;;;;;;1504:83;;1471:118;;1626:1;1608:20;;:6;:20;;;;:45;;;;;1652:1;1632:17;1642:6;1632:9;:17::i;:::-;:21;1608:45;1604:147;;;1697:6;1674:7;1682:11;1674:20;;;;;;;;:::i;:::-;;;;;;;:29;;;;;;;;;;;1722:13;;;;;:::i;:::-;;;;1604:147;1456:306;1451:3;;;;;:::i;:::-;;;;1412:350;;;;1777:9;1772:204;1796:11;1792:1;:15;1772:204;;;1829:14;1846:7;1854:1;1846:10;;;;;;;;:::i;:::-;;;;;;;;1829:27;;1871:13;1907:6;1887:17;1897:6;1887:9;:17::i;:::-;:26;;;;:::i;:::-;1871:42;;1928:36;1946:1;1950:6;1958:5;1928:9;:36::i;:::-;1814:162;;1809:3;;;;;:::i;:::-;;;;1772:204;;;;1301:682;;1250:733;:::o;12180:121:0:-;;;;:::o;12889:120::-;;;;:::o;7:99:5:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:118::-;3885:24;3903:5;3885:24;:::i;:::-;3880:3;3873:37;3798:118;;:::o;3922:222::-;4015:4;4053:2;4042:9;4038:18;4030:26;;4066:71;4134:1;4123:9;4119:17;4110:6;4066:71;:::i;:::-;3922:222;;;;:::o;4150:619::-;4227:6;4235;4243;4292:2;4280:9;4271:7;4267:23;4263:32;4260:119;;;4298:79;;:::i;:::-;4260:119;4418:1;4443:53;4488:7;4479:6;4468:9;4464:22;4443:53;:::i;:::-;4433:63;;4389:117;4545:2;4571:53;4616:7;4607:6;4596:9;4592:22;4571:53;:::i;:::-;4561:63;;4516:118;4673:2;4699:53;4744:7;4735:6;4724:9;4720:22;4699:53;:::i;:::-;4689:63;;4644:118;4150:619;;;;;:::o;4775:86::-;4810:7;4850:4;4843:5;4839:16;4828:27;;4775:86;;;:::o;4867:112::-;4950:22;4966:5;4950:22;:::i;:::-;4945:3;4938:35;4867:112;;:::o;4985:214::-;5074:4;5112:2;5101:9;5097:18;5089:26;;5125:67;5189:1;5178:9;5174:17;5165:6;5125:67;:::i;:::-;4985:214;;;;:::o;5205:329::-;5264:6;5313:2;5301:9;5292:7;5288:23;5284:32;5281:119;;;5319:79;;:::i;:::-;5281:119;5439:1;5464:53;5509:7;5500:6;5489:9;5485:22;5464:53;:::i;:::-;5454:63;;5410:117;5205:329;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:180::-;6068:77;6065:1;6058:88;6165:4;6162:1;6155:15;6189:4;6186:1;6179:15;6206:320;6250:6;6287:1;6281:4;6277:12;6267:22;;6334:1;6328:4;6324:12;6355:18;6345:81;;6411:4;6403:6;6399:17;6389:27;;6345:81;6473:2;6465:6;6462:14;6442:18;6439:38;6436:84;;6492:18;;:::i;:::-;6436:84;6257:269;6206:320;;;:::o;6532:180::-;6580:77;6577:1;6570:88;6677:4;6674:1;6667:15;6701:4;6698:1;6691:15;6718:191;6758:3;6777:20;6795:1;6777:20;:::i;:::-;6772:25;;6811:20;6829:1;6811:20;:::i;:::-;6806:25;;6854:1;6851;6847:9;6840:16;;6875:3;6872:1;6869:10;6866:36;;;6882:18;;:::i;:::-;6866:36;6718:191;;;;:::o;6915:224::-;7055:34;7051:1;7043:6;7039:14;7032:58;7124:7;7119:2;7111:6;7107:15;7100:32;6915:224;:::o;7145:366::-;7287:3;7308:67;7372:2;7367:3;7308:67;:::i;:::-;7301:74;;7384:93;7473:3;7384:93;:::i;:::-;7502:2;7497:3;7493:12;7486:19;;7145:366;;;:::o;7517:419::-;7683:4;7721:2;7710:9;7706:18;7698:26;;7770:9;7764:4;7760:20;7756:1;7745:9;7741:17;7734:47;7798:131;7924:4;7798:131;:::i;:::-;7790:139;;7517:419;;;:::o;7942:180::-;7990:77;7987:1;7980:88;8087:4;8084:1;8077:15;8111:4;8108:1;8101:15;8128:185;8168:1;8185:20;8203:1;8185:20;:::i;:::-;8180:25;;8219:20;8237:1;8219:20;:::i;:::-;8214:25;;8258:1;8248:35;;8263:18;;:::i;:::-;8248:35;8305:1;8302;8298:9;8293:14;;8128:185;;;;:::o;8319:194::-;8359:4;8379:20;8397:1;8379:20;:::i;:::-;8374:25;;8413:20;8431:1;8413:20;:::i;:::-;8408:25;;8457:1;8454;8450:9;8442:17;;8481:1;8475:4;8472:11;8469:37;;;8486:18;;:::i;:::-;8469:37;8319:194;;;;:::o;8519:410::-;8559:7;8582:20;8600:1;8582:20;:::i;:::-;8577:25;;8616:20;8634:1;8616:20;:::i;:::-;8611:25;;8671:1;8668;8664:9;8693:30;8711:11;8693:30;:::i;:::-;8682:41;;8872:1;8863:7;8859:15;8856:1;8853:22;8833:1;8826:9;8806:83;8783:139;;8902:18;;:::i;:::-;8783:139;8567:362;8519:410;;;;:::o;8935:223::-;9075:34;9071:1;9063:6;9059:14;9052:58;9144:6;9139:2;9131:6;9127:15;9120:31;8935:223;:::o;9164:366::-;9306:3;9327:67;9391:2;9386:3;9327:67;:::i;:::-;9320:74;;9403:93;9492:3;9403:93;:::i;:::-;9521:2;9516:3;9512:12;9505:19;;9164:366;;;:::o;9536:419::-;9702:4;9740:2;9729:9;9725:18;9717:26;;9789:9;9783:4;9779:20;9775:1;9764:9;9760:17;9753:47;9817:131;9943:4;9817:131;:::i;:::-;9809:139;;9536:419;;;:::o;9961:221::-;10101:34;10097:1;10089:6;10085:14;10078:58;10170:4;10165:2;10157:6;10153:15;10146:29;9961:221;:::o;10188:366::-;10330:3;10351:67;10415:2;10410:3;10351:67;:::i;:::-;10344:74;;10427:93;10516:3;10427:93;:::i;:::-;10545:2;10540:3;10536:12;10529:19;;10188:366;;;:::o;10560:419::-;10726:4;10764:2;10753:9;10749:18;10741:26;;10813:9;10807:4;10803:20;10799:1;10788:9;10784:17;10777:47;10841:131;10967:4;10841:131;:::i;:::-;10833:139;;10560:419;;;:::o;10985:179::-;11125:31;11121:1;11113:6;11109:14;11102:55;10985:179;:::o;11170:366::-;11312:3;11333:67;11397:2;11392:3;11333:67;:::i;:::-;11326:74;;11409:93;11498:3;11409:93;:::i;:::-;11527:2;11522:3;11518:12;11511:19;;11170:366;;;:::o;11542:419::-;11708:4;11746:2;11735:9;11731:18;11723:26;;11795:9;11789:4;11785:20;11781:1;11770:9;11766:17;11759:47;11823:131;11949:4;11823:131;:::i;:::-;11815:139;;11542:419;;;:::o;11967:224::-;12107:34;12103:1;12095:6;12091:14;12084:58;12176:7;12171:2;12163:6;12159:15;12152:32;11967:224;:::o;12197:366::-;12339:3;12360:67;12424:2;12419:3;12360:67;:::i;:::-;12353:74;;12436:93;12525:3;12436:93;:::i;:::-;12554:2;12549:3;12545:12;12538:19;;12197:366;;;:::o;12569:419::-;12735:4;12773:2;12762:9;12758:18;12750:26;;12822:9;12816:4;12812:20;12808:1;12797:9;12793:17;12786:47;12850:131;12976:4;12850:131;:::i;:::-;12842:139;;12569:419;;;:::o;12994:222::-;13134:34;13130:1;13122:6;13118:14;13111:58;13203:5;13198:2;13190:6;13186:15;13179:30;12994:222;:::o;13222:366::-;13364:3;13385:67;13449:2;13444:3;13385:67;:::i;:::-;13378:74;;13461:93;13550:3;13461:93;:::i;:::-;13579:2;13574:3;13570:12;13563:19;;13222:366;;;:::o;13594:419::-;13760:4;13798:2;13787:9;13783:18;13775:26;;13847:9;13841:4;13837:20;13833:1;13822:9;13818:17;13811:47;13875:131;14001:4;13875:131;:::i;:::-;13867:139;;13594:419;;;:::o;14019:225::-;14159:34;14155:1;14147:6;14143:14;14136:58;14228:8;14223:2;14215:6;14211:15;14204:33;14019:225;:::o;14250:366::-;14392:3;14413:67;14477:2;14472:3;14413:67;:::i;:::-;14406:74;;14489:93;14578:3;14489:93;:::i;:::-;14607:2;14602:3;14598:12;14591:19;;14250:366;;;:::o;14622:419::-;14788:4;14826:2;14815:9;14811:18;14803:26;;14875:9;14869:4;14865:20;14861:1;14850:9;14846:17;14839:47;14903:131;15029:4;14903:131;:::i;:::-;14895:139;;14622:419;;;:::o;15047:180::-;15095:77;15092:1;15085:88;15192:4;15189:1;15182:15;15216:4;15213:1;15206:15;15233:94;15266:8;15314:5;15310:2;15306:14;15285:35;;15233:94;;;:::o;15333:::-;15372:7;15401:20;15415:5;15401:20;:::i;:::-;15390:31;;15333:94;;;:::o;15433:100::-;15472:7;15501:26;15521:5;15501:26;:::i;:::-;15490:37;;15433:100;;;:::o;15539:157::-;15644:45;15664:24;15682:5;15664:24;:::i;:::-;15644:45;:::i;:::-;15639:3;15632:58;15539:157;;:::o;15702:79::-;15741:7;15770:5;15759:16;;15702:79;;;:::o;15787:157::-;15892:45;15912:24;15930:5;15912:24;:::i;:::-;15892:45;:::i;:::-;15887:3;15880:58;15787:157;;:::o;15950:397::-;16090:3;16105:75;16176:3;16167:6;16105:75;:::i;:::-;16205:2;16200:3;16196:12;16189:19;;16218:75;16289:3;16280:6;16218:75;:::i;:::-;16318:2;16313:3;16309:12;16302:19;;16338:3;16331:10;;15950:397;;;;;:::o;16353:180::-;16401:77;16398:1;16391:88;16498:4;16495:1;16488:15;16522:4;16519:1;16512:15;16539:233;16578:3;16601:24;16619:5;16601:24;:::i;:::-;16592:33;;16647:66;16640:5;16637:77;16634:103;;16717:18;;:::i;:::-;16634:103;16764:1;16757:5;16753:13;16746:20;;16539:233;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "1245800",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"allowance(address,address)": "infinite",
"approve(address,uint256)": "infinite",
"balanceOf(address)": "2864",
"decimals()": "410",
"decreaseAllowance(address,uint256)": "infinite",
"developerWallet()": "2537",
"increaseAllowance(address,uint256)": "infinite",
"liquidityWallet()": "2580",
"marketingWallet()": "2559",
"name()": "infinite",
"symbol()": "infinite",
"totalSupply()": "2505",
"transfer(address,uint256)": "infinite",
"transferFrom(address,address,uint256)": "infinite"
},
"internal": {
"_distributeTokens(uint256)": "infinite"
}
},
"methodIdentifiers": {
"allowance(address,address)": "dd62ed3e",
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"decimals()": "313ce567",
"decreaseAllowance(address,uint256)": "a457c2d7",
"developerWallet()": "185870f9",
"increaseAllowance(address,uint256)": "39509351",
"liquidityWallet()": "d4698016",
"marketingWallet()": "75f0a874",
"name()": "06fdde03",
"symbol()": "95d89b41",
"totalSupply()": "18160ddd",
"transfer(address,uint256)": "a9059cbb",
"transferFrom(address,address,uint256)": "23b872dd"
}
},
"abi": [
{
"inputs": [
{
"internalType": "address",
"name": "_marketingWallet",
"type": "address"
},
{
"internalType": "address",
"name": "_liquidityWallet",
"type": "address"
},
{
"internalType": "address",
"name": "_developerWallet",
"type": "address"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "spender",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "decimals",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "subtractedValue",
"type": "uint256"
}
],
"name": "decreaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "developerWallet",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "addedValue",
"type": "uint256"
}
],
"name": "increaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "liquidityWallet",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "marketingWallet",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.17+commit.8df45f5f"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "address",
"name": "_marketingWallet",
"type": "address"
},
{
"internalType": "address",
"name": "_liquidityWallet",
"type": "address"
},
{
"internalType": "address",
"name": "_developerWallet",
"type": "address"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "spender",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "decimals",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "subtractedValue",
"type": "uint256"
}
],
"name": "decreaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "developerWallet",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "addedValue",
"type": "uint256"
}
],
"name": "increaseAllowance",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "liquidityWallet",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "marketingWallet",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {
"allowance(address,address)": {
"details": "See {IERC20-allowance}."
},
"approve(address,uint256)": {
"details": "See {IERC20-approve}. NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address."
},
"balanceOf(address)": {
"details": "See {IERC20-balanceOf}."
},
"decimals()": {
"details": "Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the value {ERC20} uses, unless this function is overridden; NOTE: This information is only used for _display_ purposes: it in no way affects any of the arithmetic of the contract, including {IERC20-balanceOf} and {IERC20-transfer}."
},
"decreaseAllowance(address,uint256)": {
"details": "Atomically decreases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address. - `spender` must have allowance for the caller of at least `subtractedValue`."
},
"increaseAllowance(address,uint256)": {
"details": "Atomically increases the allowance granted to `spender` by the caller. This is an alternative to {approve} that can be used as a mitigation for problems described in {IERC20-approve}. Emits an {Approval} event indicating the updated allowance. Requirements: - `spender` cannot be the zero address."
},
"name()": {
"details": "Returns the name of the token."
},
"symbol()": {
"details": "Returns the symbol of the token, usually a shorter version of the name."
},
"totalSupply()": {
"details": "See {IERC20-totalSupply}."
},
"transferFrom(address,address,uint256)": {
"details": "See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `amount`. - the caller must have allowance for ``from``'s tokens of at least `amount`."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/AurumToken.sol": "Aurum"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"@openzeppelin/contracts/token/ERC20/ERC20.sol": {
"keccak256": "0x4ffc0547c02ad22925310c585c0f166f8759e2648a09e9b489100c42f15dd98d",
"license": "MIT",
"urls": [
"bzz-raw://15f52f51413a9de1ff191e2f6367c62178e1df7806d7880fe857a98b0b66253d",
"dweb:/ipfs/QmaQG1fwfgUt5E9nu2cccFiV47B2V78MM1tCy1qB7n4MsH"
]
},
"@openzeppelin/contracts/token/ERC20/IERC20.sol": {
"keccak256": "0x9750c6b834f7b43000631af5cc30001c5f547b3ceb3635488f140f60e897ea6b",
"license": "MIT",
"urls": [
"bzz-raw://5a7d5b1ef5d8d5889ad2ed89d8619c09383b80b72ab226e0fe7bde1636481e34",
"dweb:/ipfs/QmebXWgtEfumQGBdVeM6c71McLixYXQP5Bk6kKXuoY4Bmr"
]
},
"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol": {
"keccak256": "0x8de418a5503946cabe331f35fe242d3201a73f67f77aaeb7110acb1f30423aca",
"license": "MIT",
"urls": [
"bzz-raw://5a376d3dda2cb70536c0a45c208b29b34ac560c4cb4f513a42079f96ba47d2dd",
"dweb:/ipfs/QmZQg6gn1sUpM8wHzwNvSnihumUCAhxD119MpXeKp8B9s8"
]
},
"@openzeppelin/contracts/utils/Context.sol": {
"keccak256": "0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7",
"license": "MIT",
"urls": [
"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92",
"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3"
]
},
"contracts/AurumToken.sol": {
"keccak256": "0xf6a730304dbe0e4d9749d31daf86575c3f5564bde155527e6355830251a5ca47",
"license": "MIT",
"urls": [
"bzz-raw://2fd61d15d414e79026ca9765a50e18e4f0a21fa3472485e4f259413d9717b17d",
"dweb:/ipfs/QmYUXjtorbV3xqVApKGF53D7Wz54r8HxGxQJiKnDi5aDof"
]
}
},
"version": 1
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
contract Aurum is ERC20 {
address public marketingWallet;
address public liquidityWallet;
address public developerWallet;
constructor(address _marketingWallet, address _liquidityWallet, address _developerWallet) ERC20("Aurum", "AUR") {
marketingWallet = _marketingWallet;
liquidityWallet = _liquidityWallet;
developerWallet = _developerWallet;
}
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
uint256 taxAmount = amount / 10;
uint256 tokensToTransfer = amount - taxAmount;
_transfer(_msgSender(), marketingWallet, taxAmount * 2);
_transfer(_msgSender(), liquidityWallet, taxAmount * 2);
_transfer(_msgSender(), developerWallet, taxAmount * 5);
uint256 totalHolders = totalSupply() - balanceOf(address(0));
if (totalHolders > 0) {
uint256 tokensToDistribute = taxAmount / totalHolders;
_distributeTokens(tokensToDistribute);
}
_transfer(_msgSender(), recipient, tokensToTransfer);
return true;
}
function _distributeTokens(uint256 amount) private {
address[] memory holders = new address[](totalSupply());
uint256 holderCount = 0;
for (uint256 i = 0; i < totalSupply(); i++) {
address holder = address(uint160(uint(keccak256(abi.encodePacked(
address(this), i
)))));
if (holder != address(0) && balanceOf(holder) > 0) {
holders[holderCount] = holder;
holderCount++;
}
}
for (uint256 i = 0; i < holderCount; i++) {
address holder = holders[i];
uint256 share = balanceOf(holder) * amount;
_transfer(address(0), holder, share);
}
}
}
import { deploy } from './ethers-lib'
(async () => {
try {
const result = await deploy('MyToken', [])
console.log(`address: ${result.address}`)
} catch (e) {
console.log(e.message)
}
})()
import { deploy } from './web3-lib'
(async () => {
try {
const result = await deploy('MyToken', [])
console.log(`address: ${result.address}`)
} catch (e) {
console.log(e.message)
}
})()
import { ethers } from 'ethers'
/**
* Deploy the given contract
* @param {string} contractName name of the contract to deploy
* @param {Array<any>} args list of constructor' parameters
* @param {Number} accountIndex account index from the exposed account
* @return {Contract} deployed contract
*/
export const deploy = async (contractName: string, args: Array<any>, accountIndex?: number): Promise<ethers.Contract> => {
console.log(`deploying ${contractName}`)
// Note that the script needs the ABI which is generated from the compilation artifact.
// Make sure contract is compiled and artifacts are generated
const artifactsPath = `browser/contracts/artifacts/${contractName}.json` // Change this for different path
const metadata = JSON.parse(await remix.call('fileManager', 'getFile', artifactsPath))
// 'web3Provider' is a remix global variable object
const signer = (new ethers.providers.Web3Provider(web3Provider)).getSigner(accountIndex)
const factory = new ethers.ContractFactory(metadata.abi, metadata.data.bytecode.object, signer)
const contract = await factory.deploy(...args)
// The contract is NOT deployed yet; we must wait until it is mined
await contract.deployed()
return contract
}
import Web3 from 'web3'
import { Contract, ContractSendMethod, Options } from 'web3-eth-contract'
/**
* Deploy the given contract
* @param {string} contractName name of the contract to deploy
* @param {Array<any>} args list of constructor' parameters
* @param {string} from account used to send the transaction
* @param {number} gas gas limit
* @return {Options} deployed contract
*/
export const deploy = async (contractName: string, args: Array<any>, from?: string, gas?: number): Promise<Options> => {
const web3 = new Web3(web3Provider)
console.log(`deploying ${contractName}`)
// Note that the script needs the ABI which is generated from the compilation artifact.
// Make sure contract is compiled and artifacts are generated
const artifactsPath = `browser/contracts/artifacts/${contractName}.json`
const metadata = JSON.parse(await remix.call('fileManager', 'getFile', artifactsPath))
const accounts = await web3.eth.getAccounts()
const contract: Contract = new web3.eth.Contract(metadata.abi)
const contractSend: ContractSendMethod = contract.deploy({
data: metadata.data.bytecode.object,
arguments: args
})
const newContractInstance = await contractSend.send({
from: from || accounts[0],
gas: gas || 1500000
})
return newContractInstance.options
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment