false
true
0

Contract Address Details

0xA897571ae466C8c66aB4d4D69a571f55F6454aB2

Contract Name
FeeManager
Creator
0x90068d–ad5880 at 0x1c7ef0–829411
Balance
0 PLS ( )
Tokens
Fetching tokens...
Transactions
2 Transactions
Transfers
2,588 Transfers
Gas Used
85,268
Last Balance Update
26348728
Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
This contract has been partially verified via Sourcify. View contract in Sourcify repository
Contract name:
FeeManager




Optimization enabled
true
Compiler version
v0.8.17+commit.8df45f5f




Optimization runs
200
EVM Version
london




Verified at
2026-04-22T10:11:44.827801Z

Constructor Arguments

000000000000000000000000f930ebbd05ef8b25b1797b9b2109ddc9b0d43063

Arg [0] (address) : 0xf930ebbd05ef8b25b1797b9b2109ddc9b0d43063

              

FeeManager.sol

// SPDX-License-Identifier: Unlicense
pragma solidity 0.8.17;

/// @notice Modern and gas efficient ERC20 + EIP-2612 implementation.
/// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/tokens/ERC20.sol)
/// @author Modified from Uniswap (https://github.com/Uniswap/uniswap-v2-core/blob/master/contracts/UniswapV2ERC20.sol)
/// @dev Do not manually set balances without updating totalSupply, as the sum of all user balances must not exceed it.
abstract contract ERC20 {
    /*//////////////////////////////////////////////////////////////
                                 EVENTS
    //////////////////////////////////////////////////////////////*/

    event Transfer(address indexed from, address indexed to, uint256 amount);

    event Approval(address indexed owner, address indexed spender, uint256 amount);

    /*//////////////////////////////////////////////////////////////
                            METADATA STORAGE
    //////////////////////////////////////////////////////////////*/

    string public name;

    string public symbol;

    uint8 public immutable decimals;

    /*//////////////////////////////////////////////////////////////
                              ERC20 STORAGE
    //////////////////////////////////////////////////////////////*/

    uint256 public totalSupply;

    mapping(address => uint256) public balanceOf;

    mapping(address => mapping(address => uint256)) public allowance;

    /*//////////////////////////////////////////////////////////////
                            EIP-2612 STORAGE
    //////////////////////////////////////////////////////////////*/

    uint256 internal immutable INITIAL_CHAIN_ID;

    bytes32 internal immutable INITIAL_DOMAIN_SEPARATOR;

    mapping(address => uint256) public nonces;

    /*//////////////////////////////////////////////////////////////
                               CONSTRUCTOR
    //////////////////////////////////////////////////////////////*/

    constructor(
        string memory _name,
        string memory _symbol,
        uint8 _decimals
    ) {
        name = _name;
        symbol = _symbol;
        decimals = _decimals;

        INITIAL_CHAIN_ID = block.chainid;
        INITIAL_DOMAIN_SEPARATOR = computeDomainSeparator();
    }

    /*//////////////////////////////////////////////////////////////
                               ERC20 LOGIC
    //////////////////////////////////////////////////////////////*/

    function approve(address spender, uint256 amount) public virtual returns (bool) {
        allowance[msg.sender][spender] = amount;

        emit Approval(msg.sender, spender, amount);

        return true;
    }

    function transfer(address to, uint256 amount) public virtual returns (bool) {
        balanceOf[msg.sender] -= amount;

        // Cannot overflow because the sum of all user
        // balances can't exceed the max uint256 value.
        unchecked {
            balanceOf[to] += amount;
        }

        emit Transfer(msg.sender, to, amount);

        return true;
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual returns (bool) {
        uint256 allowed = allowance[from][msg.sender]; // Saves gas for limited approvals.

        if (allowed != type(uint256).max) allowance[from][msg.sender] = allowed - amount;

        balanceOf[from] -= amount;

        // Cannot overflow because the sum of all user
        // balances can't exceed the max uint256 value.
        unchecked {
            balanceOf[to] += amount;
        }

        emit Transfer(from, to, amount);

        return true;
    }

    /*//////////////////////////////////////////////////////////////
                             EIP-2612 LOGIC
    //////////////////////////////////////////////////////////////*/

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) public virtual {
        require(deadline >= block.timestamp, "PERMIT_DEADLINE_EXPIRED");

        // Unchecked because the only math done is incrementing
        // the owner's nonce which cannot realistically overflow.
        unchecked {
            address recoveredAddress = ecrecover(
                keccak256(
                    abi.encodePacked(
                        "\x19\x01",
                        DOMAIN_SEPARATOR(),
                        keccak256(
                            abi.encode(
                                keccak256(
                                    "Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"
                                ),
                                owner,
                                spender,
                                value,
                                nonces[owner]++,
                                deadline
                            )
                        )
                    )
                ),
                v,
                r,
                s
            );

            require(recoveredAddress != address(0) && recoveredAddress == owner, "INVALID_SIGNER");

            allowance[recoveredAddress][spender] = value;
        }

        emit Approval(owner, spender, value);
    }

    function DOMAIN_SEPARATOR() public view virtual returns (bytes32) {
        return block.chainid == INITIAL_CHAIN_ID ? INITIAL_DOMAIN_SEPARATOR : computeDomainSeparator();
    }

    function computeDomainSeparator() internal view virtual returns (bytes32) {
        return
            keccak256(
                abi.encode(
                    keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"),
                    keccak256(bytes(name)),
                    keccak256("1"),
                    block.chainid,
                    address(this)
                )
            );
    }

    /*//////////////////////////////////////////////////////////////
                        INTERNAL MINT/BURN LOGIC
    //////////////////////////////////////////////////////////////*/

    function _mint(address to, uint256 amount) internal virtual {
        totalSupply += amount;

        // Cannot overflow because the sum of all user
        // balances can't exceed the max uint256 value.
        unchecked {
            balanceOf[to] += amount;
        }

        emit Transfer(address(0), to, amount);
    }

    function _burn(address from, uint256 amount) internal virtual {
        balanceOf[from] -= amount;

        // Cannot underflow because a user's balance
        // will never be larger than the total supply.
        unchecked {
            totalSupply -= amount;
        }

        emit Transfer(from, address(0), amount);
    }
}

