Contract 0xA007293aE58e9f8Ce8Cf2f5d3b2aeE815e70655b

Contract Overview

Balance:
0 MATIC
Txn Hash
Method
Block
From
To
Value [Txn Fee]
0xfd64894b2215d155af40c47a7dac04583f0e93c5892c7353ad42c10d0b2926eb0x60806040333011642023-03-19 9:54:048 days 12 hrs ago0x0812715f7b33fe2dcd84cb40d372d1f63364ccc7 IN  Create: SafeMoneyUp0 MATIC0.004432695026 2.500000015
[ Download CSV Export 
Parent Txn Hash Block From To Value
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
SafeMoneyUp

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at polygonscan.com on 2023-03-19
*/

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


// 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;
    }
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// 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);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @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);
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @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 {}
}

// File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// File: Publich.sol



pragma solidity ^0.8.0;






contract SafeMoneyUp is ERC20, ERC20Burnable, Ownable, ReentrancyGuard {
    using SafeMath for uint256;

    uint256 private constant INITIAL_PRICE = 1e8; // 0.00000001 ETH
    uint256 private constant PRICE_FACTOR = 1e18;
    uint256 private constant MINIMUM_REFERRAL_HOLD_AMOUNT = 1e18; // 1 SMU

    uint256 public REFERRAL_REWARD_PERCENT = 1;
    uint256 public ADMIN_FEE_PERCENT = 2;
    uint256 public TRANSFER_FEE_PERCENT = 10;

    mapping(address => address) private _referrals;
    mapping(address => bool) private _blacklist;

    address private _adminFeeReceiver;

    event AdminFeePercentChanged(uint256 oldAdminFeePercent, uint256 newAdminFeePercent);
    event ReferralPercentChanged(uint256 oldReferralPercent, uint256 newReferralPercent);

    constructor(address adminFeeReceiver) ERC20("SafeMoneyUp", "SMU") {
        _adminFeeReceiver = adminFeeReceiver;
    }

    function setAdminFeePercent(uint256 newAdminFeePercent) external onlyOwner {
        require(newAdminFeePercent <= 100, "SafeMoneyUp: Admin fee percent must be less than or equal to 100");
        uint256 oldAdminFeePercent = ADMIN_FEE_PERCENT;
        ADMIN_FEE_PERCENT = newAdminFeePercent;
        emit AdminFeePercentChanged(oldAdminFeePercent, newAdminFeePercent);
    }

    function setReferralPercent(uint256 newReferralPercent) external onlyOwner {
        require(newReferralPercent <= 100, "SafeMoneyUp: Referral percent must be less than or equal to 100");
        uint256 oldReferralPercent = REFERRAL_REWARD_PERCENT;
        REFERRAL_REWARD_PERCENT = newReferralPercent;
        emit ReferralPercentChanged(oldReferralPercent, newReferralPercent);
    }

    function buy(address referral) external payable nonReentrant {
        require(msg.value > 0, "SafeMoneyUp: Must send ETH to buy tokens");
        require(referral != msg.sender, "SafeMoneyUp: Referrer cannot be the buyer");
        require(balanceOf(referral) >= MINIMUM_REFERRAL_HOLD_AMOUNT || referral == owner(), "SafeMoneyUp: Referrer must hold a minimum amount of tokens");

        if (_referrals[msg.sender] == address(0) && referral != address(0)) {
            _referrals[msg.sender] = referral;
        }

        uint256 currentPrice = calculatePrice();
        uint256 ethAmount = msg.value;
        uint256 tokensToMint = ethAmount.mul(10**18).div(currentPrice);

        uint256 referralReward = tokensToMint.mul(REFERRAL_REWARD_PERCENT).div(100);
        uint256 adminFee = tokensToMint.mul(ADMIN_FEE_PERCENT).div(100);

        _mint(msg.sender, tokensToMint);
        if (referral != address(0) && referral != owner()) {
            _mint(referral, referralReward);
        }
                _mint(_adminFeeReceiver, adminFee);

        uint256 ethToHold = ethAmount.mul(ADMIN_FEE_PERCENT).div(100);
        uint256 ethToContract = ethAmount.sub(ethToHold);
        payable(address(this)).transfer(ethToContract);
        payable(_adminFeeReceiver).transfer(ethToHold);
    }

    // Add this constant declaration at the beginning of your contract.
uint256 public constant SELL_FEE_PERCENT = 10;

function sell(uint256 tokenAmount) external nonReentrant {
    require(tokenAmount > 0, "SafeMoneyUp: Must sell at least one token");
    require(balanceOf(msg.sender) >= tokenAmount, "SafeMoneyUp: Insufficient token balance");

    uint256 ethAmount = calculateSellAmount(tokenAmount);
    uint256 tokensToBurn = tokenAmount.mul(SELL_FEE_PERCENT).div(100);

    _burn(msg.sender, tokensToBurn);
    _transfer(msg.sender, address(this), tokenAmount.sub(tokensToBurn));
    payable(msg.sender).transfer(ethAmount);

    }

    function calculatePrice() public view returns (uint256) {
        uint256 tokenSupply = totalSupply();
        uint256 ethBalance = address(this).balance;

        if (tokenSupply == 0) {
            return INITIAL_PRICE;
        }

        return ethBalance.mul(PRICE_FACTOR).div(tokenSupply);
    }

    function calculateSellAmount(uint256 tokenAmount) public view returns (uint256) {
        uint256 currentPrice = calculatePrice();
        uint256 rawEth = tokenAmount.mul(currentPrice).div(10**18);
        uint256 ethAmount = rawEth.sub(rawEth.mul(TRANSFER_FEE_PERCENT).div(100));
        return ethAmount;
    }

    function addToBlacklist(address user) external onlyOwner {
        require(!_blacklist[user], "SafeMoneyUp: User is already blacklisted");
        _blacklist[user] = true;
    }

    function removeFromBlacklist(address user) external onlyOwner {
        require(_blacklist[user], "SafeMoneyUp: User is not blacklisted");
        _blacklist[user] = false;
    }

    function isBlacklisted(address user) external view returns (bool) {
        return _blacklist[user];
    }

     function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
        require(!_blacklist[from], "SafeMoneyUp: Blacklisted addresses cannot transfer tokens");

        if (to == address(this)) {
            uint256 ethAmount = calculateSellAmount(amount);
            uint256 tokensToBurn = amount.add(amount.mul(TRANSFER_FEE_PERCENT).div(100));

            _burn(from, tokensToBurn);
            payable(from).transfer(ethAmount);
        } else if (from != address(0) && to != address(0)) {
            uint256 fee = amount.mul(TRANSFER_FEE_PERCENT).div(100);
            uint256 amountAfterFee = amount.sub(fee);
            super._beforeTokenTransfer(from, to, amountAfterFee);
            _burn(from, fee);
        } else {
            super._beforeTokenTransfer(from, to, amount);
        }
    }
}

