ETH Price: $3,330.60 (-1.31%)
Gas: 10 Gwei

Token

BloodToken (BLD)
 

Overview

Max Total Supply

69,245,876.37962962962962947 BLD

Holders

383

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
DegenMoonFrens: Deployer
Balance
430 BLD

Value
$0.00
0x428fDB5C53fD113aEcDE8DdAF84D038C91840A2d
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:
BloodToken

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : BloodToken.sol
// SPDX-License-Identifier: MIT
/*
 ______     __                            __           __                      __
|_   _ \   [  |                          |  ]         [  |                    |  ]
  | |_) |   | |    .--.     .--.     .--.| |   .--.    | |--.    .---.    .--.| |
  |  __'.   | |  / .'`\ \ / .'`\ \ / /'`\' |  ( (`\]   | .-. |  / /__\\ / /'`\' |
 _| |__) |  | |  | \__. | | \__. | | \__/  |   `'.'.   | | | |  | \__., | \__/  |
|_______/  [___]  '.__.'   '.__.'   '.__.;__] [\__) ) [___]|__]  '.__.'  '.__.;__]
                      ________
                      ___  __ )_____ ______ _________________
                      __  __  |_  _ \_  __ `/__  ___/__  ___/
                      _  /_/ / /  __// /_/ / _  /    _(__  )
                      /_____/  \___/ \__,_/  /_/     /____/
*/
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/security/Pausable.sol";


contract BloodToken is Ownable, ERC20("BloodToken", "BLD"), Pausable {

    uint256 public taxFunds;

    uint256 public tax = 25;

    uint256 public spendingTax = 30;

    uint256 public spending;

    mapping(address => bool) public authorisedAddresses;
    mapping(address => uint256) public walletsBalances;


    modifier authorised() {
        require(authorisedAddresses[msg.sender], "The token contract is not authorised");
        _;
    }

    constructor() {}

    function setAuthorised(address[] calldata addresses_, bool[] calldata authorisations_) external onlyOwner {
        for (uint256 i = 0; i < addresses_.length; ++i) {
            authorisedAddresses[addresses_[i]] = authorisations_[i];
        }
    }

    function setTax(uint256 tax_) external onlyOwner {
        tax = tax_;
    }

    function setSpendingHolding(uint256 spendingHolding_) external onlyOwner {
        spendingTax = spendingHolding_;
    }

    function depositTokens(address wallet_, uint256 amount_) external whenNotPaused {
        _burn(msg.sender, amount_);
        walletsBalances[wallet_] += amount_;
    }

    function add(address recipient_, uint256 amount_) external authorised {
        walletsBalances[recipient_] += amount_;
    }

    function spend(address wallet_, uint256 amount_) external authorised {
        require(walletsBalances[wallet_] >= amount_);
        spending += amount_ * spendingTax / 100;
        walletsBalances[wallet_] -= amount_;
    }

    function withdrawTax(uint256 amount_) external onlyOwner {
        require(taxFunds >= amount_);
        _mint(msg.sender, taxFunds);
        taxFunds -= amount_;
    }

    function withdrawSpendings(uint256 amount_) external onlyOwner {
        require(spending >= amount_);
        _mint(msg.sender, spending);
        spending -= amount_;
    }

    function withdraw(uint256 amount_) external whenNotPaused {
        require(amount_ <= walletsBalances[msg.sender]);
        uint256 taxed = amount_ * tax / 100;
        taxFunds += taxed;
        _mint(msg.sender, amount_ - taxed);
        walletsBalances[msg.sender] -= amount_;
    }

    function mintTokens(address recipient_, uint256 amount_) external authorised {
        _mint(recipient_, amount_);
    }

    function transferTokensBetweenWallets(address to_, uint256 amount_) external whenNotPaused {
        require(walletsBalances[msg.sender] >= amount_);
        walletsBalances[msg.sender] -= amount_;
        walletsBalances[to_] += amount_;
    }

    function pause() external onlyOwner {
        _pause();
    }

    function unpause() external onlyOwner {
        _unpause();
    }

    function addToInternalWallets(address[] calldata addresses_, uint256[] calldata amounts_) external onlyOwner {
        for (uint256 i = 0 ; i < addresses_.length; ++i) {
            walletsBalances[addresses_[i]] += amounts_[i];
        }
    }

}

File 2 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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 3 of 7 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.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.zeppelin.solutions/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, _allowances[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 = _allowances[owner][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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;
        }
        _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;
        _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;
        }
        _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 Spend `amount` form the allowance of `owner` toward `spender`.
     *
     * 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 7 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 5 of 7 : 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 6 of 7 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);

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