/// @notice Safe ETH and ERC20 transfer library that gracefully handles missing return values.
/// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/SafeTransferLib.sol)
/// @dev Use with caution! Some functions in this library knowingly create dirty bits at the destination of the free memory pointer.
/// @dev Note that none of the functions in this library check that a token has code at all! That responsibility is delegated to the caller.
library SafeTransferLib {
    /*//////////////////////////////////////////////////////////////
                             ETH OPERATIONS
    //////////////////////////////////////////////////////////////*/

    function safeTransferETH(address to, uint256 amount) internal {
        bool success;

        /// @solidity memory-safe-assembly
        assembly {
            // Transfer the ETH and store if it succeeded or not.
            success := call(gas(), to, amount, 0, 0, 0, 0)
        }

        require(success, "ETH_TRANSFER_FAILED");
    }

    /*//////////////////////////////////////////////////////////////
                            ERC20 OPERATIONS
    //////////////////////////////////////////////////////////////*/

    function safeTransferFrom(
        ERC20 token,
        address from,
        address to,
        uint256 amount
    ) internal {
        bool success;

        /// @solidity memory-safe-assembly
        assembly {
            // Get a pointer to some free memory.
            let freeMemoryPointer := mload(0x40)

            // Write the abi-encoded calldata into memory, beginning with the function selector.
            mstore(freeMemoryPointer, 0x23b872dd00000000000000000000000000000000000000000000000000000000)
            mstore(add(freeMemoryPointer, 4), from) // Append the "from" argument.
            mstore(add(freeMemoryPointer, 36), to) // Append the "to" argument.
            mstore(add(freeMemoryPointer, 68), amount) // Append the "amount" argument.

            success := and(
                // Set success to whether the call reverted, if not we check it either
                // returned exactly 1 (can't just be non-zero data), or had no return data.
                or(and(eq(mload(0), 1), gt(returndatasize(), 31)), iszero(returndatasize())),
                // We use 100 because the length of our calldata totals up like so: 4 + 32 * 3.
                // We use 0 and 32 to copy up to 32 bytes of return data into the scratch space.
                // Counterintuitively, this call must be positioned second to the or() call in the
                // surrounding and() call or else returndatasize() will be zero during the computation.
                call(gas(), token, 0, freeMemoryPointer, 100, 0, 32)
            )
        }

        require(success, "TRANSFER_FROM_FAILED");
    }

    function safeTransfer(
        ERC20 token,
        address to,
        uint256 amount
    ) internal {
        bool success;

        /// @solidity memory-safe-assembly
        assembly {
            // Get a pointer to some free memory.
            let freeMemoryPointer := mload(0x40)

            // Write the abi-encoded calldata into memory, beginning with the function selector.
            mstore(freeMemoryPointer, 0xa9059cbb00000000000000000000000000000000000000000000000000000000)
            mstore(add(freeMemoryPointer, 4), to) // Append the "to" argument.
            mstore(add(freeMemoryPointer, 36), amount) // Append the "amount" argument.

            success := and(
                // Set success to whether the call reverted, if not we check it either
                // returned exactly 1 (can't just be non-zero data), or had no return data.
                or(and(eq(mload(0), 1), gt(returndatasize(), 31)), iszero(returndatasize())),
                // We use 68 because the length of our calldata totals up like so: 4 + 32 * 2.
                // We use 0 and 32 to copy up to 32 bytes of return data into the scratch space.
                // Counterintuitively, this call must be positioned second to the or() call in the
                // surrounding and() call or else returndatasize() will be zero during the computation.
                call(gas(), token, 0, freeMemoryPointer, 68, 0, 32)
            )
        }

        require(success, "TRANSFER_FAILED");
    }

    function safeApprove(
        ERC20 token,
        address to,
        uint256 amount
    ) internal {
        bool success;

        /// @solidity memory-safe-assembly
        assembly {
            // Get a pointer to some free memory.
            let freeMemoryPointer := mload(0x40)

            // Write the abi-encoded calldata into memory, beginning with the function selector.
            mstore(freeMemoryPointer, 0x095ea7b300000000000000000000000000000000000000000000000000000000)
            mstore(add(freeMemoryPointer, 4), to) // Append the "to" argument.
            mstore(add(freeMemoryPointer, 36), amount) // Append the "amount" argument.

            success := and(
                // Set success to whether the call reverted, if not we check it either
                // returned exactly 1 (can't just be non-zero data), or had no return data.
                or(and(eq(mload(0), 1), gt(returndatasize(), 31)), iszero(returndatasize())),
                // We use 68 because the length of our calldata totals up like so: 4 + 32 * 2.
                // We use 0 and 32 to copy up to 32 bytes of return data into the scratch space.
                // Counterintuitively, this call must be positioned second to the or() call in the
                // surrounding and() call or else returndatasize() will be zero during the computation.
                call(gas(), token, 0, freeMemoryPointer, 68, 0, 32)
            )
        }

        require(success, "APPROVE_FAILED");
    }
}