Contract ABI

[{"inputs":[{"internalType":"address","name":"adminFeeReceiver","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldAdminFeePercent","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newAdminFeePercent","type":"uint256"}],"name":"AdminFeePercentChanged","type":"event"},{"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldReferralPercent","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newReferralPercent","type":"uint256"}],"name":"ReferralPercentChanged","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":[],"name":"ADMIN_FEE_PERCENT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REFERRAL_REWARD_PERCENT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SELL_FEE_PERCENT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TRANSFER_FEE_PERCENT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"addToBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"referral","type":"address"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"calculatePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"calculateSellAmount","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":[{"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":[{"internalType":"address","name":"user","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"removeFromBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"sell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAdminFeePercent","type":"uint256"}],"name":"setAdminFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newReferralPercent","type":"uint256"}],"name":"setReferralPercent","outputs":[],"stateMutability":"nonpayable","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":"to","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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260016007556002600855600a6009553480156200002057600080fd5b5060405162001e2338038062001e238339810160408190526200004391620001f5565b6040518060400160405280600b81526020016a0536166654d6f6e657955760ac1b81525060405180604001604052806003815260200162534d5560e81b81525081600390805190602001906200009b9291906200014f565b508051620000b19060049060208401906200014f565b505050620000ce620000c8620000f960201b60201c565b620000fd565b6001600655600c80546001600160a01b0319166001600160a01b039290921691909117905562000262565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015d9062000225565b90600052602060002090601f016020900481019282620001815760008555620001cc565b82601f106200019c57805160ff1916838001178555620001cc565b82800160010185558215620001cc579182015b82811115620001cc578251825591602001919060010190620001af565b50620001da929150620001de565b5090565b5b80821115620001da5760008155600101620001df565b60006020828403121562000207578081fd5b81516001600160a01b03811681146200021e578182fd5b9392505050565b6002810460018216806200023a57607f821691505b602082108114156200025c57634e487b7160e01b600052602260045260246000fd5b50919050565b611bb180620002726000396000f3fe6080604052600436106101c25760003560e01c806379cc6790116100f7578063d1ff960511610095578063e4849b3211610064578063e4849b32146104ba578063f088d547146104da578063f2fde38b146104ed578063fe575a871461050d576101c2565b8063d1ff960514610450578063d348b40914610470578063d3d50d9514610485578063dd62ed3e1461049a576101c2565b8063a0754299116100d1578063a0754299146103e6578063a457c2d7146103fb578063a9059cbb1461041b578063bb5e5af21461043b576101c2565b806379cc67901461038f5780638da5cb5b146103af57806395d89b41146103d1576101c2565b80633db2612611610164578063537df3b61161013e578063537df3b61461031a5780636129f25f1461033a57806370a082311461035a578063715018a61461037a576101c2565b80633db26126146102c357806342966c68146102d857806344337ea1146102fa576101c2565b8063194f17b5116101a0578063194f17b51461024157806323b872dd14610261578063313ce5671461028157806339509351146102a3576101c2565b806306fdde03146101c7578063095ea7b3146101f257806318160ddd1461021f575b600080fd5b3480156101d357600080fd5b506101dc61052d565b6040516101e991906113e6565b60405180910390f35b3480156101fe57600080fd5b5061021261020d366004611386565b6105c0565b6040516101e991906113db565b34801561022b57600080fd5b506102346105e2565b6040516101e99190611a97565b34801561024d57600080fd5b5061023461025c3660046113af565b6105e8565b34801561026d57600080fd5b5061021261027c36600461134b565b610646565b34801561028d57600080fd5b50610296610674565b6040516101e99190611aae565b3480156102af57600080fd5b506102126102be366004611386565b610679565b3480156102cf57600080fd5b506102346106a5565b3480156102e457600080fd5b506102f86102f33660046113af565b6106ab565b005b34801561030657600080fd5b506102f86103153660046112ff565b6106bf565b34801561032657600080fd5b506102f86103353660046112ff565b61072d565b34801561034657600080fd5b506102f86103553660046113af565b61078e565b34801561036657600080fd5b506102346103753660046112ff565b6107fd565b34801561038657600080fd5b506102f8610818565b34801561039b57600080fd5b506102f86103aa366004611386565b61082c565b3480156103bb57600080fd5b506103c461084c565b6040516101e991906113c7565b3480156103dd57600080fd5b506101dc61085b565b3480156103f257600080fd5b5061023461086a565b34801561040757600080fd5b50610212610416366004611386565b61086f565b34801561042757600080fd5b50610212610436366004611386565b6108b7565b34801561044757600080fd5b506102346108cf565b34801561045c57600080fd5b506102f861046b3660046113af565b6108d5565b34801561047c57600080fd5b50610234610938565b34801561049157600080fd5b50610234610976565b3480156104a657600080fd5b506102346104b5366004611319565b61097c565b3480156104c657600080fd5b506102f86104d53660046113af565b6109a7565b6102f86104e83660046112ff565b610a6e565b3480156104f957600080fd5b506102f86105083660046112ff565b610cd6565b34801561051957600080fd5b506102126105283660046112ff565b610d0d565b60606003805461053c90611b2a565b80601f016020809104026020016040519081016040528092919081815260200182805461056890611b2a565b80156105b55780601f1061058a576101008083540402835291602001916105b5565b820191906000526020600020905b81548152906001019060200180831161059857829003601f168201915b505050505090505b90565b6000806105cb610d2b565b90506105d8818585610d2f565b5060019392505050565b60025490565b6000806105f3610938565b90506000610613670de0b6b3a764000061060d8685610de3565b90610df6565b9050600061063b610634606461060d60095486610de390919063ffffffff16565b8390610e02565b93505050505b919050565b600080610651610d2b565b905061065e858285610e0e565b610669858585610e58565b506001949350505050565b601290565b600080610684610d2b565b90506105d8818585610696858961097c565b6106a09190611abc565b610d2f565b60095481565b6106bc6106b6610d2b565b82610f59565b50565b6106c7611031565b6001600160a01b0381166000908152600b602052604090205460ff16156107095760405162461bcd60e51b815260040161070090611520565b60405180910390fd5b6001600160a01b03166000908152600b60205260409020805460ff19166001179055565b610735611031565b6001600160a01b0381166000908152600b602052604090205460ff1661076d5760405162461bcd60e51b8152600401610700906118b6565b6001600160a01b03166000908152600b60205260409020805460ff19169055565b610796611031565b60648111156107b75760405162461bcd60e51b815260040161070090611975565b60078054908290556040517fc6dfc87ab0034e22792384eea521efca69973f71228b7aa9ce1a2bdc9140e96f906107f19083908590611aa0565b60405180910390a15050565b6001600160a01b031660009081526020819052604090205490565b610820611031565b61082a6000611070565b565b61083e82610838610d2b565b83610e0e565b6108488282610f59565b5050565b6005546001600160a01b031690565b60606004805461053c90611b2a565b600a81565b60008061087a610d2b565b90506000610888828661097c565b9050838110156108aa5760405162461bcd60e51b8152600401610700906119d2565b6106698286868403610d2f565b6000806108c2610d2b565b90506105d8818585610e58565b60075481565b6108dd611031565b60648111156108fe5760405162461bcd60e51b815260040161070090611740565b60088054908290556040517ffe1036d3b098380535468a60418bac2581f7c7ba8cac1c504e3e9b2d73aa1be7906107f19083908590611aa0565b6000806109436105e2565b90504781610959576305f5e100925050506105bd565b61096f8261060d83670de0b6b3a7640000610de3565b9250505090565b60085481565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6109af6110c2565b600081116109cf5760405162461bcd60e51b815260040161070090611669565b806109d9336107fd565b10156109f75760405162461bcd60e51b8152600401610700906114d9565b6000610a02826105e8565b90506000610a16606461060d85600a610de3565b9050610a223382610f59565b610a363330610a318685610e02565b610e58565b604051339083156108fc029084906000818181858888f19350505050158015610a63573d6000803e3d6000fd5b5050506106bc6110ec565b610a766110c2565b60003411610a965760405162461bcd60e51b8152600401610700906116f8565b6001600160a01b038116331415610abf5760405162461bcd60e51b815260040161070090611a17565b670de0b6b3a7640000610ad1826107fd565b101580610af65750610ae161084c565b6001600160a01b0316816001600160a01b0316145b610b125760405162461bcd60e51b81526004016107009061147c565b336000908152600a60205260409020546001600160a01b0316158015610b4057506001600160a01b03811615155b15610b6e57336000908152600a6020526040902080546001600160a01b0319166001600160a01b0383161790555b6000610b78610938565b9050346000610b938361060d84670de0b6b3a7640000610de3565b90506000610bb1606461060d60075485610de390919063ffffffff16565b90506000610bcf606461060d60085486610de390919063ffffffff16565b9050610bdb33846110f3565b6001600160a01b03861615801590610c0c5750610bf661084c565b6001600160a01b0316866001600160a01b031614155b15610c1b57610c1b86836110f3565b600c54610c31906001600160a01b0316826110f3565b6000610c4d606461060d60085488610de390919063ffffffff16565b90506000610c5b8683610e02565b604051909150309082156108fc029083906000818181858888f19350505050158015610c8b573d6000803e3d6000fd5b50600c546040516001600160a01b039091169083156108fc029084906000818181858888f19350505050158015610cc6573d6000803e3d6000fd5b50505050505050506106bc6110ec565b610cde611031565b6001600160a01b038116610d045760405162461bcd60e51b8152600401610700906115aa565b6106bc81611070565b6001600160a01b03166000908152600b602052604090205460ff1690565b3390565b6001600160a01b038316610d555760405162461bcd60e51b8152600401610700906118fa565b6001600160a01b038216610d7b5760405162461bcd60e51b8152600401610700906115f0565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610dd6908590611a97565b60405180910390a3505050565b6000610def8284611af4565b9392505050565b6000610def8284611ad4565b6000610def8284611b13565b6000610e1a848461097c565b90506000198114610e525781811015610e455760405162461bcd60e51b815260040161070090611632565b610e528484848403610d2f565b50505050565b6001600160a01b038316610e7e5760405162461bcd60e51b815260040161070090611871565b6001600160a01b038216610ea45760405162461bcd60e51b815260040161070090611439565b610eaf83838361119d565b6001600160a01b03831660009081526020819052604090205481811015610ee85760405162461bcd60e51b8152600401610700906116b2565b6001600160a01b0380851660008181526020819052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610f46908690611a97565b60405180910390a3610e5284848461102c565b6001600160a01b038216610f7f5760405162461bcd60e51b815260040161070090611830565b610f8b8260008361119d565b6001600160a01b03821660009081526020819052604090205481811015610fc45760405162461bcd60e51b815260040161070090611568565b6001600160a01b0383166000818152602081905260408082208585039055600280548690039055519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061101c908690611a97565b60405180910390a361102c836000845b505050565b611039610d2b565b6001600160a01b031661104a61084c565b6001600160a01b03161461082a5760405162461bcd60e51b8152600401610700906117fb565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600260065414156110e55760405162461bcd60e51b81526004016107009061193e565b6002600655565b6001600655565b6001600160a01b0382166111195760405162461bcd60e51b815260040161070090611a60565b6111256000838361119d565b80600260008282546111379190611abc565b90915550506001600160a01b038216600081815260208190526040808220805485019055517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611189908590611a97565b60405180910390a36108486000838361102c565b6001600160a01b0383166000908152600b602052604090205460ff16156111d65760405162461bcd60e51b81526004016107009061179e565b6001600160a01b0382163014156112645760006111f2826105e8565b9050600061121a611213606461060d60095487610de390919063ffffffff16565b84906112dc565b90506112268582610f59565b6040516001600160a01b0386169083156108fc029084906000818181858888f1935050505015801561125c573d6000803e3d6000fd5b50505061102c565b6001600160a01b0383161580159061128457506001600160a01b03821615155b156112d15760006112a5606461060d60095485610de390919063ffffffff16565b905060006112b38383610e02565b90506112c085858361102c565b6112ca8583610f59565b505061102c565b61102c83838361102c565b6000610def8284611abc565b80356001600160a01b038116811461064157600080fd5b600060208284031215611310578081fd5b610def826112e8565b6000806040838503121561132b578081fd5b611334836112e8565b9150611342602084016112e8565b90509250929050565b60008060006060848603121561135f578081fd5b611368846112e8565b9250611376602085016112e8565b9150604084013590509250925092565b60008060408385031215611398578182fd5b6113a1836112e8565b946020939093013593505050565b6000602082840312156113c0578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b81811015611412578581018301518582016040015282016113f6565b818111156114235783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252603a908201527f536166654d6f6e657955703a205265666572726572206d75737420686f6c642060408201527f61206d696e696d756d20616d6f756e74206f6620746f6b656e73000000000000606082015260800190565b60208082526027908201527f536166654d6f6e657955703a20496e73756666696369656e7420746f6b656e2060408201526662616c616e636560c81b606082015260800190565b60208082526028908201527f536166654d6f6e657955703a205573657220697320616c726561647920626c6160408201526718dadb1a5cdd195960c21b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526029908201527f536166654d6f6e657955703a204d7573742073656c6c206174206c656173742060408201526837b732903a37b5b2b760b91b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526028908201527f536166654d6f6e657955703a204d7573742073656e642045544820746f2062756040820152677920746f6b656e7360c01b606082015260800190565b602080825260409082018190527f536166654d6f6e657955703a2041646d696e206665652070657263656e74206d908201527f757374206265206c657373207468616e206f7220657175616c20746f20313030606082015260800190565b60208082526039908201527f536166654d6f6e657955703a20426c61636b6c6973746564206164647265737360408201527f65732063616e6e6f74207472616e7366657220746f6b656e7300000000000000606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f536166654d6f6e657955703a2055736572206973206e6f7420626c61636b6c696040820152631cdd195960e21b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252603f908201527f536166654d6f6e657955703a20526566657272616c2070657263656e74206d7560408201527f7374206265206c657373207468616e206f7220657175616c20746f2031303000606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b60208082526029908201527f536166654d6f6e657955703a2052656665727265722063616e6e6f74206265206040820152683a343290313abcb2b960b91b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b918252602082015260400190565b60ff91909116815260200190565b60008219821115611acf57611acf611b65565b500190565b600082611aef57634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615611b0e57611b0e611b65565b500290565b600082821015611b2557611b25611b65565b500390565b600281046001821680611b3e57607f821691505b60208210811415611b5f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220d33cc585f66fcbeecd0d1ee3c37029832b5a84e401823871bd078a17cc44fdd964736f6c634300080000330000000000000000000000000812715f7b33fe2dcd84cb40d372d1f63364ccc7

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000812715f7b33fe2dcd84cb40d372d1f63364ccc7

