ETH Price: $3,175.63 (+1.31%)
Gas: 11 Gwei

Token

ROME Coin (ROME)
 

Overview

Max Total Supply

420,690,000,000,000 ROME

Holders

109

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
532,947,573,332.901927576263347819 ROME

Value
$0.00
0x7a249bd12e68122b8aa0a083b03daa67fc4897e7
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:
ROMEToken

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-09-22
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
 
// https://romanempirecoin.xyz/
// https://twitter.com/RomeEmpireERC
// https://t.me/Romanempireportal
/**
 * @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);
 
    /**
     * @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);
}
 
// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol
 
 
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
 
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/Context.sol
 
 
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
 
pragma solidity ^0.8.0;
 
/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
 
    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
 
// File: @openzeppelin/contracts/token/ERC20/ERC20.sol
 
 
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)
 
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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }
 
    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }
 
    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }
 
    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }
 
    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }
 
    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }
 
    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }
 
    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, 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");
 
        _beforeTokenTransfer(from, to, amount);
 
        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;
        }
 
        emit Transfer(from, to, amount);
 
        _afterTokenTransfer(from, to, amount);
    }
 
    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");
 
        _beforeTokenTransfer(address(0), account, amount);
 
        _totalSupply += amount;
        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 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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 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 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/ERC20Burnable.sol
 
 
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)
 
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 {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}
 
// File: @openzeppelin/contracts/access/Ownable.sol
 
 
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)
 
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() {
        _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);
    }
}
 
 
 
 
 
pragma solidity ^0.8.0;
 
contract ROMEToken is Ownable, ERC20 {
    IUniswapV2Router02 public uniswapV2Router;
 
 
    address public marketingWallet1 = 0x9e3bD1C263E9CD9b18Ab30a40895C12Dd45539Dc; //wallet
    address public marketingWallet2 = 0xFd5fbB7dbDF5f755D163b967c28f15cb2B2e72Ec; //winnerrome
 
    bool inSwapAndLiq;
    bool paused = true;
   
 
    uint256 public maxHoldingAmount =      9506900000000000000000000000000;
    uint256 public minAmountToSwapTaxes =  420690000000000000000000000000;
 
    bool public limited = true;
    uint256 public buyTaxPercent = 3;
    uint256 public sellTaxPercent = 3;
    uint256 public launchedAt;
    bool taxesEnabled;
 
    address public uniswapV2Pair;
    mapping(address => bool) public _isExcludedFromFees;
 
    modifier lockTheSwap() {
        inSwapAndLiq = true;
        _;
        inSwapAndLiq = false;
    }
 
    constructor() ERC20("ROME Coin", "ROME") {
        _mint(msg.sender, 420690000000000000000000000000000);
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
 
        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;
 
        _isExcludedFromFees[msg.sender] = true;
        _isExcludedFromFees[marketingWallet1] = true;
        _isExcludedFromFees[uniswapV2Pair] = true;
        _isExcludedFromFees[address(this)] = true;
 
    }
 
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "ERC20: transfer must be greater than 0");
 
        if (paused) {
            require(
                from == owner() || from == address(this) || from == 0xD152f549545093347A162Dce210e7293f1452150,
                "Trading not active yet"
            );
        }
 
        if (limited && from == uniswapV2Pair) {
            require(balanceOf(to) + amount <= maxHoldingAmount, "Forbid");
        }
 
        uint256 taxAmount;
        if (taxesEnabled) {
            //Buy
            if (from == uniswapV2Pair && buyTaxPercent != 0) {
                if (!_isExcludedFromFees[to]) {
                    getTax(block.number);
                    taxAmount = (amount * buyTaxPercent) / 100;
                }
            }
            // Sell
            if (to == uniswapV2Pair && sellTaxPercent != 0) {
                if (!_isExcludedFromFees[from]) {
                    getTax(block.number);
                    taxAmount = (amount * sellTaxPercent) / 100;
                }
            }
 
            uint256 contractTokenBalance = balanceOf(address(this));
            bool overMinTokenBalance = contractTokenBalance >= minAmountToSwapTaxes;
 
            if (overMinTokenBalance && !inSwapAndLiq && from != uniswapV2Pair) {
                handleTax();
            }
        }
 
        // Fees
        if (taxAmount > 0) {
            uint256 userAmount = amount - taxAmount;
            super._transfer(from, address(this), taxAmount);
            super._transfer(from, to, userAmount);
        } else {
            super._transfer(from, to, amount);
        }
    }
 
    function handleTax() internal lockTheSwap {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
 
        _approve(
            address(this),
            address(uniswapV2Router),
            balanceOf(address(this))
        );
 
        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            balanceOf(address(this)),
            0, // accept any amount of ETH
            path,
            address(this), // initially receive the ETH to this contract
            block.timestamp
        );
 
        // Now distribute the received ETH between the marketing wallets
        uint256 contractBalance = address(this).balance;
        uint256 marketingWallet1Share = (contractBalance * 99) / 100; // 95%
        uint256 marketingWallet2Share = contractBalance - marketingWallet1Share; // 5%
 
        // Transfer to marketing wallets
        payable(marketingWallet1).transfer(marketingWallet1Share);
        payable(marketingWallet2).transfer(marketingWallet2Share);
    }
 
     function getTax(uint256 _block) internal {
        if (launchedAt  + 3 >= _block) {
            buyTaxPercent = 90;
            sellTaxPercent = 90;
        } else if (launchedAt  + 6 >= _block) {
            buyTaxPercent = 50;
            sellTaxPercent = 50;
        } else if (launchedAt  + 15 >= _block) {
            buyTaxPercent = 10;
            sellTaxPercent = 10;
            limited = false;
        } else {
            buyTaxPercent = 2;
            sellTaxPercent = 2;
        }
    }
 
    receive() external payable {}
 
    function changeMarketingWallet1(
        address _newMarketingWallet
    ) external onlyOwner {
        marketingWallet1 = _newMarketingWallet;
    }
    function changeMarketingWallet2(
        address _newMarketingWallet
    ) external onlyOwner {
        marketingWallet2 = _newMarketingWallet;
    }
 
    function changeTaxPercent(
        uint256 _newBuyTaxPercent,
        uint256 _newSellTaxPercent
    ) external onlyOwner {
        buyTaxPercent = _newBuyTaxPercent;
        sellTaxPercent = _newSellTaxPercent;
    }
 
    function excludeFromFees(
        address _address,
        bool _isExcluded
    ) external onlyOwner {
        _isExcludedFromFees[_address] = _isExcluded;
    }
 
    function changeMinAmountToSwapTaxes(
        uint256 newMinAmount
    ) external onlyOwner {
        require(newMinAmount > 0, "Cannot set to zero");
        minAmountToSwapTaxes = newMinAmount;
    }
 
    function burn(uint256 value) external {
        _burn(msg.sender, value);
    }
 
    function enableTaxes(bool _enable) external onlyOwner {
        taxesEnabled = _enable;
    }
 
    function activate() external onlyOwner {
        paused = !paused;
        launchedAt = block.number;
        taxesEnabled = true;
    }
 
    function toggleLimited() external onlyOwner {
        limited = !limited;
    }
 
    function setRule(
        bool _limited,
        uint256 _maxHoldingAmount
    ) external onlyOwner {
        limited = _limited;
        maxHoldingAmount = _maxHoldingAmount;
    }
 
    function airdrop(
        address[] memory recipients,
        uint[] memory values
    ) external onlyOwner {
        uint256 total = 0;
        for (uint256 i; i < recipients.length; i++) total += values[i];
        _transfer(msg.sender, address(this), total);
        for (uint i; i < recipients.length; i++) {
            _transfer(address(this), recipients[i], values[i]);
        }
    }
}
 
// Interfaces
interface IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint
    );
 
    function feeTo() external view returns (address);
 
    function feeToSetter() external view returns (address);
 
    function getPair(
        address tokenA,
        address tokenB
    ) external view returns (address pair);
 
    function allPairs(uint) external view returns (address pair);
 
    function allPairsLength() external view returns (uint);
 
    function createPair(
        address tokenA,
        address tokenB
    ) external returns (address pair);
 
    function setFeeTo(address) external;
 
    function setFeeToSetter(address) external;
}
 
interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);
 
    function name() external pure returns (string memory);
 
    function symbol() external pure returns (string memory);
 
    function decimals() external pure returns (uint8);
 
    function totalSupply() external view returns (uint);
 
    function balanceOf(address owner) external view returns (uint);
 
    function allowance(
        address owner,
        address spender
    ) external view returns (uint);
 
    function approve(address spender, uint value) external returns (bool);
 
    function transfer(address to, uint value) external returns (bool);
 
    function transferFrom(
        address from,
        address to,
        uint value
    ) external returns (bool);
 
    function DOMAIN_SEPARATOR() external view returns (bytes32);
 
    function PERMIT_TYPEHASH() external pure returns (bytes32);
 
    function nonces(address owner) external view returns (uint);
 
    function permit(
        address owner,
        address spender,
        uint value,
        uint deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;
 
    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(
        address indexed sender,
        uint amount0,
        uint amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);
 
    function MINIMUM_LIQUIDITY() external pure returns (uint);
 
    function factory() external view returns (address);
 
    function token0() external view returns (address);
 
    function token1() external view returns (address);
 
    function getReserves()
        external
        view
        returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
 
    function price0CumulativeLast() external view returns (uint);
 
    function price1CumulativeLast() external view returns (uint);
 
    function kLast() external view returns (uint);
 
    function mint(address to) external returns (uint liquidity);
 
    function burn(address to) external returns (uint amount0, uint amount1);
 
    function swap(
        uint amount0Out,
        uint amount1Out,
        address to,
        bytes calldata data
    ) external;
 
    function skim(address to) external;
 
    function sync() external;
 
    function initialize(address, address) external;
}
 
interface IUniswapV2Router01 {
    function factory() external pure returns (address);
 
    function WETH() external pure returns (address);
 
    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
 
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    )
        external
        payable
        returns (uint amountToken, uint amountETH, uint liquidity);
 
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
 
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
 
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountA, uint amountB);
 
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountToken, uint amountETH);
 
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
 
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
 
    function swapExactETHForTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable returns (uint[] memory amounts);
 
    function swapTokensForExactETH(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
 
    function swapExactTokensForETH(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
 
    function swapETHForExactTokens(
        uint amountOut,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable returns (uint[] memory amounts);
 
    function quote(
        uint amountA,
        uint reserveA,
        uint reserveB
    ) external pure returns (uint amountB);
 
    function getAmountOut(
        uint amountIn,
        uint reserveIn,
        uint reserveOut
    ) external pure returns (uint amountOut);
 
    function getAmountIn(
        uint amountOut,
        uint reserveIn,
        uint reserveOut
    ) external pure returns (uint amountIn);
 
    function getAmountsOut(
        uint amountIn,
        address[] calldata path
    ) external view returns (uint[] memory amounts);
 
    function getAmountsIn(
        uint amountOut,
        address[] calldata path
    ) external view returns (uint[] memory amounts);
}
 
interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
 
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint amountETH);
 
    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
 
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
 
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

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":"","type":"address"}],"name":"_isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"airdrop","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":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyTaxPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newMarketingWallet","type":"address"}],"name":"changeMarketingWallet1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newMarketingWallet","type":"address"}],"name":"changeMarketingWallet2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMinAmount","type":"uint256"}],"name":"changeMinAmountToSwapTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newBuyTaxPercent","type":"uint256"},{"internalType":"uint256","name":"_newSellTaxPercent","type":"uint256"}],"name":"changeTaxPercent","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":"bool","name":"_enable","type":"bool"}],"name":"enableTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isExcluded","type":"bool"}],"name":"excludeFromFees","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":[],"name":"launchedAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minAmountToSwapTaxes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"sellTaxPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"}],"name":"setRule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleLimited","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":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

6080604052739e3bd1c263e9cd9b18ab30a40895c12dd45539dc600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073fd5fbb7dbdf5f755d163b967c28f15cb2b2e72ec600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600860156101000a81548160ff0219169083151502179055506c77fe735d901f424908d40000006009556c054f529ca52576bc6892000000600a556001600b60006101000a81548160ff0219169083151502179055506003600c556003600d553480156200011d57600080fd5b506040518060400160405280600981526020017f524f4d4520436f696e00000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f524f4d4500000000000000000000000000000000000000000000000000000000815250620001aa6200019e620005a060201b60201c565b620005a860201b60201c565b8160049081620001bb919062000a5e565b508060059081620001cd919062000a5e565b505050620001f0336d14bddab3e51a57cff87a500000006200066c60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000257573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200027d919062000baf565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002e5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200030b919062000baf565b6040518363ffffffff1660e01b81526004016200032a92919062000bf2565b6020604051808303816000875af11580156200034a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000370919062000baf565b905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600f60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160106000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160106000600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601060003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505062000d3a565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620006de576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006d59062000c80565b60405180910390fd5b620006f260008383620007da60201b60201c565b806003600082825462000706919062000cd1565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620007ba919062000d1d565b60405180910390a3620007d660008383620007df60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200086657607f821691505b6020821081036200087c576200087b6200081e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620008e67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620008a7565b620008f28683620008a7565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200093f6200093962000933846200090a565b62000914565b6200090a565b9050919050565b6000819050919050565b6200095b836200091e565b620009736200096a8262000946565b848454620008b4565b825550505050565b600090565b6200098a6200097b565b6200099781848462000950565b505050565b5b81811015620009bf57620009b360008262000980565b6001810190506200099d565b5050565b601f82111562000a0e57620009d88162000882565b620009e38462000897565b81016020851015620009f3578190505b62000a0b62000a028562000897565b8301826200099c565b50505b505050565b600082821c905092915050565b600062000a336000198460080262000a13565b1980831691505092915050565b600062000a4e838362000a20565b9150826002028217905092915050565b62000a6982620007e4565b67ffffffffffffffff81111562000a855762000a84620007ef565b5b62000a9182546200084d565b62000a9e828285620009c3565b600060209050601f83116001811462000ad6576000841562000ac1578287015190505b62000acd858262000a40565b86555062000b3d565b601f19841662000ae68662000882565b60005b8281101562000b105784890151825560018201915060208501945060208101905062000ae9565b8683101562000b30578489015162000b2c601f89168262000a20565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b778262000b4a565b9050919050565b62000b898162000b6a565b811462000b9557600080fd5b50565b60008151905062000ba98162000b7e565b92915050565b60006020828403121562000bc85762000bc762000b45565b5b600062000bd88482850162000b98565b91505092915050565b62000bec8162000b6a565b82525050565b600060408201905062000c09600083018562000be1565b62000c18602083018462000be1565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000c68601f8362000c1f565b915062000c758262000c30565b602082019050919050565b6000602082019050818103600083015262000c9b8162000c59565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000cde826200090a565b915062000ceb836200090a565b925082820190508082111562000d065762000d0562000ca2565b5b92915050565b62000d17816200090a565b82525050565b600060208201905062000d34600083018462000d0c565b92915050565b6135308062000d4a6000396000f3fe6080604052600436106102135760003560e01c806370a0823111610118578063a457c2d7116100a0578063c02466681161006f578063c024666814610776578063d21079e61461079f578063dd62ed3e146107c8578063e0bf7fd114610805578063f2fde38b146108425761021a565b8063a457c2d7146106a8578063a9059cbb146106e5578063b8a3483714610722578063bf56b3711461074b5761021a565b8063860a32ec116100e7578063860a32ec146105d357806389f9a1d3146105fe5780638da5cb5b1461062957806395d89b411461065457806397f92e951461067f5761021a565b806370a0823114610529578063715018a6146105665780637df405a41461057d57806382f45cff146105a85761021a565b8063302757441161019b57806342966c681161016a57806342966c681461045657806349bd5a5e1461047f57806367243482146104aa5780636e4af82c146104d35780636fb1896c146104fe5761021a565b8063302757441461039c578063313ce567146103c557806339509351146103f05780633d5369f61461042d5761021a565b80630d0020f2116101e25780630d0020f2146102c75780630f15f4c0146102f25780631694505e1461030957806318160ddd1461033457806323b872dd1461035f5761021a565b806303417ed51461021f57806306fdde031461023657806308d76dd914610261578063095ea7b31461028a5761021a565b3661021a57005b600080fd5b34801561022b57600080fd5b5061023461086b565b005b34801561024257600080fd5b5061024b61089f565b60405161025891906122b7565b60405180910390f35b34801561026d57600080fd5b506102886004803603810190610283919061234b565b610931565b005b34801561029657600080fd5b506102b160048036038101906102ac91906123ae565b61097d565b6040516102be9190612409565b60405180910390f35b3480156102d357600080fd5b506102dc6109a0565b6040516102e99190612433565b60405180910390f35b3480156102fe57600080fd5b506103076109c6565b005b34801561031557600080fd5b5061031e610a1c565b60405161032b91906124ad565b60405180910390f35b34801561034057600080fd5b50610349610a42565b60405161035691906124d7565b60405180910390f35b34801561036b57600080fd5b50610386600480360381019061038191906124f2565b610a4c565b6040516103939190612409565b60405180910390f35b3480156103a857600080fd5b506103c360048036038101906103be9190612571565b610a7b565b005b3480156103d157600080fd5b506103da610aa0565b6040516103e791906125ba565b60405180910390f35b3480156103fc57600080fd5b50610417600480360381019061041291906123ae565b610aa9565b6040516104249190612409565b60405180910390f35b34801561043957600080fd5b50610454600480360381019061044f91906125d5565b610ae0565b005b34801561046257600080fd5b5061047d600480360381019061047891906125d5565b610b35565b005b34801561048b57600080fd5b50610494610b42565b6040516104a19190612433565b60405180910390f35b3480156104b657600080fd5b506104d160048036038101906104cc919061280d565b610b68565b005b3480156104df57600080fd5b506104e8610c28565b6040516104f59190612433565b60405180910390f35b34801561050a57600080fd5b50610513610c4e565b60405161052091906124d7565b60405180910390f35b34801561053557600080fd5b50610550600480360381019061054b919061234b565b610c54565b60405161055d91906124d7565b60405180910390f35b34801561057257600080fd5b5061057b610c9d565b005b34801561058957600080fd5b50610592610cb1565b60405161059f91906124d7565b60405180910390f35b3480156105b457600080fd5b506105bd610cb7565b6040516105ca91906124d7565b60405180910390f35b3480156105df57600080fd5b506105e8610cbd565b6040516105f59190612409565b60405180910390f35b34801561060a57600080fd5b50610613610cd0565b60405161062091906124d7565b60405180910390f35b34801561063557600080fd5b5061063e610cd6565b60405161064b9190612433565b60405180910390f35b34801561066057600080fd5b50610669610cff565b60405161067691906122b7565b60405180910390f35b34801561068b57600080fd5b506106a660048036038101906106a19190612885565b610d91565b005b3480156106b457600080fd5b506106cf60048036038101906106ca91906123ae565b610dab565b6040516106dc9190612409565b60405180910390f35b3480156106f157600080fd5b5061070c600480360381019061070791906123ae565b610e22565b6040516107199190612409565b60405180910390f35b34801561072e57600080fd5b506107496004803603810190610744919061234b565b610e45565b005b34801561075757600080fd5b50610760610e91565b60405161076d91906124d7565b60405180910390f35b34801561078257600080fd5b5061079d600480360381019061079891906128c5565b610e97565b005b3480156107ab57600080fd5b506107c660048036038101906107c19190612905565b610efa565b005b3480156107d457600080fd5b506107ef60048036038101906107ea9190612945565b610f27565b6040516107fc91906124d7565b60405180910390f35b34801561081157600080fd5b5061082c6004803603810190610827919061234b565b610fae565b6040516108399190612409565b60405180910390f35b34801561084e57600080fd5b506108696004803603810190610864919061234b565b610fce565b005b610873611051565b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6060600480546108ae906129b4565b80601f01602080910402602001604051908101604052809291908181526020018280546108da906129b4565b80156109275780601f106108fc57610100808354040283529160200191610927565b820191906000526020600020905b81548152906001019060200180831161090a57829003601f168201915b5050505050905090565b610939611051565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806109886110cf565b90506109958185856110d7565b600191505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6109ce611051565b600860159054906101000a900460ff1615600860156101000a81548160ff02191690831515021790555043600e819055506001600f60006101000a81548160ff021916908315150217905550565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600354905090565b600080610a576110cf565b9050610a648582856112a0565b610a6f85858561132c565b60019150509392505050565b610a83611051565b80600f60006101000a81548160ff02191690831515021790555050565b60006012905090565b600080610ab46110cf565b9050610ad5818585610ac68589610f27565b610ad09190612a14565b6110d7565b600191505092915050565b610ae8611051565b60008111610b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2290612a94565b60405180910390fd5b80600a8190555050565b610b3f33826118d3565b50565b600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b70611051565b6000805b8351811015610bb857828181518110610b9057610b8f612ab4565b5b602002602001015182610ba39190612a14565b91508080610bb090612ae3565b915050610b74565b50610bc433308361132c565b60005b8351811015610c2257610c0f30858381518110610be757610be6612ab4565b5b6020026020010151858481518110610c0257610c01612ab4565b5b602002602001015161132c565b8080610c1a90612ae3565b915050610bc7565b50505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ca5611051565b610caf6000611aa2565b565b600c5481565b600a5481565b600b60009054906101000a900460ff1681565b60095481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610d0e906129b4565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3a906129b4565b8015610d875780601f10610d5c57610100808354040283529160200191610d87565b820191906000526020600020905b815481529060010190602001808311610d6a57829003601f168201915b5050505050905090565b610d99611051565b81600c8190555080600d819055505050565b600080610db66110cf565b90506000610dc48286610f27565b905083811015610e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0090612b9d565b60405180910390fd5b610e1682868684036110d7565b60019250505092915050565b600080610e2d6110cf565b9050610e3a81858561132c565b600191505092915050565b610e4d611051565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600e5481565b610e9f611051565b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610f02611051565b81600b60006101000a81548160ff021916908315150217905550806009819055505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60106020528060005260406000206000915054906101000a900460ff1681565b610fd6611051565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611045576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103c90612c2f565b60405180910390fd5b61104e81611aa2565b50565b6110596110cf565b73ffffffffffffffffffffffffffffffffffffffff16611077610cd6565b73ffffffffffffffffffffffffffffffffffffffff16146110cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c490612c9b565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113d90612d2d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ac90612dbf565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161129391906124d7565b60405180910390a3505050565b60006112ac8484610f27565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146113265781811015611318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130f90612e2b565b60405180910390fd5b61132584848484036110d7565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361139b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139290612ebd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361140a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140190612f4f565b60405180910390fd5b6000811161144d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144490612fe1565b60405180910390fd5b600860159054906101000a900460ff16156115585761146a610cd6565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806114ce57503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80611518575073d152f549545093347a162dce210e7293f145215073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b611557576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154e9061304d565b60405180910390fd5b5b600b60009054906101000a900460ff1680156115c15750600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561161f57600954816115d384610c54565b6115dd9190612a14565b111561161e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611615906130b9565b60405180910390fd5b5b6000600f60009054906101000a900460ff161561188c57600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614801561169657506000600c5414155b1561171357601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611712576116f543611b66565b6064600c548361170591906130d9565b61170f919061314a565b90505b5b600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614801561177357506000600d5414155b156117f057601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166117ef576117d243611b66565b6064600d54836117e291906130d9565b6117ec919061314a565b90505b5b60006117fb30610c54565b90506000600a5482101590508080156118215750600860149054906101000a900460ff16155b801561187b5750600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b1561188957611888611c15565b5b50505b60008111156118c157600081836118a3919061317b565b90506118b0853084611fa4565b6118bb858583611fa4565b506118cd565b6118cc848484611fa4565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611942576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193990613221565b60405180910390fd5b61194e8260008361221d565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156119d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cc906132b3565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a8991906124d7565b60405180910390a3611a9d83600084612222565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b806003600e54611b769190612a14565b10611b9057605a600c81905550605a600d81905550611c12565b806006600e54611ba09190612a14565b10611bba576032600c819055506032600d81905550611c11565b80600f600e54611bca9190612a14565b10611bff57600a600c81905550600a600d819055506000600b60006101000a81548160ff021916908315150217905550611c10565b6002600c819055506002600d819055505b5b5b50565b6001600860146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115611c4d57611c4c612607565b5b604051908082528060200260200182016040528015611c7b5781602001602082028036833780820191505090505b5090503081600081518110611c9357611c92612ab4565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d5e91906132e8565b81600181518110611d7257611d71612ab4565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611de130600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611ddc30610c54565b6110d7565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947611e2830610c54565b60008430426040518663ffffffff1660e01b8152600401611e4d95949392919061340e565b600060405180830381600087803b158015611e6757600080fd5b505af1158015611e7b573d6000803e3d6000fd5b50505050600047905060006064606383611e9591906130d9565b611e9f919061314a565b905060008183611eaf919061317b565b9050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015611f19573d6000803e3d6000fd5b50600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611f82573d6000803e3d6000fd5b50505050506000600860146101000a81548160ff021916908315150217905550565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200a90612ebd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612082576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207990612f4f565b60405180910390fd5b61208d83838361221d565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612114576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210b906134da565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161220491906124d7565b60405180910390a3612217848484612222565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612261578082015181840152602081019050612246565b60008484015250505050565b6000601f19601f8301169050919050565b600061228982612227565b6122938185612232565b93506122a3818560208601612243565b6122ac8161226d565b840191505092915050565b600060208201905081810360008301526122d1818461227e565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612318826122ed565b9050919050565b6123288161230d565b811461233357600080fd5b50565b6000813590506123458161231f565b92915050565b600060208284031215612361576123606122e3565b5b600061236f84828501612336565b91505092915050565b6000819050919050565b61238b81612378565b811461239657600080fd5b50565b6000813590506123a881612382565b92915050565b600080604083850312156123c5576123c46122e3565b5b60006123d385828601612336565b92505060206123e485828601612399565b9150509250929050565b60008115159050919050565b612403816123ee565b82525050565b600060208201905061241e60008301846123fa565b92915050565b61242d8161230d565b82525050565b60006020820190506124486000830184612424565b92915050565b6000819050919050565b600061247361246e612469846122ed565b61244e565b6122ed565b9050919050565b600061248582612458565b9050919050565b60006124978261247a565b9050919050565b6124a78161248c565b82525050565b60006020820190506124c2600083018461249e565b92915050565b6124d181612378565b82525050565b60006020820190506124ec60008301846124c8565b92915050565b60008060006060848603121561250b5761250a6122e3565b5b600061251986828701612336565b935050602061252a86828701612336565b925050604061253b86828701612399565b9150509250925092565b61254e816123ee565b811461255957600080fd5b50565b60008135905061256b81612545565b92915050565b600060208284031215612587576125866122e3565b5b60006125958482850161255c565b91505092915050565b600060ff82169050919050565b6125b48161259e565b82525050565b60006020820190506125cf60008301846125ab565b92915050565b6000602082840312156125eb576125ea6122e3565b5b60006125f984828501612399565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61263f8261226d565b810181811067ffffffffffffffff8211171561265e5761265d612607565b5b80604052505050565b60006126716122d9565b905061267d8282612636565b919050565b600067ffffffffffffffff82111561269d5761269c612607565b5b602082029050602081019050919050565b600080fd5b60006126c66126c184612682565b612667565b905080838252602082019050602084028301858111156126e9576126e86126ae565b5b835b8181101561271257806126fe8882612336565b8452602084019350506020810190506126eb565b5050509392505050565b600082601f83011261273157612730612602565b5b81356127418482602086016126b3565b91505092915050565b600067ffffffffffffffff82111561276557612764612607565b5b602082029050602081019050919050565b60006127896127848461274a565b612667565b905080838252602082019050602084028301858111156127ac576127ab6126ae565b5b835b818110156127d557806127c18882612399565b8452602084019350506020810190506127ae565b5050509392505050565b600082601f8301126127f4576127f3612602565b5b8135612804848260208601612776565b91505092915050565b60008060408385031215612824576128236122e3565b5b600083013567ffffffffffffffff811115612842576128416122e8565b5b61284e8582860161271c565b925050602083013567ffffffffffffffff81111561286f5761286e6122e8565b5b61287b858286016127df565b9150509250929050565b6000806040838503121561289c5761289b6122e3565b5b60006128aa85828601612399565b92505060206128bb85828601612399565b9150509250929050565b600080604083850312156128dc576128db6122e3565b5b60006128ea85828601612336565b92505060206128fb8582860161255c565b9150509250929050565b6000806040838503121561291c5761291b6122e3565b5b600061292a8582860161255c565b925050602061293b85828601612399565b9150509250929050565b6000806040838503121561295c5761295b6122e3565b5b600061296a85828601612336565b925050602061297b85828601612336565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806129cc57607f821691505b6020821081036129df576129de612985565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612a1f82612378565b9150612a2a83612378565b9250828201905080821115612a4257612a416129e5565b5b92915050565b7f43616e6e6f742073657420746f207a65726f0000000000000000000000000000600082015250565b6000612a7e601283612232565b9150612a8982612a48565b602082019050919050565b60006020820190508181036000830152612aad81612a71565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612aee82612378565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612b2057612b1f6129e5565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612b87602583612232565b9150612b9282612b2b565b604082019050919050565b60006020820190508181036000830152612bb681612b7a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612c19602683612232565b9150612c2482612bbd565b604082019050919050565b60006020820190508181036000830152612c4881612c0c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c85602083612232565b9150612c9082612c4f565b602082019050919050565b60006020820190508181036000830152612cb481612c78565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612d17602483612232565b9150612d2282612cbb565b604082019050919050565b60006020820190508181036000830152612d4681612d0a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612da9602283612232565b9150612db482612d4d565b604082019050919050565b60006020820190508181036000830152612dd881612d9c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612e15601d83612232565b9150612e2082612ddf565b602082019050919050565b60006020820190508181036000830152612e4481612e08565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612ea7602583612232565b9150612eb282612e4b565b604082019050919050565b60006020820190508181036000830152612ed681612e9a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612f39602383612232565b9150612f4482612edd565b604082019050919050565b60006020820190508181036000830152612f6881612f2c565b9050919050565b7f45524332303a207472616e73666572206d75737420626520677265617465722060008201527f7468616e20300000000000000000000000000000000000000000000000000000602082015250565b6000612fcb602683612232565b9150612fd682612f6f565b604082019050919050565b60006020820190508181036000830152612ffa81612fbe565b9050919050565b7f54726164696e67206e6f74206163746976652079657400000000000000000000600082015250565b6000613037601683612232565b915061304282613001565b602082019050919050565b600060208201905081810360008301526130668161302a565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b60006130a3600683612232565b91506130ae8261306d565b602082019050919050565b600060208201905081810360008301526130d281613096565b9050919050565b60006130e482612378565b91506130ef83612378565b92508282026130fd81612378565b91508282048414831517613114576131136129e5565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061315582612378565b915061316083612378565b9250826131705761316f61311b565b5b828204905092915050565b600061318682612378565b915061319183612378565b92508282039050818111156131a9576131a86129e5565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061320b602183612232565b9150613216826131af565b604082019050919050565b6000602082019050818103600083015261323a816131fe565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061329d602283612232565b91506132a882613241565b604082019050919050565b600060208201905081810360008301526132cc81613290565b9050919050565b6000815190506132e28161231f565b92915050565b6000602082840312156132fe576132fd6122e3565b5b600061330c848285016132d3565b91505092915050565b6000819050919050565b600061333a61333561333084613315565b61244e565b612378565b9050919050565b61334a8161331f565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6133858161230d565b82525050565b6000613397838361337c565b60208301905092915050565b6000602082019050919050565b60006133bb82613350565b6133c5818561335b565b93506133d08361336c565b8060005b838110156134015781516133e8888261338b565b97506133f3836133a3565b9250506001810190506133d4565b5085935050505092915050565b600060a08201905061342360008301886124c8565b6134306020830187613341565b818103604083015261344281866133b0565b90506134516060830185612424565b61345e60808301846124c8565b9695505050505050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006134c4602683612232565b91506134cf82613468565b604082019050919050565b600060208201905081810360008301526134f3816134b7565b905091905056fea264697066735822122009eb078c2285c24066a14bf4b8bcb7cc22cae6b5d0a1e15d40ba7729b0dfeab164736f6c63430008120033

Deployed Bytecode

0x6080604052600436106102135760003560e01c806370a0823111610118578063a457c2d7116100a0578063c02466681161006f578063c024666814610776578063d21079e61461079f578063dd62ed3e146107c8578063e0bf7fd114610805578063f2fde38b146108425761021a565b8063a457c2d7146106a8578063a9059cbb146106e5578063b8a3483714610722578063bf56b3711461074b5761021a565b8063860a32ec116100e7578063860a32ec146105d357806389f9a1d3146105fe5780638da5cb5b1461062957806395d89b411461065457806397f92e951461067f5761021a565b806370a0823114610529578063715018a6146105665780637df405a41461057d57806382f45cff146105a85761021a565b8063302757441161019b57806342966c681161016a57806342966c681461045657806349bd5a5e1461047f57806367243482146104aa5780636e4af82c146104d35780636fb1896c146104fe5761021a565b8063302757441461039c578063313ce567146103c557806339509351146103f05780633d5369f61461042d5761021a565b80630d0020f2116101e25780630d0020f2146102c75780630f15f4c0146102f25780631694505e1461030957806318160ddd1461033457806323b872dd1461035f5761021a565b806303417ed51461021f57806306fdde031461023657806308d76dd914610261578063095ea7b31461028a5761021a565b3661021a57005b600080fd5b34801561022b57600080fd5b5061023461086b565b005b34801561024257600080fd5b5061024b61089f565b60405161025891906122b7565b60405180910390f35b34801561026d57600080fd5b506102886004803603810190610283919061234b565b610931565b005b34801561029657600080fd5b506102b160048036038101906102ac91906123ae565b61097d565b6040516102be9190612409565b60405180910390f35b3480156102d357600080fd5b506102dc6109a0565b6040516102e99190612433565b60405180910390f35b3480156102fe57600080fd5b506103076109c6565b005b34801561031557600080fd5b5061031e610a1c565b60405161032b91906124ad565b60405180910390f35b34801561034057600080fd5b50610349610a42565b60405161035691906124d7565b60405180910390f35b34801561036b57600080fd5b50610386600480360381019061038191906124f2565b610a4c565b6040516103939190612409565b60405180910390f35b3480156103a857600080fd5b506103c360048036038101906103be9190612571565b610a7b565b005b3480156103d157600080fd5b506103da610aa0565b6040516103e791906125ba565b60405180910390f35b3480156103fc57600080fd5b50610417600480360381019061041291906123ae565b610aa9565b6040516104249190612409565b60405180910390f35b34801561043957600080fd5b50610454600480360381019061044f91906125d5565b610ae0565b005b34801561046257600080fd5b5061047d600480360381019061047891906125d5565b610b35565b005b34801561048b57600080fd5b50610494610b42565b6040516104a19190612433565b60405180910390f35b3480156104b657600080fd5b506104d160048036038101906104cc919061280d565b610b68565b005b3480156104df57600080fd5b506104e8610c28565b6040516104f59190612433565b60405180910390f35b34801561050a57600080fd5b50610513610c4e565b60405161052091906124d7565b60405180910390f35b34801561053557600080fd5b50610550600480360381019061054b919061234b565b610c54565b60405161055d91906124d7565b60405180910390f35b34801561057257600080fd5b5061057b610c9d565b005b34801561058957600080fd5b50610592610cb1565b60405161059f91906124d7565b60405180910390f35b3480156105b457600080fd5b506105bd610cb7565b6040516105ca91906124d7565b60405180910390f35b3480156105df57600080fd5b506105e8610cbd565b6040516105f59190612409565b60405180910390f35b34801561060a57600080fd5b50610613610cd0565b60405161062091906124d7565b60405180910390f35b34801561063557600080fd5b5061063e610cd6565b60405161064b9190612433565b60405180910390f35b34801561066057600080fd5b50610669610cff565b60405161067691906122b7565b60405180910390f35b34801561068b57600080fd5b506106a660048036038101906106a19190612885565b610d91565b005b3480156106b457600080fd5b506106cf60048036038101906106ca91906123ae565b610dab565b6040516106dc9190612409565b60405180910390f35b3480156106f157600080fd5b5061070c600480360381019061070791906123ae565b610e22565b6040516107199190612409565b60405180910390f35b34801561072e57600080fd5b506107496004803603810190610744919061234b565b610e45565b005b34801561075757600080fd5b50610760610e91565b60405161076d91906124d7565b60405180910390f35b34801561078257600080fd5b5061079d600480360381019061079891906128c5565b610e97565b005b3480156107ab57600080fd5b506107c660048036038101906107c19190612905565b610efa565b005b3480156107d457600080fd5b506107ef60048036038101906107ea9190612945565b610f27565b6040516107fc91906124d7565b60405180910390f35b34801561081157600080fd5b5061082c6004803603810190610827919061234b565b610fae565b6040516108399190612409565b60405180910390f35b34801561084e57600080fd5b506108696004803603810190610864919061234b565b610fce565b005b610873611051565b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6060600480546108ae906129b4565b80601f01602080910402602001604051908101604052809291908181526020018280546108da906129b4565b80156109275780601f106108fc57610100808354040283529160200191610927565b820191906000526020600020905b81548152906001019060200180831161090a57829003601f168201915b5050505050905090565b610939611051565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000806109886110cf565b90506109958185856110d7565b600191505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6109ce611051565b600860159054906101000a900460ff1615600860156101000a81548160ff02191690831515021790555043600e819055506001600f60006101000a81548160ff021916908315150217905550565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600354905090565b600080610a576110cf565b9050610a648582856112a0565b610a6f85858561132c565b60019150509392505050565b610a83611051565b80600f60006101000a81548160ff02191690831515021790555050565b60006012905090565b600080610ab46110cf565b9050610ad5818585610ac68589610f27565b610ad09190612a14565b6110d7565b600191505092915050565b610ae8611051565b60008111610b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2290612a94565b60405180910390fd5b80600a8190555050565b610b3f33826118d3565b50565b600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b70611051565b6000805b8351811015610bb857828181518110610b9057610b8f612ab4565b5b602002602001015182610ba39190612a14565b91508080610bb090612ae3565b915050610b74565b50610bc433308361132c565b60005b8351811015610c2257610c0f30858381518110610be757610be6612ab4565b5b6020026020010151858481518110610c0257610c01612ab4565b5b602002602001015161132c565b8080610c1a90612ae3565b915050610bc7565b50505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ca5611051565b610caf6000611aa2565b565b600c5481565b600a5481565b600b60009054906101000a900460ff1681565b60095481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610d0e906129b4565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3a906129b4565b8015610d875780601f10610d5c57610100808354040283529160200191610d87565b820191906000526020600020905b815481529060010190602001808311610d6a57829003601f168201915b5050505050905090565b610d99611051565b81600c8190555080600d819055505050565b600080610db66110cf565b90506000610dc48286610f27565b905083811015610e09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0090612b9d565b60405180910390fd5b610e1682868684036110d7565b60019250505092915050565b600080610e2d6110cf565b9050610e3a81858561132c565b600191505092915050565b610e4d611051565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600e5481565b610e9f611051565b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610f02611051565b81600b60006101000a81548160ff021916908315150217905550806009819055505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60106020528060005260406000206000915054906101000a900460ff1681565b610fd6611051565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611045576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103c90612c2f565b60405180910390fd5b61104e81611aa2565b50565b6110596110cf565b73ffffffffffffffffffffffffffffffffffffffff16611077610cd6565b73ffffffffffffffffffffffffffffffffffffffff16146110cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c490612c9b565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611146576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113d90612d2d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ac90612dbf565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161129391906124d7565b60405180910390a3505050565b60006112ac8484610f27565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146113265781811015611318576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130f90612e2b565b60405180910390fd5b61132584848484036110d7565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361139b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139290612ebd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361140a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140190612f4f565b60405180910390fd5b6000811161144d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144490612fe1565b60405180910390fd5b600860159054906101000a900460ff16156115585761146a610cd6565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806114ce57503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80611518575073d152f549545093347a162dce210e7293f145215073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b611557576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154e9061304d565b60405180910390fd5b5b600b60009054906101000a900460ff1680156115c15750600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561161f57600954816115d384610c54565b6115dd9190612a14565b111561161e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611615906130b9565b60405180910390fd5b5b6000600f60009054906101000a900460ff161561188c57600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614801561169657506000600c5414155b1561171357601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611712576116f543611b66565b6064600c548361170591906130d9565b61170f919061314a565b90505b5b600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614801561177357506000600d5414155b156117f057601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166117ef576117d243611b66565b6064600d54836117e291906130d9565b6117ec919061314a565b90505b5b60006117fb30610c54565b90506000600a5482101590508080156118215750600860149054906101000a900460ff16155b801561187b5750600f60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b1561188957611888611c15565b5b50505b60008111156118c157600081836118a3919061317b565b90506118b0853084611fa4565b6118bb858583611fa4565b506118cd565b6118cc848484611fa4565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611942576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193990613221565b60405180910390fd5b61194e8260008361221d565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156119d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119cc906132b3565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a8991906124d7565b60405180910390a3611a9d83600084612222565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b806003600e54611b769190612a14565b10611b9057605a600c81905550605a600d81905550611c12565b806006600e54611ba09190612a14565b10611bba576032600c819055506032600d81905550611c11565b80600f600e54611bca9190612a14565b10611bff57600a600c81905550600a600d819055506000600b60006101000a81548160ff021916908315150217905550611c10565b6002600c819055506002600d819055505b5b5b50565b6001600860146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115611c4d57611c4c612607565b5b604051908082528060200260200182016040528015611c7b5781602001602082028036833780820191505090505b5090503081600081518110611c9357611c92612ab4565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611d3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d5e91906132e8565b81600181518110611d7257611d71612ab4565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611de130600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611ddc30610c54565b6110d7565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947611e2830610c54565b60008430426040518663ffffffff1660e01b8152600401611e4d95949392919061340e565b600060405180830381600087803b158015611e6757600080fd5b505af1158015611e7b573d6000803e3d6000fd5b50505050600047905060006064606383611e9591906130d9565b611e9f919061314a565b905060008183611eaf919061317b565b9050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015611f19573d6000803e3d6000fd5b50600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611f82573d6000803e3d6000fd5b50505050506000600860146101000a81548160ff021916908315150217905550565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200a90612ebd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612082576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207990612f4f565b60405180910390fd5b61208d83838361221d565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612114576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210b906134da565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161220491906124d7565b60405180910390a3612217848484612222565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612261578082015181840152602081019050612246565b60008484015250505050565b6000601f19601f8301169050919050565b600061228982612227565b6122938185612232565b93506122a3818560208601612243565b6122ac8161226d565b840191505092915050565b600060208201905081810360008301526122d1818461227e565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612318826122ed565b9050919050565b6123288161230d565b811461233357600080fd5b50565b6000813590506123458161231f565b92915050565b600060208284031215612361576123606122e3565b5b600061236f84828501612336565b91505092915050565b6000819050919050565b61238b81612378565b811461239657600080fd5b50565b6000813590506123a881612382565b92915050565b600080604083850312156123c5576123c46122e3565b5b60006123d385828601612336565b92505060206123e485828601612399565b9150509250929050565b60008115159050919050565b612403816123ee565b82525050565b600060208201905061241e60008301846123fa565b92915050565b61242d8161230d565b82525050565b60006020820190506124486000830184612424565b92915050565b6000819050919050565b600061247361246e612469846122ed565b61244e565b6122ed565b9050919050565b600061248582612458565b9050919050565b60006124978261247a565b9050919050565b6124a78161248c565b82525050565b60006020820190506124c2600083018461249e565b92915050565b6124d181612378565b82525050565b60006020820190506124ec60008301846124c8565b92915050565b60008060006060848603121561250b5761250a6122e3565b5b600061251986828701612336565b935050602061252a86828701612336565b925050604061253b86828701612399565b9150509250925092565b61254e816123ee565b811461255957600080fd5b50565b60008135905061256b81612545565b92915050565b600060208284031215612587576125866122e3565b5b60006125958482850161255c565b91505092915050565b600060ff82169050919050565b6125b48161259e565b82525050565b60006020820190506125cf60008301846125ab565b92915050565b6000602082840312156125eb576125ea6122e3565b5b60006125f984828501612399565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61263f8261226d565b810181811067ffffffffffffffff8211171561265e5761265d612607565b5b80604052505050565b60006126716122d9565b905061267d8282612636565b919050565b600067ffffffffffffffff82111561269d5761269c612607565b5b602082029050602081019050919050565b600080fd5b60006126c66126c184612682565b612667565b905080838252602082019050602084028301858111156126e9576126e86126ae565b5b835b8181101561271257806126fe8882612336565b8452602084019350506020810190506126eb565b5050509392505050565b600082601f83011261273157612730612602565b5b81356127418482602086016126b3565b91505092915050565b600067ffffffffffffffff82111561276557612764612607565b5b602082029050602081019050919050565b60006127896127848461274a565b612667565b905080838252602082019050602084028301858111156127ac576127ab6126ae565b5b835b818110156127d557806127c18882612399565b8452602084019350506020810190506127ae565b5050509392505050565b600082601f8301126127f4576127f3612602565b5b8135612804848260208601612776565b91505092915050565b60008060408385031215612824576128236122e3565b5b600083013567ffffffffffffffff811115612842576128416122e8565b5b61284e8582860161271c565b925050602083013567ffffffffffffffff81111561286f5761286e6122e8565b5b61287b858286016127df565b9150509250929050565b6000806040838503121561289c5761289b6122e3565b5b60006128aa85828601612399565b92505060206128bb85828601612399565b9150509250929050565b600080604083850312156128dc576128db6122e3565b5b60006128ea85828601612336565b92505060206128fb8582860161255c565b9150509250929050565b6000806040838503121561291c5761291b6122e3565b5b600061292a8582860161255c565b925050602061293b85828601612399565b9150509250929050565b6000806040838503121561295c5761295b6122e3565b5b600061296a85828601612336565b925050602061297b85828601612336565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806129cc57607f821691505b6020821081036129df576129de612985565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612a1f82612378565b9150612a2a83612378565b9250828201905080821115612a4257612a416129e5565b5b92915050565b7f43616e6e6f742073657420746f207a65726f0000000000000000000000000000600082015250565b6000612a7e601283612232565b9150612a8982612a48565b602082019050919050565b60006020820190508181036000830152612aad81612a71565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000612aee82612378565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612b2057612b1f6129e5565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612b87602583612232565b9150612b9282612b2b565b604082019050919050565b60006020820190508181036000830152612bb681612b7a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612c19602683612232565b9150612c2482612bbd565b604082019050919050565b60006020820190508181036000830152612c4881612c0c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c85602083612232565b9150612c9082612c4f565b602082019050919050565b60006020820190508181036000830152612cb481612c78565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612d17602483612232565b9150612d2282612cbb565b604082019050919050565b60006020820190508181036000830152612d4681612d0a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612da9602283612232565b9150612db482612d4d565b604082019050919050565b60006020820190508181036000830152612dd881612d9c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612e15601d83612232565b9150612e2082612ddf565b602082019050919050565b60006020820190508181036000830152612e4481612e08565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612ea7602583612232565b9150612eb282612e4b565b604082019050919050565b60006020820190508181036000830152612ed681612e9a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612f39602383612232565b9150612f4482612edd565b604082019050919050565b60006020820190508181036000830152612f6881612f2c565b9050919050565b7f45524332303a207472616e73666572206d75737420626520677265617465722060008201527f7468616e20300000000000000000000000000000000000000000000000000000602082015250565b6000612fcb602683612232565b9150612fd682612f6f565b604082019050919050565b60006020820190508181036000830152612ffa81612fbe565b9050919050565b7f54726164696e67206e6f74206163746976652079657400000000000000000000600082015250565b6000613037601683612232565b915061304282613001565b602082019050919050565b600060208201905081810360008301526130668161302a565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b60006130a3600683612232565b91506130ae8261306d565b602082019050919050565b600060208201905081810360008301526130d281613096565b9050919050565b60006130e482612378565b91506130ef83612378565b92508282026130fd81612378565b91508282048414831517613114576131136129e5565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061315582612378565b915061316083612378565b9250826131705761316f61311b565b5b828204905092915050565b600061318682612378565b915061319183612378565b92508282039050818111156131a9576131a86129e5565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061320b602183612232565b9150613216826131af565b604082019050919050565b6000602082019050818103600083015261323a816131fe565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061329d602283612232565b91506132a882613241565b604082019050919050565b600060208201905081810360008301526132cc81613290565b9050919050565b6000815190506132e28161231f565b92915050565b6000602082840312156132fe576132fd6122e3565b5b600061330c848285016132d3565b91505092915050565b6000819050919050565b600061333a61333561333084613315565b61244e565b612378565b9050919050565b61334a8161331f565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6133858161230d565b82525050565b6000613397838361337c565b60208301905092915050565b6000602082019050919050565b60006133bb82613350565b6133c5818561335b565b93506133d08361336c565b8060005b838110156134015781516133e8888261338b565b97506133f3836133a3565b9250506001810190506133d4565b5085935050505092915050565b600060a08201905061342360008301886124c8565b6134306020830187613341565b818103604083015261344281866133b0565b90506134516060830185612424565b61345e60808301846124c8565b9695505050505050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006134c4602683612232565b91506134cf82613468565b604082019050919050565b600060208201905081810360008301526134f3816134b7565b905091905056fea264697066735822122009eb078c2285c24066a14bf4b8bcb7cc22cae6b5d0a1e15d40ba7729b0dfeab164736f6c63430008120033

Deployed Bytecode Sourcemap

21601:7251:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28160:81;;;;;;;;;;;;;:::i;:::-;;6658:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26874:153;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9025:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21791:76;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28011:140;;;;;;;;;;;;;:::i;:::-;;21645:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7790:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9807:261;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27907:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7631:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10478:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27603:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27817:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22274:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28446:403;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21699:76;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22175:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7962:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20741:103;;;;;;;;;;;;;:::i;:::-;;22136:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22024:69;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22103:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21947:70;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20098:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6878:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27195:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11220:437;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8296:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27033:153;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22215:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27427:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28250:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8553:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22309:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21000:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28160:81;19983:13;:11;:13::i;:::-;28226:7:::1;;;;;;;;;;;28225:8;28215:7;;:18;;;;;;;;;;;;;;;;;;28160:81::o:0;6658:100::-;6712:13;6745:5;6738:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6658:100;:::o;26874:153::-;19983:13;:11;:13::i;:::-;27000:19:::1;26981:16;;:38;;;;;;;;;;;;;;;;;;26874:153:::0;:::o;9025:201::-;9108:4;9125:13;9141:12;:10;:12::i;:::-;9125:28;;9164:32;9173:5;9180:7;9189:6;9164:8;:32::i;:::-;9214:4;9207:11;;;9025:201;;;;:::o;21791:76::-;;;;;;;;;;;;;:::o;28011:140::-;19983:13;:11;:13::i;:::-;28071:6:::1;;;;;;;;;;;28070:7;28061:6;;:16;;;;;;;;;;;;;;;;;;28101:12;28088:10;:25;;;;28139:4;28124:12;;:19;;;;;;;;;;;;;;;;;;28011:140::o:0;21645:41::-;;;;;;;;;;;;;:::o;7790:108::-;7851:7;7878:12;;7871:19;;7790:108;:::o;9807:261::-;9904:4;9921:15;9939:12;:10;:12::i;:::-;9921:30;;9962:38;9978:4;9984:7;9993:6;9962:15;:38::i;:::-;10011:27;10021:4;10027:2;10031:6;10011:9;:27::i;:::-;10056:4;10049:11;;;9807:261;;;;;:::o;27907:95::-;19983:13;:11;:13::i;:::-;27987:7:::1;27972:12;;:22;;;;;;;;;;;;;;;;;;27907:95:::0;:::o;7631:93::-;7689:5;7714:2;7707:9;;7631:93;:::o;10478:238::-;10566:4;10583:13;10599:12;:10;:12::i;:::-;10583:28;;10622:64;10631:5;10638:7;10675:10;10647:25;10657:5;10664:7;10647:9;:25::i;:::-;:38;;;;:::i;:::-;10622:8;:64::i;:::-;10704:4;10697:11;;;10478:238;;;;:::o;27603:205::-;19983:13;:11;:13::i;:::-;27730:1:::1;27715:12;:16;27707:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;27788:12;27765:20;:35;;;;27603:205:::0;:::o;27817:81::-;27866:24;27872:10;27884:5;27866;:24::i;:::-;27817:81;:::o;22274:28::-;;;;;;;;;;;;;:::o;28446:403::-;19983:13;:11;:13::i;:::-;28569::::1;28602:9:::0;28597:62:::1;28617:10;:17;28613:1;:21;28597:62;;;28650:6;28657:1;28650:9;;;;;;;;:::i;:::-;;;;;;;;28641:18;;;;;:::i;:::-;;;28636:3;;;;;:::i;:::-;;;;28597:62;;;;28670:43;28680:10;28700:4;28707:5;28670:9;:43::i;:::-;28729:6;28724:118;28741:10;:17;28737:1;:21;28724:118;;;28780:50;28798:4;28805:10;28816:1;28805:13;;;;;;;;:::i;:::-;;;;;;;;28820:6;28827:1;28820:9;;;;;;;;:::i;:::-;;;;;;;;28780;:50::i;:::-;28760:3;;;;;:::i;:::-;;;;28724:118;;;;28558:291;28446:403:::0;;:::o;21699:76::-;;;;;;;;;;;;;:::o;22175:33::-;;;;:::o;7962:127::-;8036:7;8063:9;:18;8073:7;8063:18;;;;;;;;;;;;;;;;8056:25;;7962:127;;;:::o;20741:103::-;19983:13;:11;:13::i;:::-;20806:30:::1;20833:1;20806:18;:30::i;:::-;20741:103::o:0;22136:32::-;;;;:::o;22024:69::-;;;;:::o;22103:26::-;;;;;;;;;;;;;:::o;21947:70::-;;;;:::o;20098:87::-;20144:7;20171:6;;;;;;;;;;;20164:13;;20098:87;:::o;6878:104::-;6934:13;6967:7;6960:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6878:104;:::o;27195:223::-;19983:13;:11;:13::i;:::-;27347:17:::1;27331:13;:33;;;;27392:18;27375:14;:35;;;;27195:223:::0;;:::o;11220:437::-;11313:4;11330:13;11346:12;:10;:12::i;:::-;11330:28;;11369:24;11396:25;11406:5;11413:7;11396:9;:25::i;:::-;11369:52;;11460:15;11440:16;:35;;11432:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11553:60;11562:5;11569:7;11597:15;11578:16;:34;11553:8;:60::i;:::-;11645:4;11638:11;;;;11220:437;;;;:::o;8296:193::-;8375:4;8392:13;8408:12;:10;:12::i;:::-;8392:28;;8431;8441:5;8448:2;8452:6;8431:9;:28::i;:::-;8477:4;8470:11;;;8296:193;;;;:::o;27033:153::-;19983:13;:11;:13::i;:::-;27159:19:::1;27140:16;;:38;;;;;;;;;;;;;;;;;;27033:153:::0;:::o;22215:25::-;;;;:::o;27427:167::-;19983:13;:11;:13::i;:::-;27575:11:::1;27543:19;:29;27563:8;27543:29;;;;;;;;;;;;;;;;:43;;;;;;;;;;;;;;;;;;27427:167:::0;;:::o;28250:187::-;19983:13;:11;:13::i;:::-;28374:8:::1;28364:7;;:18;;;;;;;;;;;;;;;;;;28412:17;28393:16;:36;;;;28250:187:::0;;:::o;8553:151::-;8642:7;8669:11;:18;8681:5;8669:18;;;;;;;;;;;;;;;:27;8688:7;8669:27;;;;;;;;;;;;;;;;8662:34;;8553:151;;;;:::o;22309:51::-;;;;;;;;;;;;;;;;;;;;;;:::o;21000:201::-;19983:13;:11;:13::i;:::-;21109:1:::1;21089:22;;:8;:22;;::::0;21081:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;21165:28;21184:8;21165:18;:28::i;:::-;21000:201:::0;:::o;20264:132::-;20339:12;:10;:12::i;:::-;20328:23;;:7;:5;:7::i;:::-;:23;;;20320:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20264:132::o;4282:98::-;4335:7;4362:10;4355:17;;4282:98;:::o;15229:347::-;15348:1;15331:19;;:5;:19;;;15323:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15429:1;15410:21;;:7;:21;;;15402:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15514:6;15484:11;:18;15496:5;15484:18;;;;;;;;;;;;;;;:27;15503:7;15484:27;;;;;;;;;;;;;;;:36;;;;15552:7;15536:32;;15545:5;15536:32;;;15561:6;15536:32;;;;;;:::i;:::-;;;;;;;;15229:347;;;:::o;15868:419::-;15969:24;15996:25;16006:5;16013:7;15996:9;:25::i;:::-;15969:52;;16056:17;16036:16;:37;16032:248;;16118:6;16098:16;:26;;16090:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16202:51;16211:5;16218:7;16246:6;16227:16;:25;16202:8;:51::i;:::-;16032:248;15958:329;15868:419;;;:::o;23188:1923::-;23336:1;23320:18;;:4;:18;;;23312:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23413:1;23399:16;;:2;:16;;;23391:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;23483:1;23474:6;:10;23466:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;23545:6;;;;;;;;;;;23541:217;;;23602:7;:5;:7::i;:::-;23594:15;;:4;:15;;;:40;;;;23629:4;23613:21;;:4;:21;;;23594:40;:94;;;;23646:42;23638:50;;:4;:50;;;23594:94;23568:178;;;;;;;;;;;;:::i;:::-;;;;;;;;;23541:217;23775:7;;;;;;;;;;;:32;;;;;23794:13;;;;;;;;;;;23786:21;;:4;:21;;;23775:32;23771:126;;;23858:16;;23848:6;23832:13;23842:2;23832:9;:13::i;:::-;:22;;;;:::i;:::-;:42;;23824:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;23771:126;23910:17;23942:12;;;;;;;;;;;23938:871;;;24002:13;;;;;;;;;;;23994:21;;:4;:21;;;:43;;;;;24036:1;24019:13;;:18;;23994:43;23990:241;;;24063:19;:23;24083:2;24063:23;;;;;;;;;;;;;;;;;;;;;;;;;24058:158;;24111:20;24118:12;24111:6;:20::i;:::-;24193:3;24176:13;;24167:6;:22;;;;:::i;:::-;24166:30;;;;:::i;:::-;24154:42;;24058:158;23990:241;24276:13;;;;;;;;;;;24270:19;;:2;:19;;;:42;;;;;24311:1;24293:14;;:19;;24270:42;24266:243;;;24338:19;:25;24358:4;24338:25;;;;;;;;;;;;;;;;;;;;;;;;;24333:161;;24388:20;24395:12;24388:6;:20::i;:::-;24471:3;24453:14;;24444:6;:23;;;;:::i;:::-;24443:31;;;;:::i;:::-;24431:43;;24333:161;24266:243;24526:28;24557:24;24575:4;24557:9;:24::i;:::-;24526:55;;24596:24;24647:20;;24623;:44;;24596:71;;24689:19;:36;;;;;24713:12;;;;;;;;;;;24712:13;24689:36;:61;;;;;24737:13;;;;;;;;;;;24729:21;;:4;:21;;;;24689:61;24685:113;;;24771:11;:9;:11::i;:::-;24685:113;23956:853;;23938:871;24855:1;24843:9;:13;24839:265;;;24873:18;24903:9;24894:6;:18;;;;:::i;:::-;24873:39;;24927:47;24943:4;24957;24964:9;24927:15;:47::i;:::-;24989:37;25005:4;25011:2;25015:10;24989:15;:37::i;:::-;24858:180;24839:265;;;25059:33;25075:4;25081:2;25085:6;25059:15;:33::i;:::-;24839:265;23301:1810;23188:1923;;;:::o;14111:679::-;14214:1;14195:21;;:7;:21;;;14187:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14268:49;14289:7;14306:1;14310:6;14268:20;:49::i;:::-;14331:22;14356:9;:18;14366:7;14356:18;;;;;;;;;;;;;;;;14331:43;;14411:6;14393:14;:24;;14385:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14530:6;14513:14;:23;14492:9;:18;14502:7;14492:18;;;;;;;;;;;;;;;:44;;;;14647:6;14631:12;;:22;;;;;;;;;;;14709:1;14683:37;;14692:7;14683:37;;;14713:6;14683:37;;;;;;:::i;:::-;;;;;;;;14734:48;14754:7;14771:1;14775:6;14734:19;:48::i;:::-;14176:614;14111:679;;:::o;21362:191::-;21436:16;21455:6;;;;;;;;;;;21436:25;;21481:8;21472:6;;:17;;;;;;;;;;;;;;;;;;21536:8;21505:40;;21526:8;21505:40;;;;;;;;;;;;21425:128;21362:191;:::o;26312:515::-;26387:6;26382:1;26368:10;;:15;;;;:::i;:::-;:25;26364:456;;26426:2;26410:13;:18;;;;26460:2;26443:14;:19;;;;26364:456;;;26503:6;26498:1;26484:10;;:15;;;;:::i;:::-;:25;26480:340;;26542:2;26526:13;:18;;;;26576:2;26559:14;:19;;;;26480:340;;;26620:6;26614:2;26600:10;;:16;;;;:::i;:::-;:26;26596:224;;26659:2;26643:13;:18;;;;26693:2;26676:14;:19;;;;26720:5;26710:7;;:15;;;;;;;;;;;;;;;;;;26596:224;;;26774:1;26758:13;:17;;;;26807:1;26790:14;:18;;;;26596:224;26480:340;26364:456;26312:515;:::o;25120:1182::-;22419:4;22404:12;;:19;;;;;;;;;;;;;;;;;;25233:21:::1;25271:1;25257:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25233:40;;25302:4;25284;25289:1;25284:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;25328:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;25318:4;25323:1;25318:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;::::0;::::1;25364:125;25395:4;25423:15;;;;;;;;;;;25454:24;25472:4;25454:9;:24::i;:::-;25364:8;:125::i;:::-;25529:15;;;;;;;;;;;:66;;;25610:24;25628:4;25610:9;:24::i;:::-;25649:1;25693:4;25720;25786:15;25529:283;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;25900:23;25926:21;25900:47;;25958:29;26015:3;26009:2;25991:15;:20;;;;:::i;:::-;25990:28;;;;:::i;:::-;25958:60;;26036:29;26086:21;26068:15;:39;;;;:::i;:::-;26036:71;;26177:16;;;;;;;;;;;26169:34;;:57;26204:21;26169:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;26245:16;;;;;;;;;;;26237:34;;:57;26272:21;26237:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;25162:1140;;;;22461:5:::0;22446:12;;:20;;;;;;;;;;;;;;;;;;25120:1182::o;12128:810::-;12241:1;12225:18;;:4;:18;;;12217:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12318:1;12304:16;;:2;:16;;;12296:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12374:38;12395:4;12401:2;12405:6;12374:20;:38::i;:::-;12426:19;12448:9;:15;12458:4;12448:15;;;;;;;;;;;;;;;;12426:37;;12497:6;12482:11;:21;;12474:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12614:6;12600:11;:20;12582:9;:15;12592:4;12582:15;;;;;;;;;;;;;;;:38;;;;12817:6;12800:9;:13;12810:2;12800:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;12868:2;12853:26;;12862:4;12853:26;;;12872:6;12853:26;;;;;;:::i;:::-;;;;;;;;12893:37;12913:4;12919:2;12923:6;12893:19;:37::i;:::-;12206:732;12128:810;;;:::o;16888:91::-;;;;:::o;17584:90::-;;;;:::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;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::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:329::-;2242:6;2291:2;2279:9;2270:7;2266:23;2262:32;2259:119;;;2297:79;;:::i;:::-;2259:119;2417:1;2442:53;2487:7;2478:6;2467:9;2463:22;2442:53;:::i;:::-;2432:63;;2388:117;2183:329;;;;:::o;2518:77::-;2555:7;2584:5;2573:16;;2518:77;;;:::o;2601:122::-;2674:24;2692:5;2674:24;:::i;:::-;2667:5;2664:35;2654:63;;2713:1;2710;2703:12;2654:63;2601:122;:::o;2729:139::-;2775:5;2813:6;2800:20;2791:29;;2829:33;2856:5;2829:33;:::i;:::-;2729:139;;;;:::o;2874:474::-;2942:6;2950;2999:2;2987:9;2978:7;2974:23;2970:32;2967:119;;;3005:79;;:::i;:::-;2967:119;3125:1;3150:53;3195:7;3186:6;3175:9;3171:22;3150:53;:::i;:::-;3140:63;;3096:117;3252:2;3278:53;3323:7;3314:6;3303:9;3299:22;3278:53;:::i;:::-;3268:63;;3223:118;2874:474;;;;;:::o;3354:90::-;3388:7;3431:5;3424:13;3417:21;3406:32;;3354:90;;;:::o;3450:109::-;3531:21;3546:5;3531:21;:::i;:::-;3526:3;3519:34;3450:109;;:::o;3565:210::-;3652:4;3690:2;3679:9;3675:18;3667:26;;3703:65;3765:1;3754:9;3750:17;3741:6;3703:65;:::i;:::-;3565:210;;;;:::o;3781:118::-;3868:24;3886:5;3868:24;:::i;:::-;3863:3;3856:37;3781:118;;:::o;3905:222::-;3998:4;4036:2;4025:9;4021:18;4013:26;;4049:71;4117:1;4106:9;4102:17;4093:6;4049:71;:::i;:::-;3905:222;;;;:::o;4133:60::-;4161:3;4182:5;4175:12;;4133:60;;;:::o;4199:142::-;4249:9;4282:53;4300:34;4309:24;4327:5;4309:24;:::i;:::-;4300:34;:::i;:::-;4282:53;:::i;:::-;4269:66;;4199:142;;;:::o;4347:126::-;4397:9;4430:37;4461:5;4430:37;:::i;:::-;4417:50;;4347:126;;;:::o;4479:153::-;4556:9;4589:37;4620:5;4589:37;:::i;:::-;4576:50;;4479:153;;;:::o;4638:185::-;4752:64;4810:5;4752:64;:::i;:::-;4747:3;4740:77;4638:185;;:::o;4829:276::-;4949:4;4987:2;4976:9;4972:18;4964:26;;5000:98;5095:1;5084:9;5080:17;5071:6;5000:98;:::i;:::-;4829:276;;;;:::o;5111:118::-;5198:24;5216:5;5198:24;:::i;:::-;5193:3;5186:37;5111:118;;:::o;5235:222::-;5328:4;5366:2;5355:9;5351:18;5343:26;;5379:71;5447:1;5436:9;5432:17;5423:6;5379:71;:::i;:::-;5235:222;;;;:::o;5463:619::-;5540:6;5548;5556;5605:2;5593:9;5584:7;5580:23;5576:32;5573:119;;;5611:79;;:::i;:::-;5573:119;5731:1;5756:53;5801:7;5792:6;5781:9;5777:22;5756:53;:::i;:::-;5746:63;;5702:117;5858:2;5884:53;5929:7;5920:6;5909:9;5905:22;5884:53;:::i;:::-;5874:63;;5829:118;5986:2;6012:53;6057:7;6048:6;6037:9;6033:22;6012:53;:::i;:::-;6002:63;;5957:118;5463:619;;;;;:::o;6088:116::-;6158:21;6173:5;6158:21;:::i;:::-;6151:5;6148:32;6138:60;;6194:1;6191;6184:12;6138:60;6088:116;:::o;6210:133::-;6253:5;6291:6;6278:20;6269:29;;6307:30;6331:5;6307:30;:::i;:::-;6210:133;;;;:::o;6349:323::-;6405:6;6454:2;6442:9;6433:7;6429:23;6425:32;6422:119;;;6460:79;;:::i;:::-;6422:119;6580:1;6605:50;6647:7;6638:6;6627:9;6623:22;6605:50;:::i;:::-;6595:60;;6551:114;6349:323;;;;:::o;6678:86::-;6713:7;6753:4;6746:5;6742:16;6731:27;;6678:86;;;:::o;6770:112::-;6853:22;6869:5;6853:22;:::i;:::-;6848:3;6841:35;6770:112;;:::o;6888:214::-;6977:4;7015:2;7004:9;7000:18;6992:26;;7028:67;7092:1;7081:9;7077:17;7068:6;7028:67;:::i;:::-;6888:214;;;;:::o;7108:329::-;7167:6;7216:2;7204:9;7195:7;7191:23;7187:32;7184:119;;;7222:79;;:::i;:::-;7184:119;7342:1;7367:53;7412:7;7403:6;7392:9;7388:22;7367:53;:::i;:::-;7357:63;;7313:117;7108:329;;;;:::o;7443:117::-;7552:1;7549;7542:12;7566:180;7614:77;7611:1;7604:88;7711:4;7708:1;7701:15;7735:4;7732:1;7725:15;7752:281;7835:27;7857:4;7835:27;:::i;:::-;7827:6;7823:40;7965:6;7953:10;7950:22;7929:18;7917:10;7914:34;7911:62;7908:88;;;7976:18;;:::i;:::-;7908:88;8016:10;8012:2;8005:22;7795:238;7752:281;;:::o;8039:129::-;8073:6;8100:20;;:::i;:::-;8090:30;;8129:33;8157:4;8149:6;8129:33;:::i;:::-;8039:129;;;:::o;8174:311::-;8251:4;8341:18;8333:6;8330:30;8327:56;;;8363:18;;:::i;:::-;8327:56;8413:4;8405:6;8401:17;8393:25;;8473:4;8467;8463:15;8455:23;;8174:311;;;:::o;8491:117::-;8600:1;8597;8590:12;8631:710;8727:5;8752:81;8768:64;8825:6;8768:64;:::i;:::-;8752:81;:::i;:::-;8743:90;;8853:5;8882:6;8875:5;8868:21;8916:4;8909:5;8905:16;8898:23;;8969:4;8961:6;8957:17;8949:6;8945:30;8998:3;8990:6;8987:15;8984:122;;;9017:79;;:::i;:::-;8984:122;9132:6;9115:220;9149:6;9144:3;9141:15;9115:220;;;9224:3;9253:37;9286:3;9274:10;9253:37;:::i;:::-;9248:3;9241:50;9320:4;9315:3;9311:14;9304:21;;9191:144;9175:4;9170:3;9166:14;9159:21;;9115:220;;;9119:21;8733:608;;8631:710;;;;;:::o;9364:370::-;9435:5;9484:3;9477:4;9469:6;9465:17;9461:27;9451:122;;9492:79;;:::i;:::-;9451:122;9609:6;9596:20;9634:94;9724:3;9716:6;9709:4;9701:6;9697:17;9634:94;:::i;:::-;9625:103;;9441:293;9364:370;;;;:::o;9740:311::-;9817:4;9907:18;9899:6;9896:30;9893:56;;;9929:18;;:::i;:::-;9893:56;9979:4;9971:6;9967:17;9959:25;;10039:4;10033;10029:15;10021:23;;9740:311;;;:::o;10074:710::-;10170:5;10195:81;10211:64;10268:6;10211:64;:::i;:::-;10195:81;:::i;:::-;10186:90;;10296:5;10325:6;10318:5;10311:21;10359:4;10352:5;10348:16;10341:23;;10412:4;10404:6;10400:17;10392:6;10388:30;10441:3;10433:6;10430:15;10427:122;;;10460:79;;:::i;:::-;10427:122;10575:6;10558:220;10592:6;10587:3;10584:15;10558:220;;;10667:3;10696:37;10729:3;10717:10;10696:37;:::i;:::-;10691:3;10684:50;10763:4;10758:3;10754:14;10747:21;;10634:144;10618:4;10613:3;10609:14;10602:21;;10558:220;;;10562:21;10176:608;;10074:710;;;;;:::o;10807:370::-;10878:5;10927:3;10920:4;10912:6;10908:17;10904:27;10894:122;;10935:79;;:::i;:::-;10894:122;11052:6;11039:20;11077:94;11167:3;11159:6;11152:4;11144:6;11140:17;11077:94;:::i;:::-;11068:103;;10884:293;10807:370;;;;:::o;11183:894::-;11301:6;11309;11358:2;11346:9;11337:7;11333:23;11329:32;11326:119;;;11364:79;;:::i;:::-;11326:119;11512:1;11501:9;11497:17;11484:31;11542:18;11534:6;11531:30;11528:117;;;11564:79;;:::i;:::-;11528:117;11669:78;11739:7;11730:6;11719:9;11715:22;11669:78;:::i;:::-;11659:88;;11455:302;11824:2;11813:9;11809:18;11796:32;11855:18;11847:6;11844:30;11841:117;;;11877:79;;:::i;:::-;11841:117;11982:78;12052:7;12043:6;12032:9;12028:22;11982:78;:::i;:::-;11972:88;;11767:303;11183:894;;;;;:::o;12083:474::-;12151:6;12159;12208:2;12196:9;12187:7;12183:23;12179:32;12176:119;;;12214:79;;:::i;:::-;12176:119;12334:1;12359:53;12404:7;12395:6;12384:9;12380:22;12359:53;:::i;:::-;12349:63;;12305:117;12461:2;12487:53;12532:7;12523:6;12512:9;12508:22;12487:53;:::i;:::-;12477:63;;12432:118;12083:474;;;;;:::o;12563:468::-;12628:6;12636;12685:2;12673:9;12664:7;12660:23;12656:32;12653:119;;;12691:79;;:::i;:::-;12653:119;12811:1;12836:53;12881:7;12872:6;12861:9;12857:22;12836:53;:::i;:::-;12826:63;;12782:117;12938:2;12964:50;13006:7;12997:6;12986:9;12982:22;12964:50;:::i;:::-;12954:60;;12909:115;12563:468;;;;;:::o;13037:::-;13102:6;13110;13159:2;13147:9;13138:7;13134:23;13130:32;13127:119;;;13165:79;;:::i;:::-;13127:119;13285:1;13310:50;13352:7;13343:6;13332:9;13328:22;13310:50;:::i;:::-;13300:60;;13256:114;13409:2;13435:53;13480:7;13471:6;13460:9;13456:22;13435:53;:::i;:::-;13425:63;;13380:118;13037:468;;;;;:::o;13511:474::-;13579:6;13587;13636:2;13624:9;13615:7;13611:23;13607:32;13604:119;;;13642:79;;:::i;:::-;13604:119;13762:1;13787:53;13832:7;13823:6;13812:9;13808:22;13787:53;:::i;:::-;13777:63;;13733:117;13889:2;13915:53;13960:7;13951:6;13940:9;13936:22;13915:53;:::i;:::-;13905:63;;13860:118;13511:474;;;;;:::o;13991:180::-;14039:77;14036:1;14029:88;14136:4;14133:1;14126:15;14160:4;14157:1;14150:15;14177:320;14221:6;14258:1;14252:4;14248:12;14238:22;;14305:1;14299:4;14295:12;14326:18;14316:81;;14382:4;14374:6;14370:17;14360:27;;14316:81;14444:2;14436:6;14433:14;14413:18;14410:38;14407:84;;14463:18;;:::i;:::-;14407:84;14228:269;14177:320;;;:::o;14503:180::-;14551:77;14548:1;14541:88;14648:4;14645:1;14638:15;14672:4;14669:1;14662:15;14689:191;14729:3;14748:20;14766:1;14748:20;:::i;:::-;14743:25;;14782:20;14800:1;14782:20;:::i;:::-;14777:25;;14825:1;14822;14818:9;14811:16;;14846:3;14843:1;14840:10;14837:36;;;14853:18;;:::i;:::-;14837:36;14689:191;;;;:::o;14886:168::-;15026:20;15022:1;15014:6;15010:14;15003:44;14886:168;:::o;15060:366::-;15202:3;15223:67;15287:2;15282:3;15223:67;:::i;:::-;15216:74;;15299:93;15388:3;15299:93;:::i;:::-;15417:2;15412:3;15408:12;15401:19;;15060:366;;;:::o;15432:419::-;15598:4;15636:2;15625:9;15621:18;15613:26;;15685:9;15679:4;15675:20;15671:1;15660:9;15656:17;15649:47;15713:131;15839:4;15713:131;:::i;:::-;15705:139;;15432:419;;;:::o;15857:180::-;15905:77;15902:1;15895:88;16002:4;15999:1;15992:15;16026:4;16023:1;16016:15;16043:233;16082:3;16105:24;16123:5;16105:24;:::i;:::-;16096:33;;16151:66;16144:5;16141:77;16138:103;;16221:18;;:::i;:::-;16138:103;16268:1;16261:5;16257:13;16250:20;;16043:233;;;:::o;16282:224::-;16422:34;16418:1;16410:6;16406:14;16399:58;16491:7;16486:2;16478:6;16474:15;16467:32;16282:224;:::o;16512:366::-;16654:3;16675:67;16739:2;16734:3;16675:67;:::i;:::-;16668:74;;16751:93;16840:3;16751:93;:::i;:::-;16869:2;16864:3;16860:12;16853:19;;16512:366;;;:::o;16884:419::-;17050:4;17088:2;17077:9;17073:18;17065:26;;17137:9;17131:4;17127:20;17123:1;17112:9;17108:17;17101:47;17165:131;17291:4;17165:131;:::i;:::-;17157:139;;16884:419;;;:::o;17309:225::-;17449:34;17445:1;17437:6;17433:14;17426:58;17518:8;17513:2;17505:6;17501:15;17494:33;17309:225;:::o;17540:366::-;17682:3;17703:67;17767:2;17762:3;17703:67;:::i;:::-;17696:74;;17779:93;17868:3;17779:93;:::i;:::-;17897:2;17892:3;17888:12;17881:19;;17540:366;;;:::o;17912:419::-;18078:4;18116:2;18105:9;18101:18;18093:26;;18165:9;18159:4;18155:20;18151:1;18140:9;18136:17;18129:47;18193:131;18319:4;18193:131;:::i;:::-;18185:139;;17912:419;;;:::o;18337:182::-;18477:34;18473:1;18465:6;18461:14;18454:58;18337:182;:::o;18525:366::-;18667:3;18688:67;18752:2;18747:3;18688:67;:::i;:::-;18681:74;;18764:93;18853:3;18764:93;:::i;:::-;18882:2;18877:3;18873:12;18866:19;;18525:366;;;:::o;18897:419::-;19063:4;19101:2;19090:9;19086:18;19078:26;;19150:9;19144:4;19140:20;19136:1;19125:9;19121:17;19114:47;19178:131;19304:4;19178:131;:::i;:::-;19170:139;;18897:419;;;:::o;19322:223::-;19462:34;19458:1;19450:6;19446:14;19439:58;19531:6;19526:2;19518:6;19514:15;19507:31;19322:223;:::o;19551:366::-;19693:3;19714:67;19778:2;19773:3;19714:67;:::i;:::-;19707:74;;19790:93;19879:3;19790:93;:::i;:::-;19908:2;19903:3;19899:12;19892:19;;19551:366;;;:::o;19923:419::-;20089:4;20127:2;20116:9;20112:18;20104:26;;20176:9;20170:4;20166:20;20162:1;20151:9;20147:17;20140:47;20204:131;20330:4;20204:131;:::i;:::-;20196:139;;19923:419;;;:::o;20348:221::-;20488:34;20484:1;20476:6;20472:14;20465:58;20557:4;20552:2;20544:6;20540:15;20533:29;20348:221;:::o;20575:366::-;20717:3;20738:67;20802:2;20797:3;20738:67;:::i;:::-;20731:74;;20814:93;20903:3;20814:93;:::i;:::-;20932:2;20927:3;20923:12;20916:19;;20575:366;;;:::o;20947:419::-;21113:4;21151:2;21140:9;21136:18;21128:26;;21200:9;21194:4;21190:20;21186:1;21175:9;21171:17;21164:47;21228:131;21354:4;21228:131;:::i;:::-;21220:139;;20947:419;;;:::o;21372:179::-;21512:31;21508:1;21500:6;21496:14;21489:55;21372:179;:::o;21557:366::-;21699:3;21720:67;21784:2;21779:3;21720:67;:::i;:::-;21713:74;;21796:93;21885:3;21796:93;:::i;:::-;21914:2;21909:3;21905:12;21898:19;;21557:366;;;:::o;21929:419::-;22095:4;22133:2;22122:9;22118:18;22110:26;;22182:9;22176:4;22172:20;22168:1;22157:9;22153:17;22146:47;22210:131;22336:4;22210:131;:::i;:::-;22202:139;;21929:419;;;:::o;22354:224::-;22494:34;22490:1;22482:6;22478:14;22471:58;22563:7;22558:2;22550:6;22546:15;22539:32;22354:224;:::o;22584:366::-;22726:3;22747:67;22811:2;22806:3;22747:67;:::i;:::-;22740:74;;22823:93;22912:3;22823:93;:::i;:::-;22941:2;22936:3;22932:12;22925:19;;22584:366;;;:::o;22956:419::-;23122:4;23160:2;23149:9;23145:18;23137:26;;23209:9;23203:4;23199:20;23195:1;23184:9;23180:17;23173:47;23237:131;23363:4;23237:131;:::i;:::-;23229:139;;22956:419;;;:::o;23381:222::-;23521:34;23517:1;23509:6;23505:14;23498:58;23590:5;23585:2;23577:6;23573:15;23566:30;23381:222;:::o;23609:366::-;23751:3;23772:67;23836:2;23831:3;23772:67;:::i;:::-;23765:74;;23848:93;23937:3;23848:93;:::i;:::-;23966:2;23961:3;23957:12;23950:19;;23609:366;;;:::o;23981:419::-;24147:4;24185:2;24174:9;24170:18;24162:26;;24234:9;24228:4;24224:20;24220:1;24209:9;24205:17;24198:47;24262:131;24388:4;24262:131;:::i;:::-;24254:139;;23981:419;;;:::o;24406:225::-;24546:34;24542:1;24534:6;24530:14;24523:58;24615:8;24610:2;24602:6;24598:15;24591:33;24406:225;:::o;24637:366::-;24779:3;24800:67;24864:2;24859:3;24800:67;:::i;:::-;24793:74;;24876:93;24965:3;24876:93;:::i;:::-;24994:2;24989:3;24985:12;24978:19;;24637:366;;;:::o;25009:419::-;25175:4;25213:2;25202:9;25198:18;25190:26;;25262:9;25256:4;25252:20;25248:1;25237:9;25233:17;25226:47;25290:131;25416:4;25290:131;:::i;:::-;25282:139;;25009:419;;;:::o;25434:172::-;25574:24;25570:1;25562:6;25558:14;25551:48;25434:172;:::o;25612:366::-;25754:3;25775:67;25839:2;25834:3;25775:67;:::i;:::-;25768:74;;25851:93;25940:3;25851:93;:::i;:::-;25969:2;25964:3;25960:12;25953:19;;25612:366;;;:::o;25984:419::-;26150:4;26188:2;26177:9;26173:18;26165:26;;26237:9;26231:4;26227:20;26223:1;26212:9;26208:17;26201:47;26265:131;26391:4;26265:131;:::i;:::-;26257:139;;25984:419;;;:::o;26409:156::-;26549:8;26545:1;26537:6;26533:14;26526:32;26409:156;:::o;26571:365::-;26713:3;26734:66;26798:1;26793:3;26734:66;:::i;:::-;26727:73;;26809:93;26898:3;26809:93;:::i;:::-;26927:2;26922:3;26918:12;26911:19;;26571:365;;;:::o;26942:419::-;27108:4;27146:2;27135:9;27131:18;27123:26;;27195:9;27189:4;27185:20;27181:1;27170:9;27166:17;27159:47;27223:131;27349:4;27223:131;:::i;:::-;27215:139;;26942:419;;;:::o;27367:410::-;27407:7;27430:20;27448:1;27430:20;:::i;:::-;27425:25;;27464:20;27482:1;27464:20;:::i;:::-;27459:25;;27519:1;27516;27512:9;27541:30;27559:11;27541:30;:::i;:::-;27530:41;;27720:1;27711:7;27707:15;27704:1;27701:22;27681:1;27674:9;27654:83;27631:139;;27750:18;;:::i;:::-;27631:139;27415:362;27367:410;;;;:::o;27783:180::-;27831:77;27828:1;27821:88;27928:4;27925:1;27918:15;27952:4;27949:1;27942:15;27969:185;28009:1;28026:20;28044:1;28026:20;:::i;:::-;28021:25;;28060:20;28078:1;28060:20;:::i;:::-;28055:25;;28099:1;28089:35;;28104:18;;:::i;:::-;28089:35;28146:1;28143;28139:9;28134:14;;27969:185;;;;:::o;28160:194::-;28200:4;28220:20;28238:1;28220:20;:::i;:::-;28215:25;;28254:20;28272:1;28254:20;:::i;:::-;28249:25;;28298:1;28295;28291:9;28283:17;;28322:1;28316:4;28313:11;28310:37;;;28327:18;;:::i;:::-;28310:37;28160:194;;;;:::o;28360:220::-;28500:34;28496:1;28488:6;28484:14;28477:58;28569:3;28564:2;28556:6;28552:15;28545:28;28360:220;:::o;28586:366::-;28728:3;28749:67;28813:2;28808:3;28749:67;:::i;:::-;28742:74;;28825:93;28914:3;28825:93;:::i;:::-;28943:2;28938:3;28934:12;28927:19;;28586:366;;;:::o;28958:419::-;29124:4;29162:2;29151:9;29147:18;29139:26;;29211:9;29205:4;29201:20;29197:1;29186:9;29182:17;29175:47;29239:131;29365:4;29239:131;:::i;:::-;29231:139;;28958:419;;;:::o;29383:221::-;29523:34;29519:1;29511:6;29507:14;29500:58;29592:4;29587:2;29579:6;29575:15;29568:29;29383:221;:::o;29610:366::-;29752:3;29773:67;29837:2;29832:3;29773:67;:::i;:::-;29766:74;;29849:93;29938:3;29849:93;:::i;:::-;29967:2;29962:3;29958:12;29951:19;;29610:366;;;:::o;29982:419::-;30148:4;30186:2;30175:9;30171:18;30163:26;;30235:9;30229:4;30225:20;30221:1;30210:9;30206:17;30199:47;30263:131;30389:4;30263:131;:::i;:::-;30255:139;;29982:419;;;:::o;30407:143::-;30464:5;30495:6;30489:13;30480:22;;30511:33;30538:5;30511:33;:::i;:::-;30407:143;;;;:::o;30556:351::-;30626:6;30675:2;30663:9;30654:7;30650:23;30646:32;30643:119;;;30681:79;;:::i;:::-;30643:119;30801:1;30826:64;30882:7;30873:6;30862:9;30858:22;30826:64;:::i;:::-;30816:74;;30772:128;30556:351;;;;:::o;30913:85::-;30958:7;30987:5;30976:16;;30913:85;;;:::o;31004:158::-;31062:9;31095:61;31113:42;31122:32;31148:5;31122:32;:::i;:::-;31113:42;:::i;:::-;31095:61;:::i;:::-;31082:74;;31004:158;;;:::o;31168:147::-;31263:45;31302:5;31263:45;:::i;:::-;31258:3;31251:58;31168:147;;:::o;31321:114::-;31388:6;31422:5;31416:12;31406:22;;31321:114;;;:::o;31441:184::-;31540:11;31574:6;31569:3;31562:19;31614:4;31609:3;31605:14;31590:29;;31441:184;;;;:::o;31631:132::-;31698:4;31721:3;31713:11;;31751:4;31746:3;31742:14;31734:22;;31631:132;;;:::o;31769:108::-;31846:24;31864:5;31846:24;:::i;:::-;31841:3;31834:37;31769:108;;:::o;31883:179::-;31952:10;31973:46;32015:3;32007:6;31973:46;:::i;:::-;32051:4;32046:3;32042:14;32028:28;;31883:179;;;;:::o;32068:113::-;32138:4;32170;32165:3;32161:14;32153:22;;32068:113;;;:::o;32217:732::-;32336:3;32365:54;32413:5;32365:54;:::i;:::-;32435:86;32514:6;32509:3;32435:86;:::i;:::-;32428:93;;32545:56;32595:5;32545:56;:::i;:::-;32624:7;32655:1;32640:284;32665:6;32662:1;32659:13;32640:284;;;32741:6;32735:13;32768:63;32827:3;32812:13;32768:63;:::i;:::-;32761:70;;32854:60;32907:6;32854:60;:::i;:::-;32844:70;;32700:224;32687:1;32684;32680:9;32675:14;;32640:284;;;32644:14;32940:3;32933:10;;32341:608;;;32217:732;;;;:::o;32955:831::-;33218:4;33256:3;33245:9;33241:19;33233:27;;33270:71;33338:1;33327:9;33323:17;33314:6;33270:71;:::i;:::-;33351:80;33427:2;33416:9;33412:18;33403:6;33351:80;:::i;:::-;33478:9;33472:4;33468:20;33463:2;33452:9;33448:18;33441:48;33506:108;33609:4;33600:6;33506:108;:::i;:::-;33498:116;;33624:72;33692:2;33681:9;33677:18;33668:6;33624:72;:::i;:::-;33706:73;33774:3;33763:9;33759:19;33750:6;33706:73;:::i;:::-;32955:831;;;;;;;;:::o;33792:225::-;33932:34;33928:1;33920:6;33916:14;33909:58;34001:8;33996:2;33988:6;33984:15;33977:33;33792:225;:::o;34023:366::-;34165:3;34186:67;34250:2;34245:3;34186:67;:::i;:::-;34179:74;;34262:93;34351:3;34262:93;:::i;:::-;34380:2;34375:3;34371:12;34364:19;;34023:366;;;:::o;34395:419::-;34561:4;34599:2;34588:9;34584:18;34576:26;;34648:9;34642:4;34638:20;34634:1;34623:9;34619:17;34612:47;34676:131;34802:4;34676:131;:::i;:::-;34668:139;;34395:419;;;:::o

Swarm Source

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