/// @notice Simple single owner authorization mixin.
/// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/auth/Owned.sol)
abstract contract Owned {
    /*//////////////////////////////////////////////////////////////
                                 EVENTS
    //////////////////////////////////////////////////////////////*/

    event OwnershipTransferred(address indexed user, address indexed newOwner);

    /*//////////////////////////////////////////////////////////////
                            OWNERSHIP STORAGE
    //////////////////////////////////////////////////////////////*/

    address public owner;

    modifier onlyOwner() virtual {
        require(msg.sender == owner, "UNAUTHORIZED");

        _;
    }

    /*//////////////////////////////////////////////////////////////
                               CONSTRUCTOR
    //////////////////////////////////////////////////////////////*/

    constructor(address _owner) {
        owner = _owner;

        emit OwnershipTransferred(address(0), _owner);
    }

    /*//////////////////////////////////////////////////////////////
                             OWNERSHIP LOGIC
    //////////////////////////////////////////////////////////////*/

    function transferOwnership(address newOwner) public virtual onlyOwner {
        owner = newOwner;

        emit OwnershipTransferred(msg.sender, newOwner);
    }
}

contract FeeManager is Owned {
    using SafeTransferLib for ERC20;
    uint256 public totalFee;
    uint256 internal constant _DEFAULT_FEE = 2e16; // 2%
    struct FeeRecipient {
        address recipient;
        uint256 fee;
    }
    FeeRecipient[] public recipients;

    /// @notice Thrown if the fee percentage is invalid.
    error INCORRECT_FEE();

    constructor(address _feeRecipient) Owned(_feeRecipient) {
        totalFee = _DEFAULT_FEE;
        recipients.push(FeeRecipient(_feeRecipient, _DEFAULT_FEE));
    }

    function disperseFees(address _token) external {
        uint256 length = recipients.length;
        uint256 totalBal = ERC20(_token).balanceOf(address(this));
        uint256 amount;
        for (uint256 i; i < length; ) {
            FeeRecipient memory recipient = recipients[i];
            amount = (totalBal * recipient.fee) / totalFee;
            ERC20(_token).safeTransfer(recipient.recipient, amount);
            unchecked {
                i++;
            }
        }
    }

    function addRecipient(address _recipient, uint256 _fee) external onlyOwner {
        if (_fee > 1e18) revert INCORRECT_FEE();
        recipients.push(FeeRecipient(_recipient, _fee));
        totalFee += _fee;
    }

    function removeRecipient(uint256 _index) external onlyOwner {
        totalFee -= recipients[_index].fee;
        recipients[_index] = recipients[recipients.length - 1];
        recipients.pop();
    }

    function updateRecipient(
        uint256 _index,
        address _recipient,
        uint256 _fee
    ) external onlyOwner {
        if (_fee > 1e18) revert INCORRECT_FEE();
        totalFee -= recipients[_index].fee;
        recipients[_index].recipient = _recipient;
        recipients[_index].fee = _fee;
        totalFee += _fee;
    }

    function totalFeeRecipients() external view returns (uint256) {
        return recipients.length;
    }
}
        