-----Decoded View---------------
Arg [0] : adminFeeReceiver (address): 0x0812715f7b33fe2dcd84cb40d372d1f63364ccc7

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000812715f7b33fe2dcd84cb40d372d1f63364ccc7


Deployed ByteCode Sourcemap

31790:5682:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19373:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21724:201;;;;;;;;;;-1:-1:-1;21724:201:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;20493:108::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35791:318::-;;;;;;;;;;-1:-1:-1;35791:318:0;;;;;:::i;:::-;;:::i;22505:295::-;;;;;;;;;;-1:-1:-1;22505:295:0;;;;;:::i;:::-;;:::i;20335:93::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23209:238::-;;;;;;;;;;-1:-1:-1;23209:238:0;;;;;:::i;:::-;;:::i;32193:40::-;;;;;;;;;;;;;:::i;31144:91::-;;;;;;;;;;-1:-1:-1;31144:91:0;;;;;:::i;:::-;;:::i;:::-;;36117:180;;;;;;;;;;-1:-1:-1;36117:180:0;;;;;:::i;:::-;;:::i;36305:181::-;;;;;;;;;;-1:-1:-1;36305:181:0;;;;;:::i;:::-;;:::i;33090:391::-;;;;;;;;;;-1:-1:-1;33090:391:0;;;;;:::i;:::-;;:::i;20664:127::-;;;;;;;;;;-1:-1:-1;20664:127:0;;;;;:::i;:::-;;:::i;12798:103::-;;;;;;;;;;;;;:::i;31554:164::-;;;;;;;;;;-1:-1:-1;31554:164:0;;;;;:::i;:::-;;:::i;12150:87::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;19592:104::-;;;;;;;;;;;;;:::i;34885:45::-;;;;;;;;;;;;;:::i;23950:436::-;;;;;;;;;;-1:-1:-1;23950:436:0;;;;;:::i;:::-;;:::i;20997:193::-;;;;;;;;;;-1:-1:-1;20997:193:0;;;;;:::i;:::-;;:::i;32101:42::-;;;;;;;;;;;;;:::i;32702:380::-;;;;;;;;;;-1:-1:-1;32702:380:0;;;;;:::i;:::-;;:::i;35474:309::-;;;;;;;;;;;;;:::i;32150:36::-;;;;;;;;;;;;;:::i;21253:151::-;;;;;;;;;;-1:-1:-1;21253:151:0;;;;;:::i;:::-;;:::i;34935:531::-;;;;;;;;;;-1:-1:-1;34935:531:0;;;;;:::i;:::-;;:::i;33489:1319::-;;;;;;:::i;:::-;;:::i;13056:201::-;;;;;;;;;;-1:-1:-1;13056:201:0;;;;;:::i;:::-;;:::i;36494:108::-;;;;;;;;;;-1:-1:-1;36494:108:0;;;;;:::i;:::-;;:::i;19373:100::-;19427:13;19460:5;19453:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19373:100;;:::o;21724:201::-;21807:4;21824:13;21840:12;:10;:12::i;:::-;21824:28;;21863:32;21872:5;21879:7;21888:6;21863:8;:32::i;:::-;-1:-1:-1;21913:4:0;;21724:201;-1:-1:-1;;;21724:201:0:o;20493:108::-;20581:12;;20493:108;:::o;35791:318::-;35862:7;35882:20;35905:16;:14;:16::i;:::-;35882:39;-1:-1:-1;35932:14:0;35949:41;35983:6;35949:29;:11;35882:39;35949:15;:29::i;:::-;:33;;:41::i;:::-;35932:58;;36001:17;36021:53;36032:41;36069:3;36032:32;36043:20;;36032:6;:10;;:32;;;;:::i;:41::-;36021:6;;:10;:53::i;:::-;36001:73;-1:-1:-1;;;;35791:318:0;;;;:::o;22505:295::-;22636:4;22653:15;22671:12;:10;:12::i;:::-;22653:30;;22694:38;22710:4;22716:7;22725:6;22694:15;:38::i;:::-;22743:27;22753:4;22759:2;22763:6;22743:9;:27::i;:::-;-1:-1:-1;22788:4:0;;22505:295;-1:-1:-1;;;;22505:295:0:o;20335:93::-;20418:2;20335:93;:::o;23209:238::-;23297:4;23314:13;23330:12;:10;:12::i;:::-;23314:28;;23353:64;23362:5;23369:7;23406:10;23378:25;23388:5;23395:7;23378:9;:25::i;:::-;:38;;;;:::i;:::-;23353:8;:64::i;32193:40::-;;;;:::o;31144:91::-;31200:27;31206:12;:10;:12::i;:::-;31220:6;31200:5;:27::i;:::-;31144:91;:::o;36117:180::-;12036:13;:11;:13::i;:::-;-1:-1:-1;;;;;36194:16:0;::::1;;::::0;;;:10:::1;:16;::::0;;;;;::::1;;36193:17;36185:70;;;;-1:-1:-1::0;;;36185:70:0::1;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1::0;;;;;36266:16:0::1;;::::0;;;:10:::1;:16;::::0;;;;:23;;-1:-1:-1;;36266:23:0::1;36285:4;36266:23;::::0;;36117:180::o;36305:181::-;12036:13;:11;:13::i;:::-;-1:-1:-1;;;;;36386:16:0;::::1;;::::0;;;:10:::1;:16;::::0;;;;;::::1;;36378:65;;;;-1:-1:-1::0;;;36378:65:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;36454:16:0::1;36473:5;36454:16:::0;;;:10:::1;:16;::::0;;;;:24;;-1:-1:-1;;36454:24:0::1;::::0;;36305:181::o;33090:391::-;12036:13;:11;:13::i;:::-;33206:3:::1;33184:18;:25;;33176:101;;;;-1:-1:-1::0;;;33176:101:0::1;;;;;;;:::i;:::-;33317:23;::::0;;33351:44;;;;33411:62:::1;::::0;::::1;::::0;::::1;::::0;33317:23;;33377:18;;33411:62:::1;:::i;:::-;;;;;;;;12060:1;33090:391:::0;:::o;20664:127::-;-1:-1:-1;;;;;20765:18:0;20738:7;20765:18;;;;;;;;;;;;20664:127::o;12798:103::-;12036:13;:11;:13::i;:::-;12863:30:::1;12890:1;12863:18;:30::i;:::-;12798:103::o:0;31554:164::-;31631:46;31647:7;31656:12;:10;:12::i;:::-;31670:6;31631:15;:46::i;:::-;31688:22;31694:7;31703:6;31688:5;:22::i;:::-;31554:164;;:::o;12150:87::-;12223:6;;-1:-1:-1;;;;;12223:6:0;12150:87;:::o;19592:104::-;19648:13;19681:7;19674:14;;;;;:::i;34885:45::-;34928:2;34885:45;:::o;23950:436::-;24043:4;24060:13;24076:12;:10;:12::i;:::-;24060:28;;24099:24;24126:25;24136:5;24143:7;24126:9;:25::i;:::-;24099:52;;24190:15;24170:16;:35;;24162:85;;;;-1:-1:-1;;;24162:85:0;;;;;;;:::i;:::-;24283:60;24292:5;24299:7;24327:15;24308:16;:34;24283:8;:60::i;20997:193::-;21076:4;21093:13;21109:12;:10;:12::i;:::-;21093:28;;21132;21142:5;21149:2;21153:6;21132:9;:28::i;32101:42::-;;;;:::o;32702:380::-;12036:13;:11;:13::i;:::-;32818:3:::1;32796:18;:25;;32788:102;;;;-1:-1:-1::0;;;32788:102:0::1;;;;;;;:::i;:::-;32930:17;::::0;;32958:38;;;;33012:62:::1;::::0;::::1;::::0;::::1;::::0;32930:17;;32978:18;;33012:62:::1;:::i;35474:309::-:0;35521:7;35541:19;35563:13;:11;:13::i;:::-;35541:35;-1:-1:-1;35608:21:0;35646:16;35642:69;;31944:3;35679:20;;;;;;35642:69;35730:45;35763:11;35730:28;:10;32012:4;35730:14;:28::i;:45::-;35723:52;;;;35474:309;:::o;32150:36::-;;;;:::o;21253:151::-;-1:-1:-1;;;;;21369:18:0;;;21342:7;21369:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;21253:151::o;34935:531::-;9421:21;:19;:21::i;:::-;35021:1:::1;35007:11;:15;34999:69;;;;-1:-1:-1::0;;;34999:69:0::1;;;;;;;:::i;:::-;35108:11;35083:21;35093:10;35083:9;:21::i;:::-;:36;;35075:88;;;;-1:-1:-1::0;;;35075:88:0::1;;;;;;;:::i;:::-;35172:17;35192:32;35212:11;35192:19;:32::i;:::-;35172:52:::0;-1:-1:-1;35231:20:0::1;35254:42;35292:3;35254:33;:11:::0;34928:2:::1;35254:15;:33::i;:42::-;35231:65;;35305:31;35311:10;35323:12;35305:5;:31::i;:::-;35343:67;35353:10;35373:4;35380:29;:11:::0;35396:12;35380:15:::1;:29::i;:::-;35343:9;:67::i;:::-;35417:39;::::0;35425:10:::1;::::0;35417:39;::::1;;;::::0;35446:9;;35417:39:::1;::::0;;;35446:9;35425:10;35417:39;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;9453:1;;9465:20:::0;:18;:20::i;33489:1319::-;9421:21;:19;:21::i;:::-;33581:1:::1;33569:9;:13;33561:66;;;;-1:-1:-1::0;;;33561:66:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;33646:22:0;::::1;33658:10;33646:22;;33638:76;;;;-1:-1:-1::0;;;33638:76:0::1;;;;;;;:::i;:::-;32079:4;33733:19;33743:8;33733:9;:19::i;:::-;:51;;:74;;;;33800:7;:5;:7::i;:::-;-1:-1:-1::0;;;;;33788:19:0::1;:8;-1:-1:-1::0;;;;;33788:19:0::1;;33733:74;33725:145;;;;-1:-1:-1::0;;;33725:145:0::1;;;;;;;:::i;:::-;33898:10;33921:1;33887:22:::0;;;:10:::1;:22;::::0;;;;;-1:-1:-1;;;;;33887:22:0::1;:36:::0;:62;::::1;;;-1:-1:-1::0;;;;;;33927:22:0;::::1;::::0;::::1;33887:62;33883:128;;;33977:10;33966:22;::::0;;;:10:::1;:22;::::0;;;;:33;;-1:-1:-1;;;;;;33966:33:0::1;-1:-1:-1::0;;;;;33966:33:0;::::1;;::::0;;33883:128:::1;34023:20;34046:16;:14;:16::i;:::-;34023:39:::0;-1:-1:-1;34093:9:0::1;34073:17;34136:39;34023::::0;34136:21:::1;34093:9:::0;34150:6:::1;34136:13;:21::i;:39::-;34113:62;;34188:22;34213:50;34259:3;34213:41;34230:23;;34213:12;:16;;:41;;;;:::i;:50::-;34188:75;;34274:16;34293:44;34333:3;34293:35;34310:17;;34293:12;:16;;:35;;;;:::i;:44::-;34274:63;;34350:31;34356:10;34368:12;34350:5;:31::i;:::-;-1:-1:-1::0;;;;;34396:22:0;::::1;::::0;;::::1;::::0;:45:::1;;;34434:7;:5;:7::i;:::-;-1:-1:-1::0;;;;;34422:19:0::1;:8;-1:-1:-1::0;;;;;34422:19:0::1;;;34396:45;34392:109;;;34458:31;34464:8;34474:14;34458:5;:31::i;:::-;34525:17;::::0;34519:34:::1;::::0;-1:-1:-1;;;;;34525:17:0::1;34544:8:::0;34519:5:::1;:34::i;:::-;34566:17;34586:41;34623:3;34586:32;34600:17;;34586:9;:13;;:32;;;;:::i;:41::-;34566:61:::0;-1:-1:-1;34638:21:0::1;34662:24;:9:::0;34566:61;34662:13:::1;:24::i;:::-;34697:46;::::0;34638:48;;-1:-1:-1;34713:4:0::1;::::0;34697:46;::::1;;;::::0;34638:48;;34697:46:::1;::::0;;;34638:48;34713:4;34697:46;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;34762:17:0::1;::::0;34754:46:::1;::::0;-1:-1:-1;;;;;34762:17:0;;::::1;::::0;34754:46;::::1;;;::::0;34790:9;;34762:17:::1;34754:46:::0;34762:17;34754:46;34790:9;34762:17;34754:46;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;9453:1;;;;;;;9465:20:::0;:18;:20::i;13056:201::-;12036:13;:11;:13::i;:::-;-1:-1:-1;;;;;13145:22:0;::::1;13137:73;;;;-1:-1:-1::0;;;13137:73:0::1;;;;;;;:::i;:::-;13221:28;13240:8;13221:18;:28::i;36494:108::-:0;-1:-1:-1;;;;;36578:16:0;36554:4;36578:16;;;:10;:16;;;;;;;;;36494:108::o;10701:98::-;10781:10;10701:98;:::o;27977:380::-;-1:-1:-1;;;;;28113:19:0;;28105:68;;;;-1:-1:-1;;;28105:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28192:21:0;;28184:68;;;;-1:-1:-1;;;28184:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28265:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;28317:32;;;;;28295:6;;28317:32;:::i;:::-;;;;;;;;27977:380;;;:::o;3649:98::-;3707:7;3734:5;3738:1;3734;:5;:::i;:::-;3727:12;3649:98;-1:-1:-1;;;3649:98:0:o;4048:::-;4106:7;4133:5;4137:1;4133;:5;:::i;3292:98::-;3350:7;3377:5;3381:1;3377;:5;:::i;28648:453::-;28783:24;28810:25;28820:5;28827:7;28810:9;:25::i;:::-;28783:52;;-1:-1:-1;;28850:16:0;:37;28846:248;;28932:6;28912:16;:26;;28904:68;;;;-1:-1:-1;;;28904:68:0;;;;;;;:::i;:::-;29016:51;29025:5;29032:7;29060:6;29041:16;:25;29016:8;:51::i;:::-;28648:453;;;;:::o;24856:840::-;-1:-1:-1;;;;;24987:18:0;;24979:68;;;;-1:-1:-1;;;24979:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25066:16:0;;25058:64;;;;-1:-1:-1;;;25058:64:0;;;;;;;:::i;:::-;25135:38;25156:4;25162:2;25166:6;25135:20;:38::i;:::-;-1:-1:-1;;;;;25208:15:0;;25186:19;25208:15;;;;;;;;;;;25242:21;;;;25234:72;;;;-1:-1:-1;;;25234:72:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25342:15:0;;;:9;:15;;;;;;;;;;;25360:20;;;25342:38;;25560:13;;;;;;;;;;:23;;;;;;25612:26;;;;;;25374:6;;25612:26;:::i;:::-;;;;;;;;25651:37;25671:4;25677:2;25681:6;25651:19;:37::i;26864:675::-;-1:-1:-1;;;;;26948:21:0;;26940:67;;;;-1:-1:-1;;;26940:67:0;;;;;;;:::i;:::-;27020:49;27041:7;27058:1;27062:6;27020:20;:49::i;:::-;-1:-1:-1;;;;;27107:18:0;;27082:22;27107:18;;;;;;;;;;;27144:24;;;;27136:71;;;;-1:-1:-1;;;27136:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27243:18:0;;:9;:18;;;;;;;;;;;27264:23;;;27243:44;;27382:12;:22;;;;;;;27433:37;27243:9;;:18;27433:37;;;;27281:6;;27433:37;:::i;:::-;;;;;;;;27483:48;27503:7;27520:1;27524:6;27483:48;26864:675;;;:::o;12315:132::-;12390:12;:10;:12::i;:::-;-1:-1:-1;;;;;12379:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;12379:23:0;;12371:68;;;;-1:-1:-1;;;12371:68:0;;;;;;;:::i;13417:191::-;13510:6;;;-1:-1:-1;;;;;13527:17:0;;;-1:-1:-1;;;;;;13527:17:0;;;;;;;13560:40;;13510:6;;;13527:17;13510:6;;13560:40;;13491:16;;13560:40;13417:191;;:::o;9501:293::-;8903:1;9635:7;;:19;;9627:63;;;;-1:-1:-1;;;9627:63:0;;;;;;;:::i;:::-;8903:1;9768:7;:18;9501:293::o;9802:213::-;8859:1;9985:7;:22;9802:213::o;25983:548::-;-1:-1:-1;;;;;26067:21:0;;26059:65;;;;-1:-1:-1;;;26059:65:0;;;;;;;:::i;:::-;26137:49;26166:1;26170:7;26179:6;26137:20;:49::i;:::-;26215:6;26199:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;26370:18:0;;:9;:18;;;;;;;;;;;:28;;;;;;26425:37;;;;;26392:6;;26425:37;:::i;:::-;;;;;;;;26475:48;26503:1;26507:7;26516:6;26475:19;:48::i;36611:858::-;-1:-1:-1;;;;;36729:16:0;;;;;;:10;:16;;;;;;;;36728:17;36720:87;;;;-1:-1:-1;;;36720:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36824:19:0;;36838:4;36824:19;36820:642;;;36860:17;36880:27;36900:6;36880:19;:27::i;:::-;36860:47;;36922:20;36945:53;36956:41;36993:3;36956:32;36967:20;;36956:6;:10;;:32;;;;:::i;:41::-;36945:6;;:10;:53::i;:::-;36922:76;;37015:25;37021:4;37027:12;37015:5;:25::i;:::-;37055:33;;-1:-1:-1;;;;;37055:22:0;;;:33;;;;;37078:9;;37055:33;;;;37078:9;37055:22;:33;;;;;;;;;;;;;;;;;;;;;36820:642;;;;;-1:-1:-1;;;;;37110:18:0;;;;;;:38;;-1:-1:-1;;;;;;37132:16:0;;;;37110:38;37106:356;;;37165:11;37179:41;37216:3;37179:32;37190:20;;37179:6;:10;;:32;;;;:::i;:41::-;37165:55;-1:-1:-1;37235:22:0;37260:15;:6;37165:55;37260:10;:15::i;:::-;37235:40;;37290:52;37317:4;37323:2;37327:14;37290:26;:52::i;:::-;37357:16;37363:4;37369:3;37357:5;:16::i;:::-;37106:356;;;;;37406:44;37433:4;37439:2;37443:6;37406:26;:44::i;2911:98::-;2969:7;2996:5;3000:1;2996;:5;:::i;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:266::-;;;1152:2;1140:9;1131:7;1127:23;1123:32;1120:2;;;1173:6;1165;1158:22;1120:2;1201:31;1222:9;1201:31;:::i;:::-;1191:41;1279:2;1264:18;;;;1251:32;;-1:-1:-1;;;1110:179:1:o;1294:190::-;;1406:2;1394:9;1385:7;1381:23;1377:32;1374:2;;;1427:6;1419;1412:22;1374:2;-1:-1:-1;1455:23:1;;1364:120;-1:-1:-1;1364:120:1:o;1489:203::-;-1:-1:-1;;;;;1653:32:1;;;;1635:51;;1623:2;1608:18;;1590:102::o;1697:187::-;1862:14;;1855:22;1837:41;;1825:2;1810:18;;1792:92::o;1889:603::-;;2030:2;2059;2048:9;2041:21;2091:6;2085:13;2134:6;2129:2;2118:9;2114:18;2107:34;2159:4;2172:140;2186:6;2183:1;2180:13;2172:140;;;2281:14;;;2277:23;;2271:30;2247:17;;;2266:2;2243:26;2236:66;2201:10;;2172:140;;;2330:6;2327:1;2324:13;2321:2;;;2400:4;2395:2;2386:6;2375:9;2371:22;2367:31;2360:45;2321:2;-1:-1:-1;2476:2:1;2455:15;-1:-1:-1;;2451:29:1;2436:45;;;;2483:2;2432:54;;2010:482;-1:-1:-1;;;2010:482:1:o;2497:399::-;2699:2;2681:21;;;2738:2;2718:18;;;2711:30;2777:34;2772:2;2757:18;;2750:62;-1:-1:-1;;;2843:2:1;2828:18;;2821:33;2886:3;2871:19;;2671:225::o;2901:422::-;3103:2;3085:21;;;3142:2;3122:18;;;3115:30;3181:34;3176:2;3161:18;;3154:62;3252:28;3247:2;3232:18;;3225:56;3313:3;3298:19;;3075:248::o;3328:403::-;3530:2;3512:21;;;3569:2;3549:18;;;3542:30;3608:34;3603:2;3588:18;;3581:62;-1:-1:-1;;;3674:2:1;3659:18;;3652:37;3721:3;3706:19;;3502:229::o;3736:404::-;3938:2;3920:21;;;3977:2;3957:18;;;3950:30;4016:34;4011:2;3996:18;;3989:62;-1:-1:-1;;;4082:2:1;4067:18;;4060:38;4130:3;4115:19;;3910:230::o;4145:398::-;4347:2;4329:21;;;4386:2;4366:18;;;4359:30;4425:34;4420:2;4405:18;;4398:62;-1:-1:-1;;;4491:2:1;4476:18;;4469:32;4533:3;4518:19;;4319:224::o;4548:402::-;4750:2;4732:21;;;4789:2;4769:18;;;4762:30;4828:34;4823:2;4808:18;;4801:62;-1:-1:-1;;;4894:2:1;4879:18;;4872:36;4940:3;4925:19;;4722:228::o;4955:398::-;5157:2;5139:21;;;5196:2;5176:18;;;5169:30;5235:34;5230:2;5215:18;;5208:62;-1:-1:-1;;;5301:2:1;5286:18;;5279:32;5343:3;5328:19;;5129:224::o;5358:353::-;5560:2;5542:21;;;5599:2;5579:18;;;5572:30;5638:31;5633:2;5618:18;;5611:59;5702:2;5687:18;;5532:179::o;5716:405::-;5918:2;5900:21;;;5957:2;5937:18;;;5930:30;5996:34;5991:2;5976:18;;5969:62;-1:-1:-1;;;6062:2:1;6047:18;;6040:39;6111:3;6096:19;;5890:231::o;6126:402::-;6328:2;6310:21;;;6367:2;6347:18;;;6340:30;6406:34;6401:2;6386:18;;6379:62;-1:-1:-1;;;6472:2:1;6457:18;;6450:36;6518:3;6503:19;;6300:228::o;6533:404::-;6735:2;6717:21;;;6774:2;6754:18;;;6747:30;6813:34;6808:2;6793:18;;6786:62;-1:-1:-1;;;6879:2:1;6864:18;;6857:38;6927:3;6912:19;;6707:230::o;6942:428::-;7144:2;7126:21;;;7183:2;7163:18;;;7156:30;;;7222:34;7202:18;;;7195:62;7293:34;7288:2;7273:18;;7266:62;7360:3;7345:19;;7116:254::o;7375:421::-;7577:2;7559:21;;;7616:2;7596:18;;;7589:30;7655:34;7650:2;7635:18;;7628:62;7726:27;7721:2;7706:18;;7699:55;7786:3;7771:19;;7549:247::o;7801:356::-;8003:2;7985:21;;;8022:18;;;8015:30;8081:34;8076:2;8061:18;;8054:62;8148:2;8133:18;;7975:182::o;8162:397::-;8364:2;8346:21;;;8403:2;8383:18;;;8376:30;8442:34;8437:2;8422:18;;8415:62;-1:-1:-1;;;8508:2:1;8493:18;;8486:31;8549:3;8534:19;;8336:223::o;8564:401::-;8766:2;8748:21;;;8805:2;8785:18;;;8778:30;8844:34;8839:2;8824:18;;8817:62;-1:-1:-1;;;8910:2:1;8895:18;;8888:35;8955:3;8940:19;;8738:227::o;8970:400::-;9172:2;9154:21;;;9211:2;9191:18;;;9184:30;9250:34;9245:2;9230:18;;9223:62;-1:-1:-1;;;9316:2:1;9301:18;;9294:34;9360:3;9345:19;;9144:226::o;9375:400::-;9577:2;9559:21;;;9616:2;9596:18;;;9589:30;9655:34;9650:2;9635:18;;9628:62;-1:-1:-1;;;9721:2:1;9706:18;;9699:34;9765:3;9750:19;;9549:226::o;9780:355::-;9982:2;9964:21;;;10021:2;10001:18;;;9994:30;10060:33;10055:2;10040:18;;10033:61;10126:2;10111:18;;9954:181::o;10140:427::-;10342:2;10324:21;;;10381:2;10361:18;;;10354:30;10420:34;10415:2;10400:18;;10393:62;10491:33;10486:2;10471:18;;10464:61;10557:3;10542:19;;10314:253::o;10572:401::-;10774:2;10756:21;;;10813:2;10793:18;;;10786:30;10852:34;10847:2;10832:18;;10825:62;-1:-1:-1;;;10918:2:1;10903:18;;10896:35;10963:3;10948:19;;10746:227::o;10978:405::-;11180:2;11162:21;;;11219:2;11199:18;;;11192:30;11258:34;11253:2;11238:18;;11231:62;-1:-1:-1;;;11324:2:1;11309:18;;11302:39;11373:3;11358:19;;11152:231::o;11388:355::-;11590:2;11572:21;;;11629:2;11609:18;;;11602:30;11668:33;11663:2;11648:18;;11641:61;11734:2;11719:18;;11562:181::o;11748:177::-;11894:25;;;11882:2;11867:18;;11849:76::o;11930:248::-;12104:25;;;12160:2;12145:18;;12138:34;12092:2;12077:18;;12059:119::o;12183:184::-;12355:4;12343:17;;;;12325:36;;12313:2;12298:18;;12280:87::o;12372:128::-;;12443:1;12439:6;12436:1;12433:13;12430:2;;;12449:18;;:::i;:::-;-1:-1:-1;12485:9:1;;12420:80::o;12505:217::-;;12571:1;12561:2;;-1:-1:-1;;;12596:31:1;;12650:4;12647:1;12640:15;12678:4;12603:1;12668:15;12561:2;-1:-1:-1;12707:9:1;;12551:171::o;12727:168::-;;12833:1;12829;12825:6;12821:14;12818:1;12815:21;12810:1;12803:9;12796:17;12792:45;12789:2;;;12840:18;;:::i;:::-;-1:-1:-1;12880:9:1;;12779:116::o;12900:125::-;;12968:1;12965;12962:8;12959:2;;;12973:18;;:::i;:::-;-1:-1:-1;13010:9:1;;12949:76::o;13030:380::-;13115:1;13105:12;;13162:1;13152:12;;;13173:2;;13227:4;13219:6;13215:17;13205:27;;13173:2;13280;13272:6;13269:14;13249:18;13246:38;13243:2;;;13326:10;13321:3;13317:20;13314:1;13307:31;13361:4;13358:1;13351:15;13389:4;13386:1;13379:15;13243:2;;13085:325;;;:::o;13415:127::-;13476:10;13471:3;13467:20;13464:1;13457:31;13507:4;13504:1;13497:15;13531:4;13528:1;13521:15

Swarm Source

ipfs://d33cc585f66fcbeecd0d1ee3c37029832b5a84e401823871bd078a17cc44fdd9
Block Transaction Gas Used Reward
Age Block Fee Address BC Fee Address Voting Power Jailed Incoming
Block Uncle Number Difficulty Gas Used Reward
Loading