ETH Price: $3,223.07 (-0.98%)
Gas: 27 Gwei

Token

BankRun Buyout ($BRUN)
 

Overview

Max Total Supply

68,642,976,961.938654989048449441 $BRUN

Holders

141

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
293,157,456.049706845935356873 $BRUN

Value
$0.00
0xcd319e22dbc4b55492002d4b116d00d5f6072a61
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
UltimateBankRun

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 8 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @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 2 of 8 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// 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 3 of 8 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 4 of 8 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 5 of 8 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

File 6 of 8 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 7 of 8 : SafeMath.sol
// SPDX-License-Identifier: MIT
// 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 8 of 8 : UltimateBankRun.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.7;
 

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
  

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

    bool public taxesActive = false;
    bool public whaleProtectionActive = false;

    uint256 public taxAmount = 2;
    uint256 public whaleAmount = 2;
    uint256 public amountToBeBurned;
    uint256 public maxSupply = 69000000000 * 10**decimals();

    address private contractCreator;


    struct AirDropStruct {
        address recipient;
        uint256 amount;
    }

    mapping(address => bool) private _isExcludedFromLimit;

    event BatchMinted();

    constructor(uint256 _amountToBeAirdropped) ERC20("BankRun Buyout", "$BRUN")  {
        _isExcludedFromLimit[_msgSender()] = true;
        _isExcludedFromLimit[address(this)] = true;

        uint256 airdropAmount = _amountToBeAirdropped * 10**decimals();

        _mint(_msgSender(), maxSupply.sub(airdropAmount));

        contractCreator = _msgSender();
    }

    modifier createSupplyShockBurner() {
        require(contractCreator == _msgSender(), "Only Initial Creator can bring about a supplyShock");
        _;
    }


    function setTaxesAndWhaleProtectionActive (bool _taxesActive, bool _whaleProtectionActive) external createSupplyShockBurner returns (bool) {
        taxesActive = _taxesActive;
        whaleProtectionActive = _whaleProtectionActive;

        return true;
    }


    function setTaxAndWhaleAmount (uint256 _taxAmount, uint256 _whaleAmount) external createSupplyShockBurner returns (bool) {
        taxAmount = _taxAmount;
        whaleAmount = _whaleAmount;

        return true;
    }

    function setExcludedFromLimit (bool _excluded, address _excludee) external createSupplyShockBurner returns (bool) {
        _isExcludedFromLimit[_excludee] = _excluded;

        return true;
    }

    function createSupplyShock() external createSupplyShockBurner returns (bool) {
        _burn(contractCreator, amountToBeBurned);
        amountToBeBurned = 0;

        return true;
    }


    function mintAndDrop(AirDropStruct[] memory _airdropStruct) external onlyOwner returns (bool) {

        for (uint256 i = 0; i < _airdropStruct.length; i++) {
            address recipient = _airdropStruct[i].recipient;
            uint256 amount = _airdropStruct[i].amount * 10**decimals();

            unchecked {
                _mint(recipient, amount);
            }
        }

        emit BatchMinted();

        return true;
    }


    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);


        if (taxesActive == true) {
            uint256 burnAmount = (amount.mul(taxAmount)).div(100);
            uint256 transferAmount = amount.sub(burnAmount);

            _transfer(from, to, transferAmount);
            _transfer(from, contractCreator, burnAmount);

            amountToBeBurned += burnAmount;
        } else {
            _transfer(from, to, amount);
        }

        return true;
    }


    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);

        if (whaleProtectionActive == true) {
                require( _ensureMaxTwoPercentPerWallet(amount, from, to), 'Whale and Dump Prevention: One Wallet cannot hold more than 2% of max Supply');
        }
    }

    function _ensureMaxTwoPercentPerWallet(uint256 _amount, address from, address to) internal view returns (bool) {
        bool ensured = false;
        uint256 amountToCheck;

        if (_isExcludedFromLimit[_msgSender()] || _isExcludedFromLimit[to] || _isExcludedFromLimit[from] || to == address(0)) {
            ensured = true;
        } else {
            amountToCheck = balanceOf(to) > 0 ? balanceOf(to).add(_amount) : _amount;
            ensured = amountToCheck < (totalSupply().mul(whaleAmount)).div(100);
        }

        return ensured;
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_amountToBeAirdropped","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"BatchMinted","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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountToBeBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"createSupplyShock","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct UltimateBankRun.AirDropStruct[]","name":"_airdropStruct","type":"tuple[]"}],"name":"mintAndDrop","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_excluded","type":"bool"},{"internalType":"address","name":"_excludee","type":"address"}],"name":"setExcludedFromLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxAmount","type":"uint256"},{"internalType":"uint256","name":"_whaleAmount","type":"uint256"}],"name":"setTaxAndWhaleAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_taxesActive","type":"bool"},{"internalType":"bool","name":"_whaleProtectionActive","type":"bool"}],"name":"setTaxesAndWhaleProtectionActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxesActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"},{"inputs":[],"name":"whaleAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whaleProtectionActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040526000600760006101000a81548160ff0219169083151502179055506000600760016101000a81548160ff0219169083151502179055506002600855600260095562000054620002f460201b60201c565b600a62000062919062000b39565b641010b8720062000074919062000c76565b600b553480156200008457600080fd5b5060405162003a6838038062003a688339818101604052810190620000aa919062000946565b6040518060400160405280600e81526020017f42616e6b52756e204275796f75740000000000000000000000000000000000008152506040518060400160405280600581526020017f244252554e00000000000000000000000000000000000000000000000000000081525081600390805190602001906200012e9291906200087f565b508060049080519060200190620001479291906200087f565b5050506200016a6200015e620002fd60201b60201c565b6200030560201b60201c565b60016006819055506001600d600062000188620002fd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600062000243620002f460201b60201c565b600a62000251919062000b39565b826200025e919062000c76565b90506200029c62000274620002fd60201b60201c565b6200029083600b54620003cb60201b62000e1e1790919060201c565b620003e360201b60201c565b620002ac620002fd60201b60201c565b600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505062000eb6565b60006012905090565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183620003db919062000cd7565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000456576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200044d90620009f9565b60405180910390fd5b6200046a600083836200055160201b60201c565b80600260008282546200047e919062000a49565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000531919062000a1b565b60405180910390a36200054d60008383620005e160201b60201c565b5050565b62000569838383620005e660201b62000e341760201c565b60011515600760019054906101000a900460ff1615151415620005dc5762000599818484620005eb60201b60201c565b620005db576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005d290620009d7565b60405180910390fd5b5b505050565b505050565b505050565b600080600090506000600d600062000608620002fd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680620006a55750600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80620006fa5750600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80620007325750600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b15620007425760019150620007d9565b60006200075585620007e560201b60201c565b116200076257856200078d565b6200078c866200077886620007e560201b60201c565b6200082d60201b62000e391790919060201c565b5b9050620007d46064620007c0600954620007ac6200084560201b60201c565b6200084f60201b62000e4f1790919060201c565b6200086760201b62000e651790919060201c565b811091505b81925050509392505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600081836200083d919062000a49565b905092915050565b6000600254905090565b600081836200085f919062000c76565b905092915050565b6000818362000877919062000aa6565b905092915050565b8280546200088d9062000d29565b90600052602060002090601f016020900481019282620008b15760008555620008fd565b82601f10620008cc57805160ff1916838001178555620008fd565b82800160010185558215620008fd579182015b82811115620008fc578251825591602001919060010190620008df565b5b5090506200090c919062000910565b5090565b5b808211156200092b57600081600090555060010162000911565b5090565b600081519050620009408162000e9c565b92915050565b6000602082840312156200095f576200095e62000dec565b5b60006200096f848285016200092f565b91505092915050565b600062000987604c8362000a38565b9150620009948262000dfe565b606082019050919050565b6000620009ae601f8362000a38565b9150620009bb8262000e73565b602082019050919050565b620009d18162000d12565b82525050565b60006020820190508181036000830152620009f28162000978565b9050919050565b6000602082019050818103600083015262000a14816200099f565b9050919050565b600060208201905062000a326000830184620009c6565b92915050565b600082825260208201905092915050565b600062000a568262000d12565b915062000a638362000d12565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000a9b5762000a9a62000d5f565b5b828201905092915050565b600062000ab38262000d12565b915062000ac08362000d12565b92508262000ad35762000ad262000d8e565b5b828204905092915050565b6000808291508390505b600185111562000b305780860481111562000b085762000b0762000d5f565b5b600185161562000b185780820291505b808102905062000b288562000df1565b945062000ae8565b94509492505050565b600062000b468262000d12565b915062000b538362000d1c565b925062000b827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000b8a565b905092915050565b60008262000b9c576001905062000c6f565b8162000bac576000905062000c6f565b816001811462000bc5576002811462000bd05762000c06565b600191505062000c6f565b60ff84111562000be55762000be462000d5f565b5b8360020a91508482111562000bff5762000bfe62000d5f565b5b5062000c6f565b5060208310610133831016604e8410600b841016171562000c405782820a90508381111562000c3a5762000c3962000d5f565b5b62000c6f565b62000c4f848484600162000ade565b9250905081840481111562000c695762000c6862000d5f565b5b81810290505b9392505050565b600062000c838262000d12565b915062000c908362000d12565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000ccc5762000ccb62000d5f565b5b828202905092915050565b600062000ce48262000d12565b915062000cf18362000d12565b92508282101562000d075762000d0662000d5f565b5b828203905092915050565b6000819050919050565b600060ff82169050919050565b6000600282049050600182168062000d4257607f821691505b6020821081141562000d595762000d5862000dbd565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b60008160011c9050919050565b7f5768616c6520616e642044756d702050726576656e74696f6e3a204f6e65205760008201527f616c6c65742063616e6e6f7420686f6c64206d6f7265207468616e203225206f60208201527f66206d617820537570706c790000000000000000000000000000000000000000604082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b62000ea78162000d12565b811462000eb357600080fd5b50565b612ba28062000ec66000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c80638da5cb5b116100de578063a9059cbb11610097578063d5abeb0111610071578063d5abeb011461048e578063dd62ed3e146104ac578063f2fde38b146104dc578063ff647043146104f857610173565b8063a9059cbb14610410578063ad5ea36f14610440578063cc904ff71461045e57610173565b80638da5cb5b1461034a57806394bf21f01461036857806395d89b41146103865780639e212571146103a4578063a2777d05146103c2578063a457c2d7146103e057610173565b80633950935111610130578063395093511461026257806356ce5ff2146102925780636b5e139b146102c257806370a08231146102e0578063715018a61461031057806387df581d1461031a57610173565b806306fdde0314610178578063095ea7b31461019657806318160ddd146101c657806323b872dd146101e457806327d348cf14610214578063313ce56714610244575b600080fd5b610180610516565b60405161018d9190611fc0565b60405180910390f35b6101b060048036038101906101ab9190611be2565b6105a8565b6040516101bd9190611fa5565b60405180910390f35b6101ce6105cb565b6040516101db91906121a2565b60405180910390f35b6101fe60048036038101906101f99190611b8f565b6105d5565b60405161020b9190611fa5565b60405180910390f35b61022e60048036038101906102299190611c22565b6106bc565b60405161023b9190611fa5565b60405180910390f35b61024c61078b565b60405161025991906121bd565b60405180910390f35b61027c60048036038101906102779190611be2565b610794565b6040516102899190611fa5565b60405180910390f35b6102ac60048036038101906102a79190611c6b565b6107cb565b6040516102b99190611fa5565b60405180910390f35b6102ca6108c5565b6040516102d791906121a2565b60405180910390f35b6102fa60048036038101906102f59190611b22565b6108cb565b60405161030791906121a2565b60405180910390f35b610318610913565b005b610334600480360381019061032f9190611ceb565b610927565b6040516103419190611fa5565b60405180910390f35b6103526109d8565b60405161035f9190611f8a565b60405180910390f35b610370610a02565b60405161037d9190611fa5565b60405180910390f35b61038e610a15565b60405161039b9190611fc0565b60405180910390f35b6103ac610aa7565b6040516103b991906121a2565b60405180910390f35b6103ca610aad565b6040516103d79190611fa5565b60405180910390f35b6103fa60048036038101906103f59190611be2565b610b83565b6040516104079190611fa5565b60405180910390f35b61042a60048036038101906104259190611be2565b610bfa565b6040516104379190611fa5565b60405180910390f35b610448610c1d565b60405161045591906121a2565b60405180910390f35b61047860048036038101906104739190611cab565b610c23565b6040516104859190611fa5565b60405180910390f35b610496610cfa565b6040516104a391906121a2565b60405180910390f35b6104c660048036038101906104c19190611b4f565b610d00565b6040516104d391906121a2565b60405180910390f35b6104f660048036038101906104f19190611b22565b610d87565b005b610500610e0b565b60405161050d9190611fa5565b60405180910390f35b60606003805461052590612553565b80601f016020809104026020016040519081016040528092919081815260200182805461055190612553565b801561059e5780601f106105735761010080835404028352916020019161059e565b820191906000526020600020905b81548152906001019060200180831161058157829003601f168201915b5050505050905090565b6000806105b3610e7b565b90506105c0818585610e83565b600191505092915050565b6000600254905090565b6000806105e0610e7b565b90506105ed85828561104e565b60011515600760009054906101000a900460ff16151514156106a4576000610633606461062560085487610e4f90919063ffffffff16565b610e6590919063ffffffff16565b9050600061064a8286610e1e90919063ffffffff16565b90506106578787836110da565b61068487600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846110da565b81600a60008282546106969190612245565b9250508190555050506106b0565b6106af8585856110da565b5b60019150509392505050565b60006106c6611352565b60005b82518110156107555760008382815181106106e7576106e661268c565b5b602002602001015160000151905060006106ff61078b565b600a61070b919061231f565b85848151811061071e5761071d61268c565b5b602002602001015160200151610734919061243d565b905061074082826113d0565b5050808061074d906125b6565b9150506106c9565b507f5a31340f0d75691fca7c6ab36bdd3ece0f99ebc1e7aea94477e8a27ac8c44b6360405160405180910390a160019050919050565b60006012905090565b60008061079f610e7b565b90506107c08185856107b18589610d00565b6107bb9190612245565b610e83565b600191505092915050565b60006107d5610e7b565b73ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085b906120a2565b60405180910390fd5b82600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001905092915050565b60095481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61091b611352565b6109256000611527565b565b6000610931610e7b565b73ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b7906120a2565b60405180910390fd5b82600881905550816009819055506001905092915050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760019054906101000a900460ff1681565b606060048054610a2490612553565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5090612553565b8015610a9d5780601f10610a7257610100808354040283529160200191610a9d565b820191906000526020600020905b815481529060010190602001808311610a8057829003601f168201915b5050505050905090565b600a5481565b6000610ab7610e7b565b73ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3d906120a2565b60405180910390fd5b610b74600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a546115ed565b6000600a819055506001905090565b600080610b8e610e7b565b90506000610b9c8286610d00565b905083811015610be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd890612162565b60405180910390fd5b610bee8286868403610e83565b60019250505092915050565b600080610c05610e7b565b9050610c128185856110da565b600191505092915050565b60085481565b6000610c2d610e7b565b73ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb3906120a2565b60405180910390fd5b82600760006101000a81548160ff02191690831515021790555081600760016101000a81548160ff0219169083151502179055506001905092915050565b600b5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d8f611352565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610dff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df690612022565b60405180910390fd5b610e0881611527565b50565b600760009054906101000a900460ff1681565b60008183610e2c9190612497565b905092915050565b505050565b60008183610e479190612245565b905092915050565b60008183610e5d919061243d565b905092915050565b60008183610e73919061229b565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eea90612122565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5a90612042565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161104191906121a2565b60405180910390a3505050565b600061105a8484610d00565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110d457818110156110c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bd90612062565b60405180910390fd5b6110d38484848403610e83565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561114a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114190612102565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b190611fe2565b60405180910390fd5b6111c58383836117bb565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561124b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124290612082565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161133991906121a2565b60405180910390a361134c848484611832565b50505050565b61135a610e7b565b73ffffffffffffffffffffffffffffffffffffffff166113786109d8565b73ffffffffffffffffffffffffffffffffffffffff16146113ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c5906120c2565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611440576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143790612182565b60405180910390fd5b61144c600083836117bb565b806002600082825461145e9190612245565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161150f91906121a2565b60405180910390a361152360008383611832565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561165d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611654906120e2565b60405180910390fd5b611669826000836117bb565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156116ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e690612002565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117a291906121a2565b60405180910390a36117b683600084611832565b505050565b6117c6838383610e34565b60011515600760019054906101000a900460ff161515141561182d576117ed818484611837565b61182c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182390612142565b60405180910390fd5b5b505050565b505050565b600080600090506000600d600061184c610e7b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806118e85750600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8061193c5750600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806119735750600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b1561198157600191506119e9565b600061198c856108cb565b1161199757856119b3565b6119b2866119a4866108cb565b610e3990919063ffffffff16565b5b90506119e460646119d66009546119c86105cb565b610e4f90919063ffffffff16565b610e6590919063ffffffff16565b811091505b81925050509392505050565b6000611a08611a03846121fd565b6121d8565b90508083825260208201905082856040860282011115611a2b57611a2a6126f4565b5b60005b85811015611a5b5781611a418882611abd565b845260208401935060408301925050600181019050611a2e565b5050509392505050565b600081359050611a7481612b27565b92915050565b600082601f830112611a8f57611a8e6126ea565b5b8135611a9f8482602086016119f5565b91505092915050565b600081359050611ab781612b3e565b92915050565b600060408284031215611ad357611ad26126ef565b5b611add60406121d8565b90506000611aed84828501611a65565b6000830152506020611b0184828501611b0d565b60208301525092915050565b600081359050611b1c81612b55565b92915050565b600060208284031215611b3857611b376126fe565b5b6000611b4684828501611a65565b91505092915050565b60008060408385031215611b6657611b656126fe565b5b6000611b7485828601611a65565b9250506020611b8585828601611a65565b9150509250929050565b600080600060608486031215611ba857611ba76126fe565b5b6000611bb686828701611a65565b9350506020611bc786828701611a65565b9250506040611bd886828701611b0d565b9150509250925092565b60008060408385031215611bf957611bf86126fe565b5b6000611c0785828601611a65565b9250506020611c1885828601611b0d565b9150509250929050565b600060208284031215611c3857611c376126fe565b5b600082013567ffffffffffffffff811115611c5657611c556126f9565b5b611c6284828501611a7a565b91505092915050565b60008060408385031215611c8257611c816126fe565b5b6000611c9085828601611aa8565b9250506020611ca185828601611a65565b9150509250929050565b60008060408385031215611cc257611cc16126fe565b5b6000611cd085828601611aa8565b9250506020611ce185828601611aa8565b9150509250929050565b60008060408385031215611d0257611d016126fe565b5b6000611d1085828601611b0d565b9250506020611d2185828601611b0d565b9150509250929050565b611d34816124cb565b82525050565b611d43816124dd565b82525050565b6000611d5482612229565b611d5e8185612234565b9350611d6e818560208601612520565b611d7781612703565b840191505092915050565b6000611d8f602383612234565b9150611d9a82612721565b604082019050919050565b6000611db2602283612234565b9150611dbd82612770565b604082019050919050565b6000611dd5602683612234565b9150611de0826127bf565b604082019050919050565b6000611df8602283612234565b9150611e038261280e565b604082019050919050565b6000611e1b601d83612234565b9150611e268261285d565b602082019050919050565b6000611e3e602683612234565b9150611e4982612886565b604082019050919050565b6000611e61603283612234565b9150611e6c826128d5565b604082019050919050565b6000611e84602083612234565b9150611e8f82612924565b602082019050919050565b6000611ea7602183612234565b9150611eb28261294d565b604082019050919050565b6000611eca602583612234565b9150611ed58261299c565b604082019050919050565b6000611eed602483612234565b9150611ef8826129eb565b604082019050919050565b6000611f10604c83612234565b9150611f1b82612a3a565b606082019050919050565b6000611f33602583612234565b9150611f3e82612aaf565b604082019050919050565b6000611f56601f83612234565b9150611f6182612afe565b602082019050919050565b611f7581612509565b82525050565b611f8481612513565b82525050565b6000602082019050611f9f6000830184611d2b565b92915050565b6000602082019050611fba6000830184611d3a565b92915050565b60006020820190508181036000830152611fda8184611d49565b905092915050565b60006020820190508181036000830152611ffb81611d82565b9050919050565b6000602082019050818103600083015261201b81611da5565b9050919050565b6000602082019050818103600083015261203b81611dc8565b9050919050565b6000602082019050818103600083015261205b81611deb565b9050919050565b6000602082019050818103600083015261207b81611e0e565b9050919050565b6000602082019050818103600083015261209b81611e31565b9050919050565b600060208201905081810360008301526120bb81611e54565b9050919050565b600060208201905081810360008301526120db81611e77565b9050919050565b600060208201905081810360008301526120fb81611e9a565b9050919050565b6000602082019050818103600083015261211b81611ebd565b9050919050565b6000602082019050818103600083015261213b81611ee0565b9050919050565b6000602082019050818103600083015261215b81611f03565b9050919050565b6000602082019050818103600083015261217b81611f26565b9050919050565b6000602082019050818103600083015261219b81611f49565b9050919050565b60006020820190506121b76000830184611f6c565b92915050565b60006020820190506121d26000830184611f7b565b92915050565b60006121e26121f3565b90506121ee8282612585565b919050565b6000604051905090565b600067ffffffffffffffff821115612218576122176126bb565b5b602082029050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600061225082612509565b915061225b83612509565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156122905761228f6125ff565b5b828201905092915050565b60006122a682612509565b91506122b183612509565b9250826122c1576122c061262e565b5b828204905092915050565b6000808291508390505b6001851115612316578086048111156122f2576122f16125ff565b5b60018516156123015780820291505b808102905061230f85612714565b94506122d6565b94509492505050565b600061232a82612509565b915061233583612513565b92506123627fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461236a565b905092915050565b60008261237a5760019050612436565b816123885760009050612436565b816001811461239e57600281146123a8576123d7565b6001915050612436565b60ff8411156123ba576123b96125ff565b5b8360020a9150848211156123d1576123d06125ff565b5b50612436565b5060208310610133831016604e8410600b841016171561240c5782820a905083811115612407576124066125ff565b5b612436565b61241984848460016122cc565b925090508184048111156124305761242f6125ff565b5b81810290505b9392505050565b600061244882612509565b915061245383612509565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561248c5761248b6125ff565b5b828202905092915050565b60006124a282612509565b91506124ad83612509565b9250828210156124c0576124bf6125ff565b5b828203905092915050565b60006124d6826124e9565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561253e578082015181840152602081019050612523565b8381111561254d576000848401525b50505050565b6000600282049050600182168061256b57607f821691505b6020821081141561257f5761257e61265d565b5b50919050565b61258e82612703565b810181811067ffffffffffffffff821117156125ad576125ac6126bb565b5b80604052505050565b60006125c182612509565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156125f4576125f36125ff565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4f6e6c7920496e697469616c2043726561746f722063616e206272696e67206160008201527f626f7574206120737570706c7953686f636b0000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f5768616c6520616e642044756d702050726576656e74696f6e3a204f6e65205760008201527f616c6c65742063616e6e6f7420686f6c64206d6f7265207468616e203225206f60208201527f66206d617820537570706c790000000000000000000000000000000000000000604082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b612b30816124cb565b8114612b3b57600080fd5b50565b612b47816124dd565b8114612b5257600080fd5b50565b612b5e81612509565b8114612b6957600080fd5b5056fea26469706673582212209aa142c28e15bc6b19e72c80b7a1cee5ec75d3fd622c37c5a4683781f31ee9f464736f6c634300080700330000000000000000000000000000000000000000000000000000000acfed6c54

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c80638da5cb5b116100de578063a9059cbb11610097578063d5abeb0111610071578063d5abeb011461048e578063dd62ed3e146104ac578063f2fde38b146104dc578063ff647043146104f857610173565b8063a9059cbb14610410578063ad5ea36f14610440578063cc904ff71461045e57610173565b80638da5cb5b1461034a57806394bf21f01461036857806395d89b41146103865780639e212571146103a4578063a2777d05146103c2578063a457c2d7146103e057610173565b80633950935111610130578063395093511461026257806356ce5ff2146102925780636b5e139b146102c257806370a08231146102e0578063715018a61461031057806387df581d1461031a57610173565b806306fdde0314610178578063095ea7b31461019657806318160ddd146101c657806323b872dd146101e457806327d348cf14610214578063313ce56714610244575b600080fd5b610180610516565b60405161018d9190611fc0565b60405180910390f35b6101b060048036038101906101ab9190611be2565b6105a8565b6040516101bd9190611fa5565b60405180910390f35b6101ce6105cb565b6040516101db91906121a2565b60405180910390f35b6101fe60048036038101906101f99190611b8f565b6105d5565b60405161020b9190611fa5565b60405180910390f35b61022e60048036038101906102299190611c22565b6106bc565b60405161023b9190611fa5565b60405180910390f35b61024c61078b565b60405161025991906121bd565b60405180910390f35b61027c60048036038101906102779190611be2565b610794565b6040516102899190611fa5565b60405180910390f35b6102ac60048036038101906102a79190611c6b565b6107cb565b6040516102b99190611fa5565b60405180910390f35b6102ca6108c5565b6040516102d791906121a2565b60405180910390f35b6102fa60048036038101906102f59190611b22565b6108cb565b60405161030791906121a2565b60405180910390f35b610318610913565b005b610334600480360381019061032f9190611ceb565b610927565b6040516103419190611fa5565b60405180910390f35b6103526109d8565b60405161035f9190611f8a565b60405180910390f35b610370610a02565b60405161037d9190611fa5565b60405180910390f35b61038e610a15565b60405161039b9190611fc0565b60405180910390f35b6103ac610aa7565b6040516103b991906121a2565b60405180910390f35b6103ca610aad565b6040516103d79190611fa5565b60405180910390f35b6103fa60048036038101906103f59190611be2565b610b83565b6040516104079190611fa5565b60405180910390f35b61042a60048036038101906104259190611be2565b610bfa565b6040516104379190611fa5565b60405180910390f35b610448610c1d565b60405161045591906121a2565b60405180910390f35b61047860048036038101906104739190611cab565b610c23565b6040516104859190611fa5565b60405180910390f35b610496610cfa565b6040516104a391906121a2565b60405180910390f35b6104c660048036038101906104c19190611b4f565b610d00565b6040516104d391906121a2565b60405180910390f35b6104f660048036038101906104f19190611b22565b610d87565b005b610500610e0b565b60405161050d9190611fa5565b60405180910390f35b60606003805461052590612553565b80601f016020809104026020016040519081016040528092919081815260200182805461055190612553565b801561059e5780601f106105735761010080835404028352916020019161059e565b820191906000526020600020905b81548152906001019060200180831161058157829003601f168201915b5050505050905090565b6000806105b3610e7b565b90506105c0818585610e83565b600191505092915050565b6000600254905090565b6000806105e0610e7b565b90506105ed85828561104e565b60011515600760009054906101000a900460ff16151514156106a4576000610633606461062560085487610e4f90919063ffffffff16565b610e6590919063ffffffff16565b9050600061064a8286610e1e90919063ffffffff16565b90506106578787836110da565b61068487600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846110da565b81600a60008282546106969190612245565b9250508190555050506106b0565b6106af8585856110da565b5b60019150509392505050565b60006106c6611352565b60005b82518110156107555760008382815181106106e7576106e661268c565b5b602002602001015160000151905060006106ff61078b565b600a61070b919061231f565b85848151811061071e5761071d61268c565b5b602002602001015160200151610734919061243d565b905061074082826113d0565b5050808061074d906125b6565b9150506106c9565b507f5a31340f0d75691fca7c6ab36bdd3ece0f99ebc1e7aea94477e8a27ac8c44b6360405160405180910390a160019050919050565b60006012905090565b60008061079f610e7b565b90506107c08185856107b18589610d00565b6107bb9190612245565b610e83565b600191505092915050565b60006107d5610e7b565b73ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085b906120a2565b60405180910390fd5b82600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001905092915050565b60095481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61091b611352565b6109256000611527565b565b6000610931610e7b565b73ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b7906120a2565b60405180910390fd5b82600881905550816009819055506001905092915050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760019054906101000a900460ff1681565b606060048054610a2490612553565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5090612553565b8015610a9d5780601f10610a7257610100808354040283529160200191610a9d565b820191906000526020600020905b815481529060010190602001808311610a8057829003601f168201915b5050505050905090565b600a5481565b6000610ab7610e7b565b73ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3d906120a2565b60405180910390fd5b610b74600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a546115ed565b6000600a819055506001905090565b600080610b8e610e7b565b90506000610b9c8286610d00565b905083811015610be1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd890612162565b60405180910390fd5b610bee8286868403610e83565b60019250505092915050565b600080610c05610e7b565b9050610c128185856110da565b600191505092915050565b60085481565b6000610c2d610e7b565b73ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb3906120a2565b60405180910390fd5b82600760006101000a81548160ff02191690831515021790555081600760016101000a81548160ff0219169083151502179055506001905092915050565b600b5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d8f611352565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610dff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df690612022565b60405180910390fd5b610e0881611527565b50565b600760009054906101000a900460ff1681565b60008183610e2c9190612497565b905092915050565b505050565b60008183610e479190612245565b905092915050565b60008183610e5d919061243d565b905092915050565b60008183610e73919061229b565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eea90612122565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5a90612042565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161104191906121a2565b60405180910390a3505050565b600061105a8484610d00565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110d457818110156110c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bd90612062565b60405180910390fd5b6110d38484848403610e83565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561114a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114190612102565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b190611fe2565b60405180910390fd5b6111c58383836117bb565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561124b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124290612082565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161133991906121a2565b60405180910390a361134c848484611832565b50505050565b61135a610e7b565b73ffffffffffffffffffffffffffffffffffffffff166113786109d8565b73ffffffffffffffffffffffffffffffffffffffff16146113ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c5906120c2565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611440576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143790612182565b60405180910390fd5b61144c600083836117bb565b806002600082825461145e9190612245565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161150f91906121a2565b60405180910390a361152360008383611832565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561165d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611654906120e2565b60405180910390fd5b611669826000836117bb565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156116ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e690612002565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117a291906121a2565b60405180910390a36117b683600084611832565b505050565b6117c6838383610e34565b60011515600760019054906101000a900460ff161515141561182d576117ed818484611837565b61182c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182390612142565b60405180910390fd5b5b505050565b505050565b600080600090506000600d600061184c610e7b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806118e85750600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8061193c5750600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806119735750600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b1561198157600191506119e9565b600061198c856108cb565b1161199757856119b3565b6119b2866119a4866108cb565b610e3990919063ffffffff16565b5b90506119e460646119d66009546119c86105cb565b610e4f90919063ffffffff16565b610e6590919063ffffffff16565b811091505b81925050509392505050565b6000611a08611a03846121fd565b6121d8565b90508083825260208201905082856040860282011115611a2b57611a2a6126f4565b5b60005b85811015611a5b5781611a418882611abd565b845260208401935060408301925050600181019050611a2e565b5050509392505050565b600081359050611a7481612b27565b92915050565b600082601f830112611a8f57611a8e6126ea565b5b8135611a9f8482602086016119f5565b91505092915050565b600081359050611ab781612b3e565b92915050565b600060408284031215611ad357611ad26126ef565b5b611add60406121d8565b90506000611aed84828501611a65565b6000830152506020611b0184828501611b0d565b60208301525092915050565b600081359050611b1c81612b55565b92915050565b600060208284031215611b3857611b376126fe565b5b6000611b4684828501611a65565b91505092915050565b60008060408385031215611b6657611b656126fe565b5b6000611b7485828601611a65565b9250506020611b8585828601611a65565b9150509250929050565b600080600060608486031215611ba857611ba76126fe565b5b6000611bb686828701611a65565b9350506020611bc786828701611a65565b9250506040611bd886828701611b0d565b9150509250925092565b60008060408385031215611bf957611bf86126fe565b5b6000611c0785828601611a65565b9250506020611c1885828601611b0d565b9150509250929050565b600060208284031215611c3857611c376126fe565b5b600082013567ffffffffffffffff811115611c5657611c556126f9565b5b611c6284828501611a7a565b91505092915050565b60008060408385031215611c8257611c816126fe565b5b6000611c9085828601611aa8565b9250506020611ca185828601611a65565b9150509250929050565b60008060408385031215611cc257611cc16126fe565b5b6000611cd085828601611aa8565b9250506020611ce185828601611aa8565b9150509250929050565b60008060408385031215611d0257611d016126fe565b5b6000611d1085828601611b0d565b9250506020611d2185828601611b0d565b9150509250929050565b611d34816124cb565b82525050565b611d43816124dd565b82525050565b6000611d5482612229565b611d5e8185612234565b9350611d6e818560208601612520565b611d7781612703565b840191505092915050565b6000611d8f602383612234565b9150611d9a82612721565b604082019050919050565b6000611db2602283612234565b9150611dbd82612770565b604082019050919050565b6000611dd5602683612234565b9150611de0826127bf565b604082019050919050565b6000611df8602283612234565b9150611e038261280e565b604082019050919050565b6000611e1b601d83612234565b9150611e268261285d565b602082019050919050565b6000611e3e602683612234565b9150611e4982612886565b604082019050919050565b6000611e61603283612234565b9150611e6c826128d5565b604082019050919050565b6000611e84602083612234565b9150611e8f82612924565b602082019050919050565b6000611ea7602183612234565b9150611eb28261294d565b604082019050919050565b6000611eca602583612234565b9150611ed58261299c565b604082019050919050565b6000611eed602483612234565b9150611ef8826129eb565b604082019050919050565b6000611f10604c83612234565b9150611f1b82612a3a565b606082019050919050565b6000611f33602583612234565b9150611f3e82612aaf565b604082019050919050565b6000611f56601f83612234565b9150611f6182612afe565b602082019050919050565b611f7581612509565b82525050565b611f8481612513565b82525050565b6000602082019050611f9f6000830184611d2b565b92915050565b6000602082019050611fba6000830184611d3a565b92915050565b60006020820190508181036000830152611fda8184611d49565b905092915050565b60006020820190508181036000830152611ffb81611d82565b9050919050565b6000602082019050818103600083015261201b81611da5565b9050919050565b6000602082019050818103600083015261203b81611dc8565b9050919050565b6000602082019050818103600083015261205b81611deb565b9050919050565b6000602082019050818103600083015261207b81611e0e565b9050919050565b6000602082019050818103600083015261209b81611e31565b9050919050565b600060208201905081810360008301526120bb81611e54565b9050919050565b600060208201905081810360008301526120db81611e77565b9050919050565b600060208201905081810360008301526120fb81611e9a565b9050919050565b6000602082019050818103600083015261211b81611ebd565b9050919050565b6000602082019050818103600083015261213b81611ee0565b9050919050565b6000602082019050818103600083015261215b81611f03565b9050919050565b6000602082019050818103600083015261217b81611f26565b9050919050565b6000602082019050818103600083015261219b81611f49565b9050919050565b60006020820190506121b76000830184611f6c565b92915050565b60006020820190506121d26000830184611f7b565b92915050565b60006121e26121f3565b90506121ee8282612585565b919050565b6000604051905090565b600067ffffffffffffffff821115612218576122176126bb565b5b602082029050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600061225082612509565b915061225b83612509565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156122905761228f6125ff565b5b828201905092915050565b60006122a682612509565b91506122b183612509565b9250826122c1576122c061262e565b5b828204905092915050565b6000808291508390505b6001851115612316578086048111156122f2576122f16125ff565b5b60018516156123015780820291505b808102905061230f85612714565b94506122d6565b94509492505050565b600061232a82612509565b915061233583612513565b92506123627fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461236a565b905092915050565b60008261237a5760019050612436565b816123885760009050612436565b816001811461239e57600281146123a8576123d7565b6001915050612436565b60ff8411156123ba576123b96125ff565b5b8360020a9150848211156123d1576123d06125ff565b5b50612436565b5060208310610133831016604e8410600b841016171561240c5782820a905083811115612407576124066125ff565b5b612436565b61241984848460016122cc565b925090508184048111156124305761242f6125ff565b5b81810290505b9392505050565b600061244882612509565b915061245383612509565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561248c5761248b6125ff565b5b828202905092915050565b60006124a282612509565b91506124ad83612509565b9250828210156124c0576124bf6125ff565b5b828203905092915050565b60006124d6826124e9565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561253e578082015181840152602081019050612523565b8381111561254d576000848401525b50505050565b6000600282049050600182168061256b57607f821691505b6020821081141561257f5761257e61265d565b5b50919050565b61258e82612703565b810181811067ffffffffffffffff821117156125ad576125ac6126bb565b5b80604052505050565b60006125c182612509565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156125f4576125f36125ff565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4f6e6c7920496e697469616c2043726561746f722063616e206272696e67206160008201527f626f7574206120737570706c7953686f636b0000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f5768616c6520616e642044756d702050726576656e74696f6e3a204f6e65205760008201527f616c6c65742063616e6e6f7420686f6c64206d6f7265207468616e203225206f60208201527f66206d617820537570706c790000000000000000000000000000000000000000604082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b612b30816124cb565b8114612b3b57600080fd5b50565b612b47816124dd565b8114612b5257600080fd5b50565b612b5e81612509565b8114612b6957600080fd5b5056fea26469706673582212209aa142c28e15bc6b19e72c80b7a1cee5ec75d3fd622c37c5a4683781f31ee9f464736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000acfed6c54

-----Decoded View---------------
Arg [0] : _amountToBeAirdropped (uint256): 46438116436

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000acfed6c54


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.