Compiler Settings

{"remappings":[],"optimizer":{"runs":200,"enabled":true},"metadata":{"bytecodeHash":"ipfs"},"libraries":{},"evmVersion":"london","compilationTarget":{"FeeManager.sol":"FeeManager"}}
              

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"address","name":"_feeRecipient","internalType":"address"}]},{"type":"error","name":"INCORRECT_FEE","inputs":[]},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"user","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"addRecipient","inputs":[{"type":"address","name":"_recipient","internalType":"address"},{"type":"uint256","name":"_fee","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"disperseFees","inputs":[{"type":"address","name":"_token","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"recipient","internalType":"address"},{"type":"uint256","name":"fee","internalType":"uint256"}],"name":"recipients","inputs":[{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"removeRecipient","inputs":[{"type":"uint256","name":"_index","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalFee","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalFeeRecipients","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"updateRecipient","inputs":[{"type":"uint256","name":"_index","internalType":"uint256"},{"type":"address","name":"_recipient","internalType":"address"},{"type":"uint256","name":"_fee","internalType":"uint256"}]}]
              

Contract Creation Code

Verify & Publish
0x608060405234801561001057600080fd5b50604051610a22380380610a2283398101604081905261002f9161011a565b600080546001600160a01b0319166001600160a01b03831690811782556040518392907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35066470de4df8200006001818155604080518082019091526001600160a01b03938416815260208101928352600280549283018155600081905290517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace9290910291820180546001600160a01b0319169190941617909255517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5acf9091015561014a565b60006020828403121561012c57600080fd5b81516001600160a01b038116811461014357600080fd5b9392505050565b6108c9806101596000396000f3fe608060405234801561001057600080fd5b50600436106100935760003560e01c80638e69e255116100665780638e69e25514610107578063d1bc76a11461011a578063d4d37e881461014c578063f2fde38b14610154578063f79822431461016757600080fd5b80631df4ccfc1461009857806349c87d7c146100b45780637d1849a8146100c95780638da5cb5b146100dc575b600080fd5b6100a160015481565b6040519081526020015b60405180910390f35b6100c76100c2366004610713565b61017a565b005b6100c76100d7366004610748565b6102a1565b6000546100ef906001600160a01b031681565b6040516001600160a01b0390911681526020016100ab565b6100c761011536600461076a565b6103a9565b61012d61012836600461076a565b6104c7565b604080516001600160a01b0390931683526020830191909152016100ab565b6002546100a1565b6100c7610162366004610748565b6104ff565b6100c7610175366004610783565b610574565b6000546001600160a01b031633146101ad5760405162461bcd60e51b81526004016101a4906107ad565b60405180910390fd5b670de0b6b3a76400008111156101d657604051635e9877e360e11b815260040160405180910390fd5b600283815481106101e9576101e96107d3565b9060005260206000209060020201600101546001600082825461020c91906107ff565b925050819055508160028481548110610227576102276107d3565b906000526020600020906002020160000160006101000a8154816001600160a01b0302191690836001600160a01b031602179055508060028481548110610270576102706107d3565b90600052602060002090600202016001018190555080600160008282546102979190610818565b9091555050505050565b6002546040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa1580156102eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061030f919061082b565b90506000805b838110156103a257600060028281548110610332576103326107d3565b60009182526020918290206040805180820190915260029092020180546001600160a01b0316825260019081015492820183905254909250906103759086610844565b61037f919061085b565b8151909350610399906001600160a01b0388169085610679565b50600101610315565b5050505050565b6000546001600160a01b031633146103d35760405162461bcd60e51b81526004016101a4906107ad565b600281815481106103e6576103e66107d3565b9060005260206000209060020201600101546001600082825461040991906107ff565b90915550506002805461041e906001906107ff565b8154811061042e5761042e6107d3565b90600052602060002090600202016002828154811061044f5761044f6107d3565b600091825260209091208254600292830290910180546001600160a01b0319166001600160a01b0390921691909117815560019283015492019190915580548061049b5761049b61087d565b60008281526020812060026000199093019283020180546001600160a01b031916815560010155905550565b600281815481106104d757600080fd5b6000918252602090912060029091020180546001909101546001600160a01b03909116915082565b6000546001600160a01b031633146105295760405162461bcd60e51b81526004016101a4906107ad565b600080546001600160a01b0319166001600160a01b0383169081178255604051909133917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b6000546001600160a01b0316331461059e5760405162461bcd60e51b81526004016101a4906107ad565b670de0b6b3a76400008111156105c757604051635e9877e360e11b815260040160405180910390fd5b604080518082019091526001600160a01b038381168252602082018381526002805460018082018355600083815295517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace9290930291820180546001600160a01b031916939095169290921790935590517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5acf909201919091558054839290610670908490610818565b90915550505050565b600060405163a9059cbb60e01b8152836004820152826024820152602060006044836000895af13d15601f3d11600160005114161716915050806106f15760405162461bcd60e51b815260206004820152600f60248201526e1514905394d1915497d19052531151608a1b60448201526064016101a4565b50505050565b80356001600160a01b038116811461070e57600080fd5b919050565b60008060006060848603121561072857600080fd5b83359250610738602085016106f7565b9150604084013590509250925092565b60006020828403121561075a57600080fd5b610763826106f7565b9392505050565b60006020828403121561077c57600080fd5b5035919050565b6000806040838503121561079657600080fd5b61079f836106f7565b946020939093013593505050565b6020808252600c908201526b15539055551213d49256915160a21b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b81810381811115610812576108126107e9565b92915050565b80820180821115610812576108126107e9565b60006020828403121561083d57600080fd5b5051919050565b8082028115828204841417610812576108126107e9565b60008261087857634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220d6d010720be296aa175b4877aa6a539d89378aa37e42266a4fb6bc61f91c9e7b64736f6c63430008110033000000000000000000000000f930ebbd05ef8b25b1797b9b2109ddc9b0d43063

