Overview [ERC-20]
Price
$0.00 @ 0.000000 Eth
Fully Diluted Market Cap
Max Total Supply:
1,181,067.656862608456658034 CNTO
Holders:
79
Transfers:
-
Contract:
Decimals:
18
[ Download CSV Export ]
[ Download CSV Export ]
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CNTO_Token
Compiler Version
v0.8.16+commit.07a7930e
Contract Source Code (Solidity)
/** *Submitted for verification at basescan.org on 2023-12-31 */ // SPDX-License-Identifier: MIT // 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/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.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 anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _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); } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @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/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.8.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]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `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: Base-Testnet/CNTO-Token.sol pragma solidity ^0.8.0; contract CNTO_Token is ERC20, Ownable { uint256 public constant INITIAL_SUPPLY = 0; uint256 public constant MAX_MINT_PER_TX = 20_000 * (10**18); // Maximum tokens that can be minted per day mapping(address => bool) public admins; mapping(address => uint256) private adminIndex; address[] public adminList; uint256 public mintable = 1; uint256 public timeLock = 0; constructor() ERC20("Ciento Exchange", "CNTO") { _mint(msg.sender, INITIAL_SUPPLY); } function setMintable(uint256 _mintable) external onlyOwner { mintable = _mintable; } function addAdmin(address _address) external onlyOwner { require(block.timestamp > timeLock, "TimeLock in place."); require(!admins[_address], "Admin already exists."); admins[_address] = true; adminList.push(_address); adminIndex[_address] = adminList.length - 1; } function removeAdmin(address _address) external onlyOwner { require(admins[_address], "Admin does not exist."); admins[_address] = false; uint256 index = adminIndex[_address]; if (index < adminList.length - 1) { address lastAdmin = adminList[adminList.length - 1]; adminList[index] = lastAdmin; adminIndex[lastAdmin] = index; } adminList.pop(); delete adminIndex[_address]; } function updateTimeLock(uint256 _timeLock) external onlyOwner { require(block.timestamp > timeLock, "TimeLock in place."); timeLock = _timeLock; } function mint(address account, uint256 amount) external { require(mintable == 1, "Minting is paused."); require(admins[msg.sender], "You cannot execute the Mint Function."); require(amount <= MAX_MINT_PER_TX, "Cannot mint more than 20,000 CNTO."); _mint(account, amount); } function burn(uint256 amount) external { require(admins[msg.sender], "You cannot execute the Burn Function."); _burn(msg.sender, amount); } function getAllAdmins() public view returns (address[] memory) { return adminList; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":[],"name":"INITIAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"adminList","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"admins","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAllAdmins","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintable","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":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintable","type":"uint256"}],"name":"setMintable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"timeLock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"_timeLock","type":"uint256"}],"name":"updateTimeLock","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260016009556000600a553480156200001b57600080fd5b506040518060400160405280600f81526020017f4369656e746f2045786368616e676500000000000000000000000000000000008152506040518060400160405280600481526020017f434e544f000000000000000000000000000000000000000000000000000000008152508160039081620000999190620005a6565b508060049081620000ab9190620005a6565b505050620000ce620000c2620000e760201b60201c565b620000ef60201b60201c565b620000e1336000620001b560201b60201c565b620007a8565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000227576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200021e90620006ee565b60405180910390fd5b6200023b600083836200032260201b60201c565b80600260008282546200024f91906200073f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200030291906200078b565b60405180910390a36200031e600083836200032760201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003ae57607f821691505b602082108103620003c457620003c362000366565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200042e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620003ef565b6200043a8683620003ef565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000487620004816200047b8462000452565b6200045c565b62000452565b9050919050565b6000819050919050565b620004a38362000466565b620004bb620004b2826200048e565b848454620003fc565b825550505050565b600090565b620004d2620004c3565b620004df81848462000498565b505050565b5b818110156200050757620004fb600082620004c8565b600181019050620004e5565b5050565b601f82111562000556576200052081620003ca565b6200052b84620003df565b810160208510156200053b578190505b620005536200054a85620003df565b830182620004e4565b50505b505050565b600082821c905092915050565b60006200057b600019846008026200055b565b1980831691505092915050565b600062000596838362000568565b9150826002028217905092915050565b620005b1826200032c565b67ffffffffffffffff811115620005cd57620005cc62000337565b5b620005d9825462000395565b620005e68282856200050b565b600060209050601f8311600181146200061e576000841562000609578287015190505b62000615858262000588565b86555062000685565b601f1984166200062e86620003ca565b60005b82811015620006585784890151825560018201915060208501945060208101905062000631565b8683101562000678578489015162000674601f89168262000568565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620006d6601f836200068d565b9150620006e3826200069e565b602082019050919050565b600060208201905081810360008301526200070981620006c7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200074c8262000452565b9150620007598362000452565b925082820190508082111562000774576200077362000710565b5b92915050565b620007858162000452565b82525050565b6000602082019050620007a260008301846200077a565b92915050565b6129e980620007b86000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c80634bf365df116100f957806395d89b4111610097578063d085835a11610071578063d085835a146104d0578063dd62ed3e146104ee578063e9523c971461051e578063f2fde38b1461053c576101a9565b806395d89b4114610452578063a457c2d714610470578063a9059cbb146104a0576101a9565b8063715018a6116100d3578063715018a6146103f05780638da5cb5b146103fa5780638ecad7211461041857806391e4bac814610436576101a9565b80634bf365df1461038657806370480275146103a457806370a08231146103c0576101a9565b80632ff2e9dc11610166578063395093511161014057806339509351146102ee57806340c10f191461031e57806342966c681461033a578063429b62e514610356576101a9565b80632ff2e9dc1461029657806330e9c341146102b4578063313ce567146102d0576101a9565b806306fdde03146101ae578063095ea7b3146101cc57806311117fc8146101fc5780631785f53c1461022c57806318160ddd1461024857806323b872dd14610266575b600080fd5b6101b6610558565b6040516101c39190611b09565b60405180910390f35b6101e660048036038101906101e19190611bc4565b6105ea565b6040516101f39190611c1f565b60405180910390f35b61021660048036038101906102119190611c3a565b61060d565b6040516102239190611c76565b60405180910390f35b61024660048036038101906102419190611c91565b61064c565b005b61025061091a565b60405161025d9190611ccd565b60405180910390f35b610280600480360381019061027b9190611ce8565b610924565b60405161028d9190611c1f565b60405180910390f35b61029e610953565b6040516102ab9190611ccd565b60405180910390f35b6102ce60048036038101906102c99190611c3a565b610958565b005b6102d86109ae565b6040516102e59190611d57565b60405180910390f35b61030860048036038101906103039190611bc4565b6109b7565b6040516103159190611c1f565b60405180910390f35b61033860048036038101906103339190611bc4565b6109ee565b005b610354600480360381019061034f9190611c3a565b610b1a565b005b610370600480360381019061036b9190611c91565b610bb3565b60405161037d9190611c1f565b60405180910390f35b61038e610bd3565b60405161039b9190611ccd565b60405180910390f35b6103be60048036038101906103b99190611c91565b610bd9565b005b6103da60048036038101906103d59190611c91565b610dc5565b6040516103e79190611ccd565b60405180910390f35b6103f8610e0d565b005b610402610e21565b60405161040f9190611c76565b60405180910390f35b610420610e4b565b60405161042d9190611ccd565b60405180910390f35b610450600480360381019061044b9190611c3a565b610e59565b005b61045a610e6b565b6040516104679190611b09565b60405180910390f35b61048a60048036038101906104859190611bc4565b610efd565b6040516104979190611c1f565b60405180910390f35b6104ba60048036038101906104b59190611bc4565b610f74565b6040516104c79190611c1f565b60405180910390f35b6104d8610f97565b6040516104e59190611ccd565b60405180910390f35b61050860048036038101906105039190611d72565b610f9d565b6040516105159190611ccd565b60405180910390f35b610526611024565b6040516105339190611e70565b60405180910390f35b61055660048036038101906105519190611c91565b6110b2565b005b60606003805461056790611ec1565b80601f016020809104026020016040519081016040528092919081815260200182805461059390611ec1565b80156105e05780601f106105b5576101008083540402835291602001916105e0565b820191906000526020600020905b8154815290600101906020018083116105c357829003601f168201915b5050505050905090565b6000806105f5611135565b905061060281858561113d565b600191505092915050565b6008818154811061061d57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610654611306565b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166106e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d790611f3e565b60405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600160088054905061078e9190611f8d565b81101561088c576000600860016008805490506107ab9190611f8d565b815481106107bc576107bb611fc1565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905080600883815481106107fe576107fd611fc1565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600880548061089e5761089d611ff0565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600090555050565b6000600254905090565b60008061092f611135565b905061093c858285611384565b610947858585611410565b60019150509392505050565b600081565b610960611306565b600a5442116109a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099b9061206b565b60405180910390fd5b80600a8190555050565b60006012905090565b6000806109c2611135565b90506109e38185856109d48589610f9d565b6109de919061208b565b61113d565b600191505092915050565b600160095414610a33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2a9061210b565b60405180910390fd5b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab69061219d565b60405180910390fd5b69043c33c1937564800000811115610b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b039061222f565b60405180910390fd5b610b168282611686565b5050565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9d906122c1565b60405180910390fd5b610bb033826117dc565b50565b60066020528060005260406000206000915054906101000a900460ff1681565b60095481565b610be1611306565b600a544211610c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1c9061206b565b60405180910390fd5b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca99061232d565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600880549050610d7f9190611f8d565b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e15611306565b610e1f60006119a9565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b69043c33c193756480000081565b610e61611306565b8060098190555050565b606060048054610e7a90611ec1565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea690611ec1565b8015610ef35780601f10610ec857610100808354040283529160200191610ef3565b820191906000526020600020905b815481529060010190602001808311610ed657829003601f168201915b5050505050905090565b600080610f08611135565b90506000610f168286610f9d565b905083811015610f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f52906123bf565b60405180910390fd5b610f68828686840361113d565b60019250505092915050565b600080610f7f611135565b9050610f8c818585611410565b600191505092915050565b600a5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b606060088054806020026020016040519081016040528092919081815260200182805480156110a857602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001906001019080831161105e575b5050505050905090565b6110ba611306565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611129576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112090612451565b60405180910390fd5b611132816119a9565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a3906124e3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361121b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121290612575565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112f99190611ccd565b60405180910390a3505050565b61130e611135565b73ffffffffffffffffffffffffffffffffffffffff1661132c610e21565b73ffffffffffffffffffffffffffffffffffffffff1614611382576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611379906125e1565b60405180910390fd5b565b60006113908484610f9d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461140a57818110156113fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f39061264d565b60405180910390fd5b611409848484840361113d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361147f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611476906126df565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e590612771565b60405180910390fd5b6114f9838383611a6f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561157f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157690612803565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161166d9190611ccd565b60405180910390a3611680848484611a74565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ec9061286f565b60405180910390fd5b61170160008383611a6f565b8060026000828254611713919061208b565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516117c49190611ccd565b60405180910390a36117d860008383611a74565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361184b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184290612901565b60405180910390fd5b61185782600083611a6f565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156118dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d490612993565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119909190611ccd565b60405180910390a36119a483600084611a74565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611ab3578082015181840152602081019050611a98565b60008484015250505050565b6000601f19601f8301169050919050565b6000611adb82611a79565b611ae58185611a84565b9350611af5818560208601611a95565b611afe81611abf565b840191505092915050565b60006020820190508181036000830152611b238184611ad0565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611b5b82611b30565b9050919050565b611b6b81611b50565b8114611b7657600080fd5b50565b600081359050611b8881611b62565b92915050565b6000819050919050565b611ba181611b8e565b8114611bac57600080fd5b50565b600081359050611bbe81611b98565b92915050565b60008060408385031215611bdb57611bda611b2b565b5b6000611be985828601611b79565b9250506020611bfa85828601611baf565b9150509250929050565b60008115159050919050565b611c1981611c04565b82525050565b6000602082019050611c346000830184611c10565b92915050565b600060208284031215611c5057611c4f611b2b565b5b6000611c5e84828501611baf565b91505092915050565b611c7081611b50565b82525050565b6000602082019050611c8b6000830184611c67565b92915050565b600060208284031215611ca757611ca6611b2b565b5b6000611cb584828501611b79565b91505092915050565b611cc781611b8e565b82525050565b6000602082019050611ce26000830184611cbe565b92915050565b600080600060608486031215611d0157611d00611b2b565b5b6000611d0f86828701611b79565b9350506020611d2086828701611b79565b9250506040611d3186828701611baf565b9150509250925092565b600060ff82169050919050565b611d5181611d3b565b82525050565b6000602082019050611d6c6000830184611d48565b92915050565b60008060408385031215611d8957611d88611b2b565b5b6000611d9785828601611b79565b9250506020611da885828601611b79565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b611de781611b50565b82525050565b6000611df98383611dde565b60208301905092915050565b6000602082019050919050565b6000611e1d82611db2565b611e278185611dbd565b9350611e3283611dce565b8060005b83811015611e63578151611e4a8882611ded565b9750611e5583611e05565b925050600181019050611e36565b5085935050505092915050565b60006020820190508181036000830152611e8a8184611e12565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611ed957607f821691505b602082108103611eec57611eeb611e92565b5b50919050565b7f41646d696e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b6000611f28601583611a84565b9150611f3382611ef2565b602082019050919050565b60006020820190508181036000830152611f5781611f1b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611f9882611b8e565b9150611fa383611b8e565b9250828203905081811115611fbb57611fba611f5e565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f54696d654c6f636b20696e20706c6163652e0000000000000000000000000000600082015250565b6000612055601283611a84565b91506120608261201f565b602082019050919050565b6000602082019050818103600083015261208481612048565b9050919050565b600061209682611b8e565b91506120a183611b8e565b92508282019050808211156120b9576120b8611f5e565b5b92915050565b7f4d696e74696e67206973207061757365642e0000000000000000000000000000600082015250565b60006120f5601283611a84565b9150612100826120bf565b602082019050919050565b60006020820190508181036000830152612124816120e8565b9050919050565b7f596f752063616e6e6f74206578656375746520746865204d696e742046756e6360008201527f74696f6e2e000000000000000000000000000000000000000000000000000000602082015250565b6000612187602583611a84565b91506121928261212b565b604082019050919050565b600060208201905081810360008301526121b68161217a565b9050919050565b7f43616e6e6f74206d696e74206d6f7265207468616e2032302c30303020434e5460008201527f4f2e000000000000000000000000000000000000000000000000000000000000602082015250565b6000612219602283611a84565b9150612224826121bd565b604082019050919050565b600060208201905081810360008301526122488161220c565b9050919050565b7f596f752063616e6e6f74206578656375746520746865204275726e2046756e6360008201527f74696f6e2e000000000000000000000000000000000000000000000000000000602082015250565b60006122ab602583611a84565b91506122b68261224f565b604082019050919050565b600060208201905081810360008301526122da8161229e565b9050919050565b7f41646d696e20616c7265616479206578697374732e0000000000000000000000600082015250565b6000612317601583611a84565b9150612322826122e1565b602082019050919050565b600060208201905081810360008301526123468161230a565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006123a9602583611a84565b91506123b48261234d565b604082019050919050565b600060208201905081810360008301526123d88161239c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061243b602683611a84565b9150612446826123df565b604082019050919050565b6000602082019050818103600083015261246a8161242e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006124cd602483611a84565b91506124d882612471565b604082019050919050565b600060208201905081810360008301526124fc816124c0565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061255f602283611a84565b915061256a82612503565b604082019050919050565b6000602082019050818103600083015261258e81612552565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006125cb602083611a84565b91506125d682612595565b602082019050919050565b600060208201905081810360008301526125fa816125be565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612637601d83611a84565b915061264282612601565b602082019050919050565b600060208201905081810360008301526126668161262a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006126c9602583611a84565b91506126d48261266d565b604082019050919050565b600060208201905081810360008301526126f8816126bc565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061275b602383611a84565b9150612766826126ff565b604082019050919050565b6000602082019050818103600083015261278a8161274e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006127ed602683611a84565b91506127f882612791565b604082019050919050565b6000602082019050818103600083015261281c816127e0565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612859601f83611a84565b915061286482612823565b602082019050919050565b600060208201905081810360008301526128888161284c565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006128eb602183611a84565b91506128f68261288f565b604082019050919050565b6000602082019050818103600083015261291a816128de565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061297d602283611a84565b915061298882612921565b604082019050919050565b600060208201905081810360008301526129ac81612970565b905091905056fea264697066735822122063e72cc26396443d67965b771c9ca5349c390edbeef39e1a00dc9a8eeb54092e64736f6c63430008100033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101a95760003560e01c80634bf365df116100f957806395d89b4111610097578063d085835a11610071578063d085835a146104d0578063dd62ed3e146104ee578063e9523c971461051e578063f2fde38b1461053c576101a9565b806395d89b4114610452578063a457c2d714610470578063a9059cbb146104a0576101a9565b8063715018a6116100d3578063715018a6146103f05780638da5cb5b146103fa5780638ecad7211461041857806391e4bac814610436576101a9565b80634bf365df1461038657806370480275146103a457806370a08231146103c0576101a9565b80632ff2e9dc11610166578063395093511161014057806339509351146102ee57806340c10f191461031e57806342966c681461033a578063429b62e514610356576101a9565b80632ff2e9dc1461029657806330e9c341146102b4578063313ce567146102d0576101a9565b806306fdde03146101ae578063095ea7b3146101cc57806311117fc8146101fc5780631785f53c1461022c57806318160ddd1461024857806323b872dd14610266575b600080fd5b6101b6610558565b6040516101c39190611b09565b60405180910390f35b6101e660048036038101906101e19190611bc4565b6105ea565b6040516101f39190611c1f565b60405180910390f35b61021660048036038101906102119190611c3a565b61060d565b6040516102239190611c76565b60405180910390f35b61024660048036038101906102419190611c91565b61064c565b005b61025061091a565b60405161025d9190611ccd565b60405180910390f35b610280600480360381019061027b9190611ce8565b610924565b60405161028d9190611c1f565b60405180910390f35b61029e610953565b6040516102ab9190611ccd565b60405180910390f35b6102ce60048036038101906102c99190611c3a565b610958565b005b6102d86109ae565b6040516102e59190611d57565b60405180910390f35b61030860048036038101906103039190611bc4565b6109b7565b6040516103159190611c1f565b60405180910390f35b61033860048036038101906103339190611bc4565b6109ee565b005b610354600480360381019061034f9190611c3a565b610b1a565b005b610370600480360381019061036b9190611c91565b610bb3565b60405161037d9190611c1f565b60405180910390f35b61038e610bd3565b60405161039b9190611ccd565b60405180910390f35b6103be60048036038101906103b99190611c91565b610bd9565b005b6103da60048036038101906103d59190611c91565b610dc5565b6040516103e79190611ccd565b60405180910390f35b6103f8610e0d565b005b610402610e21565b60405161040f9190611c76565b60405180910390f35b610420610e4b565b60405161042d9190611ccd565b60405180910390f35b610450600480360381019061044b9190611c3a565b610e59565b005b61045a610e6b565b6040516104679190611b09565b60405180910390f35b61048a60048036038101906104859190611bc4565b610efd565b6040516104979190611c1f565b60405180910390f35b6104ba60048036038101906104b59190611bc4565b610f74565b6040516104c79190611c1f565b60405180910390f35b6104d8610f97565b6040516104e59190611ccd565b60405180910390f35b61050860048036038101906105039190611d72565b610f9d565b6040516105159190611ccd565b60405180910390f35b610526611024565b6040516105339190611e70565b60405180910390f35b61055660048036038101906105519190611c91565b6110b2565b005b60606003805461056790611ec1565b80601f016020809104026020016040519081016040528092919081815260200182805461059390611ec1565b80156105e05780601f106105b5576101008083540402835291602001916105e0565b820191906000526020600020905b8154815290600101906020018083116105c357829003601f168201915b5050505050905090565b6000806105f5611135565b905061060281858561113d565b600191505092915050565b6008818154811061061d57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610654611306565b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166106e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d790611f3e565b60405180910390fd5b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600160088054905061078e9190611f8d565b81101561088c576000600860016008805490506107ab9190611f8d565b815481106107bc576107bb611fc1565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905080600883815481106107fe576107fd611fc1565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600880548061089e5761089d611ff0565b5b6001900381819060005260206000200160006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690559055600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600090555050565b6000600254905090565b60008061092f611135565b905061093c858285611384565b610947858585611410565b60019150509392505050565b600081565b610960611306565b600a5442116109a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099b9061206b565b60405180910390fd5b80600a8190555050565b60006012905090565b6000806109c2611135565b90506109e38185856109d48589610f9d565b6109de919061208b565b61113d565b600191505092915050565b600160095414610a33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2a9061210b565b60405180910390fd5b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab69061219d565b60405180910390fd5b69043c33c1937564800000811115610b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b039061222f565b60405180910390fd5b610b168282611686565b5050565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610ba6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9d906122c1565b60405180910390fd5b610bb033826117dc565b50565b60066020528060005260406000206000915054906101000a900460ff1681565b60095481565b610be1611306565b600a544211610c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1c9061206b565b60405180910390fd5b600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610cb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca99061232d565b60405180910390fd5b6001600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600880549050610d7f9190611f8d565b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610e15611306565b610e1f60006119a9565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b69043c33c193756480000081565b610e61611306565b8060098190555050565b606060048054610e7a90611ec1565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea690611ec1565b8015610ef35780601f10610ec857610100808354040283529160200191610ef3565b820191906000526020600020905b815481529060010190602001808311610ed657829003601f168201915b5050505050905090565b600080610f08611135565b90506000610f168286610f9d565b905083811015610f5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f52906123bf565b60405180910390fd5b610f68828686840361113d565b60019250505092915050565b600080610f7f611135565b9050610f8c818585611410565b600191505092915050565b600a5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b606060088054806020026020016040519081016040528092919081815260200182805480156110a857602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001906001019080831161105e575b5050505050905090565b6110ba611306565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611129576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112090612451565b60405180910390fd5b611132816119a9565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a3906124e3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361121b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121290612575565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516112f99190611ccd565b60405180910390a3505050565b61130e611135565b73ffffffffffffffffffffffffffffffffffffffff1661132c610e21565b73ffffffffffffffffffffffffffffffffffffffff1614611382576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611379906125e1565b60405180910390fd5b565b60006113908484610f9d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461140a57818110156113fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f39061264d565b60405180910390fd5b611409848484840361113d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361147f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611476906126df565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e590612771565b60405180910390fd5b6114f9838383611a6f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561157f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157690612803565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161166d9190611ccd565b60405180910390a3611680848484611a74565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ec9061286f565b60405180910390fd5b61170160008383611a6f565b8060026000828254611713919061208b565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516117c49190611ccd565b60405180910390a36117d860008383611a74565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361184b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184290612901565b60405180910390fd5b61185782600083611a6f565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156118dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d490612993565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119909190611ccd565b60405180910390a36119a483600084611a74565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611ab3578082015181840152602081019050611a98565b60008484015250505050565b6000601f19601f8301169050919050565b6000611adb82611a79565b611ae58185611a84565b9350611af5818560208601611a95565b611afe81611abf565b840191505092915050565b60006020820190508181036000830152611b238184611ad0565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611b5b82611b30565b9050919050565b611b6b81611b50565b8114611b7657600080fd5b50565b600081359050611b8881611b62565b92915050565b6000819050919050565b611ba181611b8e565b8114611bac57600080fd5b50565b600081359050611bbe81611b98565b92915050565b60008060408385031215611bdb57611bda611b2b565b5b6000611be985828601611b79565b9250506020611bfa85828601611baf565b9150509250929050565b60008115159050919050565b611c1981611c04565b82525050565b6000602082019050611c346000830184611c10565b92915050565b600060208284031215611c5057611c4f611b2b565b5b6000611c5e84828501611baf565b91505092915050565b611c7081611b50565b82525050565b6000602082019050611c8b6000830184611c67565b92915050565b600060208284031215611ca757611ca6611b2b565b5b6000611cb584828501611b79565b91505092915050565b611cc781611b8e565b82525050565b6000602082019050611ce26000830184611cbe565b92915050565b600080600060608486031215611d0157611d00611b2b565b5b6000611d0f86828701611b79565b9350506020611d2086828701611b79565b9250506040611d3186828701611baf565b9150509250925092565b600060ff82169050919050565b611d5181611d3b565b82525050565b6000602082019050611d6c6000830184611d48565b92915050565b60008060408385031215611d8957611d88611b2b565b5b6000611d9785828601611b79565b9250506020611da885828601611b79565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b611de781611b50565b82525050565b6000611df98383611dde565b60208301905092915050565b6000602082019050919050565b6000611e1d82611db2565b611e278185611dbd565b9350611e3283611dce565b8060005b83811015611e63578151611e4a8882611ded565b9750611e5583611e05565b925050600181019050611e36565b5085935050505092915050565b60006020820190508181036000830152611e8a8184611e12565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611ed957607f821691505b602082108103611eec57611eeb611e92565b5b50919050565b7f41646d696e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b6000611f28601583611a84565b9150611f3382611ef2565b602082019050919050565b60006020820190508181036000830152611f5781611f1b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611f9882611b8e565b9150611fa383611b8e565b9250828203905081811115611fbb57611fba611f5e565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f54696d654c6f636b20696e20706c6163652e0000000000000000000000000000600082015250565b6000612055601283611a84565b91506120608261201f565b602082019050919050565b6000602082019050818103600083015261208481612048565b9050919050565b600061209682611b8e565b91506120a183611b8e565b92508282019050808211156120b9576120b8611f5e565b5b92915050565b7f4d696e74696e67206973207061757365642e0000000000000000000000000000600082015250565b60006120f5601283611a84565b9150612100826120bf565b602082019050919050565b60006020820190508181036000830152612124816120e8565b9050919050565b7f596f752063616e6e6f74206578656375746520746865204d696e742046756e6360008201527f74696f6e2e000000000000000000000000000000000000000000000000000000602082015250565b6000612187602583611a84565b91506121928261212b565b604082019050919050565b600060208201905081810360008301526121b68161217a565b9050919050565b7f43616e6e6f74206d696e74206d6f7265207468616e2032302c30303020434e5460008201527f4f2e000000000000000000000000000000000000000000000000000000000000602082015250565b6000612219602283611a84565b9150612224826121bd565b604082019050919050565b600060208201905081810360008301526122488161220c565b9050919050565b7f596f752063616e6e6f74206578656375746520746865204275726e2046756e6360008201527f74696f6e2e000000000000000000000000000000000000000000000000000000602082015250565b60006122ab602583611a84565b91506122b68261224f565b604082019050919050565b600060208201905081810360008301526122da8161229e565b9050919050565b7f41646d696e20616c7265616479206578697374732e0000000000000000000000600082015250565b6000612317601583611a84565b9150612322826122e1565b602082019050919050565b600060208201905081810360008301526123468161230a565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006123a9602583611a84565b91506123b48261234d565b604082019050919050565b600060208201905081810360008301526123d88161239c565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061243b602683611a84565b9150612446826123df565b604082019050919050565b6000602082019050818103600083015261246a8161242e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006124cd602483611a84565b91506124d882612471565b604082019050919050565b600060208201905081810360008301526124fc816124c0565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061255f602283611a84565b915061256a82612503565b604082019050919050565b6000602082019050818103600083015261258e81612552565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006125cb602083611a84565b91506125d682612595565b602082019050919050565b600060208201905081810360008301526125fa816125be565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612637601d83611a84565b915061264282612601565b602082019050919050565b600060208201905081810360008301526126668161262a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006126c9602583611a84565b91506126d48261266d565b604082019050919050565b600060208201905081810360008301526126f8816126bc565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061275b602383611a84565b9150612766826126ff565b604082019050919050565b6000602082019050818103600083015261278a8161274e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006127ed602683611a84565b91506127f882612791565b604082019050919050565b6000602082019050818103600083015261281c816127e0565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612859601f83611a84565b915061286482612823565b602082019050919050565b600060208201905081810360008301526128888161284c565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006128eb602183611a84565b91506128f68261288f565b604082019050919050565b6000602082019050818103600083015261291a816128de565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061297d602283611a84565b915061298882612921565b604082019050919050565b600060208201905081810360008301526129ac81612970565b905091905056fea264697066735822122063e72cc26396443d67965b771c9ca5349c390edbeef39e1a00dc9a8eeb54092e64736f6c63430008100033
Deployed ByteCode Sourcemap
20641:2242:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9384:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11735:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20946:26;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21614:484;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10504:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12516:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20688:42;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22106:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10346:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13220:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22283:314;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22605:162;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20848:38;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20979:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21270:336;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10675:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2809:103;;;:::i;:::-;;2161:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20737:59;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21156:102;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9603:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13961:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11008:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21013:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11264:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22778:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3067:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9384:100;9438:13;9471:5;9464:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9384:100;:::o;11735:201::-;11818:4;11835:13;11851:12;:10;:12::i;:::-;11835:28;;11874:32;11883:5;11890:7;11899:6;11874:8;:32::i;:::-;11924:4;11917:11;;;11735:201;;;;:::o;20946:26::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21614:484::-;2047:13;:11;:13::i;:::-;21691:6:::1;:16;21698:8;21691:16;;;;;;;;;;;;;;;;;;;;;;;;;21683:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;21763:5;21744:6;:16;21751:8;21744:16;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;21781:13;21797:10;:20;21808:8;21797:20;;;;;;;;;;;;;;;;21781:36;;21859:1;21840:9;:16;;;;:20;;;;:::i;:::-;21832:5;:28;21828:199;;;21877:17;21897:9;21926:1;21907:9;:16;;;;:20;;;;:::i;:::-;21897:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21877:51;;21962:9;21943;21953:5;21943:16;;;;;;;;:::i;:::-;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;22010:5;21986:10;:21;21997:9;21986:21;;;;;;;;;;;;;;;:29;;;;21862:165;21828:199;22037:9;:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;22070:10;:20;22081:8;22070:20;;;;;;;;;;;;;;;22063:27;;;21672:426;21614:484:::0;:::o;10504:108::-;10565:7;10592:12;;10585:19;;10504:108;:::o;12516:295::-;12647:4;12664:15;12682:12;:10;:12::i;:::-;12664:30;;12705:38;12721:4;12727:7;12736:6;12705:15;:38::i;:::-;12754:27;12764:4;12770:2;12774:6;12754:9;:27::i;:::-;12799:4;12792:11;;;12516:295;;;;;:::o;20688:42::-;20729:1;20688:42;:::o;22106:169::-;2047:13;:11;:13::i;:::-;22205:8:::1;;22187:15;:26;22179:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;22258:9;22247:8;:20;;;;22106:169:::0;:::o;10346:93::-;10404:5;10429:2;10422:9;;10346:93;:::o;13220:238::-;13308:4;13325:13;13341:12;:10;:12::i;:::-;13325:28;;13364:64;13373:5;13380:7;13417:10;13389:25;13399:5;13406:7;13389:9;:25::i;:::-;:38;;;;:::i;:::-;13364:8;:64::i;:::-;13446:4;13439:11;;;13220:238;;;;:::o;22283:314::-;22370:1;22358:8;;:13;22350:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;22413:6;:18;22420:10;22413:18;;;;;;;;;;;;;;;;;;;;;;;;;22405:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20779:17;22492:6;:25;;22484:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;22567:22;22573:7;22582:6;22567:5;:22::i;:::-;22283:314;;:::o;22605:162::-;22663:6;:18;22670:10;22663:18;;;;;;;;;;;;;;;;;;;;;;;;;22655:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22734:25;22740:10;22752:6;22734:5;:25::i;:::-;22605:162;:::o;20848:38::-;;;;;;;;;;;;;;;;;;;;;;:::o;20979:27::-;;;;:::o;21270:336::-;2047:13;:11;:13::i;:::-;21366:8:::1;;21348:15;:26;21340:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;21421:6;:16;21428:8;21421:16;;;;;;;;;;;;;;;;;;;;;;;;;21420:17;21412:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;21497:4;21478:6;:16;21485:8;21478:16;;;;;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;21516:9;21531:8;21516:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21597:1;21578:9;:16;;;;:20;;;;:::i;:::-;21555:10;:20;21566:8;21555:20;;;;;;;;;;;;;;;:43;;;;21270:336:::0;:::o;10675:127::-;10749:7;10776:9;:18;10786:7;10776:18;;;;;;;;;;;;;;;;10769:25;;10675:127;;;:::o;2809:103::-;2047:13;:11;:13::i;:::-;2874:30:::1;2901:1;2874:18;:30::i;:::-;2809:103::o:0;2161:87::-;2207:7;2234:6;;;;;;;;;;;2227:13;;2161:87;:::o;20737:59::-;20779:17;20737:59;:::o;21156:102::-;2047:13;:11;:13::i;:::-;21241:9:::1;21230:8;:20;;;;21156:102:::0;:::o;9603:104::-;9659:13;9692:7;9685:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9603:104;:::o;13961:436::-;14054:4;14071:13;14087:12;:10;:12::i;:::-;14071:28;;14110:24;14137:25;14147:5;14154:7;14137:9;:25::i;:::-;14110:52;;14201:15;14181:16;:35;;14173:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14294:60;14303:5;14310:7;14338:15;14319:16;:34;14294:8;:60::i;:::-;14385:4;14378:11;;;;13961:436;;;;:::o;11008:193::-;11087:4;11104:13;11120:12;:10;:12::i;:::-;11104:28;;11143;11153:5;11160:2;11164:6;11143:9;:28::i;:::-;11189:4;11182:11;;;11008:193;;;;:::o;21013:27::-;;;;:::o;11264:151::-;11353:7;11380:11;:18;11392:5;11380:18;;;;;;;;;;;;;;;:27;11399:7;11380:27;;;;;;;;;;;;;;;;11373:34;;11264:151;;;;:::o;22778:98::-;22823:16;22859:9;22852:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22778:98;:::o;3067:201::-;2047:13;:11;:13::i;:::-;3176:1:::1;3156:22;;:8;:22;;::::0;3148:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3232:28;3251:8;3232:18;:28::i;:::-;3067:201:::0;:::o;712:98::-;765:7;792:10;785:17;;712:98;:::o;17988:380::-;18141:1;18124:19;;:5;:19;;;18116:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18222:1;18203:21;;:7;:21;;;18195:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18306:6;18276:11;:18;18288:5;18276:18;;;;;;;;;;;;;;;:27;18295:7;18276:27;;;;;;;;;;;;;;;:36;;;;18344:7;18328:32;;18337:5;18328:32;;;18353:6;18328:32;;;;;;:::i;:::-;;;;;;;;17988:380;;;:::o;2326:132::-;2401:12;:10;:12::i;:::-;2390:23;;:7;:5;:7::i;:::-;:23;;;2382:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2326:132::o;18659:453::-;18794:24;18821:25;18831:5;18838:7;18821:9;:25::i;:::-;18794:52;;18881:17;18861:16;:37;18857:248;;18943:6;18923:16;:26;;18915:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19027:51;19036:5;19043:7;19071:6;19052:16;:25;19027:8;:51::i;:::-;18857:248;18783:329;18659:453;;;:::o;14867:840::-;15014:1;14998:18;;:4;:18;;;14990:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15091:1;15077:16;;:2;:16;;;15069:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15146:38;15167:4;15173:2;15177:6;15146:20;:38::i;:::-;15197:19;15219:9;:15;15229:4;15219:15;;;;;;;;;;;;;;;;15197:37;;15268:6;15253:11;:21;;15245:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15385:6;15371:11;:20;15353:9;:15;15363:4;15353:15;;;;;;;;;;;;;;;:38;;;;15588:6;15571:9;:13;15581:2;15571:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15638:2;15623:26;;15632:4;15623:26;;;15642:6;15623:26;;;;;;:::i;:::-;;;;;;;;15662:37;15682:4;15688:2;15692:6;15662:19;:37::i;:::-;14979:728;14867:840;;;:::o;15994:548::-;16097:1;16078:21;;:7;:21;;;16070:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;16148:49;16177:1;16181:7;16190:6;16148:20;:49::i;:::-;16226:6;16210:12;;:22;;;;;;;:::i;:::-;;;;;;;;16403:6;16381:9;:18;16391:7;16381:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;16457:7;16436:37;;16453:1;16436:37;;;16466:6;16436:37;;;;;;:::i;:::-;;;;;;;;16486:48;16514:1;16518:7;16527:6;16486:19;:48::i;:::-;15994:548;;:::o;16875:675::-;16978:1;16959:21;;:7;:21;;;16951:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;17031:49;17052:7;17069:1;17073:6;17031:20;:49::i;:::-;17093:22;17118:9;:18;17128:7;17118:18;;;;;;;;;;;;;;;;17093:43;;17173:6;17155:14;:24;;17147:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17292:6;17275:14;:23;17254:9;:18;17264:7;17254:18;;;;;;;;;;;;;;;:44;;;;17409:6;17393:12;;:22;;;;;;;;;;;17470:1;17444:37;;17453:7;17444:37;;;17474:6;17444:37;;;;;;:::i;:::-;;;;;;;;17494:48;17514:7;17531:1;17535:6;17494:19;:48::i;:::-;16940:610;16875:675;;:::o;3428:191::-;3502:16;3521:6;;;;;;;;;;;3502:25;;3547:8;3538:6;;:17;;;;;;;;;;;;;;;;;;3602:8;3571:40;;3592:8;3571:40;;;;;;;;;;;;3491:128;3428:191;:::o;19712:125::-;;;;:::o;20441:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::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:329::-;4192:6;4241:2;4229:9;4220:7;4216:23;4212:32;4209:119;;;4247:79;;:::i;:::-;4209:119;4367:1;4392:53;4437:7;4428:6;4417:9;4413:22;4392:53;:::i;:::-;4382:63;;4338:117;4133:329;;;;:::o;4468:118::-;4555:24;4573:5;4555:24;:::i;:::-;4550:3;4543:37;4468:118;;:::o;4592:222::-;4685:4;4723:2;4712:9;4708:18;4700:26;;4736:71;4804:1;4793:9;4789:17;4780:6;4736:71;:::i;:::-;4592:222;;;;:::o;4820:619::-;4897:6;4905;4913;4962:2;4950:9;4941:7;4937:23;4933:32;4930:119;;;4968:79;;:::i;:::-;4930:119;5088:1;5113:53;5158:7;5149:6;5138:9;5134:22;5113:53;:::i;:::-;5103:63;;5059:117;5215:2;5241:53;5286:7;5277:6;5266:9;5262:22;5241:53;:::i;:::-;5231:63;;5186:118;5343:2;5369:53;5414:7;5405:6;5394:9;5390:22;5369:53;:::i;:::-;5359:63;;5314:118;4820:619;;;;;:::o;5445:86::-;5480:7;5520:4;5513:5;5509:16;5498:27;;5445:86;;;:::o;5537:112::-;5620:22;5636:5;5620:22;:::i;:::-;5615:3;5608:35;5537:112;;:::o;5655:214::-;5744:4;5782:2;5771:9;5767:18;5759:26;;5795:67;5859:1;5848:9;5844:17;5835:6;5795:67;:::i;:::-;5655:214;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:114::-;6422:6;6456:5;6450:12;6440:22;;6355:114;;;:::o;6475:184::-;6574:11;6608:6;6603:3;6596:19;6648:4;6643:3;6639:14;6624:29;;6475:184;;;;:::o;6665:132::-;6732:4;6755:3;6747:11;;6785:4;6780:3;6776:14;6768:22;;6665:132;;;:::o;6803:108::-;6880:24;6898:5;6880:24;:::i;:::-;6875:3;6868:37;6803:108;;:::o;6917:179::-;6986:10;7007:46;7049:3;7041:6;7007:46;:::i;:::-;7085:4;7080:3;7076:14;7062:28;;6917:179;;;;:::o;7102:113::-;7172:4;7204;7199:3;7195:14;7187:22;;7102:113;;;:::o;7251:732::-;7370:3;7399:54;7447:5;7399:54;:::i;:::-;7469:86;7548:6;7543:3;7469:86;:::i;:::-;7462:93;;7579:56;7629:5;7579:56;:::i;:::-;7658:7;7689:1;7674:284;7699:6;7696:1;7693:13;7674:284;;;7775:6;7769:13;7802:63;7861:3;7846:13;7802:63;:::i;:::-;7795:70;;7888:60;7941:6;7888:60;:::i;:::-;7878:70;;7734:224;7721:1;7718;7714:9;7709:14;;7674:284;;;7678:14;7974:3;7967:10;;7375:608;;;7251:732;;;;:::o;7989:373::-;8132:4;8170:2;8159:9;8155:18;8147:26;;8219:9;8213:4;8209:20;8205:1;8194:9;8190:17;8183:47;8247:108;8350:4;8341:6;8247:108;:::i;:::-;8239:116;;7989:373;;;;:::o;8368:180::-;8416:77;8413:1;8406:88;8513:4;8510:1;8503:15;8537:4;8534:1;8527:15;8554:320;8598:6;8635:1;8629:4;8625:12;8615:22;;8682:1;8676:4;8672:12;8703:18;8693:81;;8759:4;8751:6;8747:17;8737:27;;8693:81;8821:2;8813:6;8810:14;8790:18;8787:38;8784:84;;8840:18;;:::i;:::-;8784:84;8605:269;8554:320;;;:::o;8880:171::-;9020:23;9016:1;9008:6;9004:14;8997:47;8880:171;:::o;9057:366::-;9199:3;9220:67;9284:2;9279:3;9220:67;:::i;:::-;9213:74;;9296:93;9385:3;9296:93;:::i;:::-;9414:2;9409:3;9405:12;9398:19;;9057:366;;;:::o;9429:419::-;9595:4;9633:2;9622:9;9618:18;9610:26;;9682:9;9676:4;9672:20;9668:1;9657:9;9653:17;9646:47;9710:131;9836:4;9710:131;:::i;:::-;9702:139;;9429:419;;;:::o;9854:180::-;9902:77;9899:1;9892:88;9999:4;9996:1;9989:15;10023:4;10020:1;10013:15;10040:194;10080:4;10100:20;10118:1;10100:20;:::i;:::-;10095:25;;10134:20;10152:1;10134:20;:::i;:::-;10129:25;;10178:1;10175;10171:9;10163:17;;10202:1;10196:4;10193:11;10190:37;;;10207:18;;:::i;:::-;10190:37;10040:194;;;;:::o;10240:180::-;10288:77;10285:1;10278:88;10385:4;10382:1;10375:15;10409:4;10406:1;10399:15;10426:180;10474:77;10471:1;10464:88;10571:4;10568:1;10561:15;10595:4;10592:1;10585:15;10612:168;10752:20;10748:1;10740:6;10736:14;10729:44;10612:168;:::o;10786:366::-;10928:3;10949:67;11013:2;11008:3;10949:67;:::i;:::-;10942:74;;11025:93;11114:3;11025:93;:::i;:::-;11143:2;11138:3;11134:12;11127:19;;10786:366;;;:::o;11158:419::-;11324:4;11362:2;11351:9;11347:18;11339:26;;11411:9;11405:4;11401:20;11397:1;11386:9;11382:17;11375:47;11439:131;11565:4;11439:131;:::i;:::-;11431:139;;11158:419;;;:::o;11583:191::-;11623:3;11642:20;11660:1;11642:20;:::i;:::-;11637:25;;11676:20;11694:1;11676:20;:::i;:::-;11671:25;;11719:1;11716;11712:9;11705:16;;11740:3;11737:1;11734:10;11731:36;;;11747:18;;:::i;:::-;11731:36;11583:191;;;;:::o;11780:168::-;11920:20;11916:1;11908:6;11904:14;11897:44;11780:168;:::o;11954:366::-;12096:3;12117:67;12181:2;12176:3;12117:67;:::i;:::-;12110:74;;12193:93;12282:3;12193:93;:::i;:::-;12311:2;12306:3;12302:12;12295:19;;11954:366;;;:::o;12326:419::-;12492:4;12530:2;12519:9;12515:18;12507:26;;12579:9;12573:4;12569:20;12565:1;12554:9;12550:17;12543:47;12607:131;12733:4;12607:131;:::i;:::-;12599:139;;12326:419;;;:::o;12751:224::-;12891:34;12887:1;12879:6;12875:14;12868:58;12960:7;12955:2;12947:6;12943:15;12936:32;12751:224;:::o;12981:366::-;13123:3;13144:67;13208:2;13203:3;13144:67;:::i;:::-;13137:74;;13220:93;13309:3;13220:93;:::i;:::-;13338:2;13333:3;13329:12;13322:19;;12981:366;;;:::o;13353:419::-;13519:4;13557:2;13546:9;13542:18;13534:26;;13606:9;13600:4;13596:20;13592:1;13581:9;13577:17;13570:47;13634:131;13760:4;13634:131;:::i;:::-;13626:139;;13353:419;;;:::o;13778:221::-;13918:34;13914:1;13906:6;13902:14;13895:58;13987:4;13982:2;13974:6;13970:15;13963:29;13778:221;:::o;14005:366::-;14147:3;14168:67;14232:2;14227:3;14168:67;:::i;:::-;14161:74;;14244:93;14333:3;14244:93;:::i;:::-;14362:2;14357:3;14353:12;14346:19;;14005:366;;;:::o;14377:419::-;14543:4;14581:2;14570:9;14566:18;14558:26;;14630:9;14624:4;14620:20;14616:1;14605:9;14601:17;14594:47;14658:131;14784:4;14658:131;:::i;:::-;14650:139;;14377:419;;;:::o;14802:224::-;14942:34;14938:1;14930:6;14926:14;14919:58;15011:7;15006:2;14998:6;14994:15;14987:32;14802:224;:::o;15032:366::-;15174:3;15195:67;15259:2;15254:3;15195:67;:::i;:::-;15188:74;;15271:93;15360:3;15271:93;:::i;:::-;15389:2;15384:3;15380:12;15373:19;;15032:366;;;:::o;15404:419::-;15570:4;15608:2;15597:9;15593:18;15585:26;;15657:9;15651:4;15647:20;15643:1;15632:9;15628:17;15621:47;15685:131;15811:4;15685:131;:::i;:::-;15677:139;;15404:419;;;:::o;15829:171::-;15969:23;15965:1;15957:6;15953:14;15946:47;15829:171;:::o;16006:366::-;16148:3;16169:67;16233:2;16228:3;16169:67;:::i;:::-;16162:74;;16245:93;16334:3;16245:93;:::i;:::-;16363:2;16358:3;16354:12;16347:19;;16006:366;;;:::o;16378:419::-;16544:4;16582:2;16571:9;16567:18;16559:26;;16631:9;16625:4;16621:20;16617:1;16606:9;16602:17;16595:47;16659:131;16785:4;16659:131;:::i;:::-;16651:139;;16378:419;;;:::o;16803:224::-;16943:34;16939:1;16931:6;16927:14;16920:58;17012:7;17007:2;16999:6;16995:15;16988:32;16803:224;:::o;17033:366::-;17175:3;17196:67;17260:2;17255:3;17196:67;:::i;:::-;17189:74;;17272:93;17361:3;17272:93;:::i;:::-;17390:2;17385:3;17381:12;17374:19;;17033:366;;;:::o;17405:419::-;17571:4;17609:2;17598:9;17594:18;17586:26;;17658:9;17652:4;17648:20;17644:1;17633:9;17629:17;17622:47;17686:131;17812:4;17686:131;:::i;:::-;17678:139;;17405:419;;;:::o;17830:225::-;17970:34;17966:1;17958:6;17954:14;17947:58;18039:8;18034:2;18026:6;18022:15;18015:33;17830:225;:::o;18061:366::-;18203:3;18224:67;18288:2;18283:3;18224:67;:::i;:::-;18217:74;;18300:93;18389:3;18300:93;:::i;:::-;18418:2;18413:3;18409:12;18402:19;;18061:366;;;:::o;18433:419::-;18599:4;18637:2;18626:9;18622:18;18614:26;;18686:9;18680:4;18676:20;18672:1;18661:9;18657:17;18650:47;18714:131;18840:4;18714:131;:::i;:::-;18706:139;;18433:419;;;:::o;18858:223::-;18998:34;18994:1;18986:6;18982:14;18975:58;19067:6;19062:2;19054:6;19050:15;19043:31;18858:223;:::o;19087:366::-;19229:3;19250:67;19314:2;19309:3;19250:67;:::i;:::-;19243:74;;19326:93;19415:3;19326:93;:::i;:::-;19444:2;19439:3;19435:12;19428:19;;19087:366;;;:::o;19459:419::-;19625:4;19663:2;19652:9;19648:18;19640:26;;19712:9;19706:4;19702:20;19698:1;19687:9;19683:17;19676:47;19740:131;19866:4;19740:131;:::i;:::-;19732:139;;19459:419;;;:::o;19884:221::-;20024:34;20020:1;20012:6;20008:14;20001:58;20093:4;20088:2;20080:6;20076:15;20069:29;19884:221;:::o;20111:366::-;20253:3;20274:67;20338:2;20333:3;20274:67;:::i;:::-;20267:74;;20350:93;20439:3;20350:93;:::i;:::-;20468:2;20463:3;20459:12;20452:19;;20111:366;;;:::o;20483:419::-;20649:4;20687:2;20676:9;20672:18;20664:26;;20736:9;20730:4;20726:20;20722:1;20711:9;20707:17;20700:47;20764:131;20890:4;20764:131;:::i;:::-;20756:139;;20483:419;;;:::o;20908:182::-;21048:34;21044:1;21036:6;21032:14;21025:58;20908:182;:::o;21096:366::-;21238:3;21259:67;21323:2;21318:3;21259:67;:::i;:::-;21252:74;;21335:93;21424:3;21335:93;:::i;:::-;21453:2;21448:3;21444:12;21437:19;;21096:366;;;:::o;21468:419::-;21634:4;21672:2;21661:9;21657:18;21649:26;;21721:9;21715:4;21711:20;21707:1;21696:9;21692:17;21685:47;21749:131;21875:4;21749:131;:::i;:::-;21741:139;;21468:419;;;:::o;21893:179::-;22033:31;22029:1;22021:6;22017:14;22010:55;21893:179;:::o;22078:366::-;22220:3;22241:67;22305:2;22300:3;22241:67;:::i;:::-;22234:74;;22317:93;22406:3;22317:93;:::i;:::-;22435:2;22430:3;22426:12;22419:19;;22078:366;;;:::o;22450:419::-;22616:4;22654:2;22643:9;22639:18;22631:26;;22703:9;22697:4;22693:20;22689:1;22678:9;22674:17;22667:47;22731:131;22857:4;22731:131;:::i;:::-;22723:139;;22450:419;;;:::o;22875:224::-;23015:34;23011:1;23003:6;22999:14;22992:58;23084:7;23079:2;23071:6;23067:15;23060:32;22875:224;:::o;23105:366::-;23247:3;23268:67;23332:2;23327:3;23268:67;:::i;:::-;23261:74;;23344:93;23433:3;23344:93;:::i;:::-;23462:2;23457:3;23453:12;23446:19;;23105:366;;;:::o;23477:419::-;23643:4;23681:2;23670:9;23666:18;23658:26;;23730:9;23724:4;23720:20;23716:1;23705:9;23701:17;23694:47;23758:131;23884:4;23758:131;:::i;:::-;23750:139;;23477:419;;;:::o;23902:222::-;24042:34;24038:1;24030:6;24026:14;24019:58;24111:5;24106:2;24098:6;24094:15;24087:30;23902:222;:::o;24130:366::-;24272:3;24293:67;24357:2;24352:3;24293:67;:::i;:::-;24286:74;;24369:93;24458:3;24369:93;:::i;:::-;24487:2;24482:3;24478:12;24471:19;;24130:366;;;:::o;24502:419::-;24668:4;24706:2;24695:9;24691:18;24683:26;;24755:9;24749:4;24745:20;24741:1;24730:9;24726:17;24719:47;24783:131;24909:4;24783:131;:::i;:::-;24775:139;;24502:419;;;:::o;24927:225::-;25067:34;25063:1;25055:6;25051:14;25044:58;25136:8;25131:2;25123:6;25119:15;25112:33;24927:225;:::o;25158:366::-;25300:3;25321:67;25385:2;25380:3;25321:67;:::i;:::-;25314:74;;25397:93;25486:3;25397:93;:::i;:::-;25515:2;25510:3;25506:12;25499:19;;25158:366;;;:::o;25530:419::-;25696:4;25734:2;25723:9;25719:18;25711:26;;25783:9;25777:4;25773:20;25769:1;25758:9;25754:17;25747:47;25811:131;25937:4;25811:131;:::i;:::-;25803:139;;25530:419;;;:::o;25955:181::-;26095:33;26091:1;26083:6;26079:14;26072:57;25955:181;:::o;26142:366::-;26284:3;26305:67;26369:2;26364:3;26305:67;:::i;:::-;26298:74;;26381:93;26470:3;26381:93;:::i;:::-;26499:2;26494:3;26490:12;26483:19;;26142:366;;;:::o;26514:419::-;26680:4;26718:2;26707:9;26703:18;26695:26;;26767:9;26761:4;26757:20;26753:1;26742:9;26738:17;26731:47;26795:131;26921:4;26795:131;:::i;:::-;26787:139;;26514:419;;;:::o;26939:220::-;27079:34;27075:1;27067:6;27063:14;27056:58;27148:3;27143:2;27135:6;27131:15;27124:28;26939:220;:::o;27165:366::-;27307:3;27328:67;27392:2;27387:3;27328:67;:::i;:::-;27321:74;;27404:93;27493:3;27404:93;:::i;:::-;27522:2;27517:3;27513:12;27506:19;;27165:366;;;:::o;27537:419::-;27703:4;27741:2;27730:9;27726:18;27718:26;;27790:9;27784:4;27780:20;27776:1;27765:9;27761:17;27754:47;27818:131;27944:4;27818:131;:::i;:::-;27810:139;;27537:419;;;:::o;27962:221::-;28102:34;28098:1;28090:6;28086:14;28079:58;28171:4;28166:2;28158:6;28154:15;28147:29;27962:221;:::o;28189:366::-;28331:3;28352:67;28416:2;28411:3;28352:67;:::i;:::-;28345:74;;28428:93;28517:3;28428:93;:::i;:::-;28546:2;28541:3;28537:12;28530:19;;28189:366;;;:::o;28561:419::-;28727:4;28765:2;28754:9;28750:18;28742:26;;28814:9;28808:4;28804:20;28800:1;28789:9;28785:17;28778:47;28842:131;28968:4;28842:131;:::i;:::-;28834:139;;28561:419;;;:::o
Swarm Source
ipfs://63e72cc26396443d67965b771c9ca5349c390edbeef39e1a00dc9a8eeb54092e