File 7 of 7 : 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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"recipient_","type":"address"},{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"add","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses_","type":"address[]"},{"internalType":"uint256[]","name":"amounts_","type":"uint256[]"}],"name":"addToInternalWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"authorisedAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet_","type":"address"},{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"depositTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient_","type":"address"},{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"mintTokens","outputs":[],"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses_","type":"address[]"},{"internalType":"bool[]","name":"authorisations_","type":"bool[]"}],"name":"setAuthorised","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"spendingHolding_","type":"uint256"}],"name":"setSpendingHolding","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tax_","type":"uint256"}],"name":"setTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet_","type":"address"},{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"spend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"spending","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"spendingTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxFunds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"to_","type":"address"},{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"transferTokensBetweenWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletsBalances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"withdrawSpendings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"withdrawTax","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526019600855601e6009553480156200001b57600080fd5b506040518060400160405280600a81526020017f426c6f6f64546f6b656e000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f424c440000000000000000000000000000000000000000000000000000000000815250620000a86200009c620000fd60201b60201c565b6200010560201b60201c565b8160049080519060200190620000c0929190620001c9565b508060059080519060200190620000d9929190620001c9565b5050506000600660006101000a81548160ff021916908315150217905550620002de565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001d790620002a8565b90600052602060002090601f016020900481019282620001fb576000855562000247565b82601f106200021657805160ff191683800117855562000247565b8280016001018555821562000247579182015b828111156200024657825182559160200191906001019062000229565b5b5090506200025691906200025a565b5090565b5b80821115620002755760008160009055506001016200025b565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002c157607f821691505b60208210811415620002d857620002d762000279565b5b50919050565b6132dc80620002ee6000396000f3fe608060405234801561001057600080fd5b50600436106102115760003560e01c806370a0823111610125578063af7d6ca3116100ad578063dd62ed3e1161007c578063dd62ed3e146105dc578063f0dda65c1461060c578063f2fde38b14610628578063f5d82b6b14610644578063fd581b6b1461066057610211565b8063af7d6ca31461056a578063b0a4c79414610586578063c1b37a46146105a2578063cb6287c9146105be57610211565b80638ec72bb1116100f45780638ec72bb1146104b057806395d89b41146104ce57806399c8d556146104ec578063a457c2d71461050a578063a9059cbb1461053a57610211565b806370a082311461044e578063715018a61461047e5780638456cb59146104885780638da5cb5b1461049257610211565b8063249ae3e2116101a8578063395093511161017757806339509351146103aa5780633f4ba83a146103da578063590a4d6a146103e45780635c975abb1461041457806366168bd71461043257610211565b8063249ae3e2146103385780632e1a7d4d146103545780632e5bb6ff14610370578063313ce5671461038c57610211565b80631617534e116101e45780631617534e146102b257806318160ddd146102ce5780631b7c97b2146102ec57806323b872dd1461030857610211565b8063038da4111461021657806306fdde0314610234578063095ea7b3146102525780630e587b3814610282575b600080fd5b61021e61067c565b60405161022b91906122f0565b60405180910390f35b61023c610682565b60405161024991906123a4565b60405180910390f35b61026c6004803603810190610267919061245a565b610714565b60405161027991906124b5565b60405180910390f35b61029c600480360381019061029791906124d0565b610737565b6040516102a991906124b5565b60405180910390f35b6102cc60048036038101906102c791906125b8565b610757565b005b6102d661089e565b6040516102e391906122f0565b60405180910390f35b6103066004803603810190610301919061245a565b6108a8565b005b610322600480360381019061031d9190612639565b6109ec565b60405161032f91906124b5565b60405180910390f35b610352600480360381019061034d919061268c565b610a1b565b005b61036e6004803603810190610369919061268c565b610ace565b005b61038a6004803603810190610385919061268c565b610c08565b005b610394610c8e565b6040516103a191906126d5565b60405180910390f35b6103c460048036038101906103bf919061245a565b610c97565b6040516103d191906124b5565b60405180910390f35b6103e2610d41565b005b6103fe60048036038101906103f991906124d0565b610dc7565b60405161040b91906122f0565b60405180910390f35b61041c610ddf565b60405161042991906124b5565b60405180910390f35b61044c6004803603810190610447919061245a565b610df6565b005b610468600480360381019061046391906124d0565b610ea2565b60405161047591906122f0565b60405180910390f35b610486610eeb565b005b610490610f73565b005b61049a610ff9565b6040516104a791906126ff565b60405180910390f35b6104b8611022565b6040516104c591906122f0565b60405180910390f35b6104d6611028565b6040516104e391906123a4565b60405180910390f35b6104f46110ba565b60405161050191906122f0565b60405180910390f35b610524600480360381019061051f919061245a565b6110c0565b60405161053191906124b5565b60405180910390f35b610554600480360381019061054f919061245a565b6111aa565b60405161056191906124b5565b60405180910390f35b610584600480360381019061057f919061245a565b6111cd565b005b6105a0600480360381019061059b9190612770565b611331565b005b6105bc60048036038101906105b7919061268c565b611469565b005b6105c66114ef565b6040516105d391906122f0565b60405180910390f35b6105f660048036038101906105f191906127f1565b6114f5565b60405161060391906122f0565b60405180910390f35b6106266004803603810190610621919061245a565b61157c565b005b610642600480360381019061063d91906124d0565b611616565b005b61065e6004803603810190610659919061245a565b61170e565b005b61067a6004803603810190610675919061268c565b6117f4565b005b60075481565b60606004805461069190612860565b80601f01602080910402602001604051908101604052809291908181526020018280546106bd90612860565b801561070a5780601f106106df5761010080835404028352916020019161070a565b820191906000526020600020905b8154815290600101906020018083116106ed57829003601f168201915b5050505050905090565b60008061071f6118a7565b905061072c8185856118af565b600191505092915050565b600b6020528060005260406000206000915054906101000a900460ff1681565b61075f6118a7565b73ffffffffffffffffffffffffffffffffffffffff1661077d610ff9565b73ffffffffffffffffffffffffffffffffffffffff16146107d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ca906128de565b60405180910390fd5b60005b84849050811015610897578282828181106107f4576107f36128fe565b5b90506020020160208101906108099190612959565b600b60008787858181106108205761081f6128fe565b5b905060200201602081019061083591906124d0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080610890906129b5565b90506107d6565b5050505050565b6000600354905090565b6108b0610ddf565b156108f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e790612a4a565b60405180910390fd5b80600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101561093c57600080fd5b80600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461098b9190612a6a565b9250508190555080600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546109e19190612a9e565b925050819055505050565b6000806109f76118a7565b9050610a04858285611a7a565b610a0f858585611b06565b60019150509392505050565b610a236118a7565b73ffffffffffffffffffffffffffffffffffffffff16610a41610ff9565b73ffffffffffffffffffffffffffffffffffffffff1614610a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8e906128de565b60405180910390fd5b806007541015610aa657600080fd5b610ab233600754611d8a565b8060076000828254610ac49190612a6a565b9250508190555050565b610ad6610ddf565b15610b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0d90612a4a565b60405180910390fd5b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054811115610b6257600080fd5b6000606460085483610b749190612af4565b610b7e9190612b7d565b90508060076000828254610b929190612a9e565b92505081905550610bae338284610ba99190612a6a565b611d8a565b81600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610bfd9190612a6a565b925050819055505050565b610c106118a7565b73ffffffffffffffffffffffffffffffffffffffff16610c2e610ff9565b73ffffffffffffffffffffffffffffffffffffffff1614610c84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7b906128de565b60405180910390fd5b8060088190555050565b60006012905090565b600080610ca26118a7565b9050610d36818585600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d319190612a9e565b6118af565b600191505092915050565b610d496118a7565b73ffffffffffffffffffffffffffffffffffffffff16610d67610ff9565b73ffffffffffffffffffffffffffffffffffffffff1614610dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db4906128de565b60405180910390fd5b610dc5611eeb565b565b600c6020528060005260406000206000915090505481565b6000600660009054906101000a900460ff16905090565b610dfe610ddf565b15610e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3590612a4a565b60405180910390fd5b610e483382611f8d565b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e979190612a9e565b925050819055505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ef36118a7565b73ffffffffffffffffffffffffffffffffffffffff16610f11610ff9565b73ffffffffffffffffffffffffffffffffffffffff1614610f67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5e906128de565b60405180910390fd5b610f716000612166565b565b610f7b6118a7565b73ffffffffffffffffffffffffffffffffffffffff16610f99610ff9565b73ffffffffffffffffffffffffffffffffffffffff1614610fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe6906128de565b60405180910390fd5b610ff761222a565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60095481565b60606005805461103790612860565b80601f016020809104026020016040519081016040528092919081815260200182805461106390612860565b80156110b05780601f10611085576101008083540402835291602001916110b0565b820191906000526020600020905b81548152906001019060200180831161109357829003601f168201915b5050505050905090565b60085481565b6000806110cb6118a7565b90506000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611191576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118890612c20565b60405180910390fd5b61119e82868684036118af565b60019250505092915050565b6000806111b56118a7565b90506111c2818585611b06565b600191505092915050565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611259576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125090612cb2565b60405180910390fd5b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156112a557600080fd5b6064600954826112b59190612af4565b6112bf9190612b7d565b600a60008282546112d09190612a9e565b9250508190555080600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113269190612a6a565b925050819055505050565b6113396118a7565b73ffffffffffffffffffffffffffffffffffffffff16611357610ff9565b73ffffffffffffffffffffffffffffffffffffffff16146113ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a4906128de565b60405180910390fd5b60005b84849050811015611462578282828181106113ce576113cd6128fe565b5b90506020020135600c60008787858181106113ec576113eb6128fe565b5b905060200201602081019061140191906124d0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461144a9190612a9e565b925050819055508061145b906129b5565b90506113b0565b5050505050565b6114716118a7565b73ffffffffffffffffffffffffffffffffffffffff1661148f610ff9565b73ffffffffffffffffffffffffffffffffffffffff16146114e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114dc906128de565b60405180910390fd5b8060098190555050565b600a5481565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ff90612cb2565b60405180910390fd5b6116128282611d8a565b5050565b61161e6118a7565b73ffffffffffffffffffffffffffffffffffffffff1661163c610ff9565b73ffffffffffffffffffffffffffffffffffffffff1614611692576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611689906128de565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f990612d44565b60405180910390fd5b61170b81612166565b50565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661179a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179190612cb2565b60405180910390fd5b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117e99190612a9e565b925050819055505050565b6117fc6118a7565b73ffffffffffffffffffffffffffffffffffffffff1661181a610ff9565b73ffffffffffffffffffffffffffffffffffffffff1614611870576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611867906128de565b60405180910390fd5b80600a54101561187f57600080fd5b61188b33600a54611d8a565b80600a600082825461189d9190612a6a565b9250508190555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561191f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191690612dd6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561198f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198690612e68565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611a6d91906122f0565b60405180910390a3505050565b6000611a8684846114f5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611b005781811015611af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae990612ed4565b60405180910390fd5b611aff84848484036118af565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6d90612f66565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611be6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdd90612ff8565b60405180910390fd5b611bf18383836122cd565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6f9061308a565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d0d9190612a9e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611d7191906122f0565b60405180910390a3611d848484846122d2565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df1906130f6565b60405180910390fd5b611e06600083836122cd565b8060036000828254611e189190612a9e565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e6e9190612a9e565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611ed391906122f0565b60405180910390a3611ee7600083836122d2565b5050565b611ef3610ddf565b611f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2990613162565b60405180910390fd5b6000600660006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611f766118a7565b604051611f8391906126ff565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ffd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff4906131f4565b60405180910390fd5b612009826000836122cd565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612090576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208790613286565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282546120e89190612a6a565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161214d91906122f0565b60405180910390a3612161836000846122d2565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612232610ddf565b15612272576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226990612a4a565b60405180910390fd5b6001600660006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586122b66118a7565b6040516122c391906126ff565b60405180910390a1565b505050565b505050565b6000819050919050565b6122ea816122d7565b82525050565b600060208201905061230560008301846122e1565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561234557808201518184015260208101905061232a565b83811115612354576000848401525b50505050565b6000601f19601f8301169050919050565b60006123768261230b565b6123808185612316565b9350612390818560208601612327565b6123998161235a565b840191505092915050565b600060208201905081810360008301526123be818461236b565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006123fb826123d0565b9050919050565b61240b816123f0565b811461241657600080fd5b50565b60008135905061242881612402565b92915050565b612437816122d7565b811461244257600080fd5b50565b6000813590506124548161242e565b92915050565b60008060408385031215612471576124706123c6565b5b600061247f85828601612419565b925050602061249085828601612445565b9150509250929050565b60008115159050919050565b6124af8161249a565b82525050565b60006020820190506124ca60008301846124a6565b92915050565b6000602082840312156124e6576124e56123c6565b5b60006124f484828501612419565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112612522576125216124fd565b5b8235905067ffffffffffffffff81111561253f5761253e612502565b5b60208301915083602082028301111561255b5761255a612507565b5b9250929050565b60008083601f840112612578576125776124fd565b5b8235905067ffffffffffffffff81111561259557612594612502565b5b6020830191508360208202830111156125b1576125b0612507565b5b9250929050565b600080600080604085870312156125d2576125d16123c6565b5b600085013567ffffffffffffffff8111156125f0576125ef6123cb565b5b6125fc8782880161250c565b9450945050602085013567ffffffffffffffff81111561261f5761261e6123cb565b5b61262b87828801612562565b925092505092959194509250565b600080600060608486031215612652576126516123c6565b5b600061266086828701612419565b935050602061267186828701612419565b925050604061268286828701612445565b9150509250925092565b6000602082840312156126a2576126a16123c6565b5b60006126b084828501612445565b91505092915050565b600060ff82169050919050565b6126cf816126b9565b82525050565b60006020820190506126ea60008301846126c6565b92915050565b6126f9816123f0565b82525050565b600060208201905061271460008301846126f0565b92915050565b60008083601f8401126127305761272f6124fd565b5b8235905067ffffffffffffffff81111561274d5761274c612502565b5b60208301915083602082028301111561276957612768612507565b5b9250929050565b6000806000806040858703121561278a576127896123c6565b5b600085013567ffffffffffffffff8111156127a8576127a76123cb565b5b6127b48782880161250c565b9450945050602085013567ffffffffffffffff8111156127d7576127d66123cb565b5b6127e38782880161271a565b925092505092959194509250565b60008060408385031215612808576128076123c6565b5b600061281685828601612419565b925050602061282785828601612419565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061287857607f821691505b6020821081141561288c5761288b612831565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006128c8602083612316565b91506128d382612892565b602082019050919050565b600060208201905081810360008301526128f7816128bb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6129368161249a565b811461294157600080fd5b50565b6000813590506129538161292d565b92915050565b60006020828403121561296f5761296e6123c6565b5b600061297d84828501612944565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006129c0826122d7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156129f3576129f2612986565b5b600182019050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000612a34601083612316565b9150612a3f826129fe565b602082019050919050565b60006020820190508181036000830152612a6381612a27565b9050919050565b6000612a75826122d7565b9150612a80836122d7565b925082821015612a9357612a92612986565b5b828203905092915050565b6000612aa9826122d7565b9150612ab4836122d7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ae957612ae8612986565b5b828201905092915050565b6000612aff826122d7565b9150612b0a836122d7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612b4357612b42612986565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612b88826122d7565b9150612b93836122d7565b925082612ba357612ba2612b4e565b5b828204905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612c0a602583612316565b9150612c1582612bae565b604082019050919050565b60006020820190508181036000830152612c3981612bfd565b9050919050565b7f54686520746f6b656e20636f6e7472616374206973206e6f7420617574686f7260008201527f6973656400000000000000000000000000000000000000000000000000000000602082015250565b6000612c9c602483612316565b9150612ca782612c40565b604082019050919050565b60006020820190508181036000830152612ccb81612c8f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612d2e602683612316565b9150612d3982612cd2565b604082019050919050565b60006020820190508181036000830152612d5d81612d21565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612dc0602483612316565b9150612dcb82612d64565b604082019050919050565b60006020820190508181036000830152612def81612db3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612e52602283612316565b9150612e5d82612df6565b604082019050919050565b60006020820190508181036000830152612e8181612e45565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612ebe601d83612316565b9150612ec982612e88565b602082019050919050565b60006020820190508181036000830152612eed81612eb1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612f50602583612316565b9150612f5b82612ef4565b604082019050919050565b60006020820190508181036000830152612f7f81612f43565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612fe2602383612316565b9150612fed82612f86565b604082019050919050565b6000602082019050818103600083015261301181612fd5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613074602683612316565b915061307f82613018565b604082019050919050565b600060208201905081810360008301526130a381613067565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006130e0601f83612316565b91506130eb826130aa565b602082019050919050565b6000602082019050818103600083015261310f816130d3565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b600061314c601483612316565b915061315782613116565b602082019050919050565b6000602082019050818103600083015261317b8161313f565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006131de602183612316565b91506131e982613182565b604082019050919050565b6000602082019050818103600083015261320d816131d1565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000613270602283612316565b915061327b82613214565b604082019050919050565b6000602082019050818103600083015261329f81613263565b905091905056fea264697066735822122082d1980d4f6e3297c48bd46b6224584f4b0f4c52965db12a02e0b99f10cfeb4264736f6c634300080a0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102115760003560e01c806370a0823111610125578063af7d6ca3116100ad578063dd62ed3e1161007c578063dd62ed3e146105dc578063f0dda65c1461060c578063f2fde38b14610628578063f5d82b6b14610644578063fd581b6b1461066057610211565b8063af7d6ca31461056a578063b0a4c79414610586578063c1b37a46146105a2578063cb6287c9146105be57610211565b80638ec72bb1116100f45780638ec72bb1146104b057806395d89b41146104ce57806399c8d556146104ec578063a457c2d71461050a578063a9059cbb1461053a57610211565b806370a082311461044e578063715018a61461047e5780638456cb59146104885780638da5cb5b1461049257610211565b8063249ae3e2116101a8578063395093511161017757806339509351146103aa5780633f4ba83a146103da578063590a4d6a146103e45780635c975abb1461041457806366168bd71461043257610211565b8063249ae3e2146103385780632e1a7d4d146103545780632e5bb6ff14610370578063313ce5671461038c57610211565b80631617534e116101e45780631617534e146102b257806318160ddd146102ce5780631b7c97b2146102ec57806323b872dd1461030857610211565b8063038da4111461021657806306fdde0314610234578063095ea7b3146102525780630e587b3814610282575b600080fd5b61021e61067c565b60405161022b91906122f0565b60405180910390f35b61023c610682565b60405161024991906123a4565b60405180910390f35b61026c6004803603810190610267919061245a565b610714565b60405161027991906124b5565b60405180910390f35b61029c600480360381019061029791906124d0565b610737565b6040516102a991906124b5565b60405180910390f35b6102cc60048036038101906102c791906125b8565b610757565b005b6102d661089e565b6040516102e391906122f0565b60405180910390f35b6103066004803603810190610301919061245a565b6108a8565b005b610322600480360381019061031d9190612639565b6109ec565b60405161032f91906124b5565b60405180910390f35b610352600480360381019061034d919061268c565b610a1b565b005b61036e6004803603810190610369919061268c565b610ace565b005b61038a6004803603810190610385919061268c565b610c08565b005b610394610c8e565b6040516103a191906126d5565b60405180910390f35b6103c460048036038101906103bf919061245a565b610c97565b6040516103d191906124b5565b60405180910390f35b6103e2610d41565b005b6103fe60048036038101906103f991906124d0565b610dc7565b60405161040b91906122f0565b60405180910390f35b61041c610ddf565b60405161042991906124b5565b60405180910390f35b61044c6004803603810190610447919061245a565b610df6565b005b610468600480360381019061046391906124d0565b610ea2565b60405161047591906122f0565b60405180910390f35b610486610eeb565b005b610490610f73565b005b61049a610ff9565b6040516104a791906126ff565b60405180910390f35b6104b8611022565b6040516104c591906122f0565b60405180910390f35b6104d6611028565b6040516104e391906123a4565b60405180910390f35b6104f46110ba565b60405161050191906122f0565b60405180910390f35b610524600480360381019061051f919061245a565b6110c0565b60405161053191906124b5565b60405180910390f35b610554600480360381019061054f919061245a565b6111aa565b60405161056191906124b5565b60405180910390f35b610584600480360381019061057f919061245a565b6111cd565b005b6105a0600480360381019061059b9190612770565b611331565b005b6105bc60048036038101906105b7919061268c565b611469565b005b6105c66114ef565b6040516105d391906122f0565b60405180910390f35b6105f660048036038101906105f191906127f1565b6114f5565b60405161060391906122f0565b60405180910390f35b6106266004803603810190610621919061245a565b61157c565b005b610642600480360381019061063d91906124d0565b611616565b005b61065e6004803603810190610659919061245a565b61170e565b005b61067a6004803603810190610675919061268c565b6117f4565b005b60075481565b60606004805461069190612860565b80601f01602080910402602001604051908101604052809291908181526020018280546106bd90612860565b801561070a5780601f106106df5761010080835404028352916020019161070a565b820191906000526020600020905b8154815290600101906020018083116106ed57829003601f168201915b5050505050905090565b60008061071f6118a7565b905061072c8185856118af565b600191505092915050565b600b6020528060005260406000206000915054906101000a900460ff1681565b61075f6118a7565b73ffffffffffffffffffffffffffffffffffffffff1661077d610ff9565b73ffffffffffffffffffffffffffffffffffffffff16146107d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ca906128de565b60405180910390fd5b60005b84849050811015610897578282828181106107f4576107f36128fe565b5b90506020020160208101906108099190612959565b600b60008787858181106108205761081f6128fe565b5b905060200201602081019061083591906124d0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080610890906129b5565b90506107d6565b5050505050565b6000600354905090565b6108b0610ddf565b156108f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e790612a4a565b60405180910390fd5b80600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054101561093c57600080fd5b80600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461098b9190612a6a565b9250508190555080600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546109e19190612a9e565b925050819055505050565b6000806109f76118a7565b9050610a04858285611a7a565b610a0f858585611b06565b60019150509392505050565b610a236118a7565b73ffffffffffffffffffffffffffffffffffffffff16610a41610ff9565b73ffffffffffffffffffffffffffffffffffffffff1614610a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8e906128de565b60405180910390fd5b806007541015610aa657600080fd5b610ab233600754611d8a565b8060076000828254610ac49190612a6a565b9250508190555050565b610ad6610ddf565b15610b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0d90612a4a565b60405180910390fd5b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054811115610b6257600080fd5b6000606460085483610b749190612af4565b610b7e9190612b7d565b90508060076000828254610b929190612a9e565b92505081905550610bae338284610ba99190612a6a565b611d8a565b81600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610bfd9190612a6a565b925050819055505050565b610c106118a7565b73ffffffffffffffffffffffffffffffffffffffff16610c2e610ff9565b73ffffffffffffffffffffffffffffffffffffffff1614610c84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7b906128de565b60405180910390fd5b8060088190555050565b60006012905090565b600080610ca26118a7565b9050610d36818585600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d319190612a9e565b6118af565b600191505092915050565b610d496118a7565b73ffffffffffffffffffffffffffffffffffffffff16610d67610ff9565b73ffffffffffffffffffffffffffffffffffffffff1614610dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db4906128de565b60405180910390fd5b610dc5611eeb565b565b600c6020528060005260406000206000915090505481565b6000600660009054906101000a900460ff16905090565b610dfe610ddf565b15610e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3590612a4a565b60405180910390fd5b610e483382611f8d565b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e979190612a9e565b925050819055505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ef36118a7565b73ffffffffffffffffffffffffffffffffffffffff16610f11610ff9565b73ffffffffffffffffffffffffffffffffffffffff1614610f67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5e906128de565b60405180910390fd5b610f716000612166565b565b610f7b6118a7565b73ffffffffffffffffffffffffffffffffffffffff16610f99610ff9565b73ffffffffffffffffffffffffffffffffffffffff1614610fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe6906128de565b60405180910390fd5b610ff761222a565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60095481565b60606005805461103790612860565b80601f016020809104026020016040519081016040528092919081815260200182805461106390612860565b80156110b05780601f10611085576101008083540402835291602001916110b0565b820191906000526020600020905b81548152906001019060200180831161109357829003601f168201915b5050505050905090565b60085481565b6000806110cb6118a7565b90506000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611191576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118890612c20565b60405180910390fd5b61119e82868684036118af565b60019250505092915050565b6000806111b56118a7565b90506111c2818585611b06565b600191505092915050565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611259576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125090612cb2565b60405180910390fd5b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156112a557600080fd5b6064600954826112b59190612af4565b6112bf9190612b7d565b600a60008282546112d09190612a9e565b9250508190555080600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113269190612a6a565b925050819055505050565b6113396118a7565b73ffffffffffffffffffffffffffffffffffffffff16611357610ff9565b73ffffffffffffffffffffffffffffffffffffffff16146113ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a4906128de565b60405180910390fd5b60005b84849050811015611462578282828181106113ce576113cd6128fe565b5b90506020020135600c60008787858181106113ec576113eb6128fe565b5b905060200201602081019061140191906124d0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461144a9190612a9e565b925050819055508061145b906129b5565b90506113b0565b5050505050565b6114716118a7565b73ffffffffffffffffffffffffffffffffffffffff1661148f610ff9565b73ffffffffffffffffffffffffffffffffffffffff16146114e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114dc906128de565b60405180910390fd5b8060098190555050565b600a5481565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ff90612cb2565b60405180910390fd5b6116128282611d8a565b5050565b61161e6118a7565b73ffffffffffffffffffffffffffffffffffffffff1661163c610ff9565b73ffffffffffffffffffffffffffffffffffffffff1614611692576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611689906128de565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f990612d44565b60405180910390fd5b61170b81612166565b50565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661179a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179190612cb2565b60405180910390fd5b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117e99190612a9e565b925050819055505050565b6117fc6118a7565b73ffffffffffffffffffffffffffffffffffffffff1661181a610ff9565b73ffffffffffffffffffffffffffffffffffffffff1614611870576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611867906128de565b60405180910390fd5b80600a54101561187f57600080fd5b61188b33600a54611d8a565b80600a600082825461189d9190612a6a565b9250508190555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561191f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191690612dd6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561198f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198690612e68565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611a6d91906122f0565b60405180910390a3505050565b6000611a8684846114f5565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611b005781811015611af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae990612ed4565b60405180910390fd5b611aff84848484036118af565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6d90612f66565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611be6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdd90612ff8565b60405180910390fd5b611bf18383836122cd565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6f9061308a565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d0d9190612a9e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611d7191906122f0565b60405180910390a3611d848484846122d2565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df1906130f6565b60405180910390fd5b611e06600083836122cd565b8060036000828254611e189190612a9e565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e6e9190612a9e565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611ed391906122f0565b60405180910390a3611ee7600083836122d2565b5050565b611ef3610ddf565b611f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2990613162565b60405180910390fd5b6000600660006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611f766118a7565b604051611f8391906126ff565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ffd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff4906131f4565b60405180910390fd5b612009826000836122cd565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612090576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208790613286565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282546120e89190612a6a565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161214d91906122f0565b60405180910390a3612161836000846122d2565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612232610ddf565b15612272576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226990612a4a565b60405180910390fd5b6001600660006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586122b66118a7565b6040516122c391906126ff565b60405180910390a1565b505050565b505050565b6000819050919050565b6122ea816122d7565b82525050565b600060208201905061230560008301846122e1565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561234557808201518184015260208101905061232a565b83811115612354576000848401525b50505050565b6000601f19601f8301169050919050565b60006123768261230b565b6123808185612316565b9350612390818560208601612327565b6123998161235a565b840191505092915050565b600060208201905081810360008301526123be818461236b565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006123fb826123d0565b9050919050565b61240b816123f0565b811461241657600080fd5b50565b60008135905061242881612402565b92915050565b612437816122d7565b811461244257600080fd5b50565b6000813590506124548161242e565b92915050565b60008060408385031215612471576124706123c6565b5b600061247f85828601612419565b925050602061249085828601612445565b9150509250929050565b60008115159050919050565b6124af8161249a565b82525050565b60006020820190506124ca60008301846124a6565b92915050565b6000602082840312156124e6576124e56123c6565b5b60006124f484828501612419565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f840112612522576125216124fd565b5b8235905067ffffffffffffffff81111561253f5761253e612502565b5b60208301915083602082028301111561255b5761255a612507565b5b9250929050565b60008083601f840112612578576125776124fd565b5b8235905067ffffffffffffffff81111561259557612594612502565b5b6020830191508360208202830111156125b1576125b0612507565b5b9250929050565b600080600080604085870312156125d2576125d16123c6565b5b600085013567ffffffffffffffff8111156125f0576125ef6123cb565b5b6125fc8782880161250c565b9450945050602085013567ffffffffffffffff81111561261f5761261e6123cb565b5b61262b87828801612562565b925092505092959194509250565b600080600060608486031215612652576126516123c6565b5b600061266086828701612419565b935050602061267186828701612419565b925050604061268286828701612445565b9150509250925092565b6000602082840312156126a2576126a16123c6565b5b60006126b084828501612445565b91505092915050565b600060ff82169050919050565b6126cf816126b9565b82525050565b60006020820190506126ea60008301846126c6565b92915050565b6126f9816123f0565b82525050565b600060208201905061271460008301846126f0565b92915050565b60008083601f8401126127305761272f6124fd565b5b8235905067ffffffffffffffff81111561274d5761274c612502565b5b60208301915083602082028301111561276957612768612507565b5b9250929050565b6000806000806040858703121561278a576127896123c6565b5b600085013567ffffffffffffffff8111156127a8576127a76123cb565b5b6127b48782880161250c565b9450945050602085013567ffffffffffffffff8111156127d7576127d66123cb565b5b6127e38782880161271a565b925092505092959194509250565b60008060408385031215612808576128076123c6565b5b600061281685828601612419565b925050602061282785828601612419565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061287857607f821691505b6020821081141561288c5761288b612831565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006128c8602083612316565b91506128d382612892565b602082019050919050565b600060208201905081810360008301526128f7816128bb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6129368161249a565b811461294157600080fd5b50565b6000813590506129538161292d565b92915050565b60006020828403121561296f5761296e6123c6565b5b600061297d84828501612944565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006129c0826122d7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156129f3576129f2612986565b5b600182019050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000612a34601083612316565b9150612a3f826129fe565b602082019050919050565b60006020820190508181036000830152612a6381612a27565b9050919050565b6000612a75826122d7565b9150612a80836122d7565b925082821015612a9357612a92612986565b5b828203905092915050565b6000612aa9826122d7565b9150612ab4836122d7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ae957612ae8612986565b5b828201905092915050565b6000612aff826122d7565b9150612b0a836122d7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612b4357612b42612986565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612b88826122d7565b9150612b93836122d7565b925082612ba357612ba2612b4e565b5b828204905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612c0a602583612316565b9150612c1582612bae565b604082019050919050565b60006020820190508181036000830152612c3981612bfd565b9050919050565b7f54686520746f6b656e20636f6e7472616374206973206e6f7420617574686f7260008201527f6973656400000000000000000000000000000000000000000000000000000000602082015250565b6000612c9c602483612316565b9150612ca782612c40565b604082019050919050565b60006020820190508181036000830152612ccb81612c8f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612d2e602683612316565b9150612d3982612cd2565b604082019050919050565b60006020820190508181036000830152612d5d81612d21565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612dc0602483612316565b9150612dcb82612d64565b604082019050919050565b60006020820190508181036000830152612def81612db3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612e52602283612316565b9150612e5d82612df6565b604082019050919050565b60006020820190508181036000830152612e8181612e45565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612ebe601d83612316565b9150612ec982612e88565b602082019050919050565b60006020820190508181036000830152612eed81612eb1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612f50602583612316565b9150612f5b82612ef4565b604082019050919050565b60006020820190508181036000830152612f7f81612f43565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612fe2602383612316565b9150612fed82612f86565b604082019050919050565b6000602082019050818103600083015261301181612fd5565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613074602683612316565b915061307f82613018565b604082019050919050565b600060208201905081810360008301526130a381613067565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006130e0601f83612316565b91506130eb826130aa565b602082019050919050565b6000602082019050818103600083015261310f816130d3565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b600061314c601483612316565b915061315782613116565b602082019050919050565b6000602082019050818103600083015261317b8161313f565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006131de602183612316565b91506131e982613182565b604082019050919050565b6000602082019050818103600083015261320d816131d1565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000613270602283612316565b915061327b82613214565b604082019050919050565b6000602082019050818103600083015261329f81613263565b905091905056fea264697066735822122082d1980d4f6e3297c48bd46b6224584f4b0f4c52965db12a02e0b99f10cfeb4264736f6c634300080a0033

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.