Deployed ByteCode

0x608060405234801561001057600080fd5b50600436106100935760003560e01c80638e69e255116100665780638e69e25514610107578063d1bc76a11461011a578063d4d37e881461014c578063f2fde38b14610154578063f79822431461016757600080fd5b80631df4ccfc1461009857806349c87d7c146100b45780637d1849a8146100c95780638da5cb5b146100dc575b600080fd5b6100a160015481565b6040519081526020015b60405180910390f35b6100c76100c2366004610713565b61017a565b005b6100c76100d7366004610748565b6102a1565b6000546100ef906001600160a01b031681565b6040516001600160a01b0390911681526020016100ab565b6100c761011536600461076a565b6103a9565b61012d61012836600461076a565b6104c7565b604080516001600160a01b0390931683526020830191909152016100ab565b6002546100a1565b6100c7610162366004610748565b6104ff565b6100c7610175366004610783565b610574565b6000546001600160a01b031633146101ad5760405162461bcd60e51b81526004016101a4906107ad565b60405180910390fd5b670de0b6b3a76400008111156101d657604051635e9877e360e11b815260040160405180910390fd5b600283815481106101e9576101e96107d3565b9060005260206000209060020201600101546001600082825461020c91906107ff565b925050819055508160028481548110610227576102276107d3565b906000526020600020906002020160000160006101000a8154816001600160a01b0302191690836001600160a01b031602179055508060028481548110610270576102706107d3565b90600052602060002090600202016001018190555080600160008282546102979190610818565b9091555050505050565b6002546040516370a0823160e01b81523060048201526000906001600160a01b038416906370a0823190602401602060405180830381865afa1580156102eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061030f919061082b565b90506000805b838110156103a257600060028281548110610332576103326107d3565b60009182526020918290206040805180820190915260029092020180546001600160a01b0316825260019081015492820183905254909250906103759086610844565b61037f919061085b565b8151909350610399906001600160a01b0388169085610679565b50600101610315565b5050505050565b6000546001600160a01b031633146103d35760405162461bcd60e51b81526004016101a4906107ad565b600281815481106103e6576103e66107d3565b9060005260206000209060020201600101546001600082825461040991906107ff565b90915550506002805461041e906001906107ff565b8154811061042e5761042e6107d3565b90600052602060002090600202016002828154811061044f5761044f6107d3565b600091825260209091208254600292830290910180546001600160a01b0319166001600160a01b0390921691909117815560019283015492019190915580548061049b5761049b61087d565b60008281526020812060026000199093019283020180546001600160a01b031916815560010155905550565b600281815481106104d757600080fd5b6000918252602090912060029091020180546001909101546001600160a01b03909116915082565b6000546001600160a01b031633146105295760405162461bcd60e51b81526004016101a4906107ad565b600080546001600160a01b0319166001600160a01b0383169081178255604051909133917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b6000546001600160a01b0316331461059e5760405162461bcd60e51b81526004016101a4906107ad565b670de0b6b3a76400008111156105c757604051635e9877e360e11b815260040160405180910390fd5b604080518082019091526001600160a01b038381168252602082018381526002805460018082018355600083815295517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace9290930291820180546001600160a01b031916939095169290921790935590517f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5acf909201919091558054839290610670908490610818565b90915550505050565b600060405163a9059cbb60e01b8152836004820152826024820152602060006044836000895af13d15601f3d11600160005114161716915050806106f15760405162461bcd60e51b815260206004820152600f60248201526e1514905394d1915497d19052531151608a1b60448201526064016101a4565b50505050565b80356001600160a01b038116811461070e57600080fd5b919050565b60008060006060848603121561072857600080fd5b83359250610738602085016106f7565b9150604084013590509250925092565b60006020828403121561075a57600080fd5b610763826106f7565b9392505050565b60006020828403121561077c57600080fd5b5035919050565b6000806040838503121561079657600080fd5b61079f836106f7565b946020939093013593505050565b6020808252600c908201526b15539055551213d49256915160a21b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b81810381811115610812576108126107e9565b92915050565b80820180821115610812576108126107e9565b60006020828403121561083d57600080fd5b5051919050565b8082028115828204841417610812576108126107e9565b60008261087857634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220d6d010720be296aa175b4877aa6a539d89378aa37e42266a4fb6bc61f91c9e7b64736f6c63430008110033