Token Islander

NFT  

Overview ERC20

Price
$0.00 @ 0.000000 AVAX
Fully Diluted Market Cap
Total Supply:
15,000,000,000 ISA

Holders:
31,989 addresses

Transfers:
-

Loading
[ Download CSV Export  ] 
Loading
[ Download CSV Export  ] 
Loading

OVERVIEW

Islander is an online learn-to-earn and decentralized platform powered by NFTs to manage and market crypto projects in a unique way.


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

Contract Source Code Verified (Exact Match)

Contract Name:
ISA

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at snowtrace.io on 2022-01-07
*/

// Sources flattened with hardhat v2.6.1 https://hardhat.org

// File @openzeppelin/contracts/token/ERC20/[email protected]

// 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 in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]


pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/utils/[email protected]


pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/token/ERC20/[email protected]


pragma solidity ^0.8.0;



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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

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

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `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");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]


pragma solidity ^0.8.0;


/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        unchecked {
            _approve(account, _msgSender(), currentAllowance - amount);
        }
        _burn(account, amount);
    }
}


// File @openzeppelin/contracts/access/[email protected]


pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(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");
        _setOwner(newOwner);
    }

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


// File contracts/ISA.sol

pragma solidity ^0.8.0;



contract ISA is ERC20, ERC20Burnable, Ownable {
    string private TOKEN_NAME = "Islander";
    string private TOKEN_SYMBOL = "ISA";

    uint256 private constant TOTAL_SUPPLY = 15 * 10**9 * 10**18;

    constructor() ERC20(TOKEN_NAME, TOKEN_SYMBOL) {
        _mint(msg.sender, TOTAL_SUPPLY);
    }
}

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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","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":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600881526020017f49736c616e64657200000000000000000000000000000000000000000000000081525060069080519060200190620000519291906200049d565b506040518060400160405280600381526020017f4953410000000000000000000000000000000000000000000000000000000000815250600790805190602001906200009f9291906200049d565b50348015620000ad57600080fd5b5060068054620000bd9062000657565b80601f0160208091040260200160405190810160405280929190818152602001828054620000eb9062000657565b80156200013c5780601f1062000110576101008083540402835291602001916200013c565b820191906000526020600020905b8154815290600101906020018083116200011e57829003601f168201915b505050505060078054620001509062000657565b80601f01602080910402602001604051908101604052809291908181526020018280546200017e9062000657565b8015620001cf5780601f10620001a357610100808354040283529160200191620001cf565b820191906000526020600020905b815481529060010190602001808311620001b157829003601f168201915b50505050508160039080519060200190620001ec9291906200049d565b508060049080519060200190620002059291906200049d565b505050620002286200021c6200024c60201b60201c565b6200025460201b60201c565b62000246336b3077b58d5d378391980000006200031a60201b60201c565b620006eb565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200038d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200038490620005a0565b60405180910390fd5b620003a1600083836200049360201b60201c565b8060026000828254620003b59190620005f0565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200040c9190620005f0565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004739190620005c2565b60405180910390a36200048f600083836200049860201b60201c565b5050565b505050565b505050565b828054620004ab9062000657565b90600052602060002090601f016020900481019282620004cf57600085556200051b565b82601f10620004ea57805160ff19168380011785556200051b565b828001600101855582156200051b579182015b828111156200051a578251825591602001919060010190620004fd565b5b5090506200052a91906200052e565b5090565b5b80821115620005495760008160009055506001016200052f565b5090565b60006200055c601f83620005df565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6200059a816200064d565b82525050565b60006020820190508181036000830152620005bb816200054d565b9050919050565b6000602082019050620005d960008301846200058f565b92915050565b600082825260208201905092915050565b6000620005fd826200064d565b91506200060a836200064d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200064257620006416200068d565b5b828201905092915050565b6000819050919050565b600060028204905060018216806200067057607f821691505b60208210811415620006875762000686620006bc565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b611be980620006fb6000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d71461029d578063a9059cbb146102cd578063dd62ed3e146102fd578063f2fde38b1461032d57610100565b8063715018a61461023b57806379cc6790146102455780638da5cb5b1461026157806395d89b411461027f57610100565b8063313ce567116100d3578063313ce567146101a157806339509351146101bf57806342966c68146101ef57806370a082311461020b57610100565b806306fdde0314610105578063095ea7b31461012357806318160ddd1461015357806323b872dd14610171575b600080fd5b61010d610349565b60405161011a91906117de565b60405180910390f35b61013d6004803603810190610138919061122c565b6103db565b60405161014a91906117c3565b60405180910390f35b61015b6103f9565b6040516101689190611980565b60405180910390f35b61018b600480360381019061018691906111dd565b610403565b60405161019891906117c3565b60405180910390f35b6101a96104fb565b6040516101b6919061199b565b60405180910390f35b6101d960048036038101906101d4919061122c565b610504565b6040516101e691906117c3565b60405180910390f35b61020960048036038101906102049190611268565b6105b0565b005b61022560048036038101906102209190611178565b6105c4565b6040516102329190611980565b60405180910390f35b61024361060c565b005b61025f600480360381019061025a919061122c565b610694565b005b61026961070f565b60405161027691906117a8565b60405180910390f35b610287610739565b60405161029491906117de565b60405180910390f35b6102b760048036038101906102b2919061122c565b6107cb565b6040516102c491906117c3565b60405180910390f35b6102e760048036038101906102e2919061122c565b6108b6565b6040516102f491906117c3565b60405180910390f35b610317600480360381019061031291906111a1565b6108d4565b6040516103249190611980565b60405180910390f35b61034760048036038101906103429190611178565b61095b565b005b60606003805461035890611ae4565b80601f016020809104026020016040519081016040528092919081815260200182805461038490611ae4565b80156103d15780601f106103a6576101008083540402835291602001916103d1565b820191906000526020600020905b8154815290600101906020018083116103b457829003601f168201915b5050505050905090565b60006103ef6103e8610a53565b8484610a5b565b6001905092915050565b6000600254905090565b6000610410848484610c26565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061045b610a53565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156104db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104d2906118a0565b60405180910390fd5b6104ef856104e7610a53565b858403610a5b565b60019150509392505050565b60006012905090565b60006105a6610511610a53565b84846001600061051f610a53565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105a191906119d2565b610a5b565b6001905092915050565b6105c16105bb610a53565b82610ea7565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610614610a53565b73ffffffffffffffffffffffffffffffffffffffff1661063261070f565b73ffffffffffffffffffffffffffffffffffffffff1614610688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067f906118c0565b60405180910390fd5b610692600061107e565b565b60006106a7836106a2610a53565b6108d4565b9050818110156106ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e3906118e0565b60405180910390fd5b610700836106f8610a53565b848403610a5b565b61070a8383610ea7565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461074890611ae4565b80601f016020809104026020016040519081016040528092919081815260200182805461077490611ae4565b80156107c15780601f10610796576101008083540402835291602001916107c1565b820191906000526020600020905b8154815290600101906020018083116107a457829003601f168201915b5050505050905090565b600080600160006107da610a53565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088e90611960565b60405180910390fd5b6108ab6108a2610a53565b85858403610a5b565b600191505092915050565b60006108ca6108c3610a53565b8484610c26565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610963610a53565b73ffffffffffffffffffffffffffffffffffffffff1661098161070f565b73ffffffffffffffffffffffffffffffffffffffff16146109d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ce906118c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3e90611840565b60405180910390fd5b610a508161107e565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac290611940565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3290611860565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c199190611980565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8d90611920565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfd90611800565b60405180910390fd5b610d11838383611144565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8e90611880565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e2a91906119d2565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e8e9190611980565b60405180910390a3610ea1848484611149565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0e90611900565b60405180910390fd5b610f2382600083611144565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa090611820565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546110009190611a28565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110659190611980565b60405180910390a361107983600084611149565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b60008135905061115d81611b85565b92915050565b60008135905061117281611b9c565b92915050565b60006020828403121561118a57600080fd5b60006111988482850161114e565b91505092915050565b600080604083850312156111b457600080fd5b60006111c28582860161114e565b92505060206111d38582860161114e565b9150509250929050565b6000806000606084860312156111f257600080fd5b60006112008682870161114e565b93505060206112118682870161114e565b925050604061122286828701611163565b9150509250925092565b6000806040838503121561123f57600080fd5b600061124d8582860161114e565b925050602061125e85828601611163565b9150509250929050565b60006020828403121561127a57600080fd5b600061128884828501611163565b91505092915050565b61129a81611a5c565b82525050565b6112a981611a6e565b82525050565b60006112ba826119b6565b6112c481856119c1565b93506112d4818560208601611ab1565b6112dd81611b74565b840191505092915050565b60006112f56023836119c1565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061135b6022836119c1565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006113c16026836119c1565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114276022836119c1565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061148d6026836119c1565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114f36028836119c1565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b60006115596020836119c1565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006115996024836119c1565b91507f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008301527f616e6365000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006115ff6021836119c1565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006116656025836119c1565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006116cb6024836119c1565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006117316025836119c1565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61179381611a9a565b82525050565b6117a281611aa4565b82525050565b60006020820190506117bd6000830184611291565b92915050565b60006020820190506117d860008301846112a0565b92915050565b600060208201905081810360008301526117f881846112af565b905092915050565b60006020820190508181036000830152611819816112e8565b9050919050565b600060208201905081810360008301526118398161134e565b9050919050565b60006020820190508181036000830152611859816113b4565b9050919050565b600060208201905081810360008301526118798161141a565b9050919050565b6000602082019050818103600083015261189981611480565b9050919050565b600060208201905081810360008301526118b9816114e6565b9050919050565b600060208201905081810360008301526118d98161154c565b9050919050565b600060208201905081810360008301526118f98161158c565b9050919050565b60006020820190508181036000830152611919816115f2565b9050919050565b6000602082019050818103600083015261193981611658565b9050919050565b60006020820190508181036000830152611959816116be565b9050919050565b6000602082019050818103600083015261197981611724565b9050919050565b6000602082019050611995600083018461178a565b92915050565b60006020820190506119b06000830184611799565b92915050565b600081519050919050565b600082825260208201905092915050565b60006119dd82611a9a565b91506119e883611a9a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611a1d57611a1c611b16565b5b828201905092915050565b6000611a3382611a9a565b9150611a3e83611a9a565b925082821015611a5157611a50611b16565b5b828203905092915050565b6000611a6782611a7a565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611acf578082015181840152602081019050611ab4565b83811115611ade576000848401525b50505050565b60006002820490506001821680611afc57607f821691505b60208210811415611b1057611b0f611b45565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611b8e81611a5c565b8114611b9957600080fd5b50565b611ba581611a9a565b8114611bb057600080fd5b5056fea2646970667358221220c6641e7bdb15f2f89ca6f31dab7818ad0c5a21e8a33d09ae254f794410ff0a3464736f6c63430008000033

Deployed ByteCode Sourcemap

20106:309:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6521:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8688:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7641:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9339:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7483:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10240:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16977:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7812:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19415:94;;;:::i;:::-;;17387:368;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18764:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6740:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10958:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8152:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8390:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19664:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6521:100;6575:13;6608:5;6601:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6521:100;:::o;8688:169::-;8771:4;8788:39;8797:12;:10;:12::i;:::-;8811:7;8820:6;8788:8;:39::i;:::-;8845:4;8838:11;;8688:169;;;;:::o;7641:108::-;7702:7;7729:12;;7722:19;;7641:108;:::o;9339:492::-;9479:4;9496:36;9506:6;9514:9;9525:6;9496:9;:36::i;:::-;9545:24;9572:11;:19;9584:6;9572:19;;;;;;;;;;;;;;;:33;9592:12;:10;:12::i;:::-;9572:33;;;;;;;;;;;;;;;;9545:60;;9644:6;9624:16;:26;;9616:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;9731:57;9740:6;9748:12;:10;:12::i;:::-;9781:6;9762:16;:25;9731:8;:57::i;:::-;9819:4;9812:11;;;9339:492;;;;;:::o;7483:93::-;7541:5;7566:2;7559:9;;7483:93;:::o;10240:215::-;10328:4;10345:80;10354:12;:10;:12::i;:::-;10368:7;10414:10;10377:11;:25;10389:12;:10;:12::i;:::-;10377:25;;;;;;;;;;;;;;;:34;10403:7;10377:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;10345:8;:80::i;:::-;10443:4;10436:11;;10240:215;;;;:::o;16977:91::-;17033:27;17039:12;:10;:12::i;:::-;17053:6;17033:5;:27::i;:::-;16977:91;:::o;7812:127::-;7886:7;7913:9;:18;7923:7;7913:18;;;;;;;;;;;;;;;;7906:25;;7812:127;;;:::o;19415:94::-;18995:12;:10;:12::i;:::-;18984:23;;:7;:5;:7::i;:::-;:23;;;18976:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19480:21:::1;19498:1;19480:9;:21::i;:::-;19415:94::o:0;17387:368::-;17464:24;17491:32;17501:7;17510:12;:10;:12::i;:::-;17491:9;:32::i;:::-;17464:59;;17562:6;17542:16;:26;;17534:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;17645:58;17654:7;17663:12;:10;:12::i;:::-;17696:6;17677:16;:25;17645:8;:58::i;:::-;17725:22;17731:7;17740:6;17725:5;:22::i;:::-;17387:368;;;:::o;18764:87::-;18810:7;18837:6;;;;;;;;;;;18830:13;;18764:87;:::o;6740:104::-;6796:13;6829:7;6822:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6740:104;:::o;10958:413::-;11051:4;11068:24;11095:11;:25;11107:12;:10;:12::i;:::-;11095:25;;;;;;;;;;;;;;;:34;11121:7;11095:34;;;;;;;;;;;;;;;;11068:61;;11168:15;11148:16;:35;;11140:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11261:67;11270:12;:10;:12::i;:::-;11284:7;11312:15;11293:16;:34;11261:8;:67::i;:::-;11359:4;11352:11;;;10958:413;;;;:::o;8152:175::-;8238:4;8255:42;8265:12;:10;:12::i;:::-;8279:9;8290:6;8255:9;:42::i;:::-;8315:4;8308:11;;8152:175;;;;:::o;8390:151::-;8479:7;8506:11;:18;8518:5;8506:18;;;;;;;;;;;;;;;:27;8525:7;8506:27;;;;;;;;;;;;;;;;8499:34;;8390:151;;;;:::o;19664:192::-;18995:12;:10;:12::i;:::-;18984:23;;:7;:5;:7::i;:::-;:23;;;18976:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19773:1:::1;19753:22;;:8;:22;;;;19745:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;19829:19;19839:8;19829:9;:19::i;:::-;19664:192:::0;:::o;4230:98::-;4283:7;4310:10;4303:17;;4230:98;:::o;14642:380::-;14795:1;14778:19;;:5;:19;;;;14770:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14876:1;14857:21;;:7;:21;;;;14849:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14960:6;14930:11;:18;14942:5;14930:18;;;;;;;;;;;;;;;:27;14949:7;14930:27;;;;;;;;;;;;;;;:36;;;;14998:7;14982:32;;14991:5;14982:32;;;15007:6;14982:32;;;;;;:::i;:::-;;;;;;;;14642:380;;;:::o;11861:733::-;12019:1;12001:20;;:6;:20;;;;11993:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12103:1;12082:23;;:9;:23;;;;12074:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12158:47;12179:6;12187:9;12198:6;12158:20;:47::i;:::-;12218:21;12242:9;:17;12252:6;12242:17;;;;;;;;;;;;;;;;12218:41;;12295:6;12278:13;:23;;12270:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;12416:6;12400:13;:22;12380:9;:17;12390:6;12380:17;;;;;;;;;;;;;;;:42;;;;12468:6;12444:9;:20;12454:9;12444:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;12509:9;12492:35;;12501:6;12492:35;;;12520:6;12492:35;;;;;;:::i;:::-;;;;;;;;12540:46;12560:6;12568:9;12579:6;12540:19;:46::i;:::-;11861:733;;;;:::o;13613:591::-;13716:1;13697:21;;:7;:21;;;;13689:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;13769:49;13790:7;13807:1;13811:6;13769:20;:49::i;:::-;13831:22;13856:9;:18;13866:7;13856:18;;;;;;;;;;;;;;;;13831:43;;13911:6;13893:14;:24;;13885:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14030:6;14013:14;:23;13992:9;:18;14002:7;13992:18;;;;;;;;;;;;;;;:44;;;;14074:6;14058:12;;:22;;;;;;;:::i;:::-;;;;;;;;14124:1;14098:37;;14107:7;14098:37;;;14128:6;14098:37;;;;;;:::i;:::-;;;;;;;;14148:48;14168:7;14185:1;14189:6;14148:19;:48::i;:::-;13613:591;;;:::o;19864:173::-;19920:16;19939:6;;;;;;;;;;;19920:25;;19965:8;19956:6;;:17;;;;;;;;;;;;;;;;;;20020:8;19989:40;;20010:8;19989:40;;;;;;;;;;;;19864:173;;:::o;15622:125::-;;;;:::o;16351:124::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:262::-;;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2282:53;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2400:50;;:::o;2456:364::-;;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;;;;;:::o;2826:367::-;;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3086:34;3082:1;3077:3;3073:11;3066:55;3152:5;3147:2;3142:3;3138:12;3131:27;3184:2;3179:3;3175:12;3168:19;;2972:221;;;:::o;3199:366::-;;3362:67;3426:2;3421:3;3362:67;:::i;:::-;3355:74;;3459:34;3455:1;3450:3;3446:11;3439:55;3525:4;3520:2;3515:3;3511:12;3504:26;3556:2;3551:3;3547:12;3540:19;;3345:220;;;:::o;3571:370::-;;3734:67;3798:2;3793:3;3734:67;:::i;:::-;3727:74;;3831:34;3827:1;3822:3;3818:11;3811:55;3897:8;3892:2;3887:3;3883:12;3876:30;3932:2;3927:3;3923:12;3916:19;;3717:224;;;:::o;3947:366::-;;4110:67;4174:2;4169:3;4110:67;:::i;:::-;4103:74;;4207:34;4203:1;4198:3;4194:11;4187:55;4273:4;4268:2;4263:3;4259:12;4252:26;4304:2;4299:3;4295:12;4288:19;;4093:220;;;:::o;4319:370::-;;4482:67;4546:2;4541:3;4482:67;:::i;:::-;4475:74;;4579:34;4575:1;4570:3;4566:11;4559:55;4645:8;4640:2;4635:3;4631:12;4624:30;4680:2;4675:3;4671:12;4664:19;;4465:224;;;:::o;4695:372::-;;4858:67;4922:2;4917:3;4858:67;:::i;:::-;4851:74;;4955:34;4951:1;4946:3;4942:11;4935:55;5021:10;5016:2;5011:3;5007:12;5000:32;5058:2;5053:3;5049:12;5042:19;;4841:226;;;:::o;5073:330::-;;5236:67;5300:2;5295:3;5236:67;:::i;:::-;5229:74;;5333:34;5329:1;5324:3;5320:11;5313:55;5394:2;5389:3;5385:12;5378:19;;5219:184;;;:::o;5409:368::-;;5572:67;5636:2;5631:3;5572:67;:::i;:::-;5565:74;;5669:34;5665:1;5660:3;5656:11;5649:55;5735:6;5730:2;5725:3;5721:12;5714:28;5768:2;5763:3;5759:12;5752:19;;5555:222;;;:::o;5783:365::-;;5946:67;6010:2;6005:3;5946:67;:::i;:::-;5939:74;;6043:34;6039:1;6034:3;6030:11;6023:55;6109:3;6104:2;6099:3;6095:12;6088:25;6139:2;6134:3;6130:12;6123:19;;5929:219;;;:::o;6154:369::-;;6317:67;6381:2;6376:3;6317:67;:::i;:::-;6310:74;;6414:34;6410:1;6405:3;6401:11;6394:55;6480:7;6475:2;6470:3;6466:12;6459:29;6514:2;6509:3;6505:12;6498:19;;6300:223;;;:::o;6529:368::-;;6692:67;6756:2;6751:3;6692:67;:::i;:::-;6685:74;;6789:34;6785:1;6780:3;6776:11;6769:55;6855:6;6850:2;6845:3;6841:12;6834:28;6888:2;6883:3;6879:12;6872:19;;6675:222;;;:::o;6903:369::-;;7066:67;7130:2;7125:3;7066:67;:::i;:::-;7059:74;;7163:34;7159:1;7154:3;7150:11;7143:55;7229:7;7224:2;7219:3;7215:12;7208:29;7263:2;7258:3;7254:12;7247:19;;7049:223;;;:::o;7278:118::-;7365:24;7383:5;7365:24;:::i;:::-;7360:3;7353:37;7343:53;;:::o;7402:112::-;7485:22;7501:5;7485:22;:::i;:::-;7480:3;7473:35;7463:51;;:::o;7520:222::-;;7651:2;7640:9;7636:18;7628:26;;7664:71;7732:1;7721:9;7717:17;7708:6;7664:71;:::i;:::-;7618:124;;;;:::o;7748:210::-;;7873:2;7862:9;7858:18;7850:26;;7886:65;7948:1;7937:9;7933:17;7924:6;7886:65;:::i;:::-;7840:118;;;;:::o;7964:313::-;;8115:2;8104:9;8100:18;8092:26;;8164:9;8158:4;8154:20;8150:1;8139:9;8135:17;8128:47;8192:78;8265:4;8256:6;8192:78;:::i;:::-;8184:86;;8082:195;;;;:::o;8283:419::-;;8487:2;8476:9;8472:18;8464:26;;8536:9;8530:4;8526:20;8522:1;8511:9;8507:17;8500:47;8564:131;8690:4;8564:131;:::i;:::-;8556:139;;8454:248;;;:::o;8708:419::-;;8912:2;8901:9;8897:18;8889:26;;8961:9;8955:4;8951:20;8947:1;8936:9;8932:17;8925:47;8989:131;9115:4;8989:131;:::i;:::-;8981:139;;8879:248;;;:::o;9133:419::-;;9337:2;9326:9;9322:18;9314:26;;9386:9;9380:4;9376:20;9372:1;9361:9;9357:17;9350:47;9414:131;9540:4;9414:131;:::i;:::-;9406:139;;9304:248;;;:::o;9558:419::-;;9762:2;9751:9;9747:18;9739:26;;9811:9;9805:4;9801:20;9797:1;9786:9;9782:17;9775:47;9839:131;9965:4;9839:131;:::i;:::-;9831:139;;9729:248;;;:::o;9983:419::-;;10187:2;10176:9;10172:18;10164:26;;10236:9;10230:4;10226:20;10222:1;10211:9;10207:17;10200:47;10264:131;10390:4;10264:131;:::i;:::-;10256:139;;10154:248;;;:::o;10408:419::-;;10612:2;10601:9;10597:18;10589:26;;10661:9;10655:4;10651:20;10647:1;10636:9;10632:17;10625:47;10689:131;10815:4;10689:131;:::i;:::-;10681:139;;10579:248;;;:::o;10833:419::-;;11037:2;11026:9;11022:18;11014:26;;11086:9;11080:4;11076:20;11072:1;11061:9;11057:17;11050:47;11114:131;11240:4;11114:131;:::i;:::-;11106:139;;11004:248;;;:::o;11258:419::-;;11462:2;11451:9;11447:18;11439:26;;11511:9;11505:4;11501:20;11497:1;11486:9;11482:17;11475:47;11539:131;11665:4;11539:131;:::i;:::-;11531:139;;11429:248;;;:::o;11683:419::-;;11887:2;11876:9;11872:18;11864:26;;11936:9;11930:4;11926:20;11922:1;11911:9;11907:17;11900:47;11964:131;12090:4;11964:131;:::i;:::-;11956:139;;11854:248;;;:::o;12108:419::-;;12312:2;12301:9;12297:18;12289:26;;12361:9;12355:4;12351:20;12347:1;12336:9;12332:17;12325:47;12389:131;12515:4;12389:131;:::i;:::-;12381:139;;12279:248;;;:::o;12533:419::-;;12737:2;12726:9;12722:18;12714:26;;12786:9;12780:4;12776:20;12772:1;12761:9;12757:17;12750:47;12814:131;12940:4;12814:131;:::i;:::-;12806:139;;12704:248;;;:::o;12958:419::-;;13162:2;13151:9;13147:18;13139:26;;13211:9;13205:4;13201:20;13197:1;13186:9;13182:17;13175:47;13239:131;13365:4;13239:131;:::i;:::-;13231:139;;13129:248;;;:::o;13383:222::-;;13514:2;13503:9;13499:18;13491:26;;13527:71;13595:1;13584:9;13580:17;13571:6;13527:71;:::i;:::-;13481:124;;;;:::o;13611:214::-;;13738:2;13727:9;13723:18;13715:26;;13751:67;13815:1;13804:9;13800:17;13791:6;13751:67;:::i;:::-;13705:120;;;;:::o;13831:99::-;;13917:5;13911:12;13901:22;;13890:40;;;:::o;13936:169::-;;14054:6;14049:3;14042:19;14094:4;14089:3;14085:14;14070:29;;14032:73;;;;:::o;14111:305::-;;14170:20;14188:1;14170:20;:::i;:::-;14165:25;;14204:20;14222:1;14204:20;:::i;:::-;14199:25;;14358:1;14290:66;14286:74;14283:1;14280:81;14277:2;;;14364:18;;:::i;:::-;14277:2;14408:1;14405;14401:9;14394:16;;14155:261;;;;:::o;14422:191::-;;14482:20;14500:1;14482:20;:::i;:::-;14477:25;;14516:20;14534:1;14516:20;:::i;:::-;14511:25;;14555:1;14552;14549:8;14546:2;;;14560:18;;:::i;:::-;14546:2;14605:1;14602;14598:9;14590:17;;14467:146;;;;:::o;14619:96::-;;14685:24;14703:5;14685:24;:::i;:::-;14674:35;;14664:51;;;:::o;14721:90::-;;14798:5;14791:13;14784:21;14773:32;;14763:48;;;:::o;14817:126::-;;14894:42;14887:5;14883:54;14872:65;;14862:81;;;:::o;14949:77::-;;15015:5;15004:16;;14994:32;;;:::o;15032:86::-;;15107:4;15100:5;15096:16;15085:27;;15075:43;;;:::o;15124:307::-;15192:1;15202:113;15216:6;15213:1;15210:13;15202:113;;;15301:1;15296:3;15292:11;15286:18;15282:1;15277:3;15273:11;15266:39;15238:2;15235:1;15231:10;15226:15;;15202:113;;;15333:6;15330:1;15327:13;15324:2;;;15413:1;15404:6;15399:3;15395:16;15388:27;15324:2;15173:258;;;;:::o;15437:320::-;;15518:1;15512:4;15508:12;15498:22;;15565:1;15559:4;15555:12;15586:18;15576:2;;15642:4;15634:6;15630:17;15620:27;;15576:2;15704;15696:6;15693:14;15673:18;15670:38;15667:2;;;15723:18;;:::i;:::-;15667:2;15488:269;;;;:::o;15763:180::-;15811:77;15808:1;15801:88;15908:4;15905:1;15898:15;15932:4;15929:1;15922:15;15949:180;15997:77;15994:1;15987:88;16094:4;16091:1;16084:15;16118:4;16115:1;16108:15;16135:102;;16227:2;16223:7;16218:2;16211:5;16207:14;16203:28;16193:38;;16183:54;;;:::o;16243:122::-;16316:24;16334:5;16316:24;:::i;:::-;16309:5;16306:35;16296:2;;16355:1;16352;16345:12;16296:2;16286:79;:::o;16371:122::-;16444:24;16462:5;16444:24;:::i;:::-;16437:5;16434:35;16424:2;;16483:1;16480;16473:12;16424:2;16414:79;:::o

Swarm Source

ipfs://c6641e7bdb15f2f89ca6f31dab7818ad0c5a21e8a33d09ae254f794410ff0a34
Loading