ERC-1155
Source Code
Overview
Max Total Supply
0
Holders
9
Transfers
-
0
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
| # | Exchange | Pair | Price | 24H Volume | % Volume |
|---|
Contract Name:
Skills
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2021-09-25
*/
// File: contracts/MetadataUtils.sol
pragma solidity ^0.8.0;
function toString(uint256 value) pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT license
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/// [MIT License]
/// @title Base64
/// @notice Provides a function for encoding some bytes in base64
/// @author Brecht Devos <brecht@loopring.org>
library Base64 {
bytes internal constant TABLE =
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
/// @notice Encodes some bytes to the base64 representation
function encode(bytes memory data) internal pure returns (string memory) {
uint256 len = data.length;
if (len == 0) return "";
// multiply by 4/3 rounded up
uint256 encodedLen = 4 * ((len + 2) / 3);
// Add some extra buffer at the end
bytes memory result = new bytes(encodedLen + 32);
bytes memory table = TABLE;
assembly {
let tablePtr := add(table, 1)
let resultPtr := add(result, 32)
for {
let i := 0
} lt(i, len) {
} {
i := add(i, 3)
let input := and(mload(add(data, i)), 0xffffff)
let out := mload(add(tablePtr, and(shr(18, input), 0x3F)))
out := shl(8, out)
out := add(
out,
and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF)
)
out := shl(8, out)
out := add(
out,
and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF)
)
out := shl(8, out)
out := add(
out,
and(mload(add(tablePtr, and(input, 0x3F))), 0xFF)
)
out := shl(224, out)
mstore(resultPtr, out)
resultPtr := add(resultPtr, 4)
}
switch mod(len, 3)
case 1 {
mstore(sub(resultPtr, 2), shl(240, 0x3d3d))
}
case 2 {
mstore(sub(resultPtr, 1), shl(248, 0x3d))
}
mstore(result, encodedLen)
}
return string(result);
}
}
// File: contracts/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: contracts/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() {
_setOwner(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_setOwner(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_setOwner(newOwner);
}
function _setOwner(address newOwner) private {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// File: contracts/ReentrancyGuard.sol
pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and make it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
// On the first call to nonReentrant, _notEntered will be true
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}
// File: contracts/IERC165.sol
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// File: contracts/IERC1155.sol
pragma solidity ^0.8.0;
/**
* @dev Required interface of an ERC1155 compliant contract, as defined in the
* https://eips.ethereum.org/EIPS/eip-1155[EIP].
*
* _Available since v3.1._
*/
interface IERC1155 is IERC165 {
/**
* @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
*/
event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);
/**
* @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
* transfers.
*/
event TransferBatch(
address indexed operator,
address indexed from,
address indexed to,
uint256[] ids,
uint256[] values
);
/**
* @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
* `approved`.
*/
event ApprovalForAll(address indexed account, address indexed operator, bool approved);
/**
* @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
*
* If an {URI} event was emitted for `id`, the standard
* https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
* returned by {IERC1155MetadataURI-uri}.
*/
event URI(string value, uint256 indexed id);
/**
* @dev Returns the amount of tokens of token type `id` owned by `account`.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function balanceOf(address account, uint256 id) external view returns (uint256);
/**
* @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
*
* Requirements:
*
* - `accounts` and `ids` must have the same length.
*/
function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
external
view
returns (uint256[] memory);
/**
* @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
*
* Emits an {ApprovalForAll} event.
*
* Requirements:
*
* - `operator` cannot be the caller.
*/
function setApprovalForAll(address operator, bool approved) external;
/**
* @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
*
* See {setApprovalForAll}.
*/
function isApprovedForAll(address account, address operator) external view returns (bool);
/**
* @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
*
* Emits a {TransferSingle} event.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
* - `from` must have a balance of tokens of type `id` of at least `amount`.
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
* acceptance magic value.
*/
function safeTransferFrom(
address from,
address to,
uint256 id,
uint256 amount,
bytes calldata data
) external;
/**
* @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
*
* Emits a {TransferBatch} event.
*
* Requirements:
*
* - `ids` and `amounts` must have the same length.
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
* acceptance magic value.
*/
function safeBatchTransferFrom(
address from,
address to,
uint256[] calldata ids,
uint256[] calldata amounts,
bytes calldata data
) external;
}
// File: contracts/IERC721.sol
pragma solidity ^0.8.0;
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
}
// File: contracts/IERC721Enumerable.sol
pragma solidity ^0.8.0;
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
*/
function tokenByIndex(uint256 index) external view returns (uint256);
}
// File: contracts/ERC165.sol
pragma solidity ^0.8.0;
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}
// File: contracts/Address.sol
pragma solidity ^0.8.0;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
assembly {
size := extcodesize(account)
}
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// File: contracts/IERC1155MetadataURI.sol
pragma solidity ^0.8.0;
/**
* @dev Interface of the optional ERC1155MetadataExtension interface, as defined
* in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
*
* _Available since v3.1._
*/
interface IERC1155MetadataURI is IERC1155 {
/**
* @dev Returns the URI for token type `id`.
*
* If the `\{id\}` substring is present in the URI, it must be replaced by
* clients with the actual token type ID.
*/
function uri(uint256 id) external view returns (string memory);
}
// File: contracts/IERC1155Receiver.sol
pragma solidity ^0.8.0;
/**
* @dev _Available since v3.1._
*/
interface IERC1155Receiver is IERC165 {
/**
@dev Handles the receipt of a single ERC1155 token type. This function is
called at the end of a `safeTransferFrom` after the balance has been updated.
To accept the transfer, this must return
`bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
(i.e. 0xf23a6e61, or its own function selector).
@param operator The address which initiated the transfer (i.e. msg.sender)
@param from The address which previously owned the token
@param id The ID of the token being transferred
@param value The amount of tokens being transferred
@param data Additional data with no specified format
@return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
*/
function onERC1155Received(
address operator,
address from,
uint256 id,
uint256 value,
bytes calldata data
) external returns (bytes4);
/**
@dev Handles the receipt of a multiple ERC1155 token types. This function
is called at the end of a `safeBatchTransferFrom` after the balances have
been updated. To accept the transfer(s), this must return
`bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
(i.e. 0xbc197c81, or its own function selector).
@param operator The address which initiated the batch transfer (i.e. msg.sender)
@param from The address which previously owned the token
@param ids An array containing ids of each token being transferred (order and length must match values array)
@param values An array containing amounts of each token being transferred (order and length must match ids array)
@param data Additional data with no specified format
@return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
*/
function onERC1155BatchReceived(
address operator,
address from,
uint256[] calldata ids,
uint256[] calldata values,
bytes calldata data
) external returns (bytes4);
}
// File: contracts/ERC1155.sol
pragma solidity ^0.8.0;
/**
* @dev Implementation of the basic standard multi-token.
* See https://eips.ethereum.org/EIPS/eip-1155
* Originally based on code by Enjin: https://github.com/enjin/erc-1155
*
* _Available since v3.1._
*/
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
using Address for address;
// Mapping from token ID to account balances
mapping(uint256 => mapping(address => uint256)) internal _balances;
// Mapping from account to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
// Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
string private _uri;
/**
* @dev See {_setURI}.
*/
constructor(string memory uri_) {
_setURI(uri_);
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC1155).interfaceId ||
interfaceId == type(IERC1155MetadataURI).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC1155MetadataURI-uri}.
*
* This implementation returns the same URI for *all* token types. It relies
* on the token type ID substitution mechanism
* https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
*
* Clients calling this function must replace the `\{id\}` substring with the
* actual token type ID.
*/
function uri(uint256) public view virtual override returns (string memory) {
return _uri;
}
/**
* @dev See {IERC1155-balanceOf}.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
require(account != address(0), "ERC1155: balance query for the zero address");
return _balances[id][account];
}
/**
* @dev See {IERC1155-balanceOfBatch}.
*
* Requirements:
*
* - `accounts` and `ids` must have the same length.
*/
function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
public
view
virtual
override
returns (uint256[] memory)
{
require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");
uint256[] memory batchBalances = new uint256[](accounts.length);
for (uint256 i = 0; i < accounts.length; ++i) {
batchBalances[i] = balanceOf(accounts[i], ids[i]);
}
return batchBalances;
}
/**
* @dev See {IERC1155-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
require(_msgSender() != operator, "ERC1155: setting approval status for self");
_operatorApprovals[_msgSender()][operator] = approved;
emit ApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC1155-isApprovedForAll}.
*/
function isApprovedForAll(address account, address operator) public view virtual override returns (bool) {
return _operatorApprovals[account][operator];
}
/**
* @dev See {IERC1155-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 id,
uint256 amount,
bytes memory data
) public virtual override {
require(
from == _msgSender() || isApprovedForAll(from, _msgSender()),
"ERC1155: caller is not owner nor approved"
);
_safeTransferFrom(from, to, id, amount, data);
}
/**
* @dev See {IERC1155-safeBatchTransferFrom}.
*/
function safeBatchTransferFrom(
address from,
address to,
uint256[] memory ids,
uint256[] memory amounts,
bytes memory data
) public virtual override {
require(
from == _msgSender() || isApprovedForAll(from, _msgSender()),
"ERC1155: transfer caller is not owner nor approved"
);
_safeBatchTransferFrom(from, to, ids, amounts, data);
}
/**
* @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
*
* Emits a {TransferSingle} event.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `from` must have a balance of tokens of type `id` of at least `amount`.
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
* acceptance magic value.
*/
function _safeTransferFrom(
address from,
address to,
uint256 id,
uint256 amount,
bytes memory data
) internal virtual {
require(to != address(0), "ERC1155: transfer to the zero address");
address operator = _msgSender();
_beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);
uint256 fromBalance = _balances[id][from];
require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
unchecked {
_balances[id][from] = fromBalance - amount;
}
_balances[id][to] += amount;
emit TransferSingle(operator, from, to, id, amount);
_doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
}
/**
* @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
*
* Emits a {TransferBatch} event.
*
* Requirements:
*
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
* acceptance magic value.
*/
function _safeBatchTransferFrom(
address from,
address to,
uint256[] memory ids,
uint256[] memory amounts,
bytes memory data
) internal virtual {
require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
require(to != address(0), "ERC1155: transfer to the zero address");
address operator = _msgSender();
_beforeTokenTransfer(operator, from, to, ids, amounts, data);
for (uint256 i = 0; i < ids.length; ++i) {
uint256 id = ids[i];
uint256 amount = amounts[i];
uint256 fromBalance = _balances[id][from];
require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
unchecked {
_balances[id][from] = fromBalance - amount;
}
_balances[id][to] += amount;
}
emit TransferBatch(operator, from, to, ids, amounts);
_doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
}
/**
* @dev Sets a new URI for all token types, by relying on the token type ID
* substitution mechanism
* https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
*
* By this mechanism, any occurrence of the `\{id\}` substring in either the
* URI or any of the amounts in the JSON file at said URI will be replaced by
* clients with the token type ID.
*
* For example, the `https://token-cdn-domain/\{id\}.json` URI would be
* interpreted by clients as
* `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
* for token type ID 0x4cce0.
*
* See {uri}.
*
* Because these URIs cannot be meaningfully represented by the {URI} event,
* this function emits no events.
*/
function _setURI(string memory newuri) internal virtual {
_uri = newuri;
}
/**
* @dev Creates `amount` tokens of token type `id`, and assigns them to `account`.
*
* Emits a {TransferSingle} event.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
* acceptance magic value.
*/
function _mint(
address account,
uint256 id,
uint256 amount,
bytes memory data
) internal virtual {
require(account != address(0), "ERC1155: mint to the zero address");
address operator = _msgSender();
_beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data);
_balances[id][account] += amount;
emit TransferSingle(operator, address(0), account, id, amount);
_doSafeTransferAcceptanceCheck(operator, address(0), account, id, amount, data);
}
/**
* @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
*
* Requirements:
*
* - `ids` and `amounts` must have the same length.
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
* acceptance magic value.
*/
function _mintBatch(
address to,
uint256[] memory ids,
uint256[] memory amounts,
bytes memory data
) internal virtual {
require(to != address(0), "ERC1155: mint to the zero address");
require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
address operator = _msgSender();
_beforeTokenTransfer(operator, address(0), to, ids, amounts, data);
for (uint256 i = 0; i < ids.length; i++) {
_balances[ids[i]][to] += amounts[i];
}
emit TransferBatch(operator, address(0), to, ids, amounts);
_doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
}
/**
* @dev Destroys `amount` tokens of token type `id` from `account`
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens of token type `id`.
*/
function _burn(
address account,
uint256 id,
uint256 amount
) internal virtual {
require(account != address(0), "ERC1155: burn from the zero address");
address operator = _msgSender();
_beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");
uint256 accountBalance = _balances[id][account];
require(accountBalance >= amount, "ERC1155: burn amount exceeds balance");
unchecked {
_balances[id][account] = accountBalance - amount;
}
emit TransferSingle(operator, account, address(0), id, amount);
}
/**
* @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
*
* Requirements:
*
* - `ids` and `amounts` must have the same length.
*/
function _burnBatch(
address account,
uint256[] memory ids,
uint256[] memory amounts
) internal virtual {
require(account != address(0), "ERC1155: burn from the zero address");
require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
address operator = _msgSender();
_beforeTokenTransfer(operator, account, address(0), ids, amounts, "");
for (uint256 i = 0; i < ids.length; i++) {
uint256 id = ids[i];
uint256 amount = amounts[i];
uint256 accountBalance = _balances[id][account];
require(accountBalance >= amount, "ERC1155: burn amount exceeds balance");
unchecked {
_balances[id][account] = accountBalance - amount;
}
}
emit TransferBatch(operator, account, address(0), ids, amounts);
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning, as well as batched variants.
*
* The same hook is called on both single and batched variants. For single
* transfers, the length of the `id` and `amount` arrays will be 1.
*
* Calling conditions (for each `id` and `amount` pair):
*
* - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* of token type `id` will be transferred to `to`.
* - When `from` is zero, `amount` tokens of token type `id` will be minted
* for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
* will be burned.
* - `from` and `to` are never both zero.
* - `ids` and `amounts` have the same, non-zero length.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address operator,
address from,
address to,
uint256[] memory ids,
uint256[] memory amounts,
bytes memory data
) internal virtual {}
function _doSafeTransferAcceptanceCheck(
address operator,
address from,
address to,
uint256 id,
uint256 amount,
bytes memory data
) private {
if (to.isContract()) {
try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
if (response != IERC1155Receiver.onERC1155Received.selector) {
revert("ERC1155: ERC1155Receiver rejected tokens");
}
} catch Error(string memory reason) {
revert(reason);
} catch {
revert("ERC1155: transfer to non ERC1155Receiver implementer");
}
}
}
function _doSafeBatchTransferAcceptanceCheck(
address operator,
address from,
address to,
uint256[] memory ids,
uint256[] memory amounts,
bytes memory data
) private {
if (to.isContract()) {
try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
bytes4 response
) {
if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
revert("ERC1155: ERC1155Receiver rejected tokens");
}
} catch Error(string memory reason) {
revert(reason);
} catch {
revert("ERC1155: transfer to non ERC1155Receiver implementer");
}
}
}
function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
uint256[] memory array = new uint256[](1);
array[0] = element;
return array;
}
}
// File: contracts/Skills.sol
//SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.7;
contract Skills is ERC1155, ReentrancyGuard, Ownable {
// first 4 are Epic, second 4 are Rare, remaining are Common
string[] private meleeAttacks = [
"Mortal Wound", // 0
"Heart Thrust", // 1
"Berserker", // 2
"Killing Spree", // 3
"Rage of the Ape", // 4
"Spinal Slice", // 5
"Death Blow", // 6
"Ocular Slash ", // 7
"Grasp of the Kraken", // 8
"Heroic Strike", // 9
"Sweep", // 10
"Backstab", // 11
"Silent Strike", // 12
"Skull Bash", // 13
"Garrote", // 14
"Mutilating Blow", // 15
"Tiger Maul", // 16
"Rune Strike", // 17
"Cleave", // 18
"Dragon Tail Swipe", // 19
"Punch in the Mouth" // 20
];
string[] private rangeAttacks = [
"Multishot", // 0
"Kill Shot", // 1
"Shot Through The Heart", // 2
"Hit and Run", // 3
"Blot Out the Sun", // 4
"Barrage of Bullets", // 5
"Ancestral Arrow", // 6
"Arrow of Armageddon", // 7
"Double Strafe", // 8
"Poison Arrow", // 9
"Tranquilizing Dart", // 10
"Frost Shot", // 11
"Burning Arrow", // 12
"Blinding Bolt", // 13
"Degenerate Dart", // 14
"Shaft of Glory" // 15
];
string[] private elementalSpells = [
"Meteor", // 0
"Earthquake", // 1
"Ball Lightning", // 2
"Blizzard", // 3
"Cataclysm", // 4
"Maelstrom Bolt", // 5
"Black Dragon Breath", // 6
"Comet Strike", // 7
"Fireball", // 8
"Firewall", // 9
"Firestorm", // 10
"Dragon Breath", // 11
"Ice Spear", // 12
"Frost Touch", // 13
"Frozen Heart", // 14
"Frost Cone", // 15
"Electric Personality", // 16
"Lightning Strike", // 17
"Chain Lightning", // 18
"Electric Boogaloo", // 19
"Landslide", // 20
"Sinking Sand", // 21
"Earth Spike", // 22
"Drowning Deluge" // 23
];
string[] private spiritualSpells = [
"Searing Sun", // 0
"Divine Indignation", // 1
"Death and Decay", // 2
"Hurricane of the Mother", // 3
"Divine Retribution", // 4
"Demonic Despair", // 5
"Praise The Sun", // 6
"Pandemonium", // 7
"Light of the Moon", // 8
"Spear of Brilliance", // 9
"Raise Dead", // 10
"Seraph Smite", // 11
"Soul Arrow", // 12
"Arrow of Evil", // 13
"Bolt of Rage", // 14
"Wroth of the Mother", // 15
"Devilish Deed", // 16
"Demon Soul" // 17
];
string[] private curses = [
"Doom", // 0
"Regress to the Mean", // 1
"Curse of the Winner", // 2
"Not Gonna Make It", // 3
"Plague of Frogs", // 4
"Curse of the Ape", // 5
"Bad Morning", // 6
"Demise of the Degenerate", // 7
"Touch of Sorrow", // 8
"Curse of Down Bad", // 9
"Kiss of Death", // 10
"Blight of the Moon", // 11
"Morbid Sun", // 12
"Torment of Titans", // 13
"Agonizing Gaze", // 14
"Change of Heart", // 15
"Curse of Anger" // 16
];
string[] private heals = [
"Divine Touch", // 0
"Soul Glow", // 1
"Time Heals All Wounds", // 2
"Innervate", // 3
"Infectious Heal", // 4
"Raise the Dead", // 5
"Healed and Shield", // 6
"You're Gonna Make It", // 7
"Healing Touch", // 8
"Restoring Wind", // 9
"Healing Current", // 10
"Wellspring", // 11
"Reviving Touch", // 12
"Rejuvenating Surge" // 13
];
string[] private buffs = [
"We're All Gonna Make It", // 0
"Vigor of the Twins", // 1
"Fury of the Ape", // 2
"Invigorating Touch", // 3
"Frozen Touch", // 4
"Blessing of Good Morning", // 5
"Ancient Vitriol", // 6
"Luck and Leverage", // 7
"Dragonskin", // 8
"Sight of Enlightenment", // 9
"Wind In Your Back", // 10
"Fury of Giants", // 11
"Song of Power", // 12
"Cleverness of the Fox", // 13
"Strength of Vengeance", // 14
"Wind Walker", // 15
"Scent of Blood", // 16
"Thick Skin", // 17
"Hymn of Protection", // 18
"Blessing of Light", // 19
"Iron Flesh" // 20
];
string[] private defensiveSkills = [
"Haste of the Fox", // 0
"Blessing of Protection", // 1
"Vanish", // 2
"Sacrifice of the Martyr", // 3
"Evasive Maneuver", // 4
"Perfect Roll", // 5
"Taunt 'Em All", // 6
"Determination of a Degenerate", // 7
"Dodge", // 8
"Protect", // 9
"Taunt", // 10
"Feign Death", // 11
"Counter", // 12
"Shield Block" // 13
];
string[] private namePrefixes = [
"", // 0
"Dom", // 1
"Hoffman", // 2
"Nish", // 3
"Nuge", // 4
"Orgeos", // 5
"Looter", // 6
"Italik", // 7
"Reppap", // 8
"Oni", // 9
"Zurhahs", // 10
"Ackson", // 11
"gm enjoyer", // 12
"Chad", // 13
"Adventurer" // 14
];
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
IERC721Enumerable constant lootContract = IERC721Enumerable(0xFF9C1b15B16263C61d017ee9F65C50e4AE0113D7);
mapping(uint256 => uint256) _genSkillCooldown;
uint256 constant skillIdOffset = 57896044618658097711785492504343953926634992332820282019728792003956564819968; // offset skill ids to halfway into the token id range
uint16 constant setCap = 16000;
uint256 lastMintedSetId = 8223;
// Minting functions
function _claimSet(uint256 setId) private {
uint256[] memory tokenIds = _getSetSkillIds(setId);
uint256[] memory amounts = new uint256[](9);
amounts[0] = uint256(1);
amounts[1] = uint256(1);
amounts[2] = uint256(1);
amounts[3] = uint256(1);
amounts[4] = uint256(1);
amounts[5] = uint256(1);
amounts[6] = uint256(1);
amounts[7] = uint256(1);
amounts[8] = uint256(1);
_mintBatch(_msgSender(), tokenIds, amounts, "");
_owners[setId] = _msgSender();
}
function claimAvailableSet() public {
require(lastMintedSetId <= setCap, "All available sets have been claimed");
_claimSet(lastMintedSetId);
lastMintedSetId++;
}
function claimWithLoot(uint256 tokenId) public {
require(lootContract.ownerOf(tokenId) == _msgSender(), "you do not own the lootbag for this set of skill");
require(!_exists(tokenId), "Set has already been claimed");
_claimSet(tokenId);
}
function claimAllWithLoot() public {
uint256 tokenBalanceOwner = lootContract.balanceOf(_msgSender());
require(tokenBalanceOwner > 0, "You do not own any Loot bags");
for (uint256 i = 0; i < tokenBalanceOwner; i++) {
uint256 lootId = lootContract.tokenOfOwnerByIndex(_msgSender(), i);
if(!_exists(lootId)) {
_claimSet(lootId);
}
}
}
function ownerClaimSet(uint256 setId) public onlyOwner {
require( setId > 8000 && setId < 8223, "Not a reserved Set ID");
require(!_exists(setId), "You already own this set");
_claimSet(setId);
}
function skillUp(uint256 skillId) public {
require(skillId < skillIdOffset, "Please use the Skill ID, not the token ID");
skillId += skillIdOffset;
_burn(_msgSender(), skillId, 2);
uint256 skillId1Up = skillId + 2175; // total skills * total name prefixes
_mint(_msgSender(), skillId1Up, 1, "");
}
function skillDown(uint256 skillId) public {
require(skillId < skillIdOffset, "Please use the Skill ID, not the token ID");
skillId += skillIdOffset;
_burn(_msgSender(), skillId, 1);
uint256 skillId1Down = skillId - 2175;
_mint(_msgSender(), skillId1Down, 2, "");
}
function skillUpMulti(uint256 skillId, uint256 steps) public {
require(skillId < skillIdOffset, "Please use the Skill ID, not the token ID");
require(steps > 0, "Invalid amount of steps");
skillId += skillIdOffset;
_burn(_msgSender(), skillId, 1 << steps);
uint256 skillId1Up = skillId + (2175 * steps) ; // total skills * total name prefixes
_mint(_msgSender(), skillId1Up, 1, "");
}
function skillDownMulti(uint256 skillId, uint256 steps) public {
require(skillId < skillIdOffset, "Please use the Skill ID, not the token ID");
require(steps > 0, "Invalid amount of steps");
skillId += skillIdOffset;
_burn(_msgSender(), skillId, 1);
uint256 skillId1Up = skillId - (2175 * steps) ; // total skills * total name prefixes
_mint(_msgSender(), skillId1Up, 1 << steps, "");
}
function generateSkill(uint256 setId) public {
require(_balances[setId][_msgSender()] > 0, "You do not own this set");
uint256 lastBlock = _genSkillCooldown[setId];
require(lastBlock == 0 || block.number >= lastBlock, "This set has generated a skill too recently");
uint256 rand = uint256(keccak256(abi.encodePacked(setId, block.number ^ block.basefee ^ tx.gasprice )));
uint8 categoryIndex = uint8(rand % 8);
uint8 categoryLength;
if(categoryIndex == 0) categoryLength = 21;
else if(categoryIndex == 1) categoryLength = 16;
else if(categoryIndex == 2) categoryLength = 24;
else if(categoryIndex == 3) categoryLength = 18;
else if(categoryIndex == 4) categoryLength = 17;
else if(categoryIndex == 5) categoryLength = 14;
else if(categoryIndex == 6) categoryLength = 21;
else categoryLength = 14;
uint256 skillId = _getSkillId(rand, categoryIndex, categoryLength) + skillIdOffset;
_mint(_msgSender(), skillId, 1, "");
if( ownsWholeSet(setId) ) _genSkillCooldown[setId] = block.number + 50000;
else _genSkillCooldown[setId] = block.number + 250000;
}
function _exists(uint256 setId) internal view returns (bool) {
return _owners[setId] != address(0);
}
function ownsWholeSet(uint256 setId) public view returns( bool ){
uint256[] memory tokenIds = _getSetSkillIds(setId);
for( uint256 i = 0; i < 9; i++)
{
if( _balances[tokenIds[i]][_msgSender()] == 0 ) return false;
}
return true;
}
// Transfer functions
function transferSkill(address from, address to, uint256 skillId, uint256 amount, bytes memory data) public {
require(
from == _msgSender() || isApprovedForAll(from, _msgSender()),
"ERC1155: caller is not owner nor approved"
);
require(skillId < skillIdOffset, "Please use the Skill ID, not the token ID");
_safeTransferFrom(from, to, skillId + skillIdOffset, amount, data);
}
function batchTransferSkills(address from, address to, uint256[] memory skillIds, uint256[] memory amounts, bytes memory data) public {
require(
from == _msgSender() || isApprovedForAll(from, _msgSender()),
"ERC1155: caller is not owner nor approved"
);
for( uint256 i = 0; i < 145; i++)
{
require(skillIds[i] < skillIdOffset, "Please use the Skill ID, not the token ID");
skillIds[i] += skillIdOffset;
}
_safeBatchTransferFrom(from, to, skillIds, amounts, data);
}
function transferSet(address from, address to, uint256 setId, bytes memory data) public {
require(
from == _msgSender() || isApprovedForAll(from, _msgSender()),
"ERC1155: caller is not owner nor approved"
);
uint256[] memory tokenIds = _getSetSkillIds(setId);
uint256[] memory amounts = new uint256[](9);
amounts[0] = uint256(1);
amounts[1] = uint256(1);
amounts[2] = uint256(1);
amounts[3] = uint256(1);
amounts[4] = uint256(1);
amounts[5] = uint256(1);
amounts[6] = uint256(1);
amounts[7] = uint256(1);
amounts[8] = uint256(1);
_safeBatchTransferFrom(from, to, tokenIds, amounts, data);
}
// Override 1155 transfer functions to handle Set/Skill ID offset
function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public override {
if( id >= skillIdOffset )
{
require(
from == _msgSender() || isApprovedForAll(from, _msgSender()),
"ERC1155: caller is not owner nor approved"
);
_safeTransferFrom(from, to, id, amount, data);
}
else
{
transferSet(from, to, id, data);
}
}
function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override {
require(
from == _msgSender() || isApprovedForAll(from, _msgSender()),
"ERC1155: transfer caller is not owner nor approved"
);
bool setFound = false;
bool skillFound = false;
for( uint256 i = 0; i < ids.length; i++ )
{
if( ids[i] >= skillIdOffset )
{
skillFound = true;
}
else
{
require(amounts[i] == 1, "You cannot transfer more than 1 set as there is only 1 of each");
setFound = true;
}
}
require( !(setFound && skillFound), "Please attempt to only transfer Set IDs or Skill IDs in one batch" );
if( skillFound )
{
_safeBatchTransferFrom(from, to, ids, amounts, data);
}
else
{
for( uint256 i = 0; i < ids.length; i++ )
{
transferSet(from, to, ids[i], data);
}
}
}
// Skill data
function getSkillString(uint256 skillId) public view returns (string memory)
{
string memory output;
uint256 skillIndex = skillId / 145;
uint256 skillBaseId = skillId % 145;
if( skillBaseId < 21 )
{
output = meleeAttacks[skillBaseId];
}
else if( skillBaseId < 37 )
{
output = rangeAttacks[skillBaseId - 21];
}
else if( skillBaseId < 61 )
{
output = elementalSpells[skillBaseId - 37];
}
else if( skillBaseId < 79 )
{
output = spiritualSpells[skillBaseId - 61];
}
else if( skillBaseId < 96 )
{
output = curses[skillBaseId - 79];
}
else if( skillBaseId < 110 )
{
output = heals[skillBaseId - 96];
}
else if( skillBaseId < 131 )
{
output = buffs[skillBaseId - 110];
}
else
{
output = defensiveSkills[skillBaseId - 131];
}
uint256 skillNamePrefix = skillIndex % 15; // namePrefixes.length
if( skillNamePrefix > 0 )
{
output = string(abi.encodePacked(namePrefixes[skillNamePrefix], "'s ", output));
}
uint256 skillLevel = skillIndex / 15; // namePrefixes.length
if( skillLevel > 0 )
{
output = string(abi.encodePacked(output, " +", toString(skillLevel)));
}
return output;
}
function _getSkillId(uint256 setId, uint8 categoryIndex, uint8 categoryLength) internal view returns (uint256 skillId) {
uint256 rand = uint256(keccak256(abi.encodePacked(setId, categoryIndex)));
uint256 rarity = rand % 1000;
if (rarity < 4)
{
skillId = rand % categoryLength % 4;
}
else if (rarity < 40)
{
skillId = rand % categoryLength % 4 + 4;
}
else
{
skillId = rand % (categoryLength - 8) + 8;
}
skillId += categoryIndex;
uint256 nameRand = uint256(keccak256(abi.encodePacked(rand))) % 1000;
if (nameRand < 40)
{
skillId = (nameRand % 15) * 145 + skillId;
}
return skillId;
}
function _getSetSkillIds(uint256 setId) internal view returns (uint256[] memory) {
uint256[] memory tokenIds = new uint256[](9);
tokenIds[0] = _getSkillId(setId, 0, 21) + skillIdOffset; // meleeAttacks
tokenIds[1] = _getSkillId(setId, 21, 16) + skillIdOffset; // rangeAttacks
tokenIds[2] = _getSkillId(setId, 37, 24) + skillIdOffset; // elementalSpells
tokenIds[3] = _getSkillId(setId, 61, 18) + skillIdOffset; // spiritualSpells
tokenIds[4] = _getSkillId(setId, 79, 17) + skillIdOffset; // curses
tokenIds[5] = _getSkillId(setId, 96, 14) + skillIdOffset; // heals
tokenIds[6] = _getSkillId(setId, 110, 21) + skillIdOffset; // buffs
tokenIds[7] = _getSkillId(setId, 131, 14) + skillIdOffset; // defensiveSkills
tokenIds[8] = setId;
return tokenIds;
}
// get functions
function getGenSkillCooldown(uint256 setId) public view returns (uint256) {
require( setId < skillIdOffset, "Not a valid Set ID");
return _genSkillCooldown[setId];
}
function balanceOfSkill(address account, uint256 skillId) public view returns (uint256) {
require( skillId < skillIdOffset, "Please use the Skill ID, not the token ID");
return _balances[skillId + skillIdOffset][account];
}
function getMeleeAttack(uint256 setId) public view returns (string memory) {
require( setId < skillIdOffset, "Not a valid Set ID");
return getSkillString(_getSkillId(setId, 0, 21));
}
function getRangeAttack(uint256 setId) public view returns (string memory) {
require( setId < skillIdOffset, "Not a valid Set ID");
return getSkillString(_getSkillId(setId, 21, 16));
}
function getElementalSpell(uint256 setId) public view returns (string memory) {
require( setId < skillIdOffset, "Not a valid Set ID");
return getSkillString(_getSkillId(setId, 37, 24));
}
function getSpiritualSpell(uint256 setId) public view returns (string memory) {
require( setId < skillIdOffset, "Not a valid Set ID");
return getSkillString(_getSkillId(setId, 61, 18));
}
function getCurse(uint256 setId) public view returns (string memory) {
require( setId < skillIdOffset, "Not a valid Set ID");
return getSkillString(_getSkillId(setId, 79, 17));
}
function getHeal(uint256 setId) public view returns (string memory) {
require( setId < skillIdOffset, "Not a valid Set ID");
return getSkillString(_getSkillId(setId, 96, 14));
}
function getBuff(uint256 setId) public view returns (string memory) {
require( setId < skillIdOffset, "Not a valid Set ID");
return getSkillString(_getSkillId(setId, 110, 21));
}
function getDefensiveSkill(uint256 setId) public view returns (string memory) {
require( setId < skillIdOffset, "Not a valid Set ID");
return getSkillString(_getSkillId(setId, 131, 14));
}
function uri(uint256 tokenId) override public view returns (string memory) {
if( tokenId > skillIdOffset )
{
string[3] memory parts;
parts[0] = '<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMin meet" viewBox="0 0 350 350"><style>.base { fill: white; font-family: serif; font-size: 14px; }</style><rect width="100%" height="100%" fill="black" /><text x="10" y="20" class="base">';
parts[1] = getSkillString(tokenId - skillIdOffset);
parts[2] = '</text></svg>';
string memory output = string(abi.encodePacked(parts[0], parts[1], parts[2]));
string memory json = Base64.encode(bytes(string(abi.encodePacked('{"name": "Skill #', toString(tokenId - skillIdOffset), '", "description": "Skills are randomized adventurer abilities generated and stored on chain.", "image": "data:image/svg+xml;base64,', Base64.encode(bytes(output)), '"}'))));
output = string(abi.encodePacked('data:application/json;base64,', json));
return output;
}
else
{
string[17] memory parts;
parts[0] = '<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMin meet" viewBox="0 0 350 350"><style>.base { fill: white; font-family: serif; font-size: 14px; }</style><rect width="100%" height="100%" fill="black" /><text x="10" y="20" class="base">';
parts[1] = getMeleeAttack(tokenId);
parts[2] = '</text><text x="10" y="40" class="base">';
parts[3] = getRangeAttack(tokenId);
parts[4] = '</text><text x="10" y="60" class="base">';
parts[5] = getElementalSpell(tokenId);
parts[6] = '</text><text x="10" y="80" class="base">';
parts[7] = getSpiritualSpell(tokenId);
parts[8] = '</text><text x="10" y="100" class="base">';
parts[9] = getCurse(tokenId);
parts[10] = '</text><text x="10" y="120" class="base">';
parts[11] = getHeal(tokenId);
parts[12] = '</text><text x="10" y="140" class="base">';
parts[13] = getBuff(tokenId);
parts[14] = '</text><text x="10" y="160" class="base">';
parts[15] = getDefensiveSkill(tokenId);
parts[16] = '</text></svg>';
string memory output = string(abi.encodePacked(parts[0], parts[1], parts[2], parts[3], parts[4], parts[5], parts[6], parts[7], parts[8]));
output = string(abi.encodePacked(output, parts[9], parts[10], parts[11], parts[12], parts[13], parts[14], parts[15], parts[16]));
string memory json = Base64.encode(bytes(string(abi.encodePacked('{"name": "Set #', toString(tokenId), '", "description": "Skills are randomized adventurer abilities generated and stored on chain.", "image": "data:image/svg+xml;base64,', Base64.encode(bytes(output)), '"}'))));
output = string(abi.encodePacked('data:application/json;base64,', json));
return output;
}
}
constructor() ERC1155("Skills") Ownable() {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","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":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"skillId","type":"uint256"}],"name":"balanceOfSkill","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"skillIds","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"batchTransferSkills","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimAllWithLoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimAvailableSet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"claimWithLoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"setId","type":"uint256"}],"name":"generateSkill","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"setId","type":"uint256"}],"name":"getBuff","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"setId","type":"uint256"}],"name":"getCurse","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"setId","type":"uint256"}],"name":"getDefensiveSkill","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"setId","type":"uint256"}],"name":"getElementalSpell","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"setId","type":"uint256"}],"name":"getGenSkillCooldown","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"setId","type":"uint256"}],"name":"getHeal","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"setId","type":"uint256"}],"name":"getMeleeAttack","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"setId","type":"uint256"}],"name":"getRangeAttack","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"skillId","type":"uint256"}],"name":"getSkillString","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"setId","type":"uint256"}],"name":"getSpiritualSpell","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"setId","type":"uint256"}],"name":"ownerClaimSet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"setId","type":"uint256"}],"name":"ownsWholeSet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"skillId","type":"uint256"}],"name":"skillDown","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"skillId","type":"uint256"},{"internalType":"uint256","name":"steps","type":"uint256"}],"name":"skillDownMulti","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"skillId","type":"uint256"}],"name":"skillUp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"skillId","type":"uint256"},{"internalType":"uint256","name":"steps","type":"uint256"}],"name":"skillUpMulti","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"setId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"transferSet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"skillId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"transferSkill","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]Contract Creation Code
600c6103208181526b135bdc9d185b0815dbdd5b9960a21b6103405260809081526103608281526b1219585c9d08151a1c9d5cdd60a21b6103805260a05260096103a0908152682132b939b2b935b2b960b91b6103c05260c052600d6103e08181526c4b696c6c696e6720537072656560981b6104005260e052600f6104208181526e52616765206f66207468652041706560881b61044052610100526104609384526b5370696e616c20536c69636560a01b6104805261012093909352600a6104a081815269446561746820426c6f7760b01b6104c052610140526104e08281526c027b1bab630b91029b630b9b41609d1b610500526101605260136105209081527f4772617370206f6620746865204b72616b656e0000000000000000000000000061054052610180526105608281526c4865726f696320537472696b6560981b610580526101a05260056105a081815264053776565760dc1b6105c0526101c05260086105e0908152672130b1b5b9ba30b160c11b610600526101e0526106209283526c53696c656e7420537472696b6560981b6106405261020092909252610660818152690a6d6ead8d84084c2e6d60b31b610680526102205260076106a090815266476172726f746560c81b6106c052610240526106e09384526e4d7574696c6174696e6720426c6f7760881b610700526102609390935261072092835269151a59d95c8813585d5b60b21b6107405261028092909252600b6107609081526a52756e6520537472696b6560a81b610780526102a05260066107a090815265436c6561766560d01b6107c0526102c05260116107e090815270447261676f6e205461696c20537769706560781b610800526102e0526108606040526012610820908152710a0eadcc6d040d2dc40e8d0ca409adeeae8d60731b6108405261030052620002b39190601562001ab8565b5060408051610240810182526009610200820181815268135d5b1d1a5cda1bdd60ba1b6102208401528252825180840184529081526812da5b1b0814da1bdd60ba1b6020828101919091528083019190915282518084018452601681527f53686f74205468726f7567682054686520486561727400000000000000000000818301528284015282518084018452600b81526a2434ba1030b73210293ab760a91b8183015260608301528251808401845260108082526f213637ba1027baba103a34329029bab760811b8284015260808401919091528351808501855260128082527142617272616765206f662042756c6c65747360701b8285015260a085019190915284518086018652600f8082526e416e6365737472616c204172726f7760881b8286015260c086019190915285518087018752601381527f4172726f77206f662041726d61676564646f6e000000000000000000000000008186015260e086015285518087018752600d8082526c446f75626c652053747261666560981b8287015261010087019190915286518088018852600c81526b506f69736f6e204172726f7760a01b818701526101208701528651808801885292835271151c985b9c5d5a5b1a5e9a5b99c811185c9d60721b8386015261014086019290925285518087018752600a815269119c9bdcdd0814da1bdd60b21b81860152610160860152855180870187528281526c4275726e696e67204172726f7760981b81860152610180860152855180870187529182526c109b1a5b991a5b99c8109bdb1d609a1b828501526101a0850191909152845180860186529081526e111959d95b995c985d194811185c9d608a1b818401526101c08401528351808501909452600e84526d5368616674206f6620476c6f727960901b918401919091526101e082019290925262000566916006919062001b1c565b506040805161034081018252600661030082019081526526b2ba32b7b960d11b610320830152815281518083018352600a8082526945617274687175616b6560b01b6020838101919091528084019290925283518085018552600e8082526d42616c6c204c696768746e696e6760901b828501528486019190915284518086018652600880825267109b1a5e9e985c9960c21b8286015260608601919091528551808701875260098082526843617461636c79736d60b81b828701526080870191909152865180880188529283526d1358595b1cdd1c9bdb48109bdb1d60921b8386015260a086019290925285518087018752601381527f426c61636b20447261676f6e20427265617468000000000000000000000000008186015260c086015285518087018752600c8082526b436f6d657420537472696b6560a01b8287015260e08701919091528651808801885282815267119a5c9958985b1b60c21b818701526101008701528651808801885291825267119a5c995dd85b1b60c21b8286015261012086019190915285518087018752828152684669726573746f726d60b81b8186015261014086015285518087018752600d81526c088e4c2cededc4084e4cac2e8d609b1b81860152610160860152855180870187528281526824b1b29029b832b0b960b91b8186015261018086015285518087018752600b8082526a08ce4dee6e840a8deeac6d60ab1b828701526101a0870191909152865180880188528281526b119c9bde995b881219585c9d60a21b818701526101c0870152865180880188529384526946726f737420436f6e6560b01b848601526101e086019390935285518087018752601481527f456c65637472696320506572736f6e616c6974790000000000000000000000008186015261020086015285518087018752601081526f4c696768746e696e6720537472696b6560801b8186015261022086015285518087018752600f8082526e436861696e204c696768746e696e6760881b82870152610240870191909152865180880188526011815270456c65637472696320426f6f67616c6f6f60781b8187015261026087015286518088018852928352684c616e64736c69646560b81b83860152610280860192909252855180870187529081526b14da5b9ada5b99c814d85b9960a21b818501526102a0850152845180860186529182526a4561727468205370696b6560a81b828401526102c0840191909152835180850190945283526e44726f776e696e672044656c75676560881b908301526102e08101919091526200092890600790601862001b6e565b506040518061024001604052806040518060400160405280600b81526020016a29b2b0b934b7339029bab760a91b8152508152602001604051806040016040528060128152602001712234bb34b7329024b73234b3b730ba34b7b760711b81525081526020016040518060400160405280600f81526020016e446561746820616e6420446563617960881b81525081526020016040518060400160405280601781526020017f487572726963616e65206f6620746865204d6f746865720000000000000000008152508152602001604051806040016040528060128152602001712234bb34b732902932ba3934b13aba34b7b760711b81525081526020016040518060400160405280600f81526020016e2232b6b7b734b1902232b9b830b4b960891b81525081526020016040518060400160405280600e81526020016d283930b4b9b2902a34329029bab760911b81525081526020016040518060400160405280600b81526020016a50616e64656d6f6e69756d60a81b8152508152602001604051806040016040528060118152602001702634b3b43a1037b3103a34329026b7b7b760791b81525081526020016040518060400160405280601381526020017f5370656172206f66204272696c6c69616e63650000000000000000000000000081525081526020016040518060400160405280600a81526020016914985a5cd9481119585960b21b81525081526020016040518060400160405280600c81526020016b53657261706820536d69746560a01b81525081526020016040518060400160405280600a815260200169536f756c204172726f7760b01b81525081526020016040518060400160405280600d81526020016c105c9c9bddc81bd988115d9a5b609a1b81525081526020016040518060400160405280600c81526020016b426f6c74206f66205261676560a01b81525081526020016040518060400160405280601381526020017f57726f7468206f6620746865204d6f746865720000000000000000000000000081525081526020016040518060400160405280600d81526020016c11195d9a5b1a5cda0811195959609a1b81525081526020016040518060400160405280600a81526020016911195b5bdb8814dbdd5b60b21b815250815250600890601262000c7f92919062001bc0565b5060408051610260810182526004610220820190815263446f6f6d60e01b61024083015281528151808301835260138082527f5265677265737320746f20746865204d65616e0000000000000000000000000060208381019190915280840192909252835180850185529081527f4375727365206f66207468652057696e6e657200000000000000000000000000818301528284015282518084018452601180825270139bdd0811dbdb9b984813585ad948125d607a1b82840152606084019190915283518085018552600f8082526e506c61677565206f662046726f677360881b82850152608085019190915284518086018652601081526f4375727365206f66207468652041706560801b8185015260a085015284518086018652600b81526a426164204d6f726e696e6760a81b8185015260c085015284518086018652601881527f44656d697365206f662074686520446567656e657261746500000000000000008185015260e0850152845180860186528181526e546f756368206f6620536f72726f7760881b81850152610100850152845180860186528281527010dd5c9cd9481bd988111bdddb88109859607a1b8185015261012085015284518086018652600d81526c096d2e6e640decc4088cac2e8d609b1b81850152610140850152845180860186526012815271213634b3b43a1037b3103a34329026b7b7b760711b8185015261016085015284518086018652600a81526926b7b93134b21029bab760b11b818501526101808501528451808601865282815270546f726d656e74206f6620546974616e7360781b818501526101a085015284518086018652600e8082526d41676f6e697a696e672047617a6560901b828601526101c0860191909152855180870187529182526e10da185b99d9481bd9881219585c9d608a1b828501526101e0850191909152845180860190955284526d21bab939b29037b31020b733b2b960911b9184019190915261020082019290925262000f6a916009919062001c12565b506040805161020081018252600c6101c082019081526b088d2ecd2dcca40a8deeac6d60a31b6101e0830152815281518083018352600980825268536f756c20476c6f7760b81b6020838101919091528084019290925283518085018552601581527f54696d65204865616c7320416c6c20576f756e6473000000000000000000000081840152838501528351808501855290815268496e6e65727661746560b81b81830152606083015282518084018452600f8082526e125b999958dd1a5bdd5cc81219585b608a1b82840152608084019190915283518085018552600e8082526d14985a5cd9481d1a19481119585960921b8285015260a08501919091528451808601865260118152701219585b195908185b990814da1a595b19607a1b8185015260c085015284518086018652601481527f596f7527726520476f6e6e61204d616b652049740000000000000000000000008185015260e085015284518086018652600d81526c090cac2d8d2dcce40a8deeac6d609b1b81850152610100850152845180860186528181526d14995cdd1bdc9a5b99c815da5b9960921b81850152610120850152845180860186529182526e1219585b1a5b99c810dd5c9c995b9d608a1b8284015261014084019190915283518085018552600a8082526957656c6c737072696e6760b01b82850152610160850191909152845180860186528281526d0a4caecd2ecd2dcce40a8deeac6d60931b818501526101808501528451808601909552601285527152656a7576656e6174696e6720537572676560701b928501929092526101a0830193909352620011cb9290919062001c64565b50604080516102e08101825260176102a082019081527f576527726520416c6c20476f6e6e61204d616b652049740000000000000000006102c08301528152815180830183526012808252715669676f72206f6620746865205477696e7360701b6020838101919091528084019290925283518085018552600f8082526e46757279206f66207468652041706560881b82850152848601919091528451808601865282815271092dcecd2cedee4c2e8d2dcce40a8deeac6d60731b81850152606085015284518086018652600c81526b08ce4def4cadc40a8deeac6d60a31b81850152608085015284518086018652601881527f426c657373696e67206f6620476f6f64204d6f726e696e6700000000000000008185015260a0850152845180860186529081526e105b98da595b9d08159a5d1c9a5bdb608a1b8184015260c0840152835180850185526011808252704c75636b20616e64204c6576657261676560781b8285015260e085019190915284518086018652600a80825269223930b3b7b739b5b4b760b11b8286015261010086019190915285518087018752601681527f5369676874206f6620456e6c69676874656e6d656e740000000000000000000081860152610120860152855180870187528281527057696e6420496e20596f7572204261636b60781b8186015261014086015285518087018752600e8082526d46757279206f66204769616e747360901b8287015261016087019190915286518088018852600d81526c29b7b7339037b3102837bbb2b960991b818701526101808701528651808801885260158082527f436c657665726e657373206f662074686520466f780000000000000000000000828801526101a0880191909152875180890189528181527f537472656e677468206f662056656e6765616e63650000000000000000000000818801526101c088015287518089018952600b8082526a2bb4b732102bb0b635b2b960a91b828901526101e08901919091528851808a018a529283526d14d8d95b9d081bd988109b1bdbd960921b8388015261020088019290925287518089018952838152692a3434b1b59029b5b4b760b11b818801526102208801528751808901895294855271243cb6b71037b310283937ba32b1ba34b7b760711b858701526102408701949094528651808801885292835270109b195cdcda5b99c81bd988131a59da1d607a1b838601526102608601929092528551808701909652855269092e4dedc408cd8cae6d60b31b92850192909252610280830193909352620015839290919062001ab8565b50604080516102008101825260106101c082018181526f090c2e6e8ca40decc40e8d0ca408cdef60831b6101e0840152825282518084018452601681527f426c657373696e67206f662050726f74656374696f6e00000000000000000000602082810191909152808401919091528351808501855260068152650acc2dcd2e6d60d31b818301528385015283518085018552601781527f536163726966696365206f6620746865204d6172747972000000000000000000818301526060840152835180850185529182526f22bb30b9b4bb329026b0b732babb32b960811b82820152608083019190915282518084018452600c8082526b14195c999958dd08149bdb1b60a21b8284015260a084019190915283518085018552600d81526c15185d5b9d0809d15b48105b1b609a1b8184015260c084015283518085018552601d81527f44657465726d696e6174696f6e206f66206120446567656e65726174650000008184015260e084015283518085018552600580825264446f64676560d81b8285015261010085019190915284518086018652600780825266141c9bdd1958dd60ca1b82860152610120860191909152855180870187529182526415185d5b9d60da1b8285015261014085019190915284518086018652600b81526a08ccad2cedc4088cac2e8d60ab1b81850152610160850152845180860186529081526621b7bab73a32b960c91b8184015261018084015283518085019094528084526b536869656c6420426c6f636b60a01b918401919091526101a0820192909252620017d19190600e62001c64565b50604051806101e0016040528060405180602001604052806000815250815260200160405180604001604052806003815260200162446f6d60e81b8152508152602001604051806040016040528060078152602001662437b33336b0b760c91b81525081526020016040518060400160405280600481526020016309cd2e6d60e31b8152508152602001604051806040016040528060048152602001634e75676560e01b8152508152602001604051806040016040528060068152602001654f7267656f7360d01b8152508152602001604051806040016040528060068152602001652637b7ba32b960d11b8152508152602001604051806040016040528060068152602001654974616c696b60d01b81525081526020016040518060400160405280600681526020016505265707061760d41b8152508152602001604051806040016040528060038152602001624f6e6960e81b8152508152602001604051806040016040528060078152602001665a75726861687360c81b81525081526020016040518060400160405280600681526020016520b1b5b9b7b760d11b81525081526020016040518060400160405280600a81526020016933b69032b73537bcb2b960b11b81525081526020016040518060400160405280600481526020016310da185960e21b81525081526020016040518060400160405280600a81526020016920b23b32b73a3ab932b960b11b815250815250600d90600f620019f992919062001cb6565b5061201f60105534801562001a0d57600080fd5b50604080518082019091526006815265536b696c6c7360d01b602082015262001a368162001a4d565b50600160035562001a473362001a66565b62001e4a565b805162001a6290600290602084019062001d08565b5050565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805482825590600052602060002090810192821562001b0a579160200282015b8281111562001b0a578251805162001af991849160209091019062001d08565b509160200191906001019062001ad9565b5062001b1892915062001d93565b5090565b82805482825590600052602060002090810192821562001b0a579160200282015b8281111562001b0a578251805162001b5d91849160209091019062001d08565b509160200191906001019062001b3d565b82805482825590600052602060002090810192821562001b0a579160200282015b8281111562001b0a578251805162001baf91849160209091019062001d08565b509160200191906001019062001b8f565b82805482825590600052602060002090810192821562001b0a579160200282015b8281111562001b0a578251805162001c0191849160209091019062001d08565b509160200191906001019062001be1565b82805482825590600052602060002090810192821562001b0a579160200282015b8281111562001b0a578251805162001c5391849160209091019062001d08565b509160200191906001019062001c33565b82805482825590600052602060002090810192821562001b0a579160200282015b8281111562001b0a578251805162001ca591849160209091019062001d08565b509160200191906001019062001c85565b82805482825590600052602060002090810192821562001b0a579160200282015b8281111562001b0a578251805162001cf791849160209091019062001d08565b509160200191906001019062001cd7565b82805462001d169062001e0d565b90600052602060002090601f01602090048101928262001d3a576000855562001d85565b82601f1062001d5557805160ff191683800117855562001d85565b8280016001018555821562001d85579182015b8281111562001d8557825182559160200191906001019062001d68565b5062001b1892915062001db4565b8082111562001b1857600062001daa828262001dcb565b5060010162001d93565b5b8082111562001b18576000815560010162001db5565b50805462001dd99062001e0d565b6000825580601f1062001dea575050565b601f01602090049060005260206000209081019062001e0a919062001db4565b50565b600181811c9082168062001e2257607f821691505b6020821081141562001e4457634e487b7160e01b600052602260045260246000fd5b50919050565b615d0b8062001e5a6000396000f3fe608060405234801561001057600080fd5b506004361061023f5760003560e01c80637bed290811610145578063c394498a116100bd578063eb87f2131161008c578063f2fde38b11610071578063f2fde38b1461050d578063fa672a8714610520578063fc897e811461053357600080fd5b8063eb87f213146104e7578063f242432a146104fa57600080fd5b8063c394498a14610465578063c9c5a7fd14610478578063cded9d001461048b578063e985e9c51461049e57600080fd5b806391d8614d11610114578063a91a2af1116100f9578063a91a2af11461042c578063b84cc8e21461043f578063c209aec61461045257600080fd5b806391d8614d14610406578063a22cb4651461041957600080fd5b80637bed2908146103a55780638da5cb5b146103b85780638f77ec8c146103e05780639030d9b5146103f357600080fd5b80634e1273f4116101d857806362780b93116101a75780636d7aaf0b1161018c5780636d7aaf0b14610377578063715018a61461038a5780637273554d1461039257600080fd5b806362780b931461035157806363af7e601461036457600080fd5b80634e1273f414610303578063560a9e26146103235780635d145f3f1461032b57806361d0982e1461033e57600080fd5b80630e89341c116102145780630e89341c146102c25780632eb2c2d6146102d55780634949c3e3146102e857806349863165146102fb57600080fd5b80622b256914610244578062fdd58e1461025957806301ffc9a71461027f578063072f671f146102a2575b600080fd5b610257610252366004614fdb565b610546565b005b61026c610267366004614ea2565b610663565b6040519081526020015b60405180910390f35b61029261028d366004614fa1565b61073b565b6040519015158152602001610276565b6102b56102b0366004614fdb565b610820565b60405161027691906156b6565b6102b56102d0366004614fdb565b6108bb565b6102576102e3366004614cec565b610d00565b6102b56102f6366004614fdb565b610ff1565b61025761108c565b610316610311366004614ece565b6112c4565b604051610276919061567e565b61025761141c565b6102b5610339366004614fdb565b6114d1565b61026c61034c366004614fdb565b61156c565b61025761035f36600461500d565b61160a565b610292610372366004614fdb565b611785565b6102b5610385366004614fdb565b611824565b6102576118bf565b6102576103a0366004614fdb565b61194c565b6102b56103b3366004614fdb565b611bff565b60045460405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610276565b6102576103ee366004614fdb565b611c9a565b6102b5610401366004614fdb565b611e8c565b6102b5610414366004614fdb565b611f27565b610257610427366004614e6f565b6121e8565b61025761043a366004614cec565b612325565b6102b561044d366004614fdb565b61251f565b61025761046036600461500d565b6125ba565b610257610473366004614fdb565b612744565b610257610486366004614d9a565b6128c9565b610257610499366004614e06565b612ae8565b6102926104ac366004614cb3565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205460ff1690565b61026c6104f5366004614ea2565b612c82565b610257610508366004614e06565b612db4565b61025761051b366004614c72565b612eae565b6102b561052e366004614fdb565b612fdb565b610257610541366004614fdb565b613076565b7f800000000000000000000000000000000000000000000000000000000000000081106105fa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f506c65617365207573652074686520536b696c6c2049442c206e6f742074686560448201527f20746f6b656e204944000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6106247f8000000000000000000000000000000000000000000000000000000000000000826156ed565b905061063233826002613189565b60006106408261087f6156ed565b905061065f335b82600160405180602001604052806000815250613391565b5050565b600073ffffffffffffffffffffffffffffffffffffffff8316610708576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201527f65726f206164647265737300000000000000000000000000000000000000000060648201526084016105f1565b5060009081526020818152604080832073ffffffffffffffffffffffffffffffffffffffff949094168352929052205490565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167fd9b67a260000000000000000000000000000000000000000000000000000000014806107ce57507fffffffff0000000000000000000000000000000000000000000000000000000082167f0e89341c00000000000000000000000000000000000000000000000000000000145b8061081a57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b60607f800000000000000000000000000000000000000000000000000000000000000082106108ab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f4e6f7420612076616c696420536574204944000000000000000000000000000060448201526064016105f1565b61081a61041483600060156134f8565b60607f8000000000000000000000000000000000000000000000000000000000000000821115610a6c576108ed614b27565b60405180610120016040528060fd8152602001615b4860fd913981526109366104147f800000000000000000000000000000000000000000000000000000000000000085615756565b6020828101918252604080518082018252600d81527f3c2f746578743e3c2f7376673e000000000000000000000000000000000000008184015281850181905284519351915160009461098d9490939291016150d0565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081840301815291905290506000610a226109f46109ef7f800000000000000000000000000000000000000000000000000000000000000088615756565b613683565b6109fd846137bd565b604051602001610a0e92919061547c565b6040516020818303038152906040526137bd565b905080604051602001610a35919061557e565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081840301815291905295945050505050565b610a74614b4e565b60405180610120016040528060fd8152602001615b4860fd91398152610a9983610820565b8160016020020181905250604051806060016040528060288152602001615cae602891396040820152610acb83612fdb565b6060808301919091526040805191820190526028808252615a7d60208301396080820152610af883611bff565b60a082015260408051606081019091526028808252615af7602083013960c0820152610b2383611824565b60e082015260408051606081019091526029808252615b1f6020830139610100820152610b4f83610ff1565b61012082015260408051606081019091526029808252615ace6020830139610140820152610b7c8361251f565b61016082015260408051606081019091526029808252615c456020830139610180820152610ba983611e8c565b6101a082015260408051606081019091526029808252615aa560208301396101c0820152610bd6836114d1565b6101e0820152604080518082018252600d81527f3c2f746578743e3c2f7376673e00000000000000000000000000000000000000602080830191909152610200840191909152825181840151838501516060860151608087015160a088015160c089015160e08a01516101008b0151995160009a610c569a909101615113565b604080518083037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0018152908290526101208401516101408501516101608601516101808701516101a08801516101c08901516101e08a01516102008b0151979950610cc7988a9890602001615113565b60405160208183030381529060405290506000610a22610ce686613683565b610cef846137bd565b604051602001610a0e929190615337565b73ffffffffffffffffffffffffffffffffffffffff8516331480610d295750610d2985336104ac565b610db5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f766564000000000000000000000000000060648201526084016105f1565b60008060005b8551811015610ecd577f8000000000000000000000000000000000000000000000000000000000000000868281518110610df757610df761590a565b602002602001015110610e0d5760019150610ebb565b848181518110610e1f57610e1f61590a565b6020026020010151600114610eb6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603e60248201527f596f752063616e6e6f74207472616e73666572206d6f7265207468616e20312060448201527f736574206173207468657265206973206f6e6c792031206f662065616368000060648201526084016105f1565b600192505b80610ec58161585f565b915050610dbb565b50818015610ed85750805b15610f8b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604160248201527f506c6561736520617474656d707420746f206f6e6c79207472616e736665722060448201527f53657420494473206f7220536b696c6c2049447320696e206f6e65206261746360648201527f6800000000000000000000000000000000000000000000000000000000000000608482015260a4016105f1565b8015610fa357610f9e8787878787613996565b610fe8565b60005b8551811015610fe657610fd48888888481518110610fc657610fc661590a565b6020026020010151876128c9565b80610fde8161585f565b915050610fa6565b505b50505050505050565b60607f8000000000000000000000000000000000000000000000000000000000000000821061107c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f4e6f7420612076616c696420536574204944000000000000000000000000000060448201526064016105f1565b61081a61041483604f60116134f8565b600073ff9c1b15b16263c61d017ee9f65c50e4ae0113d76370a08231336040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b16815273ffffffffffffffffffffffffffffffffffffffff909116600482015260240160206040518083038186803b15801561110d57600080fd5b505afa158015611121573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111459190614ff4565b9050600081116111b1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f596f7520646f206e6f74206f776e20616e79204c6f6f7420626167730000000060448201526064016105f1565b60005b8181101561065f57600073ff9c1b15b16263c61d017ee9f65c50e4ae0113d7632f745c59336040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b16815273ffffffffffffffffffffffffffffffffffffffff90911660048201526024810185905260440160206040518083038186803b15801561124457600080fd5b505afa158015611258573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061127c9190614ff4565b6000818152600e602052604090205490915073ffffffffffffffffffffffffffffffffffffffff166112b1576112b181613cc8565b50806112bc8161585f565b9150506111b4565b60608151835114611357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e67746860448201527f206d69736d61746368000000000000000000000000000000000000000000000060648201526084016105f1565b6000835167ffffffffffffffff81111561137357611373615939565b60405190808252806020026020018201604052801561139c578160200160208202803683370190505b50905060005b8451811015611414576113e78582815181106113c0576113c061590a565b60200260200101518583815181106113da576113da61590a565b6020026020010151610663565b8282815181106113f9576113f961590a565b602090810291909101015261140d8161585f565b90506113a2565b509392505050565b601054613e8010156114af576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f416c6c20617661696c61626c6520736574732068617665206265656e20636c6160448201527f696d65640000000000000000000000000000000000000000000000000000000060648201526084016105f1565b6114ba601054613cc8565b601080549060006114ca8361585f565b9190505550565b60607f8000000000000000000000000000000000000000000000000000000000000000821061155c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f4e6f7420612076616c696420536574204944000000000000000000000000000060448201526064016105f1565b61081a610414836083600e6134f8565b60007f800000000000000000000000000000000000000000000000000000000000000082106115f7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f4e6f7420612076616c696420536574204944000000000000000000000000000060448201526064016105f1565b506000908152600f602052604090205490565b7f800000000000000000000000000000000000000000000000000000000000000082106116b9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f506c65617365207573652074686520536b696c6c2049442c206e6f742074686560448201527f20746f6b656e204944000000000000000000000000000000000000000000000060648201526084016105f1565b60008111611723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f496e76616c696420616d6f756e74206f6620737465707300000000000000000060448201526064016105f1565b61174d7f8000000000000000000000000000000000000000000000000000000000000000836156ed565b915061175d33836001841b613189565b600061176b8261087f615719565b61177590846156ed565b905061178033610647565b505050565b60008061179183613e79565b905060005b600981101561181a576000808383815181106117b4576117b461590a565b6020026020010151815260200190815260200160002060006117d33390565b73ffffffffffffffffffffffffffffffffffffffff168152602081019190915260400160002054611808575060009392505050565b806118128161585f565b915050611796565b5060019392505050565b60607f800000000000000000000000000000000000000000000000000000000000000082106118af576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f4e6f7420612076616c696420536574204944000000000000000000000000000060448201526064016105f1565b61081a61041483603d60126134f8565b60045473ffffffffffffffffffffffffffffffffffffffff163314611940576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105f1565b61194a600061417f565b565b6000818152602081815260408083203384529091529020546119ca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f596f7520646f206e6f74206f776e20746869732073657400000000000000000060448201526064016105f1565b6000818152600f60205260409020548015806119e65750804310155b611a72576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f5468697320736574206861732067656e657261746564206120736b696c6c207460448201527f6f6f20726563656e746c7900000000000000000000000000000000000000000060648201526084016105f1565b6000823a48431818604051602001611a94929190918252602082015260400190565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0818403018152919052805160209091012090506000611ad9600883615898565b9050600060ff8216611aed57506015611b69565b8160ff1660011415611b0157506010611b69565b8160ff1660021415611b1557506018611b69565b8160ff1660031415611b2957506012611b69565b8160ff1660041415611b3d57506011611b69565b8160ff1660051415611b515750600e611b69565b8160ff1660061415611b6557506015611b69565b50600e5b60007f8000000000000000000000000000000000000000000000000000000000000000611b978585856134f8565b611ba191906156ed565b9050611bac33610647565b611bb586611785565b15611bda57611bc64361c3506156ed565b6000878152600f6020526040902055611bf7565b611be7436203d0906156ed565b6000878152600f60205260409020555b505050505050565b60607f80000000000000000000000000000000000000000000000000000000000000008210611c8a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f4e6f7420612076616c696420536574204944000000000000000000000000000060448201526064016105f1565b61081a61041483602560186134f8565b336040517f6352211e0000000000000000000000000000000000000000000000000000000081526004810183905273ffffffffffffffffffffffffffffffffffffffff919091169073ff9c1b15b16263c61d017ee9f65c50e4ae0113d790636352211e9060240160206040518083038186803b158015611d1957600080fd5b505afa158015611d2d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d519190614c96565b73ffffffffffffffffffffffffffffffffffffffff1614611df4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f796f7520646f206e6f74206f776e20746865206c6f6f7462616720666f72207460448201527f68697320736574206f6620736b696c6c0000000000000000000000000000000060648201526084016105f1565b6000818152600e602052604090205473ffffffffffffffffffffffffffffffffffffffff1615611e80576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f5365742068617320616c7265616479206265656e20636c61696d65640000000060448201526064016105f1565b611e8981613cc8565b50565b60607f80000000000000000000000000000000000000000000000000000000000000008210611f17576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f4e6f7420612076616c696420536574204944000000000000000000000000000060448201526064016105f1565b61081a61041483606e60156134f8565b6060806000611f37609185615705565b90506000611f46609186615898565b90506015811015611ffe5760058181548110611f6457611f6461590a565b906000526020600020018054611f79906157c0565b80601f0160208091040260200160405190810160405280929190818152602001828054611fa5906157c0565b8015611ff25780601f10611fc757610100808354040283529160200191611ff2565b820191906000526020600020905b815481529060010190602001808311611fd557829003601f168201915b50505050509250612145565b6025811015612024576006612014601583615756565b81548110611f6457611f6461590a565b603d81101561203a576007612014602583615756565b604f811015612050576008612014603d83615756565b6060811015612066576009612014604f83615756565b606e81101561207c57600a612014606083615756565b608381101561209257600b612014606e83615756565b600c61209f608383615756565b815481106120af576120af61590a565b9060005260206000200180546120c4906157c0565b80601f01602080910402602001604051908101604052809291908181526020018280546120f0906157c0565b801561213d5780601f106121125761010080835404028352916020019161213d565b820191906000526020600020905b81548152906001019060200180831161212057829003601f168201915b505050505092505b6000612152600f84615898565b9050801561219b57600d818154811061216d5761216d61590a565b906000526020600020018460405160200161218992919061522d565b60405160208183030381529060405293505b60006121a8600f85615705565b905080156121dd57846121ba82613683565b6040516020016121cb9291906151d5565b60405160208183030381529060405294505b509295945050505050565b3373ffffffffffffffffffffffffffffffffffffffff8316141561228e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c2073746174757360448201527f20666f722073656c66000000000000000000000000000000000000000000000060648201526084016105f1565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b73ffffffffffffffffffffffffffffffffffffffff851633148061234e575061234e85336104ac565b6123da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201527f20617070726f766564000000000000000000000000000000000000000000000060648201526084016105f1565b60005b609181101561250a577f80000000000000000000000000000000000000000000000000000000000000008482815181106124195761241961590a565b6020026020010151106124ae576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f506c65617365207573652074686520536b696c6c2049442c206e6f742074686560448201527f20746f6b656e204944000000000000000000000000000000000000000000000060648201526084016105f1565b7f80000000000000000000000000000000000000000000000000000000000000008482815181106124e1576124e161590a565b602002602001018181516124f591906156ed565b905250806125028161585f565b9150506123dd565b506125188585858585613996565b5050505050565b60607f800000000000000000000000000000000000000000000000000000000000000082106125aa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f4e6f7420612076616c696420536574204944000000000000000000000000000060448201526064016105f1565b61081a610414836060600e6134f8565b7f80000000000000000000000000000000000000000000000000000000000000008210612669576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f506c65617365207573652074686520536b696c6c2049442c206e6f742074686560448201527f20746f6b656e204944000000000000000000000000000000000000000000000060648201526084016105f1565b600081116126d3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f496e76616c696420616d6f756e74206f6620737465707300000000000000000060448201526064016105f1565b6126fd7f8000000000000000000000000000000000000000000000000000000000000000836156ed565b915061270b33836001613189565b60006127198261087f615719565b6127239084615756565b90506117803382846001901b60405180602001604052806000815250613391565b60045473ffffffffffffffffffffffffffffffffffffffff1633146127c5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105f1565b611f40811180156127d7575061201f81105b61283d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4e6f74206120726573657276656420536574204944000000000000000000000060448201526064016105f1565b6000818152600e602052604090205473ffffffffffffffffffffffffffffffffffffffff1615611e80576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f596f7520616c7265616479206f776e207468697320736574000000000000000060448201526064016105f1565b73ffffffffffffffffffffffffffffffffffffffff84163314806128f257506128f284336104ac565b61297e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201527f20617070726f766564000000000000000000000000000000000000000000000060648201526084016105f1565b600061298983613e79565b60408051600980825261014082019092529192506000919060208201610120803683370190505090506001816000815181106129c7576129c761590a565b6020026020010181815250506001816001815181106129e8576129e861590a565b602002602001018181525050600181600281518110612a0957612a0961590a565b602002602001018181525050600181600381518110612a2a57612a2a61590a565b602002602001018181525050600181600481518110612a4b57612a4b61590a565b602002602001018181525050600181600581518110612a6c57612a6c61590a565b602002602001018181525050600181600681518110612a8d57612a8d61590a565b602002602001018181525050600181600781518110612aae57612aae61590a565b602002602001018181525050600181600881518110612acf57612acf61590a565b602002602001018181525050611bf78686848487613996565b73ffffffffffffffffffffffffffffffffffffffff8516331480612b115750612b1185336104ac565b612b9d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201527f20617070726f766564000000000000000000000000000000000000000000000060648201526084016105f1565b7f80000000000000000000000000000000000000000000000000000000000000008310612c4c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f506c65617365207573652074686520536b696c6c2049442c206e6f742074686560448201527f20746f6b656e204944000000000000000000000000000000000000000000000060648201526084016105f1565b6125188585612c7b7f8000000000000000000000000000000000000000000000000000000000000000876156ed565b85856141f6565b60007f80000000000000000000000000000000000000000000000000000000000000008210612d33576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f506c65617365207573652074686520536b696c6c2049442c206e6f742074686560448201527f20746f6b656e204944000000000000000000000000000000000000000000000060648201526084016105f1565b600080612d607f8000000000000000000000000000000000000000000000000000000000000000856156ed565b815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f80000000000000000000000000000000000000000000000000000000000000008310612ea25773ffffffffffffffffffffffffffffffffffffffff8516331480612e045750612e0485336104ac565b612e90576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201527f20617070726f766564000000000000000000000000000000000000000000000060648201526084016105f1565b612e9d85858585856141f6565b612518565b612518858585846128c9565b60045473ffffffffffffffffffffffffffffffffffffffff163314612f2f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105f1565b73ffffffffffffffffffffffffffffffffffffffff8116612fd2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016105f1565b611e898161417f565b60607f80000000000000000000000000000000000000000000000000000000000000008210613066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f4e6f7420612076616c696420536574204944000000000000000000000000000060448201526064016105f1565b61081a61041483601560106134f8565b7f80000000000000000000000000000000000000000000000000000000000000008110613125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f506c65617365207573652074686520536b696c6c2049442c206e6f742074686560448201527f20746f6b656e204944000000000000000000000000000000000000000000000060648201526084016105f1565b61314f7f8000000000000000000000000000000000000000000000000000000000000000826156ed565b905061315d33826001613189565b600061316b61087f83615756565b905061065f3382600260405180602001604052806000815250613391565b73ffffffffffffffffffffffffffffffffffffffff831661322c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016105f1565b3361325c8185600061323d8761441e565b6132468761441e565b5050604080516020810190915260009052505050565b60008381526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8816845290915290205482811015613319576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c60448201527f616e63650000000000000000000000000000000000000000000000000000000060648201526084016105f1565b60008481526020818152604080832073ffffffffffffffffffffffffffffffffffffffff898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b73ffffffffffffffffffffffffffffffffffffffff8416613434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016105f1565b3361344e816000876134458861441e565b6125188861441e565b60008481526020818152604080832073ffffffffffffffffffffffffffffffffffffffff891684529091528120805485929061348b9084906156ed565b9091555050604080518581526020810185905273ffffffffffffffffffffffffffffffffffffffff80881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461251881600087878787614458565b600080848460405160200161353c92919091825260f81b7fff0000000000000000000000000000000000000000000000000000000000000016602082015260210190565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529190528051602090910120905060006135826103e883615898565b905060048110156135ad57600461359c60ff861684615898565b6135a69190615898565b9250613600565b60288110156135da5760046135c560ff861684615898565b6135cf9190615898565b6135a69060046156ed565b6135e560088561576d565b6135f29060ff1683615898565b6135fd9060086156ed565b92505b61360d60ff8616846156ed565b925060006103e88360405160200161362791815260200190565b6040516020818303038152906040528051906020012060001c61364a9190615898565b905060288110156136795783613661600f83615898565b61366c906091615719565b61367691906156ed565b93505b5050509392505050565b6060816136c357505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156136ed57806136d78161585f565b91506136e69050600a83615705565b91506136c7565b60008167ffffffffffffffff81111561370857613708615939565b6040519080825280601f01601f191660200182016040528015613732576020820181803683370190505b5090505b84156137b557613747600183615756565b9150613754600a86615898565b61375f9060306156ed565b60f81b8183815181106137745761377461590a565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506137ae600a86615705565b9450613736565b949350505050565b8051606090806137dd575050604080516020810190915260008152919050565b600060036137ec8360026156ed565b6137f69190615705565b613801906004615719565b905060006138108260206156ed565b67ffffffffffffffff81111561382857613828615939565b6040519080825280601f01601f191660200182016040528015613852576020820181803683370190505b5090506000604051806060016040528060408152602001615c6e604091399050600181016020830160005b868110156138de576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b83526004909201910161387d565b5060038606600181146138f8576002811461394257613988565b7f3d3d0000000000000000000000000000000000000000000000000000000000007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe830152613988565b7f3d000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8301525b505050918152949350505050565b8151835114613a27576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d6174636800000000000000000000000000000000000000000000000060648201526084016105f1565b73ffffffffffffffffffffffffffffffffffffffff8416613aca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016105f1565b3360005b8451811015613c3b576000858281518110613aeb57613aeb61590a565b602002602001015190506000858381518110613b0957613b0961590a565b6020908102919091018101516000848152808352604080822073ffffffffffffffffffffffffffffffffffffffff8e168352909352919091205490915081811015613bd6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e736665720000000000000000000000000000000000000000000060648201526084016105f1565b60008381526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8e8116855292528083208585039055908b16825281208054849290613c209084906156ed565b9250508190555050505080613c349061585f565b9050613ace565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051613cb2929190615691565b60405180910390a4611bf78187878787876146f2565b6000613cd382613e79565b6040805160098082526101408201909252919250600091906020820161012080368337019050509050600181600081518110613d1157613d1161590a565b602002602001018181525050600181600181518110613d3257613d3261590a565b602002602001018181525050600181600281518110613d5357613d5361590a565b602002602001018181525050600181600381518110613d7457613d7461590a565b602002602001018181525050600181600481518110613d9557613d9561590a565b602002602001018181525050600181600581518110613db657613db661590a565b602002602001018181525050600181600681518110613dd757613dd761590a565b602002602001018181525050600181600781518110613df857613df861590a565b602002602001018181525050600181600881518110613e1957613e1961590a565b6020908102919091010152613e3f338383604051806020016040528060008152506148ae565b50506000908152600e6020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001633179055565b60408051600980825261014082019092526060916000919060208201610120803683370190505090507f8000000000000000000000000000000000000000000000000000000000000000613ed084600060156134f8565b613eda91906156ed565b81600081518110613eed57613eed61590a565b6020026020010181815250507f8000000000000000000000000000000000000000000000000000000000000000613f2784601560106134f8565b613f3191906156ed565b81600181518110613f4457613f4461590a565b6020026020010181815250507f8000000000000000000000000000000000000000000000000000000000000000613f7e84602560186134f8565b613f8891906156ed565b81600281518110613f9b57613f9b61590a565b6020026020010181815250507f8000000000000000000000000000000000000000000000000000000000000000613fd584603d60126134f8565b613fdf91906156ed565b81600381518110613ff257613ff261590a565b6020026020010181815250507f800000000000000000000000000000000000000000000000000000000000000061402c84604f60116134f8565b61403691906156ed565b816004815181106140495761404961590a565b6020026020010181815250507f8000000000000000000000000000000000000000000000000000000000000000614083846060600e6134f8565b61408d91906156ed565b816005815181106140a0576140a061590a565b6020026020010181815250507f80000000000000000000000000000000000000000000000000000000000000006140da84606e60156134f8565b6140e491906156ed565b816006815181106140f7576140f761590a565b6020026020010181815250507f8000000000000000000000000000000000000000000000000000000000000000614131846083600e6134f8565b61413b91906156ed565b8160078151811061414e5761414e61590a565b602002602001018181525050828160088151811061416e5761416e61590a565b602090810291909101015292915050565b6004805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b73ffffffffffffffffffffffffffffffffffffffff8416614299576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016105f1565b336142a98187876134458861441e565b60008481526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8a16845290915290205483811015614367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e736665720000000000000000000000000000000000000000000060648201526084016105f1565b60008581526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8b81168552925280832087850390559088168252812080548692906143b19084906156ed565b9091555050604080518681526020810186905273ffffffffffffffffffffffffffffffffffffffff808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610fe8828888888888614458565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061416e5761416e61590a565b73ffffffffffffffffffffffffffffffffffffffff84163b15611bf7576040517ff23a6e6100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063f23a6e61906144cf908990899088908890889060040161562e565b602060405180830381600087803b1580156144e957600080fd5b505af1925050508015614537575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261453491810190614fbe565b60015b61462157614543615968565b806308c379a014156145975750614558615984565b806145635750614599565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f191906156b6565b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560448201527f526563656976657220696d706c656d656e74657200000000000000000000000060648201526084016105f1565b7fffffffff0000000000000000000000000000000000000000000000000000000081167ff23a6e610000000000000000000000000000000000000000000000000000000014610fe8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e7300000000000000000000000000000000000000000000000060648201526084016105f1565b73ffffffffffffffffffffffffffffffffffffffff84163b15611bf7576040517fbc197c8100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063bc197c819061476990899089908890889088906004016155c3565b602060405180830381600087803b15801561478357600080fd5b505af19250505080156147d1575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526147ce91810190614fbe565b60015b6147dd57614543615968565b7fffffffff0000000000000000000000000000000000000000000000000000000081167fbc197c810000000000000000000000000000000000000000000000000000000014610fe8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e7300000000000000000000000000000000000000000000000060648201526084016105f1565b73ffffffffffffffffffffffffffffffffffffffff8416614951576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016105f1565b81518351146149e2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d6174636800000000000000000000000000000000000000000000000060648201526084016105f1565b3360005b8451811015614a9857838181518110614a0157614a0161590a565b6020026020010151600080878481518110614a1e57614a1e61590a565b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254614a8091906156ed565b90915550819050614a908161585f565b9150506149e6565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051614b10929190615691565b60405180910390a4612518816000878787876146f2565b60405180606001604052806003905b6060815260200190600190039081614b365790505090565b60408051610220810190915260608152601060208201614b36565b600082601f830112614b7a57600080fd5b81356020614b87826156c9565b604051614b948282615814565b8381528281019150858301600585901b87018401881015614bb457600080fd5b60005b85811015614bd357813584529284019290840190600101614bb7565b5090979650505050505050565b600082601f830112614bf157600080fd5b813567ffffffffffffffff811115614c0b57614c0b615939565b604051614c4060207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8501160182615814565b818152846020838601011115614c5557600080fd5b816020850160208301376000918101602001919091529392505050565b600060208284031215614c8457600080fd5b8135614c8f81615a2c565b9392505050565b600060208284031215614ca857600080fd5b8151614c8f81615a2c565b60008060408385031215614cc657600080fd5b8235614cd181615a2c565b91506020830135614ce181615a2c565b809150509250929050565b600080600080600060a08688031215614d0457600080fd5b8535614d0f81615a2c565b94506020860135614d1f81615a2c565b9350604086013567ffffffffffffffff80821115614d3c57600080fd5b614d4889838a01614b69565b94506060880135915080821115614d5e57600080fd5b614d6a89838a01614b69565b93506080880135915080821115614d8057600080fd5b50614d8d88828901614be0565b9150509295509295909350565b60008060008060808587031215614db057600080fd5b8435614dbb81615a2c565b93506020850135614dcb81615a2c565b925060408501359150606085013567ffffffffffffffff811115614dee57600080fd5b614dfa87828801614be0565b91505092959194509250565b600080600080600060a08688031215614e1e57600080fd5b8535614e2981615a2c565b94506020860135614e3981615a2c565b93506040860135925060608601359150608086013567ffffffffffffffff811115614e6357600080fd5b614d8d88828901614be0565b60008060408385031215614e8257600080fd5b8235614e8d81615a2c565b915060208301358015158114614ce157600080fd5b60008060408385031215614eb557600080fd5b8235614ec081615a2c565b946020939093013593505050565b60008060408385031215614ee157600080fd5b823567ffffffffffffffff80821115614ef957600080fd5b818501915085601f830112614f0d57600080fd5b81356020614f1a826156c9565b604051614f278282615814565b8381528281019150858301600585901b870184018b1015614f4757600080fd5b600096505b84871015614f73578035614f5f81615a2c565b835260019690960195918301918301614f4c565b5096505086013592505080821115614f8a57600080fd5b50614f9785828601614b69565b9150509250929050565b600060208284031215614fb357600080fd5b8135614c8f81615a4e565b600060208284031215614fd057600080fd5b8151614c8f81615a4e565b600060208284031215614fed57600080fd5b5035919050565b60006020828403121561500657600080fd5b5051919050565b6000806040838503121561502057600080fd5b50508035926020909101359150565b600081518084526020808501945080840160005b8381101561505f57815187529582019590820190600101615043565b509495945050505050565b60008151808452615082816020860160208601615790565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b600081516150c6818560208601615790565b9290920192915050565b600084516150e2818460208901615790565b8451908301906150f6818360208901615790565b8451910190615109818360208801615790565b0195945050505050565b60008a51615125818460208f01615790565b8a5190830190615139818360208f01615790565b8a5161514b8183850160208f01615790565b8a51929091010190615161818360208d01615790565b88516151738183850160208d01615790565b8851929091010190615189818360208b01615790565b865161519b8183850160208b01615790565b86519290910101906151b1818360208901615790565b84516151c38183850160208901615790565b9101019b9a5050505050505050505050565b600083516151e7818460208801615790565b7f202b0000000000000000000000000000000000000000000000000000000000009083019081528351615221816002840160208801615790565b01600201949350505050565b600080845481600182811c91508083168061524957607f831692505b6020808410821415615282577f4e487b710000000000000000000000000000000000000000000000000000000086526022600452602486fd5b81801561529657600181146152c5576152f2565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008616895284890196506152f2565b60008b81526020902060005b868110156152ea5781548b8201529085019083016152d1565b505084890196505b50505050505061532e615328827f2773200000000000000000000000000000000000000000000000000000000000815260030190565b856150b4565b95945050505050565b7f7b226e616d65223a20225365742023000000000000000000000000000000000081526000835161536f81600f850160208801615790565b615439600f828501017f222c20226465736372697074696f6e223a2022536b696c6c732061726520726181527f6e646f6d697a656420616476656e7475726572206162696c697469657320676560208201527f6e65726174656420616e642073746f726564206f6e20636861696e2e222c202260408201527f696d616765223a2022646174613a696d6167652f7376672b786d6c3b6261736560608201527f36342c0000000000000000000000000000000000000000000000000000000000608082015260830190565b9050835161544b818360208801615790565b7f227d0000000000000000000000000000000000000000000000000000000000009101908152600201949350505050565b7f7b226e616d65223a2022536b696c6c20230000000000000000000000000000008152600083516154b4816011850160208801615790565b6154396011828501017f222c20226465736372697074696f6e223a2022536b696c6c732061726520726181527f6e646f6d697a656420616476656e7475726572206162696c697469657320676560208201527f6e65726174656420616e642073746f726564206f6e20636861696e2e222c202260408201527f696d616765223a2022646174613a696d6167652f7376672b786d6c3b6261736560608201527f36342c0000000000000000000000000000000000000000000000000000000000608082015260830190565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000008152600082516155b681601d850160208701615790565b91909101601d0192915050565b600073ffffffffffffffffffffffffffffffffffffffff808816835280871660208401525060a060408301526155fc60a083018661502f565b828103606084015261560e818661502f565b90508281036080840152615622818561506a565b98975050505050505050565b600073ffffffffffffffffffffffffffffffffffffffff808816835280871660208401525084604083015283606083015260a0608083015261567360a083018461506a565b979650505050505050565b602081526000614c8f602083018461502f565b6040815260006156a4604083018561502f565b828103602084015261532e818561502f565b602081526000614c8f602083018461506a565b600067ffffffffffffffff8211156156e3576156e3615939565b5060051b60200190565b60008219821115615700576157006158ac565b500190565b600082615714576157146158db565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615615751576157516158ac565b500290565b600082821015615768576157686158ac565b500390565b600060ff821660ff841680821015615787576157876158ac565b90039392505050565b60005b838110156157ab578181015183820152602001615793565b838111156157ba576000848401525b50505050565b600181811c908216806157d457607f821691505b6020821081141561580e577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f830116810181811067ffffffffffffffff8211171561585857615858615939565b6040525050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615891576158916158ac565b5060010190565b6000826158a7576158a76158db565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156159815760046000803e5060005160e01c5b90565b600060443d10156159925790565b6040517ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc803d016004833e81513d67ffffffffffffffff81602484011181841117156159e057505050505090565b82850191508151818111156159f85750505050505090565b843d8701016020828501011115615a125750505050505090565b615a2160208286010187615814565b509095945050505050565b73ffffffffffffffffffffffffffffffffffffffff81168114611e8957600080fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081168114611e8957600080fdfe3c2f746578743e3c7465787420783d2231302220793d2236302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223136302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223132302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d2238302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223130302220636c6173733d2262617365223e3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302033353020333530223e3c7374796c653e2e62617365207b2066696c6c3a2077686974653b20666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a20313470783b207d3c2f7374796c653e3c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d22626c61636b22202f3e3c7465787420783d2231302220793d2232302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223134302220636c6173733d2262617365223e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c2f746578743e3c7465787420783d2231302220793d2234302220636c6173733d2262617365223ea2646970667358221220f558ef904a297907c01590d5af2b3b9c2e94972166bb470d56db1eea4b9dd5e364736f6c63430008070033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061023f5760003560e01c80637bed290811610145578063c394498a116100bd578063eb87f2131161008c578063f2fde38b11610071578063f2fde38b1461050d578063fa672a8714610520578063fc897e811461053357600080fd5b8063eb87f213146104e7578063f242432a146104fa57600080fd5b8063c394498a14610465578063c9c5a7fd14610478578063cded9d001461048b578063e985e9c51461049e57600080fd5b806391d8614d11610114578063a91a2af1116100f9578063a91a2af11461042c578063b84cc8e21461043f578063c209aec61461045257600080fd5b806391d8614d14610406578063a22cb4651461041957600080fd5b80637bed2908146103a55780638da5cb5b146103b85780638f77ec8c146103e05780639030d9b5146103f357600080fd5b80634e1273f4116101d857806362780b93116101a75780636d7aaf0b1161018c5780636d7aaf0b14610377578063715018a61461038a5780637273554d1461039257600080fd5b806362780b931461035157806363af7e601461036457600080fd5b80634e1273f414610303578063560a9e26146103235780635d145f3f1461032b57806361d0982e1461033e57600080fd5b80630e89341c116102145780630e89341c146102c25780632eb2c2d6146102d55780634949c3e3146102e857806349863165146102fb57600080fd5b80622b256914610244578062fdd58e1461025957806301ffc9a71461027f578063072f671f146102a2575b600080fd5b610257610252366004614fdb565b610546565b005b61026c610267366004614ea2565b610663565b6040519081526020015b60405180910390f35b61029261028d366004614fa1565b61073b565b6040519015158152602001610276565b6102b56102b0366004614fdb565b610820565b60405161027691906156b6565b6102b56102d0366004614fdb565b6108bb565b6102576102e3366004614cec565b610d00565b6102b56102f6366004614fdb565b610ff1565b61025761108c565b610316610311366004614ece565b6112c4565b604051610276919061567e565b61025761141c565b6102b5610339366004614fdb565b6114d1565b61026c61034c366004614fdb565b61156c565b61025761035f36600461500d565b61160a565b610292610372366004614fdb565b611785565b6102b5610385366004614fdb565b611824565b6102576118bf565b6102576103a0366004614fdb565b61194c565b6102b56103b3366004614fdb565b611bff565b60045460405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610276565b6102576103ee366004614fdb565b611c9a565b6102b5610401366004614fdb565b611e8c565b6102b5610414366004614fdb565b611f27565b610257610427366004614e6f565b6121e8565b61025761043a366004614cec565b612325565b6102b561044d366004614fdb565b61251f565b61025761046036600461500d565b6125ba565b610257610473366004614fdb565b612744565b610257610486366004614d9a565b6128c9565b610257610499366004614e06565b612ae8565b6102926104ac366004614cb3565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205460ff1690565b61026c6104f5366004614ea2565b612c82565b610257610508366004614e06565b612db4565b61025761051b366004614c72565b612eae565b6102b561052e366004614fdb565b612fdb565b610257610541366004614fdb565b613076565b7f800000000000000000000000000000000000000000000000000000000000000081106105fa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f506c65617365207573652074686520536b696c6c2049442c206e6f742074686560448201527f20746f6b656e204944000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6106247f8000000000000000000000000000000000000000000000000000000000000000826156ed565b905061063233826002613189565b60006106408261087f6156ed565b905061065f335b82600160405180602001604052806000815250613391565b5050565b600073ffffffffffffffffffffffffffffffffffffffff8316610708576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201527f65726f206164647265737300000000000000000000000000000000000000000060648201526084016105f1565b5060009081526020818152604080832073ffffffffffffffffffffffffffffffffffffffff949094168352929052205490565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167fd9b67a260000000000000000000000000000000000000000000000000000000014806107ce57507fffffffff0000000000000000000000000000000000000000000000000000000082167f0e89341c00000000000000000000000000000000000000000000000000000000145b8061081a57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b60607f800000000000000000000000000000000000000000000000000000000000000082106108ab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f4e6f7420612076616c696420536574204944000000000000000000000000000060448201526064016105f1565b61081a61041483600060156134f8565b60607f8000000000000000000000000000000000000000000000000000000000000000821115610a6c576108ed614b27565b60405180610120016040528060fd8152602001615b4860fd913981526109366104147f800000000000000000000000000000000000000000000000000000000000000085615756565b6020828101918252604080518082018252600d81527f3c2f746578743e3c2f7376673e000000000000000000000000000000000000008184015281850181905284519351915160009461098d9490939291016150d0565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081840301815291905290506000610a226109f46109ef7f800000000000000000000000000000000000000000000000000000000000000088615756565b613683565b6109fd846137bd565b604051602001610a0e92919061547c565b6040516020818303038152906040526137bd565b905080604051602001610a35919061557e565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe081840301815291905295945050505050565b610a74614b4e565b60405180610120016040528060fd8152602001615b4860fd91398152610a9983610820565b8160016020020181905250604051806060016040528060288152602001615cae602891396040820152610acb83612fdb565b6060808301919091526040805191820190526028808252615a7d60208301396080820152610af883611bff565b60a082015260408051606081019091526028808252615af7602083013960c0820152610b2383611824565b60e082015260408051606081019091526029808252615b1f6020830139610100820152610b4f83610ff1565b61012082015260408051606081019091526029808252615ace6020830139610140820152610b7c8361251f565b61016082015260408051606081019091526029808252615c456020830139610180820152610ba983611e8c565b6101a082015260408051606081019091526029808252615aa560208301396101c0820152610bd6836114d1565b6101e0820152604080518082018252600d81527f3c2f746578743e3c2f7376673e00000000000000000000000000000000000000602080830191909152610200840191909152825181840151838501516060860151608087015160a088015160c089015160e08a01516101008b0151995160009a610c569a909101615113565b604080518083037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0018152908290526101208401516101408501516101608601516101808701516101a08801516101c08901516101e08a01516102008b0151979950610cc7988a9890602001615113565b60405160208183030381529060405290506000610a22610ce686613683565b610cef846137bd565b604051602001610a0e929190615337565b73ffffffffffffffffffffffffffffffffffffffff8516331480610d295750610d2985336104ac565b610db5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f766564000000000000000000000000000060648201526084016105f1565b60008060005b8551811015610ecd577f8000000000000000000000000000000000000000000000000000000000000000868281518110610df757610df761590a565b602002602001015110610e0d5760019150610ebb565b848181518110610e1f57610e1f61590a565b6020026020010151600114610eb6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603e60248201527f596f752063616e6e6f74207472616e73666572206d6f7265207468616e20312060448201527f736574206173207468657265206973206f6e6c792031206f662065616368000060648201526084016105f1565b600192505b80610ec58161585f565b915050610dbb565b50818015610ed85750805b15610f8b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604160248201527f506c6561736520617474656d707420746f206f6e6c79207472616e736665722060448201527f53657420494473206f7220536b696c6c2049447320696e206f6e65206261746360648201527f6800000000000000000000000000000000000000000000000000000000000000608482015260a4016105f1565b8015610fa357610f9e8787878787613996565b610fe8565b60005b8551811015610fe657610fd48888888481518110610fc657610fc661590a565b6020026020010151876128c9565b80610fde8161585f565b915050610fa6565b505b50505050505050565b60607f8000000000000000000000000000000000000000000000000000000000000000821061107c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f4e6f7420612076616c696420536574204944000000000000000000000000000060448201526064016105f1565b61081a61041483604f60116134f8565b600073ff9c1b15b16263c61d017ee9f65c50e4ae0113d76370a08231336040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b16815273ffffffffffffffffffffffffffffffffffffffff909116600482015260240160206040518083038186803b15801561110d57600080fd5b505afa158015611121573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111459190614ff4565b9050600081116111b1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f596f7520646f206e6f74206f776e20616e79204c6f6f7420626167730000000060448201526064016105f1565b60005b8181101561065f57600073ff9c1b15b16263c61d017ee9f65c50e4ae0113d7632f745c59336040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b16815273ffffffffffffffffffffffffffffffffffffffff90911660048201526024810185905260440160206040518083038186803b15801561124457600080fd5b505afa158015611258573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061127c9190614ff4565b6000818152600e602052604090205490915073ffffffffffffffffffffffffffffffffffffffff166112b1576112b181613cc8565b50806112bc8161585f565b9150506111b4565b60608151835114611357576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e67746860448201527f206d69736d61746368000000000000000000000000000000000000000000000060648201526084016105f1565b6000835167ffffffffffffffff81111561137357611373615939565b60405190808252806020026020018201604052801561139c578160200160208202803683370190505b50905060005b8451811015611414576113e78582815181106113c0576113c061590a565b60200260200101518583815181106113da576113da61590a565b6020026020010151610663565b8282815181106113f9576113f961590a565b602090810291909101015261140d8161585f565b90506113a2565b509392505050565b601054613e8010156114af576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f416c6c20617661696c61626c6520736574732068617665206265656e20636c6160448201527f696d65640000000000000000000000000000000000000000000000000000000060648201526084016105f1565b6114ba601054613cc8565b601080549060006114ca8361585f565b9190505550565b60607f8000000000000000000000000000000000000000000000000000000000000000821061155c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f4e6f7420612076616c696420536574204944000000000000000000000000000060448201526064016105f1565b61081a610414836083600e6134f8565b60007f800000000000000000000000000000000000000000000000000000000000000082106115f7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f4e6f7420612076616c696420536574204944000000000000000000000000000060448201526064016105f1565b506000908152600f602052604090205490565b7f800000000000000000000000000000000000000000000000000000000000000082106116b9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f506c65617365207573652074686520536b696c6c2049442c206e6f742074686560448201527f20746f6b656e204944000000000000000000000000000000000000000000000060648201526084016105f1565b60008111611723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f496e76616c696420616d6f756e74206f6620737465707300000000000000000060448201526064016105f1565b61174d7f8000000000000000000000000000000000000000000000000000000000000000836156ed565b915061175d33836001841b613189565b600061176b8261087f615719565b61177590846156ed565b905061178033610647565b505050565b60008061179183613e79565b905060005b600981101561181a576000808383815181106117b4576117b461590a565b6020026020010151815260200190815260200160002060006117d33390565b73ffffffffffffffffffffffffffffffffffffffff168152602081019190915260400160002054611808575060009392505050565b806118128161585f565b915050611796565b5060019392505050565b60607f800000000000000000000000000000000000000000000000000000000000000082106118af576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f4e6f7420612076616c696420536574204944000000000000000000000000000060448201526064016105f1565b61081a61041483603d60126134f8565b60045473ffffffffffffffffffffffffffffffffffffffff163314611940576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105f1565b61194a600061417f565b565b6000818152602081815260408083203384529091529020546119ca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f596f7520646f206e6f74206f776e20746869732073657400000000000000000060448201526064016105f1565b6000818152600f60205260409020548015806119e65750804310155b611a72576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f5468697320736574206861732067656e657261746564206120736b696c6c207460448201527f6f6f20726563656e746c7900000000000000000000000000000000000000000060648201526084016105f1565b6000823a48431818604051602001611a94929190918252602082015260400190565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0818403018152919052805160209091012090506000611ad9600883615898565b9050600060ff8216611aed57506015611b69565b8160ff1660011415611b0157506010611b69565b8160ff1660021415611b1557506018611b69565b8160ff1660031415611b2957506012611b69565b8160ff1660041415611b3d57506011611b69565b8160ff1660051415611b515750600e611b69565b8160ff1660061415611b6557506015611b69565b50600e5b60007f8000000000000000000000000000000000000000000000000000000000000000611b978585856134f8565b611ba191906156ed565b9050611bac33610647565b611bb586611785565b15611bda57611bc64361c3506156ed565b6000878152600f6020526040902055611bf7565b611be7436203d0906156ed565b6000878152600f60205260409020555b505050505050565b60607f80000000000000000000000000000000000000000000000000000000000000008210611c8a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f4e6f7420612076616c696420536574204944000000000000000000000000000060448201526064016105f1565b61081a61041483602560186134f8565b336040517f6352211e0000000000000000000000000000000000000000000000000000000081526004810183905273ffffffffffffffffffffffffffffffffffffffff919091169073ff9c1b15b16263c61d017ee9f65c50e4ae0113d790636352211e9060240160206040518083038186803b158015611d1957600080fd5b505afa158015611d2d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d519190614c96565b73ffffffffffffffffffffffffffffffffffffffff1614611df4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603060248201527f796f7520646f206e6f74206f776e20746865206c6f6f7462616720666f72207460448201527f68697320736574206f6620736b696c6c0000000000000000000000000000000060648201526084016105f1565b6000818152600e602052604090205473ffffffffffffffffffffffffffffffffffffffff1615611e80576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f5365742068617320616c7265616479206265656e20636c61696d65640000000060448201526064016105f1565b611e8981613cc8565b50565b60607f80000000000000000000000000000000000000000000000000000000000000008210611f17576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f4e6f7420612076616c696420536574204944000000000000000000000000000060448201526064016105f1565b61081a61041483606e60156134f8565b6060806000611f37609185615705565b90506000611f46609186615898565b90506015811015611ffe5760058181548110611f6457611f6461590a565b906000526020600020018054611f79906157c0565b80601f0160208091040260200160405190810160405280929190818152602001828054611fa5906157c0565b8015611ff25780601f10611fc757610100808354040283529160200191611ff2565b820191906000526020600020905b815481529060010190602001808311611fd557829003601f168201915b50505050509250612145565b6025811015612024576006612014601583615756565b81548110611f6457611f6461590a565b603d81101561203a576007612014602583615756565b604f811015612050576008612014603d83615756565b6060811015612066576009612014604f83615756565b606e81101561207c57600a612014606083615756565b608381101561209257600b612014606e83615756565b600c61209f608383615756565b815481106120af576120af61590a565b9060005260206000200180546120c4906157c0565b80601f01602080910402602001604051908101604052809291908181526020018280546120f0906157c0565b801561213d5780601f106121125761010080835404028352916020019161213d565b820191906000526020600020905b81548152906001019060200180831161212057829003601f168201915b505050505092505b6000612152600f84615898565b9050801561219b57600d818154811061216d5761216d61590a565b906000526020600020018460405160200161218992919061522d565b60405160208183030381529060405293505b60006121a8600f85615705565b905080156121dd57846121ba82613683565b6040516020016121cb9291906151d5565b60405160208183030381529060405294505b509295945050505050565b3373ffffffffffffffffffffffffffffffffffffffff8316141561228e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c2073746174757360448201527f20666f722073656c66000000000000000000000000000000000000000000000060648201526084016105f1565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b73ffffffffffffffffffffffffffffffffffffffff851633148061234e575061234e85336104ac565b6123da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201527f20617070726f766564000000000000000000000000000000000000000000000060648201526084016105f1565b60005b609181101561250a577f80000000000000000000000000000000000000000000000000000000000000008482815181106124195761241961590a565b6020026020010151106124ae576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f506c65617365207573652074686520536b696c6c2049442c206e6f742074686560448201527f20746f6b656e204944000000000000000000000000000000000000000000000060648201526084016105f1565b7f80000000000000000000000000000000000000000000000000000000000000008482815181106124e1576124e161590a565b602002602001018181516124f591906156ed565b905250806125028161585f565b9150506123dd565b506125188585858585613996565b5050505050565b60607f800000000000000000000000000000000000000000000000000000000000000082106125aa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f4e6f7420612076616c696420536574204944000000000000000000000000000060448201526064016105f1565b61081a610414836060600e6134f8565b7f80000000000000000000000000000000000000000000000000000000000000008210612669576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f506c65617365207573652074686520536b696c6c2049442c206e6f742074686560448201527f20746f6b656e204944000000000000000000000000000000000000000000000060648201526084016105f1565b600081116126d3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f496e76616c696420616d6f756e74206f6620737465707300000000000000000060448201526064016105f1565b6126fd7f8000000000000000000000000000000000000000000000000000000000000000836156ed565b915061270b33836001613189565b60006127198261087f615719565b6127239084615756565b90506117803382846001901b60405180602001604052806000815250613391565b60045473ffffffffffffffffffffffffffffffffffffffff1633146127c5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105f1565b611f40811180156127d7575061201f81105b61283d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f4e6f74206120726573657276656420536574204944000000000000000000000060448201526064016105f1565b6000818152600e602052604090205473ffffffffffffffffffffffffffffffffffffffff1615611e80576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601860248201527f596f7520616c7265616479206f776e207468697320736574000000000000000060448201526064016105f1565b73ffffffffffffffffffffffffffffffffffffffff84163314806128f257506128f284336104ac565b61297e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201527f20617070726f766564000000000000000000000000000000000000000000000060648201526084016105f1565b600061298983613e79565b60408051600980825261014082019092529192506000919060208201610120803683370190505090506001816000815181106129c7576129c761590a565b6020026020010181815250506001816001815181106129e8576129e861590a565b602002602001018181525050600181600281518110612a0957612a0961590a565b602002602001018181525050600181600381518110612a2a57612a2a61590a565b602002602001018181525050600181600481518110612a4b57612a4b61590a565b602002602001018181525050600181600581518110612a6c57612a6c61590a565b602002602001018181525050600181600681518110612a8d57612a8d61590a565b602002602001018181525050600181600781518110612aae57612aae61590a565b602002602001018181525050600181600881518110612acf57612acf61590a565b602002602001018181525050611bf78686848487613996565b73ffffffffffffffffffffffffffffffffffffffff8516331480612b115750612b1185336104ac565b612b9d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201527f20617070726f766564000000000000000000000000000000000000000000000060648201526084016105f1565b7f80000000000000000000000000000000000000000000000000000000000000008310612c4c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f506c65617365207573652074686520536b696c6c2049442c206e6f742074686560448201527f20746f6b656e204944000000000000000000000000000000000000000000000060648201526084016105f1565b6125188585612c7b7f8000000000000000000000000000000000000000000000000000000000000000876156ed565b85856141f6565b60007f80000000000000000000000000000000000000000000000000000000000000008210612d33576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f506c65617365207573652074686520536b696c6c2049442c206e6f742074686560448201527f20746f6b656e204944000000000000000000000000000000000000000000000060648201526084016105f1565b600080612d607f8000000000000000000000000000000000000000000000000000000000000000856156ed565b815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7f80000000000000000000000000000000000000000000000000000000000000008310612ea25773ffffffffffffffffffffffffffffffffffffffff8516331480612e045750612e0485336104ac565b612e90576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201527f20617070726f766564000000000000000000000000000000000000000000000060648201526084016105f1565b612e9d85858585856141f6565b612518565b612518858585846128c9565b60045473ffffffffffffffffffffffffffffffffffffffff163314612f2f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105f1565b73ffffffffffffffffffffffffffffffffffffffff8116612fd2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016105f1565b611e898161417f565b60607f80000000000000000000000000000000000000000000000000000000000000008210613066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f4e6f7420612076616c696420536574204944000000000000000000000000000060448201526064016105f1565b61081a61041483601560106134f8565b7f80000000000000000000000000000000000000000000000000000000000000008110613125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f506c65617365207573652074686520536b696c6c2049442c206e6f742074686560448201527f20746f6b656e204944000000000000000000000000000000000000000000000060648201526084016105f1565b61314f7f8000000000000000000000000000000000000000000000000000000000000000826156ed565b905061315d33826001613189565b600061316b61087f83615756565b905061065f3382600260405180602001604052806000815250613391565b73ffffffffffffffffffffffffffffffffffffffff831661322c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016105f1565b3361325c8185600061323d8761441e565b6132468761441e565b5050604080516020810190915260009052505050565b60008381526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8816845290915290205482811015613319576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c60448201527f616e63650000000000000000000000000000000000000000000000000000000060648201526084016105f1565b60008481526020818152604080832073ffffffffffffffffffffffffffffffffffffffff898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b73ffffffffffffffffffffffffffffffffffffffff8416613434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016105f1565b3361344e816000876134458861441e565b6125188861441e565b60008481526020818152604080832073ffffffffffffffffffffffffffffffffffffffff891684529091528120805485929061348b9084906156ed565b9091555050604080518581526020810185905273ffffffffffffffffffffffffffffffffffffffff80881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461251881600087878787614458565b600080848460405160200161353c92919091825260f81b7fff0000000000000000000000000000000000000000000000000000000000000016602082015260210190565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529190528051602090910120905060006135826103e883615898565b905060048110156135ad57600461359c60ff861684615898565b6135a69190615898565b9250613600565b60288110156135da5760046135c560ff861684615898565b6135cf9190615898565b6135a69060046156ed565b6135e560088561576d565b6135f29060ff1683615898565b6135fd9060086156ed565b92505b61360d60ff8616846156ed565b925060006103e88360405160200161362791815260200190565b6040516020818303038152906040528051906020012060001c61364a9190615898565b905060288110156136795783613661600f83615898565b61366c906091615719565b61367691906156ed565b93505b5050509392505050565b6060816136c357505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156136ed57806136d78161585f565b91506136e69050600a83615705565b91506136c7565b60008167ffffffffffffffff81111561370857613708615939565b6040519080825280601f01601f191660200182016040528015613732576020820181803683370190505b5090505b84156137b557613747600183615756565b9150613754600a86615898565b61375f9060306156ed565b60f81b8183815181106137745761377461590a565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506137ae600a86615705565b9450613736565b949350505050565b8051606090806137dd575050604080516020810190915260008152919050565b600060036137ec8360026156ed565b6137f69190615705565b613801906004615719565b905060006138108260206156ed565b67ffffffffffffffff81111561382857613828615939565b6040519080825280601f01601f191660200182016040528015613852576020820181803683370190505b5090506000604051806060016040528060408152602001615c6e604091399050600181016020830160005b868110156138de576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b83526004909201910161387d565b5060038606600181146138f8576002811461394257613988565b7f3d3d0000000000000000000000000000000000000000000000000000000000007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe830152613988565b7f3d000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8301525b505050918152949350505050565b8151835114613a27576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d6174636800000000000000000000000000000000000000000000000060648201526084016105f1565b73ffffffffffffffffffffffffffffffffffffffff8416613aca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016105f1565b3360005b8451811015613c3b576000858281518110613aeb57613aeb61590a565b602002602001015190506000858381518110613b0957613b0961590a565b6020908102919091018101516000848152808352604080822073ffffffffffffffffffffffffffffffffffffffff8e168352909352919091205490915081811015613bd6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e736665720000000000000000000000000000000000000000000060648201526084016105f1565b60008381526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8e8116855292528083208585039055908b16825281208054849290613c209084906156ed565b9250508190555050505080613c349061585f565b9050613ace565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051613cb2929190615691565b60405180910390a4611bf78187878787876146f2565b6000613cd382613e79565b6040805160098082526101408201909252919250600091906020820161012080368337019050509050600181600081518110613d1157613d1161590a565b602002602001018181525050600181600181518110613d3257613d3261590a565b602002602001018181525050600181600281518110613d5357613d5361590a565b602002602001018181525050600181600381518110613d7457613d7461590a565b602002602001018181525050600181600481518110613d9557613d9561590a565b602002602001018181525050600181600581518110613db657613db661590a565b602002602001018181525050600181600681518110613dd757613dd761590a565b602002602001018181525050600181600781518110613df857613df861590a565b602002602001018181525050600181600881518110613e1957613e1961590a565b6020908102919091010152613e3f338383604051806020016040528060008152506148ae565b50506000908152600e6020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001633179055565b60408051600980825261014082019092526060916000919060208201610120803683370190505090507f8000000000000000000000000000000000000000000000000000000000000000613ed084600060156134f8565b613eda91906156ed565b81600081518110613eed57613eed61590a565b6020026020010181815250507f8000000000000000000000000000000000000000000000000000000000000000613f2784601560106134f8565b613f3191906156ed565b81600181518110613f4457613f4461590a565b6020026020010181815250507f8000000000000000000000000000000000000000000000000000000000000000613f7e84602560186134f8565b613f8891906156ed565b81600281518110613f9b57613f9b61590a565b6020026020010181815250507f8000000000000000000000000000000000000000000000000000000000000000613fd584603d60126134f8565b613fdf91906156ed565b81600381518110613ff257613ff261590a565b6020026020010181815250507f800000000000000000000000000000000000000000000000000000000000000061402c84604f60116134f8565b61403691906156ed565b816004815181106140495761404961590a565b6020026020010181815250507f8000000000000000000000000000000000000000000000000000000000000000614083846060600e6134f8565b61408d91906156ed565b816005815181106140a0576140a061590a565b6020026020010181815250507f80000000000000000000000000000000000000000000000000000000000000006140da84606e60156134f8565b6140e491906156ed565b816006815181106140f7576140f761590a565b6020026020010181815250507f8000000000000000000000000000000000000000000000000000000000000000614131846083600e6134f8565b61413b91906156ed565b8160078151811061414e5761414e61590a565b602002602001018181525050828160088151811061416e5761416e61590a565b602090810291909101015292915050565b6004805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b73ffffffffffffffffffffffffffffffffffffffff8416614299576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016105f1565b336142a98187876134458861441e565b60008481526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8a16845290915290205483811015614367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e736665720000000000000000000000000000000000000000000060648201526084016105f1565b60008581526020818152604080832073ffffffffffffffffffffffffffffffffffffffff8b81168552925280832087850390559088168252812080548692906143b19084906156ed565b9091555050604080518681526020810186905273ffffffffffffffffffffffffffffffffffffffff808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610fe8828888888888614458565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061416e5761416e61590a565b73ffffffffffffffffffffffffffffffffffffffff84163b15611bf7576040517ff23a6e6100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063f23a6e61906144cf908990899088908890889060040161562e565b602060405180830381600087803b1580156144e957600080fd5b505af1925050508015614537575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261453491810190614fbe565b60015b61462157614543615968565b806308c379a014156145975750614558615984565b806145635750614599565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f191906156b6565b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560448201527f526563656976657220696d706c656d656e74657200000000000000000000000060648201526084016105f1565b7fffffffff0000000000000000000000000000000000000000000000000000000081167ff23a6e610000000000000000000000000000000000000000000000000000000014610fe8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e7300000000000000000000000000000000000000000000000060648201526084016105f1565b73ffffffffffffffffffffffffffffffffffffffff84163b15611bf7576040517fbc197c8100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063bc197c819061476990899089908890889088906004016155c3565b602060405180830381600087803b15801561478357600080fd5b505af19250505080156147d1575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526147ce91810190614fbe565b60015b6147dd57614543615968565b7fffffffff0000000000000000000000000000000000000000000000000000000081167fbc197c810000000000000000000000000000000000000000000000000000000014610fe8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e7300000000000000000000000000000000000000000000000060648201526084016105f1565b73ffffffffffffffffffffffffffffffffffffffff8416614951576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016105f1565b81518351146149e2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d6174636800000000000000000000000000000000000000000000000060648201526084016105f1565b3360005b8451811015614a9857838181518110614a0157614a0161590a565b6020026020010151600080878481518110614a1e57614a1e61590a565b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254614a8091906156ed565b90915550819050614a908161585f565b9150506149e6565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051614b10929190615691565b60405180910390a4612518816000878787876146f2565b60405180606001604052806003905b6060815260200190600190039081614b365790505090565b60408051610220810190915260608152601060208201614b36565b600082601f830112614b7a57600080fd5b81356020614b87826156c9565b604051614b948282615814565b8381528281019150858301600585901b87018401881015614bb457600080fd5b60005b85811015614bd357813584529284019290840190600101614bb7565b5090979650505050505050565b600082601f830112614bf157600080fd5b813567ffffffffffffffff811115614c0b57614c0b615939565b604051614c4060207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8501160182615814565b818152846020838601011115614c5557600080fd5b816020850160208301376000918101602001919091529392505050565b600060208284031215614c8457600080fd5b8135614c8f81615a2c565b9392505050565b600060208284031215614ca857600080fd5b8151614c8f81615a2c565b60008060408385031215614cc657600080fd5b8235614cd181615a2c565b91506020830135614ce181615a2c565b809150509250929050565b600080600080600060a08688031215614d0457600080fd5b8535614d0f81615a2c565b94506020860135614d1f81615a2c565b9350604086013567ffffffffffffffff80821115614d3c57600080fd5b614d4889838a01614b69565b94506060880135915080821115614d5e57600080fd5b614d6a89838a01614b69565b93506080880135915080821115614d8057600080fd5b50614d8d88828901614be0565b9150509295509295909350565b60008060008060808587031215614db057600080fd5b8435614dbb81615a2c565b93506020850135614dcb81615a2c565b925060408501359150606085013567ffffffffffffffff811115614dee57600080fd5b614dfa87828801614be0565b91505092959194509250565b600080600080600060a08688031215614e1e57600080fd5b8535614e2981615a2c565b94506020860135614e3981615a2c565b93506040860135925060608601359150608086013567ffffffffffffffff811115614e6357600080fd5b614d8d88828901614be0565b60008060408385031215614e8257600080fd5b8235614e8d81615a2c565b915060208301358015158114614ce157600080fd5b60008060408385031215614eb557600080fd5b8235614ec081615a2c565b946020939093013593505050565b60008060408385031215614ee157600080fd5b823567ffffffffffffffff80821115614ef957600080fd5b818501915085601f830112614f0d57600080fd5b81356020614f1a826156c9565b604051614f278282615814565b8381528281019150858301600585901b870184018b1015614f4757600080fd5b600096505b84871015614f73578035614f5f81615a2c565b835260019690960195918301918301614f4c565b5096505086013592505080821115614f8a57600080fd5b50614f9785828601614b69565b9150509250929050565b600060208284031215614fb357600080fd5b8135614c8f81615a4e565b600060208284031215614fd057600080fd5b8151614c8f81615a4e565b600060208284031215614fed57600080fd5b5035919050565b60006020828403121561500657600080fd5b5051919050565b6000806040838503121561502057600080fd5b50508035926020909101359150565b600081518084526020808501945080840160005b8381101561505f57815187529582019590820190600101615043565b509495945050505050565b60008151808452615082816020860160208601615790565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b600081516150c6818560208601615790565b9290920192915050565b600084516150e2818460208901615790565b8451908301906150f6818360208901615790565b8451910190615109818360208801615790565b0195945050505050565b60008a51615125818460208f01615790565b8a5190830190615139818360208f01615790565b8a5161514b8183850160208f01615790565b8a51929091010190615161818360208d01615790565b88516151738183850160208d01615790565b8851929091010190615189818360208b01615790565b865161519b8183850160208b01615790565b86519290910101906151b1818360208901615790565b84516151c38183850160208901615790565b9101019b9a5050505050505050505050565b600083516151e7818460208801615790565b7f202b0000000000000000000000000000000000000000000000000000000000009083019081528351615221816002840160208801615790565b01600201949350505050565b600080845481600182811c91508083168061524957607f831692505b6020808410821415615282577f4e487b710000000000000000000000000000000000000000000000000000000086526022600452602486fd5b81801561529657600181146152c5576152f2565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008616895284890196506152f2565b60008b81526020902060005b868110156152ea5781548b8201529085019083016152d1565b505084890196505b50505050505061532e615328827f2773200000000000000000000000000000000000000000000000000000000000815260030190565b856150b4565b95945050505050565b7f7b226e616d65223a20225365742023000000000000000000000000000000000081526000835161536f81600f850160208801615790565b615439600f828501017f222c20226465736372697074696f6e223a2022536b696c6c732061726520726181527f6e646f6d697a656420616476656e7475726572206162696c697469657320676560208201527f6e65726174656420616e642073746f726564206f6e20636861696e2e222c202260408201527f696d616765223a2022646174613a696d6167652f7376672b786d6c3b6261736560608201527f36342c0000000000000000000000000000000000000000000000000000000000608082015260830190565b9050835161544b818360208801615790565b7f227d0000000000000000000000000000000000000000000000000000000000009101908152600201949350505050565b7f7b226e616d65223a2022536b696c6c20230000000000000000000000000000008152600083516154b4816011850160208801615790565b6154396011828501017f222c20226465736372697074696f6e223a2022536b696c6c732061726520726181527f6e646f6d697a656420616476656e7475726572206162696c697469657320676560208201527f6e65726174656420616e642073746f726564206f6e20636861696e2e222c202260408201527f696d616765223a2022646174613a696d6167652f7376672b786d6c3b6261736560608201527f36342c0000000000000000000000000000000000000000000000000000000000608082015260830190565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000008152600082516155b681601d850160208701615790565b91909101601d0192915050565b600073ffffffffffffffffffffffffffffffffffffffff808816835280871660208401525060a060408301526155fc60a083018661502f565b828103606084015261560e818661502f565b90508281036080840152615622818561506a565b98975050505050505050565b600073ffffffffffffffffffffffffffffffffffffffff808816835280871660208401525084604083015283606083015260a0608083015261567360a083018461506a565b979650505050505050565b602081526000614c8f602083018461502f565b6040815260006156a4604083018561502f565b828103602084015261532e818561502f565b602081526000614c8f602083018461506a565b600067ffffffffffffffff8211156156e3576156e3615939565b5060051b60200190565b60008219821115615700576157006158ac565b500190565b600082615714576157146158db565b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615615751576157516158ac565b500290565b600082821015615768576157686158ac565b500390565b600060ff821660ff841680821015615787576157876158ac565b90039392505050565b60005b838110156157ab578181015183820152602001615793565b838111156157ba576000848401525b50505050565b600181811c908216806157d457607f821691505b6020821081141561580e577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f830116810181811067ffffffffffffffff8211171561585857615858615939565b6040525050565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615891576158916158ac565b5060010190565b6000826158a7576158a76158db565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156159815760046000803e5060005160e01c5b90565b600060443d10156159925790565b6040517ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc803d016004833e81513d67ffffffffffffffff81602484011181841117156159e057505050505090565b82850191508151818111156159f85750505050505090565b843d8701016020828501011115615a125750505050505090565b615a2160208286010187615814565b509095945050505050565b73ffffffffffffffffffffffffffffffffffffffff81168114611e8957600080fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081168114611e8957600080fdfe3c2f746578743e3c7465787420783d2231302220793d2236302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223136302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223132302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d2238302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223130302220636c6173733d2262617365223e3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302033353020333530223e3c7374796c653e2e62617365207b2066696c6c3a2077686974653b20666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a20313470783b207d3c2f7374796c653e3c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d22626c61636b22202f3e3c7465787420783d2231302220793d2232302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223134302220636c6173733d2262617365223e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c2f746578743e3c7465787420783d2231302220793d2234302220636c6173733d2262617365223ea2646970667358221220f558ef904a297907c01590d5af2b3b9c2e94972166bb470d56db1eea4b9dd5e364736f6c63430008070033
Deployed Bytecode Sourcemap
46573:21318:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53537:320;;;;;;:::i;:::-;;:::i;:::-;;33187:231;;;;;;:::i;:::-;;:::i;:::-;;;31647:25:1;;;31635:2;31620:18;33187:231:0;;;;;;;;32210:310;;;;;;:::i;:::-;;:::i;:::-;;;20137:14:1;;20130:22;20112:41;;20100:2;20085:18;32210:310:0;19972:187:1;63444:191:0;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;65040:2796::-;;;;;;:::i;:::-;;:::i;58961:1187::-;;;;;;:::i;:::-;;:::i;64240:186::-;;;;;;:::i;:::-;;:::i;52870:433::-;;;:::i;33584:524::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;52430:175::-;;;:::i;64832:196::-;;;;;;:::i;:::-;;:::i;63003:182::-;;;;;;:::i;:::-;;:::i;54158:420::-;;;;;;:::i;:::-;;:::i;56384:293::-;;;;;;:::i;:::-;;:::i;64040:195::-;;;;;;:::i;:::-;;:::i;5301:94::-;;;:::i;55016:1237::-;;;;;;:::i;:::-;;:::i;63839:195::-;;;;;;:::i;:::-;;:::i;4650:87::-;4723:6;;4650:87;;4723:6;;;;17407:74:1;;17395:2;17380:18;4650:87:0;17261:226:1;52613:252:0;;;;;;:::i;:::-;;:::i;64640:186::-;;;;;;:::i;:::-;;:::i;60172:1232::-;;;;;;:::i;:::-;;:::i;34181:311::-;;;;;;:::i;:::-;;:::i;57148:540::-;;;;;;:::i;:::-;;:::i;64435:194::-;;;;;;:::i;:::-;;:::i;54586:425::-;;;;;;:::i;:::-;;:::i;53311:221::-;;;;;;:::i;:::-;;:::i;57693:678::-;;;;;;:::i;:::-;;:::i;56709:434::-;;;;;;:::i;:::-;;:::i;34564:168::-;;;;;;:::i;:::-;34687:27;;;;34663:4;34687:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;34564:168;63193:246;;;;;;:::i;:::-;;:::i;58450:503::-;;;;;;:::i;:::-;;:::i;5550:192::-;;;;;;:::i;:::-;;:::i;63641:::-;;;;;;:::i;:::-;;:::i;53862:288::-;;;;;;:::i;:::-;;:::i;53537:320::-;51685:77;53597:7;:23;53589:77;;;;;;;22594:2:1;53589:77:0;;;22576:21:1;22633:2;22613:18;;;22606:30;22672:34;22652:18;;;22645:62;22743:11;22723:18;;;22716:39;22772:19;;53589:77:0;;;;;;;;;53671:24;51685:77;53671:24;;:::i;:::-;;-1:-1:-1;53700:31:0;3545:10;53720:7;53729:1;53700:5;:31::i;:::-;53736:18;53757:14;:7;53767:4;53757:14;:::i;:::-;53736:35;-1:-1:-1;53814:38:0;3545:10;53820:12;53834:10;53846:1;53814:38;;;;;;;;;;;;:5;:38::i;:::-;53578:279;53537:320;:::o;33187:231::-;33273:7;33301:21;;;33293:77;;;;;;;22182:2:1;33293:77:0;;;22164:21:1;22221:2;22201:18;;;22194:30;22260:34;22240:18;;;22233:62;22331:13;22311:18;;;22304:41;22362:19;;33293:77:0;21980:407:1;33293:77:0;-1:-1:-1;33388:9:0;:13;;;;;;;;;;;:22;;;;;;;;;;;;;33187:231::o;32210:310::-;32312:4;32349:41;;;32364:26;32349:41;;:110;;-1:-1:-1;32407:52:0;;;32422:37;32407:52;32349:110;:163;;;-1:-1:-1;20100:25:0;20085:40;;;;32476:36;32329:183;32210:310;-1:-1:-1;;32210:310:0:o;63444:191::-;63504:13;51685:77;63533:5;:21;63524:53;;;;;;;27050:2:1;63524:53:0;;;27032:21:1;27089:2;27069:18;;;27062:30;27128:20;27108:18;;;27101:48;27166:18;;63524:53:0;26848:342:1;63524:53:0;63589:41;63604:25;63616:5;63623:1;63626:2;63604:11;:25::i;65040:2796::-;65100:13;51685:77;65124:7;:23;65120:2709;;;65159:22;;:::i;:::-;65193:266;;;;;;;;;;;;;;;;;;;65482:39;65497:23;51685:77;65497:7;:23;:::i;65482:39::-;65471:8;;;;:50;;;65527:26;;;;;;;;;;;;;;;;:8;;;:26;;;65608:8;;65618;;65591:46;;-1:-1:-1;;65591:46:0;;65608:8;;65618;65527:26;65591:46;;:::i;:::-;;;;;;;;;;;;;;;-1:-1:-1;65649:18:0;65670:273;65735:33;65744:23;51685:77;65744:7;:23;:::i;:::-;65735:8;:33::i;:::-;65905:28;65925:6;65905:13;:28::i;:::-;65697:243;;;;;;;;;:::i;:::-;;;;;;;;;;;;;65670:13;:273::i;:::-;65649:294;;66015:4;65965:55;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;65040:2796;-1:-1:-1;;;;;65040:2796:0:o;65120:2709::-;66066:23;;:::i;:::-;66095:266;;;;;;;;;;;;;;;;;;;66380:23;66395:7;66380:14;:23::i;:::-;66369:5;66375:1;66369:8;;;:34;;;;66411:53;;;;;;;;;;;;;;;;;:8;;;:53;66483:23;66498:7;66483:14;:23::i;:::-;66472:8;;;;:34;;;;66514:53;;;;;;;;;;;;;66472:8;66514:53;;;:8;;;:53;66586:26;66604:7;66586:17;:26::i;:::-;66575:8;;;:37;66620:53;;;;;;;;;;;;;;66575:8;66620:53;;;:8;;;:53;66692:26;66710:7;66692:17;:26::i;:::-;66681:8;;;:37;66726:54;;;;;;;;;;;;;;66681:8;66726:54;;;:8;;;:54;66799:17;66808:7;66799:8;:17::i;:::-;66788:8;;;:28;66824:55;;;;;;;;;;;;;;66788:8;66824:55;;;:9;;;:55;66899:16;66907:7;66899;:16::i;:::-;66887:9;;;:28;66923:55;;;;;;;;;;;;;;66887:9;66923:55;;;:9;;;:55;66998:16;67006:7;66998;:16::i;:::-;66986:9;;;:28;67022:55;;;;;;;;;;;;;;66986:9;67022:55;;;:9;;;:55;67097:26;67115:7;67097:17;:26::i;:::-;67085:9;;;:38;67131:27;;;;;;;;;;;;67085:9;67131:27;;;;;;;:9;;;:27;;;;67213:8;;67223;;;;67233;;;;67243;;;;67253;;;;67263;;;;67273;;;;67283;;;;67293;;;;67196:106;;-1:-1:-1;;67196:106:0;;67293:8;;67196:106;;:::i;:::-;;;;;;;;;;;;;;;67350:8;;;;67360:9;;;;67371;;;;67382;;;;67393;;;;67404;;;;67415;;;;67426;;;;67196:106;;-1:-1:-1;67325:111:0;;67196:106;;67426:9;67350:8;67325:111;;:::i;:::-;;;;;;;;;;;;;67309:128;;67448:18;67469:255;67532:17;67541:7;67532:8;:17::i;:::-;67686:28;67706:6;67686:13;:28::i;:::-;67496:225;;;;;;;;;:::i;58961:1187::-;59144:20;;;3545:10;59144:20;;:60;;-1:-1:-1;59168:36:0;59185:4;3545:10;34564:168;:::i;59168:36::-;59122:160;;;;;;;25342:2:1;59122:160:0;;;25324:21:1;25381:2;25361:18;;;25354:30;25420:34;25400:18;;;25393:62;25491:20;25471:18;;;25464:48;25529:19;;59122:160:0;25140:414:1;59122:160:0;59293:13;59325:15;59364:9;59359:364;59383:3;:10;59379:1;:14;59359:364;;;51685:77;59429:3;59433:1;59429:6;;;;;;;;:::i;:::-;;;;;;;:23;59425:287;;59501:4;59488:17;;59425:287;;;59580:7;59588:1;59580:10;;;;;;;;:::i;:::-;;;;;;;59594:1;59580:15;59572:90;;;;;;;28527:2:1;59572:90:0;;;28509:21:1;28566:2;28546:18;;;28539:30;28605:34;28585:18;;;28578:62;28676:32;28656:18;;;28649:60;28726:19;;59572:90:0;28325:426:1;59572:90:0;59692:4;59681:15;;59425:287;59395:3;;;;:::i;:::-;;;;59359:364;;;;59746:8;:22;;;;;59758:10;59746:22;59744:25;59735:105;;;;;;;25761:2:1;59735:105:0;;;25743:21:1;25800:2;25780:18;;;25773:30;25839:34;25819:18;;;25812:62;25910:34;25890:18;;;25883:62;25982:3;25961:19;;;25954:32;26003:19;;59735:105:0;25559:469:1;59735:105:0;59865:10;59861:280;;;59902:52;59925:4;59931:2;59935:3;59940:7;59949:4;59902:22;:52::i;:::-;59861:280;;;60010:9;60005:125;60029:3;:10;60025:1;:14;60005:125;;;60079:35;60091:4;60097:2;60101:3;60105:1;60101:6;;;;;;;;:::i;:::-;;;;;;;60109:4;60079:11;:35::i;:::-;60041:3;;;;:::i;:::-;;;;60005:125;;;;59861:280;59111:1037;;58961:1187;;;;;:::o;64240:186::-;64294:13;51685:77;64323:5;:21;64314:53;;;;;;;27050:2:1;64314:53:0;;;27032:21:1;27089:2;27069:18;;;27062:30;27128:20;27108:18;;;27101:48;27166:18;;64314:53:0;26848:342:1;64314:53:0;64379:42;64394:26;64406:5;64413:2;64417;64394:11;:26::i;52870:433::-;52916:25;51549:42;52944:22;3545:10;52944:36;;;;;;;;;;17437:42:1;17425:55;;;52944:36:0;;;17407:74:1;17380:18;;52944:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52916:64;;53021:1;53001:17;:21;52993:62;;;;;;;24169:2:1;52993:62:0;;;24151:21:1;24208:2;24188:18;;;24181:30;24247;24227:18;;;24220:58;24295:18;;52993:62:0;23967:352:1;52993:62:0;53073:9;53068:228;53092:17;53088:1;:21;53068:228;;;53131:14;51549:42;53148:32;3545:10;53148:49;;;;;;;;;;19138:42:1;19126:55;;;53148:49:0;;;19108:74:1;19198:18;;;19191:34;;;19081:18;;53148:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56316:4;56340:14;;;:7;:14;;;;;;53131:66;;-1:-1:-1;56340:28:0;:14;53212:73;;53252:17;53262:6;53252:9;:17::i;:::-;-1:-1:-1;53111:3:0;;;;:::i;:::-;;;;53068:228;;33584:524;33740:16;33801:3;:10;33782:8;:15;:29;33774:83;;;;;;;30130:2:1;33774:83:0;;;30112:21:1;30169:2;30149:18;;;30142:30;30208:34;30188:18;;;30181:62;30279:11;30259:18;;;30252:39;30308:19;;33774:83:0;29928:405:1;33774:83:0;33870:30;33917:8;:15;33903:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33903:30:0;;33870:63;;33951:9;33946:122;33970:8;:15;33966:1;:19;33946:122;;;34026:30;34036:8;34045:1;34036:11;;;;;;;;:::i;:::-;;;;;;;34049:3;34053:1;34049:6;;;;;;;;:::i;:::-;;;;;;;34026:9;:30::i;:::-;34007:13;34021:1;34007:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;33987:3;;;:::i;:::-;;;33946:122;;;-1:-1:-1;34087:13:0;33584:524;-1:-1:-1;;;33584:524:0:o;52430:175::-;52479:15;;51846:5;-1:-1:-1;52479:25:0;52471:74;;;;;;;29315:2:1;52471:74:0;;;29297:21:1;29354:2;29334:18;;;29327:30;29393:34;29373:18;;;29366:62;29464:6;29444:18;;;29437:34;29488:19;;52471:74:0;29113:400:1;52471:74:0;52552:26;52562:15;;52552:9;:26::i;:::-;52583:15;:17;;;:15;:17;;;:::i;:::-;;;;;;52430:175::o;64832:196::-;64895:13;51685:77;64924:5;:21;64915:53;;;;;;;27050:2:1;64915:53:0;;;27032:21:1;27089:2;27069:18;;;27062:30;27128:20;27108:18;;;27101:48;27166:18;;64915:53:0;26848:342:1;64915:53:0;64980:43;64995:27;65007:5;65014:3;65019:2;64995:11;:27::i;63003:182::-;63068:7;51685:77;63091:5;:21;63082:53;;;;;;;27050:2:1;63082:53:0;;;27032:21:1;27089:2;27069:18;;;27062:30;27128:20;27108:18;;;27101:48;27166:18;;63082:53:0;26848:342:1;63082:53:0;-1:-1:-1;63153:24:0;;;;:17;:24;;;;;;;63003:182::o;54158:420::-;51685:77;54238:7;:23;54230:77;;;;;;;22594:2:1;54230:77:0;;;22576:21:1;22633:2;22613:18;;;22606:30;22672:34;22652:18;;;22645:62;22743:11;22723:18;;;22716:39;22772:19;;54230:77:0;22392:405:1;54230:77:0;54334:1;54326:5;:9;54318:45;;;;;;;28175:2:1;54318:45:0;;;28157:21:1;28214:2;28194:18;;;28187:30;28253:25;28233:18;;;28226:53;28296:18;;54318:45:0;27973:347:1;54318:45:0;54370:24;51685:77;54370:24;;:::i;:::-;;-1:-1:-1;54401:40:0;3545:10;54421:7;54430:1;:10;;54401:5;:40::i;:::-;54446:18;54478:12;54485:5;54478:4;:12;:::i;:::-;54467:24;;:7;:24;:::i;:::-;54446:45;-1:-1:-1;54535:38:0;3545:10;54541:12;3465:98;54535:38;54219:359;54158:420;;:::o;56384:293::-;56442:4;56459:25;56487:22;56503:5;56487:15;:22::i;:::-;56459:50;;56525:9;56520:128;56544:1;56540;:5;56520:128;;;56580:9;:22;56590:8;56599:1;56590:11;;;;;;;;:::i;:::-;;;;;;;56580:22;;;;;;;;;;;:36;56603:12;3545:10;;3465:98;56603:12;56580:36;;;;;;;;;;;;;-1:-1:-1;56580:36:0;;56576:60;;-1:-1:-1;56631:5:0;;56384:293;-1:-1:-1;;;56384:293:0:o;56576:60::-;56547:3;;;;:::i;:::-;;;;56520:128;;;-1:-1:-1;56665:4:0;;56384:293;-1:-1:-1;;;56384:293:0:o;64040:195::-;64103:13;51685:77;64132:5;:21;64123:53;;;;;;;27050:2:1;64123:53:0;;;27032:21:1;27089:2;27069:18;;;27062:30;27128:20;27108:18;;;27101:48;27166:18;;64123:53:0;26848:342:1;64123:53:0;64188:42;64203:26;64215:5;64222:2;64226;64203:11;:26::i;5301:94::-;4723:6;;4870:23;4723:6;3545:10;4870:23;4862:68;;;;;;;27814:2:1;4862:68:0;;;27796:21:1;;;27833:18;;;27826:30;27892:34;27872:18;;;27865:62;27944:18;;4862:68:0;27612:356:1;4862:68:0;5366:21:::1;5384:1;5366:9;:21::i;:::-;5301:94::o:0;55016:1237::-;55113:1;55080:16;;;;;;;;;;;3545:10;55080:30;;;;;;;;55072:70;;;;;;;31351:2:1;55072:70:0;;;31333:21:1;31390:2;31370:18;;;31363:30;31429:25;31409:18;;;31402:53;31472:18;;55072:70:0;31149:347:1;55072:70:0;55153:17;55173:24;;;:17;:24;;;;;;55218:14;;;:43;;;55252:9;55236:12;:25;;55218:43;55210:99;;;;;;;21770:2:1;55210:99:0;;;21752:21:1;21809:2;21789:18;;;21782:30;21848:34;21828:18;;;21821:62;21919:13;21899:18;;;21892:41;21950:19;;55210:99:0;21568:407:1;55210:99:0;55330:12;55380:5;55418:11;55402:13;55387:12;:28;:42;55363:68;;;;;;;;16835:19:1;;;16879:2;16870:12;;16863:28;16916:2;16907:12;;16678:247;55363:68:0;;;;;;;;;;;;;;55353:79;;55363:68;55353:79;;;;;-1:-1:-1;55345:88:0;55472:8;55479:1;55353:79;55472:8;:::i;:::-;55444:37;-1:-1:-1;55492:20:0;55528:18;;;55525:425;;-1:-1:-1;55565:2:0;55525:425;;;55586:13;:18;;55603:1;55586:18;55583:367;;;-1:-1:-1;55623:2:0;55583:367;;;55644:13;:18;;55661:1;55644:18;55641:309;;;-1:-1:-1;55681:2:0;55641:309;;;55702:13;:18;;55719:1;55702:18;55699:251;;;-1:-1:-1;55739:2:0;55699:251;;;55760:13;:18;;55777:1;55760:18;55757:193;;;-1:-1:-1;55797:2:0;55757:193;;;55818:13;:18;;55835:1;55818:18;55815:135;;;-1:-1:-1;55855:2:0;55815:135;;;55876:13;:18;;55893:1;55876:18;55873:77;;;-1:-1:-1;55913:2:0;55873:77;;;-1:-1:-1;55948:2:0;55873:77;55965:15;51685:77;55983:48;55995:4;56001:13;56016:14;55983:11;:48::i;:::-;:64;;;;:::i;:::-;55965:82;-1:-1:-1;56060:35:0;3545:10;56066:12;3465:98;56060:35;56112:19;56125:5;56112:12;:19::i;:::-;56108:137;;;56161:20;:12;56176:5;56161:20;:::i;:::-;56134:24;;;;:17;:24;;;;;:47;56108:137;;;56224:21;:12;56239:6;56224:21;:::i;:::-;56197:24;;;;:17;:24;;;;;:48;56108:137;55061:1192;;;;;55016:1237;:::o;63839:195::-;63902:13;51685:77;63931:5;:21;63922:53;;;;;;;27050:2:1;63922:53:0;;;27032:21:1;27089:2;27069:18;;;27062:30;27128:20;27108:18;;;27101:48;27166:18;;63922:53:0;26848:342:1;63922:53:0;63987:42;64002:26;64014:5;64021:2;64025;64002:11;:26::i;52613:252::-;3545:10;52673:29;;;;;;;;31647:25:1;;;52673:45:0;;;;;;51549:42;;52673:20;;31620:18:1;;52673:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:45;;;52665:106;;;;;;;27397:2:1;52665:106:0;;;27379:21:1;27436:2;27416:18;;;27409:30;27475:34;27455:18;;;27448:62;27546:18;27526;;;27519:46;27582:19;;52665:106:0;27195:412:1;52665:106:0;56316:4;56340:14;;;:7;:14;;;;;;:28;:14;:28;52776:58;;;;;;;28958:2:1;52776:58:0;;;28940:21:1;28997:2;28977:18;;;28970:30;29036;29016:18;;;29009:58;29084:18;;52776:58:0;28756:352:1;52776:58:0;52839:18;52849:7;52839:9;:18::i;:::-;52613:252;:::o;64640:186::-;64693:13;51685:77;64722:5;:21;64713:53;;;;;;;27050:2:1;64713:53:0;;;27032:21:1;27089:2;27069:18;;;27062:30;27128:20;27108:18;;;27101:48;27166:18;;64713:53:0;26848:342:1;64713:53:0;64778:43;64793:27;64805:5;64812:3;64817:2;64793:11;:27::i;60172:1232::-;60234:13;;60281:18;60302:13;60312:3;60302:7;:13;:::i;:::-;60281:34;-1:-1:-1;60320:19:0;60342:13;60352:3;60342:7;:13;:::i;:::-;60320:35;;60382:2;60368:11;:16;60364:644;;;60405:12;60418:11;60405:25;;;;;;;;:::i;:::-;;;;;;;;60396:34;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60364:644;;;60463:2;60449:11;:16;60445:563;;;60486:12;60499:16;60513:2;60499:11;:16;:::i;:::-;60486:30;;;;;;;;:::i;60445:563::-;60549:2;60535:11;:16;60531:477;;;60572:15;60588:16;60602:2;60588:11;:16;:::i;60531:477::-;60638:2;60624:11;:16;60620:388;;;60661:15;60677:16;60691:2;60677:11;:16;:::i;60620:388::-;60727:2;60713:11;:16;60709:299;;;60750:6;60757:16;60771:2;60757:11;:16;:::i;60709:299::-;60807:3;60793:11;:17;60789:219;;;60831:5;60837:16;60851:2;60837:11;:16;:::i;60789:219::-;60887:3;60873:11;:17;60869:139;;;60911:5;60917:17;60931:3;60917:11;:17;:::i;60869:139::-;60968:15;60984:17;60998:3;60984:11;:17;:::i;:::-;60968:34;;;;;;;;:::i;:::-;;;;;;;;60959:43;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60869:139;61014:23;61040:15;61053:2;61040:10;:15;:::i;:::-;61014:41;-1:-1:-1;61089:19:0;;61085:120;;61153:12;61166:15;61153:29;;;;;;;;:::i;:::-;;;;;;;;61191:6;61136:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61120:79;;61085:120;61211:18;61232:15;61245:2;61232:10;:15;:::i;:::-;61211:36;-1:-1:-1;61279:14:0;;61275:105;;61338:6;61352:20;61361:10;61352:8;:20::i;:::-;61321:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61305:69;;61275:105;-1:-1:-1;61393:6:0;;60172:1232;-1:-1:-1;;;;;60172:1232:0:o;34181:311::-;3545:10;34284:24;;;;;34276:78;;;;;;;29720:2:1;34276:78:0;;;29702:21:1;29759:2;29739:18;;;29732:30;29798:34;29778:18;;;29771:62;29869:11;29849:18;;;29842:39;29898:19;;34276:78:0;29518:405:1;34276:78:0;3545:10;34367:32;;;;:18;:32;;;;;;;;;:42;;;;;;;;;;;;:53;;;;;;;;;;;;;34436:48;;20112:41:1;;;34367:42:0;;3545:10;34436:48;;20085:18:1;34436:48:0;;;;;;;34181:311;;:::o;57148:540::-;57315:20;;;3545:10;57315:20;;:60;;-1:-1:-1;57339:36:0;57356:4;3545:10;34564:168;:::i;57339:36::-;57293:151;;;;;;;24526:2:1;57293:151:0;;;24508:21:1;24565:2;24545:18;;;24538:30;24604:34;24584:18;;;24577:62;24675:11;24655:18;;;24648:39;24704:19;;57293:151:0;24324:405:1;57293:151:0;57454:9;57449:173;57473:3;57469:1;:7;57449:173;;;51685:77;57509:8;57518:1;57509:11;;;;;;;;:::i;:::-;;;;;;;:27;57501:81;;;;;;;22594:2:1;57501:81:0;;;22576:21:1;22633:2;22613:18;;;22606:30;22672:34;22652:18;;;22645:62;22743:11;22723:18;;;22716:39;22772:19;;57501:81:0;22392:405:1;57501:81:0;51685:77;57588:8;57597:1;57588:11;;;;;;;;:::i;:::-;;;;;;:28;;;;;;;:::i;:::-;;;-1:-1:-1;57478:3:0;;;;:::i;:::-;;;;57449:173;;;;57626:57;57649:4;57655:2;57659:8;57669:7;57678:4;57626:22;:57::i;:::-;57148:540;;;;;:::o;64435:194::-;64488:13;51685:77;64517:5;:21;64508:53;;;;;;;27050:2:1;64508:53:0;;;27032:21:1;27089:2;27069:18;;;27062:30;27128:20;27108:18;;;27101:48;27166:18;;64508:53:0;26848:342:1;64508:53:0;64579:42;64594:26;64606:5;64613:2;64617;64594:11;:26::i;54586:425::-;51685:77;54668:7;:23;54660:77;;;;;;;22594:2:1;54660:77:0;;;22576:21:1;22633:2;22613:18;;;22606:30;22672:34;22652:18;;;22645:62;22743:11;22723:18;;;22716:39;22772:19;;54660:77:0;22392:405:1;54660:77:0;54764:1;54756:5;:9;54748:45;;;;;;;28175:2:1;54748:45:0;;;28157:21:1;28214:2;28194:18;;;28187:30;28253:25;28233:18;;;28226:53;28296:18;;54748:45:0;27973:347:1;54748:45:0;54800:24;51685:77;54800:24;;:::i;:::-;;-1:-1:-1;54831:31:0;3545:10;54851:7;54860:1;54831:5;:31::i;:::-;54867:18;54899:12;54906:5;54899:4;:12;:::i;:::-;54888:24;;:7;:24;:::i;:::-;54867:45;-1:-1:-1;54956:47:0;3545:10;54976;54993:5;54988:1;:10;;54956:47;;;;;;;;;;;;:5;:47::i;53311:221::-;4723:6;;4870:23;4723:6;3545:10;4870:23;4862:68;;;;;;;27814:2:1;4862:68:0;;;27796:21:1;;;27833:18;;;27826:30;27892:34;27872:18;;;27865:62;27944:18;;4862:68:0;27612:356:1;4862:68:0;53394:4:::1;53386:5;:12;:28;;;;;53410:4;53402:5;:12;53386:28;53377:63;;;::::0;::::1;::::0;;21420:2:1;53377:63:0::1;::::0;::::1;21402:21:1::0;21459:2;21439:18;;;21432:30;21498:23;21478:18;;;21471:51;21539:18;;53377:63:0::1;21218:345:1::0;53377:63:0::1;56316:4:::0;56340:14;;;:7;:14;;;;;;:28;:14;:28;53445:52:::1;;;::::0;::::1;::::0;;23816:2:1;53445:52:0::1;::::0;::::1;23798:21:1::0;23855:2;23835:18;;;23828:30;23894:26;23874:18;;;23867:54;23938:18;;53445:52:0::1;23614:348:1::0;57693:678:0;57814:20;;;3545:10;57814:20;;:60;;-1:-1:-1;57838:36:0;57855:4;3545:10;34564:168;:::i;57838:36::-;57792:151;;;;;;;24526:2:1;57792:151:0;;;24508:21:1;24565:2;24545:18;;;24538:30;24604:34;24584:18;;;24577:62;24675:11;24655:18;;;24648:39;24704:19;;57792:151:0;24324:405:1;57792:151:0;57948:25;57976:22;57992:5;57976:15;:22::i;:::-;58032:16;;;58046:1;58032:16;;;;;;;;;57948:50;;-1:-1:-1;58005:24:0;;58032:16;;;;;;;;;;;-1:-1:-1;58032:16:0;58005:43;;58074:1;58053:7;58061:1;58053:10;;;;;;;;:::i;:::-;;;;;;:23;;;;;58102:1;58081:7;58089:1;58081:10;;;;;;;;:::i;:::-;;;;;;:23;;;;;58130:1;58109:7;58117:1;58109:10;;;;;;;;:::i;:::-;;;;;;:23;;;;;58158:1;58137:7;58145:1;58137:10;;;;;;;;:::i;:::-;;;;;;:23;;;;;58186:1;58165:7;58173:1;58165:10;;;;;;;;:::i;:::-;;;;;;:23;;;;;58214:1;58193:7;58201:1;58193:10;;;;;;;;:::i;:::-;;;;;;:23;;;;;58242:1;58221:7;58229:1;58221:10;;;;;;;;:::i;:::-;;;;;;:23;;;;;58270:1;58249:7;58257:1;58249:10;;;;;;;;:::i;:::-;;;;;;:23;;;;;58298:1;58277:7;58285:1;58277:10;;;;;;;;:::i;:::-;;;;;;:23;;;;;58309:57;58332:4;58338:2;58342:8;58352:7;58361:4;58309:22;:57::i;56709:434::-;56850:20;;;3545:10;56850:20;;:60;;-1:-1:-1;56874:36:0;56891:4;3545:10;34564:168;:::i;56874:36::-;56828:151;;;;;;;24526:2:1;56828:151:0;;;24508:21:1;24565:2;24545:18;;;24538:30;24604:34;24584:18;;;24577:62;24675:11;24655:18;;;24648:39;24704:19;;56828:151:0;24324:405:1;56828:151:0;51685:77;56998:7;:23;56990:77;;;;;;;22594:2:1;56990:77:0;;;22576:21:1;22633:2;22613:18;;;22606:30;22672:34;22652:18;;;22645:62;22743:11;22723:18;;;22716:39;22772:19;;56990:77:0;22392:405:1;56990:77:0;57072:66;57090:4;57096:2;57100:23;51685:77;57100:7;:23;:::i;:::-;57125:6;57133:4;57072:17;:66::i;63193:246::-;63272:7;51685:77;63301:7;:23;63292:78;;;;;;;22594:2:1;63292:78:0;;;22576:21:1;22633:2;22613:18;;;22606:30;22672:34;22652:18;;;22645:62;22743:11;22723:18;;;22716:39;22772:19;;63292:78:0;22392:405:1;63292:78:0;63388:9;;63398:23;51685:77;63398:7;:23;:::i;:::-;63388:34;;;;;;;;;;;:43;63423:7;63388:43;;;;;;;;;;;;;;;;63381:50;;63193:246;;;;:::o;58450:503::-;51685:77;58582:2;:19;58578:368;;58655:20;;;3545:10;58655:20;;:60;;-1:-1:-1;58679:36:0;58696:4;3545:10;34564:168;:::i;58679:36::-;58629:163;;;;;;;24526:2:1;58629:163:0;;;24508:21:1;24565:2;24545:18;;;24538:30;24604:34;24584:18;;;24577:62;24675:11;24655:18;;;24648:39;24704:19;;58629:163:0;24324:405:1;58629:163:0;58807:45;58825:4;58831:2;58835;58839:6;58847:4;58807:17;:45::i;:::-;58578:368;;;58903:31;58915:4;58921:2;58925;58929:4;58903:11;:31::i;5550:192::-;4723:6;;4870:23;4723:6;3545:10;4870:23;4862:68;;;;;;;27814:2:1;4862:68:0;;;27796:21:1;;;27833:18;;;27826:30;27892:34;27872:18;;;27865:62;27944:18;;4862:68:0;27612:356:1;4862:68:0;5639:22:::1;::::0;::::1;5631:73;;;::::0;::::1;::::0;;23004:2:1;5631:73:0::1;::::0;::::1;22986:21:1::0;23043:2;23023:18;;;23016:30;23082:34;23062:18;;;23055:62;23153:8;23133:18;;;23126:36;23179:19;;5631:73:0::1;22802:402:1::0;5631:73:0::1;5715:19;5725:8;5715:9;:19::i;63641:192::-:0;63701:13;51685:77;63730:5;:21;63721:53;;;;;;;27050:2:1;63721:53:0;;;27032:21:1;27089:2;27069:18;;;27062:30;27128:20;27108:18;;;27101:48;27166:18;;63721:53:0;26848:342:1;63721:53:0;63786:42;63801:26;63813:5;63820:2;63824;63801:11;:26::i;53862:288::-;51685:77;53924:7;:23;53916:77;;;;;;;22594:2:1;53916:77:0;;;22576:21:1;22633:2;22613:18;;;22606:30;22672:34;22652:18;;;22645:62;22743:11;22723:18;;;22716:39;22772:19;;53916:77:0;22392:405:1;53916:77:0;53998:24;51685:77;53998:24;;:::i;:::-;;-1:-1:-1;54027:31:0;3545:10;54047:7;54056:1;54027:5;:31::i;:::-;54063:20;54086:14;54096:4;54086:7;:14;:::i;:::-;54063:37;-1:-1:-1;54105:40:0;3545:10;54125:12;54139:1;54105:40;;;;;;;;;;;;:5;:40::i;41722:675::-;41852:21;;;41844:69;;;;;;;26235:2:1;41844:69:0;;;26217:21:1;26274:2;26254:18;;;26247:30;26313:34;26293:18;;;26286:62;26384:5;26364:18;;;26357:33;26407:19;;41844:69:0;26033:399:1;41844:69:0;3545:10;41970:105;3545:10;42001:7;41926:16;42022:21;42040:2;42022:17;:21::i;:::-;42045:25;42063:6;42045:17;:25::i;:::-;-1:-1:-1;;41970:105:0;;;;;;;;;-1:-1:-1;41970:105:0;;-1:-1:-1;;;55016:1237:0;41970:105;42088:22;42113:13;;;;;;;;;;;:22;;;;;;;;;;;42154:24;;;;42146:73;;;;;;;23411:2:1;42146:73:0;;;23393:21:1;23450:2;23430:18;;;23423:30;23489:34;23469:18;;;23462:62;23560:6;23540:18;;;23533:34;23584:19;;42146:73:0;23209:400:1;42146:73:0;42255:9;:13;;;;;;;;;;;:22;;;;;;;;;;;;;42280:23;;;42255:48;;42332:57;;31857:25:1;;;31898:18;;;31891:34;;;42255:22:0;;42332:57;;;;;;31830:18:1;42332:57:0;;;;;;;41833:564;;41722:675;;;:::o;39773:599::-;39931:21;;;39923:67;;;;;;;30949:2:1;39923:67:0;;;30931:21:1;30988:2;30968:18;;;30961:30;31027:34;31007:18;;;31000:62;31098:3;31078:18;;;31071:31;31119:19;;39923:67:0;30747:397:1;39923:67:0;3545:10;40047:107;3545:10;40003:16;40090:7;40099:21;40117:2;40099:17;:21::i;:::-;40122:25;40140:6;40122:17;:25::i;40047:107::-;40167:9;:13;;;;;;;;;;;:22;;;;;;;;;;:32;;40193:6;;40167:9;:32;;40193:6;;40167:32;:::i;:::-;;;;-1:-1:-1;;40215:57:0;;;31857:25:1;;;31913:2;31898:18;;31891:34;;;40215:57:0;;;;;40248:1;;40215:57;;;;;;31830:18:1;40215:57:0;;;;;;;40285:79;40316:8;40334:1;40338:7;40347:2;40351:6;40359:4;40285:30;:79::i;61409:764::-;61511:15;61539:12;61589:5;61596:13;61572:38;;;;;;;;17083:19:1;;;17140:3;17136:16;17154:66;17132:89;17127:2;17118:12;;17111:111;17247:2;17238:12;;16930:326;61572:38:0;;;;;;;;;;;;;;61562:49;;61572:38;61562:49;;;;;-1:-1:-1;61554:58:0;61640:11;61647:4;61562:49;61640:11;:::i;:::-;61623:28;;61675:1;61666:6;:10;61662:286;;;61736:1;61712:21;;;;:4;:21;:::i;:::-;:25;;;;:::i;:::-;61702:35;;61662:286;;;61777:2;61768:6;:11;61764:184;;;61839:1;61815:21;;;;:4;:21;:::i;:::-;:25;;;;:::i;:::-;:29;;61843:1;61815:29;:::i;61764:184::-;61913:18;61930:1;61913:14;:18;:::i;:::-;61905:27;;;;:4;:27;:::i;:::-;:31;;61935:1;61905:31;:::i;:::-;61895:41;;61764:184;61954:24;;;;;;:::i;:::-;;;61993:16;62057:4;62047;62030:22;;;;;;16620:19:1;;16664:2;16655:12;;16491:182;62030:22:0;;;;;;;;;;;;;62020:33;;;;;;62012:42;;:49;;;;:::i;:::-;61993:68;;62081:2;62070:8;:13;62066:75;;;62128:7;62105:13;62116:2;62105:8;:13;:::i;:::-;62104:21;;62122:3;62104:21;:::i;:::-;:31;;;;:::i;:::-;62094:41;;62066:75;62151:14;;;61409:764;;;;;:::o;67:638::-;114:13;323:10;319:45;;-1:-1:-1;;346:10:0;;;;;;;;;;;;;;;;;;67:638::o;319:45::-;385:5;370:12;418:66;425:9;;418:66;;447:8;;;;:::i;:::-;;-1:-1:-1;466:10:0;;-1:-1:-1;474:2:0;466:10;;:::i;:::-;;;418:66;;;490:19;522:6;512:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;512:17:0;;490:39;;536:138;543:10;;536:138;;566:11;576:1;566:11;;:::i;:::-;;-1:-1:-1;631:10:0;639:2;631:5;:10;:::i;:::-;618:24;;:2;:24;:::i;:::-;605:39;;588:6;595;588:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;655:11:0;664:2;655:11;;:::i;:::-;;;536:138;;;694:6;67:638;-1:-1:-1;;;;67:638:0:o;1065:1790::-;1163:11;;1123:13;;1189:8;1185:23;;-1:-1:-1;;1199:9:0;;;;;;;;;-1:-1:-1;1199:9:0;;;1065:1790;-1:-1:-1;1065:1790:0:o;1185:23::-;1260:18;1298:1;1287:7;:3;1293:1;1287:7;:::i;:::-;1286:13;;;;:::i;:::-;1281:19;;:1;:19;:::i;:::-;1260:40;-1:-1:-1;1358:19:0;1390:15;1260:40;1403:2;1390:15;:::i;:::-;1380:26;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1380:26:0;;1358:48;;1419:18;1440:5;;;;;;;;;;;;;;;;;1419:26;;1509:1;1502:5;1498:13;1554:2;1546:6;1542:15;1605:1;1573:960;1628:3;1625:1;1622:10;1573:960;;;1683:1;1726:12;;;;;1720:19;1821:4;1809:2;1805:14;;;;;1787:40;;1781:47;1973:2;1969:14;;;1965:25;;1951:40;;1945:47;2163:1;2159:13;;;2155:24;;2141:39;;2135:46;2344:16;;;;2330:31;;2324:38;1857:1;1853:11;;;1994:4;1941:58;;;1889:129;2043:11;;2131:57;;;2079:128;;;;2232:11;;2320:49;;2268:120;2417:3;2413:13;2446:22;;2516:1;2501:17;;;;1676:9;1573:960;;;1577:44;2565:1;2560:3;2556:11;2586:1;2581:84;;;;2684:1;2679:82;;;;2549:212;;2581:84;2633:16;2614:17;;;2607:43;2581:84;;2679:82;2731:14;2712:17;;;2705:41;2549:212;-1:-1:-1;;;2777:26:0;;;2784:6;1065:1790;-1:-1:-1;;;;1065:1790:0:o;37366:1074::-;37593:7;:14;37579:3;:10;:28;37571:81;;;;;;;30540:2:1;37571:81:0;;;30522:21:1;30579:2;30559:18;;;30552:30;30618:34;30598:18;;;30591:62;30689:10;30669:18;;;30662:38;30717:19;;37571:81:0;30338:404:1;37571:81:0;37671:16;;;37663:66;;;;;;;24936:2:1;37663:66:0;;;24918:21:1;24975:2;24955:18;;;24948:30;25014:34;24994:18;;;24987:62;25085:7;25065:18;;;25058:35;25110:19;;37663:66:0;24734:401:1;37663:66:0;3545:10;37742:16;37859:421;37883:3;:10;37879:1;:14;37859:421;;;37915:10;37928:3;37932:1;37928:6;;;;;;;;:::i;:::-;;;;;;;37915:19;;37949:14;37966:7;37974:1;37966:10;;;;;;;;:::i;:::-;;;;;;;;;;;;37993:19;38015:13;;;;;;;;;;:19;;;;;;;;;;;;;37966:10;;-1:-1:-1;38057:21:0;;;;38049:76;;;;;;;26639:2:1;38049:76:0;;;26621:21:1;26678:2;26658:18;;;26651:30;26717:34;26697:18;;;26690:62;26788:12;26768:18;;;26761:40;26818:19;;38049:76:0;26437:406:1;38049:76:0;38169:9;:13;;;;;;;;;;;:19;;;;;;;;;;;38191:20;;;38169:42;;38241:17;;;;;;;:27;;38191:20;;38169:9;38241:27;;38191:20;;38241:27;:::i;:::-;;;;;;;;37900:380;;;37895:3;;;;:::i;:::-;;;37859:421;;;;38327:2;38297:47;;38321:4;38297:47;;38311:8;38297:47;;;38331:3;38336:7;38297:47;;;;;;;:::i;:::-;;;;;;;;38357:75;38393:8;38403:4;38409:2;38413:3;38418:7;38427:4;38357:35;:75::i;51922:503::-;51969:25;51997:22;52013:5;51997:15;:22::i;:::-;52053:16;;;52067:1;52053:16;;;;;;;;;51969:50;;-1:-1:-1;52026:24:0;;52053:16;;;;;;;;;;;-1:-1:-1;52053:16:0;52026:43;;52095:1;52074:7;52082:1;52074:10;;;;;;;;:::i;:::-;;;;;;:23;;;;;52123:1;52102:7;52110:1;52102:10;;;;;;;;:::i;:::-;;;;;;:23;;;;;52151:1;52130:7;52138:1;52130:10;;;;;;;;:::i;:::-;;;;;;:23;;;;;52179:1;52158:7;52166:1;52158:10;;;;;;;;:::i;:::-;;;;;;:23;;;;;52207:1;52186:7;52194:1;52186:10;;;;;;;;:::i;:::-;;;;;;:23;;;;;52235:1;52214:7;52222:1;52214:10;;;;;;;;:::i;:::-;;;;;;:23;;;;;52263:1;52242:7;52250:1;52242:10;;;;;;;;:::i;:::-;;;;;;:23;;;;;52291:1;52270:7;52278:1;52270:10;;;;;;;;:::i;:::-;;;;;;:23;;;;;52319:1;52298:7;52306:1;52298:10;;;;;;;;:::i;:::-;;;;;;;;;;:23;52330:47;3545:10;52355:8;52365:7;52330:47;;;;;;;;;;;;:10;:47::i;:::-;-1:-1:-1;;52388:14:0;;;;:7;:14;;;;;:29;;;;3545:10;52388:29;;;51922:503::o;62182:791::-;62296:16;;;62310:1;62296:16;;;;;;;;;62245;;62268:25;;62296:16;;;;;;;;;;;-1:-1:-1;62296:16:0;62268:44;;51685:77;62333:25;62345:5;62352:1;62355:2;62333:11;:25::i;:::-;:41;;;;:::i;:::-;62319:8;62328:1;62319:11;;;;;;;;:::i;:::-;;;;;;:55;;;;;51685:77;62409:26;62421:5;62428:2;62432;62409:11;:26::i;:::-;:42;;;;:::i;:::-;62395:8;62404:1;62395:11;;;;;;;;:::i;:::-;;;;;;:56;;;;;51685:77;62486:26;62498:5;62505:2;62509;62486:11;:26::i;:::-;:42;;;;:::i;:::-;62472:8;62481:1;62472:11;;;;;;;;:::i;:::-;;;;;;:56;;;;;51685:77;62566:26;62578:5;62585:2;62589;62566:11;:26::i;:::-;:42;;;;:::i;:::-;62552:8;62561:1;62552:11;;;;;;;;:::i;:::-;;;;;;:56;;;;;51685:77;62646:26;62658:5;62665:2;62669;62646:11;:26::i;:::-;:42;;;;:::i;:::-;62632:8;62641:1;62632:11;;;;;;;;:::i;:::-;;;;;;:56;;;;;51685:77;62717:26;62729:5;62736:2;62740;62717:11;:26::i;:::-;:42;;;;:::i;:::-;62703:8;62712:1;62703:11;;;;;;;;:::i;:::-;;;;;;:56;;;;;51685:77;62787:27;62799:5;62806:3;62811:2;62787:11;:27::i;:::-;:43;;;;:::i;:::-;62773:8;62782:1;62773:11;;;;;;;;:::i;:::-;;;;;;:57;;;;;51685:77;62858:27;62870:5;62877:3;62882:2;62858:11;:27::i;:::-;:43;;;;:::i;:::-;62844:8;62853:1;62844:11;;;;;;;;:::i;:::-;;;;;;:57;;;;;62941:5;62927:8;62936:1;62927:11;;;;;;;;:::i;:::-;;;;;;;;;;:19;62960:8;62182:791;-1:-1:-1;;62182:791:0:o;5750:173::-;5825:6;;;;5842:17;;;;;;;;;;;5875:40;;5825:6;;;5842:17;5825:6;;5875:40;;5806:16;;5875:40;5795:128;5750:173;:::o;36188:820::-;36376:16;;;36368:66;;;;;;;24936:2:1;36368:66:0;;;24918:21:1;24975:2;24955:18;;;24948:30;25014:34;24994:18;;;24987:62;25085:7;25065:18;;;25058:35;25110:19;;36368:66:0;24734:401:1;36368:66:0;3545:10;36491:96;3545:10;36522:4;36528:2;36532:21;36550:2;36532:17;:21::i;36491:96::-;36600:19;36622:13;;;;;;;;;;;:19;;;;;;;;;;;36660:21;;;;36652:76;;;;;;;26639:2:1;36652:76:0;;;26621:21:1;26678:2;26658:18;;;26651:30;26717:34;26697:18;;;26690:62;26788:12;26768:18;;;26761:40;26818:19;;36652:76:0;26437:406:1;36652:76:0;36764:9;:13;;;;;;;;;;;:19;;;;;;;;;;;36786:20;;;36764:42;;36828:17;;;;;;;:27;;36786:20;;36764:9;36828:27;;36786:20;;36828:27;:::i;:::-;;;;-1:-1:-1;;36873:46:0;;;31857:25:1;;;31913:2;31898:18;;31891:34;;;36873:46:0;;;;;;;;;;;;;;;31830:18:1;36873:46:0;;;;;;;36932:68;36963:8;36973:4;36979:2;36983;36987:6;36995:4;36932:30;:68::i;46276:198::-;46396:16;;;46410:1;46396:16;;;;;;;;;46342;;46371:22;;46396:16;;;;;;;;;;;;-1:-1:-1;46396:16:0;46371:41;;46434:7;46423:5;46429:1;46423:8;;;;;;;;:::i;44703:744::-;44918:13;;;21209:20;21257:8;44914:526;;44954:72;;;;;:38;;;;;;:72;;44993:8;;45003:4;;45009:2;;45013:6;;45021:4;;44954:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44954:72:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44950:479;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;45302:6;45295:14;;;;;;;;;;;:::i;44950:479::-;;;45351:62;;;;;20590:2:1;45351:62:0;;;20572:21:1;20629:2;20609:18;;;20602:30;20668:34;20648:18;;;20641:62;20739:22;20719:18;;;20712:50;20779:19;;45351:62:0;20388:416:1;44950:479:0;45076:55;;;45088:43;45076:55;45072:154;;45156:50;;;;;21011:2:1;45156:50:0;;;20993:21:1;21050:2;21030:18;;;21023:30;21089:34;21069:18;;;21062:62;21160:10;21140:18;;;21133:38;21188:19;;45156:50:0;20809:404:1;45455:813:0;45695:13;;;21209:20;21257:8;45691:570;;45731:79;;;;;:43;;;;;;:79;;45775:8;;45785:4;;45791:3;;45796:7;;45805:4;;45731:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45731:79:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45727:523;;;;:::i;:::-;45892:60;;;45904:48;45892:60;45888:159;;45977:50;;;;;21011:2:1;45977:50:0;;;20993:21:1;21050:2;21030:18;;;21023:30;21089:34;21069:18;;;21062:62;21160:10;21140:18;;;21133:38;21188:19;;45977:50:0;20809:404:1;40728:735:0;40906:16;;;40898:62;;;;;;;30949:2:1;40898:62:0;;;30931:21:1;30988:2;30968:18;;;30961:30;31027:34;31007:18;;;31000:62;31098:3;31078:18;;;31071:31;31119:19;;40898:62:0;30747:397:1;40898:62:0;40993:7;:14;40979:3;:10;:28;40971:81;;;;;;;30540:2:1;40971:81:0;;;30522:21:1;30579:2;30559:18;;;30552:30;30618:34;30598:18;;;30591:62;30689:10;30669:18;;;30662:38;30717:19;;40971:81:0;30338:404:1;40971:81:0;3545:10;41065:16;41188:103;41212:3;:10;41208:1;:14;41188:103;;;41269:7;41277:1;41269:10;;;;;;;;:::i;:::-;;;;;;;41244:9;:17;41254:3;41258:1;41254:6;;;;;;;;:::i;:::-;;;;;;;41244:17;;;;;;;;;;;:21;41262:2;41244:21;;;;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;-1:-1:-1;41224:3:0;;-1:-1:-1;41224:3:0;;;:::i;:::-;;;;41188:103;;;;41344:2;41308:53;;41340:1;41308:53;;41322:8;41308:53;;;41348:3;41353:7;41308:53;;;;;;;:::i;:::-;;;;;;;;41374:81;41410:8;41428:1;41432:2;41436:3;41441:7;41450:4;41374:35;:81::i;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;14:735:1;68:5;121:3;114:4;106:6;102:17;98:27;88:55;;139:1;136;129:12;88:55;175:6;162:20;201:4;224:43;264:2;224:43;:::i;:::-;296:2;290:9;308:31;336:2;328:6;308:31;:::i;:::-;374:18;;;408:15;;;;-1:-1:-1;443:15:1;;;493:1;489:10;;;477:23;;473:32;;470:41;-1:-1:-1;467:61:1;;;524:1;521;514:12;467:61;546:1;556:163;570:2;567:1;564:9;556:163;;;627:17;;615:30;;665:12;;;;697;;;;588:1;581:9;556:163;;;-1:-1:-1;737:6:1;;14:735;-1:-1:-1;;;;;;;14:735:1:o;754:614::-;796:5;849:3;842:4;834:6;830:17;826:27;816:55;;867:1;864;857:12;816:55;903:6;890:20;929:18;925:2;922:26;919:52;;;951:18;;:::i;:::-;1000:2;994:9;1012:126;1132:4;1063:66;1056:4;1052:2;1048:13;1044:86;1040:97;1032:6;1012:126;:::i;:::-;1162:2;1154:6;1147:18;1208:3;1201:4;1196:2;1188:6;1184:15;1180:26;1177:35;1174:55;;;1225:1;1222;1215:12;1174:55;1289:2;1282:4;1274:6;1270:17;1263:4;1255:6;1251:17;1238:54;1336:1;1312:15;;;1329:4;1308:26;1301:37;;;;1316:6;754:614;-1:-1:-1;;;754:614:1:o;1373:247::-;1432:6;1485:2;1473:9;1464:7;1460:23;1456:32;1453:52;;;1501:1;1498;1491:12;1453:52;1540:9;1527:23;1559:31;1584:5;1559:31;:::i;:::-;1609:5;1373:247;-1:-1:-1;;;1373:247:1:o;1625:251::-;1695:6;1748:2;1736:9;1727:7;1723:23;1719:32;1716:52;;;1764:1;1761;1754:12;1716:52;1796:9;1790:16;1815:31;1840:5;1815:31;:::i;1881:388::-;1949:6;1957;2010:2;1998:9;1989:7;1985:23;1981:32;1978:52;;;2026:1;2023;2016:12;1978:52;2065:9;2052:23;2084:31;2109:5;2084:31;:::i;:::-;2134:5;-1:-1:-1;2191:2:1;2176:18;;2163:32;2204:33;2163:32;2204:33;:::i;:::-;2256:7;2246:17;;;1881:388;;;;;:::o;2274:1071::-;2428:6;2436;2444;2452;2460;2513:3;2501:9;2492:7;2488:23;2484:33;2481:53;;;2530:1;2527;2520:12;2481:53;2569:9;2556:23;2588:31;2613:5;2588:31;:::i;:::-;2638:5;-1:-1:-1;2695:2:1;2680:18;;2667:32;2708:33;2667:32;2708:33;:::i;:::-;2760:7;-1:-1:-1;2818:2:1;2803:18;;2790:32;2841:18;2871:14;;;2868:34;;;2898:1;2895;2888:12;2868:34;2921:61;2974:7;2965:6;2954:9;2950:22;2921:61;:::i;:::-;2911:71;;3035:2;3024:9;3020:18;3007:32;2991:48;;3064:2;3054:8;3051:16;3048:36;;;3080:1;3077;3070:12;3048:36;3103:63;3158:7;3147:8;3136:9;3132:24;3103:63;:::i;:::-;3093:73;;3219:3;3208:9;3204:19;3191:33;3175:49;;3249:2;3239:8;3236:16;3233:36;;;3265:1;3262;3255:12;3233:36;;3288:51;3331:7;3320:8;3309:9;3305:24;3288:51;:::i;:::-;3278:61;;;2274:1071;;;;;;;;:::o;3350:665::-;3445:6;3453;3461;3469;3522:3;3510:9;3501:7;3497:23;3493:33;3490:53;;;3539:1;3536;3529:12;3490:53;3578:9;3565:23;3597:31;3622:5;3597:31;:::i;:::-;3647:5;-1:-1:-1;3704:2:1;3689:18;;3676:32;3717:33;3676:32;3717:33;:::i;:::-;3769:7;-1:-1:-1;3823:2:1;3808:18;;3795:32;;-1:-1:-1;3878:2:1;3863:18;;3850:32;3905:18;3894:30;;3891:50;;;3937:1;3934;3927:12;3891:50;3960:49;4001:7;3992:6;3981:9;3977:22;3960:49;:::i;:::-;3950:59;;;3350:665;;;;;;;:::o;4020:734::-;4124:6;4132;4140;4148;4156;4209:3;4197:9;4188:7;4184:23;4180:33;4177:53;;;4226:1;4223;4216:12;4177:53;4265:9;4252:23;4284:31;4309:5;4284:31;:::i;:::-;4334:5;-1:-1:-1;4391:2:1;4376:18;;4363:32;4404:33;4363:32;4404:33;:::i;:::-;4456:7;-1:-1:-1;4510:2:1;4495:18;;4482:32;;-1:-1:-1;4561:2:1;4546:18;;4533:32;;-1:-1:-1;4616:3:1;4601:19;;4588:33;4644:18;4633:30;;4630:50;;;4676:1;4673;4666:12;4630:50;4699:49;4740:7;4731:6;4720:9;4716:22;4699:49;:::i;4759:416::-;4824:6;4832;4885:2;4873:9;4864:7;4860:23;4856:32;4853:52;;;4901:1;4898;4891:12;4853:52;4940:9;4927:23;4959:31;4984:5;4959:31;:::i;:::-;5009:5;-1:-1:-1;5066:2:1;5051:18;;5038:32;5108:15;;5101:23;5089:36;;5079:64;;5139:1;5136;5129:12;5180:315;5248:6;5256;5309:2;5297:9;5288:7;5284:23;5280:32;5277:52;;;5325:1;5322;5315:12;5277:52;5364:9;5351:23;5383:31;5408:5;5383:31;:::i;:::-;5433:5;5485:2;5470:18;;;;5457:32;;-1:-1:-1;;;5180:315:1:o;5500:1288::-;5618:6;5626;5679:2;5667:9;5658:7;5654:23;5650:32;5647:52;;;5695:1;5692;5685:12;5647:52;5735:9;5722:23;5764:18;5805:2;5797:6;5794:14;5791:34;;;5821:1;5818;5811:12;5791:34;5859:6;5848:9;5844:22;5834:32;;5904:7;5897:4;5893:2;5889:13;5885:27;5875:55;;5926:1;5923;5916:12;5875:55;5962:2;5949:16;5984:4;6007:43;6047:2;6007:43;:::i;:::-;6079:2;6073:9;6091:31;6119:2;6111:6;6091:31;:::i;:::-;6157:18;;;6191:15;;;;-1:-1:-1;6226:11:1;;;6268:1;6264:10;;;6256:19;;6252:28;;6249:41;-1:-1:-1;6246:61:1;;;6303:1;6300;6293:12;6246:61;6325:1;6316:10;;6335:238;6349:2;6346:1;6343:9;6335:238;;;6420:3;6407:17;6437:31;6462:5;6437:31;:::i;:::-;6481:18;;6367:1;6360:9;;;;;6519:12;;;;6551;;6335:238;;;-1:-1:-1;6592:6:1;-1:-1:-1;;6636:18:1;;6623:32;;-1:-1:-1;;6667:16:1;;;6664:36;;;6696:1;6693;6686:12;6664:36;;6719:63;6774:7;6763:8;6752:9;6748:24;6719:63;:::i;:::-;6709:73;;;5500:1288;;;;;:::o;6793:245::-;6851:6;6904:2;6892:9;6883:7;6879:23;6875:32;6872:52;;;6920:1;6917;6910:12;6872:52;6959:9;6946:23;6978:30;7002:5;6978:30;:::i;7043:249::-;7112:6;7165:2;7153:9;7144:7;7140:23;7136:32;7133:52;;;7181:1;7178;7171:12;7133:52;7213:9;7207:16;7232:30;7256:5;7232:30;:::i;7297:180::-;7356:6;7409:2;7397:9;7388:7;7384:23;7380:32;7377:52;;;7425:1;7422;7415:12;7377:52;-1:-1:-1;7448:23:1;;7297:180;-1:-1:-1;7297:180:1:o;7482:184::-;7552:6;7605:2;7593:9;7584:7;7580:23;7576:32;7573:52;;;7621:1;7618;7611:12;7573:52;-1:-1:-1;7644:16:1;;7482:184;-1:-1:-1;7482:184:1:o;7671:248::-;7739:6;7747;7800:2;7788:9;7779:7;7775:23;7771:32;7768:52;;;7816:1;7813;7806:12;7768:52;-1:-1:-1;;7839:23:1;;;7909:2;7894:18;;;7881:32;;-1:-1:-1;7671:248:1:o;7924:435::-;7977:3;8015:5;8009:12;8042:6;8037:3;8030:19;8068:4;8097:2;8092:3;8088:12;8081:19;;8134:2;8127:5;8123:14;8155:1;8165:169;8179:6;8176:1;8173:13;8165:169;;;8240:13;;8228:26;;8274:12;;;;8309:15;;;;8201:1;8194:9;8165:169;;;-1:-1:-1;8350:3:1;;7924:435;-1:-1:-1;;;;;7924:435:1:o;8364:316::-;8405:3;8443:5;8437:12;8470:6;8465:3;8458:19;8486:63;8542:6;8535:4;8530:3;8526:14;8519:4;8512:5;8508:16;8486:63;:::i;:::-;8594:2;8582:15;8599:66;8578:88;8569:98;;;;8669:4;8565:109;;8364:316;-1:-1:-1;;8364:316:1:o;8685:185::-;8727:3;8765:5;8759:12;8780:52;8825:6;8820:3;8813:4;8806:5;8802:16;8780:52;:::i;:::-;8848:16;;;;;8685:185;-1:-1:-1;;8685:185:1:o;9476:664::-;9703:3;9741:6;9735:13;9757:53;9803:6;9798:3;9791:4;9783:6;9779:17;9757:53;:::i;:::-;9873:13;;9832:16;;;;9895:57;9873:13;9832:16;9929:4;9917:17;;9895:57;:::i;:::-;10019:13;;9974:20;;;10041:57;10019:13;9974:20;10075:4;10063:17;;10041:57;:::i;:::-;10114:20;;9476:664;-1:-1:-1;;;;;9476:664:1:o;10145:1780::-;10660:3;10698:6;10692:13;10714:53;10760:6;10755:3;10748:4;10740:6;10736:17;10714:53;:::i;:::-;10830:13;;10789:16;;;;10852:57;10830:13;10789:16;10886:4;10874:17;;10852:57;:::i;:::-;10940:6;10934:13;10956:72;11019:8;11008;11001:5;10997:20;10990:4;10982:6;10978:17;10956:72;:::i;:::-;11110:13;;11054:20;;;;11050:35;;11132:57;11110:13;11050:35;11166:4;11154:17;;11132:57;:::i;:::-;11220:6;11214:13;11236:72;11299:8;11288;11281:5;11277:20;11270:4;11262:6;11258:17;11236:72;:::i;:::-;11390:13;;11334:20;;;;11330:35;;11412:57;11390:13;11330:35;11446:4;11434:17;;11412:57;:::i;:::-;11500:6;11494:13;11516:72;11579:8;11568;11561:5;11557:20;11550:4;11542:6;11538:17;11516:72;:::i;:::-;11670:13;;11614:20;;;;11610:35;;11692:57;11670:13;11610:35;11726:4;11714:17;;11692:57;:::i;:::-;11780:6;11774:13;11796:72;11859:8;11848;11841:5;11837:20;11830:4;11822:6;11818:17;11796:72;:::i;:::-;11888:20;;11884:35;;10145:1780;-1:-1:-1;;;;;;;;;;;10145:1780:1:o;11930:615::-;12210:3;12248:6;12242:13;12264:53;12310:6;12305:3;12298:4;12290:6;12286:17;12264:53;:::i;:::-;12378:4;12339:16;;;12364:19;;;12408:13;;12430:65;12408:13;12482:1;12471:13;;12464:4;12452:17;;12430:65;:::i;:::-;12515:20;12537:1;12511:28;;11930:615;-1:-1:-1;;;;11930:615:1:o;12550:1421::-;12827:3;12856:1;12889:6;12883:13;12919:3;12941:1;12969:9;12965:2;12961:18;12951:28;;13029:2;13018:9;13014:18;13051;13041:61;;13095:4;13087:6;13083:17;13073:27;;13041:61;13121:2;13169;13161:6;13158:14;13138:18;13135:38;13132:222;;;13208:77;13203:3;13196:90;13309:4;13306:1;13299:15;13339:4;13334:3;13327:17;13132:222;13370:18;13397:162;;;;13573:1;13568:320;;;;13363:525;;13397:162;13445:66;13434:9;13430:82;13425:3;13418:95;13542:6;13537:3;13533:16;13526:23;;13397:162;;13568:320;32197:1;32190:14;;;32234:4;32221:18;;13663:1;13677:165;13691:6;13688:1;13685:13;13677:165;;;13769:14;;13756:11;;;13749:35;13812:16;;;;13706:10;;13677:165;;;13681:3;;13871:6;13866:3;13862:16;13855:23;;13363:525;;;;;;;13904:61;13930:34;13960:3;8952:5;8940:18;;8983:1;8974:11;;8875:116;13930:34;13922:6;13904:61;:::i;:::-;13897:68;12550:1421;-1:-1:-1;;;;;12550:1421:1:o;13976:1026::-;14488:66;14483:3;14476:79;14458:3;14584:6;14578:13;14600:62;14655:6;14650:2;14645:3;14641:12;14634:4;14626:6;14622:17;14600:62;:::i;:::-;14681:56;14733:2;14724:6;14719:3;14715:16;14711:25;9073:66;9061:79;;9170:34;9165:2;9156:12;;9149:56;9235:66;9230:2;9221:12;;9214:88;9332:66;9327:2;9318:12;;9311:88;9430:5;9424:3;9415:13;;9408:28;9461:3;9452:13;;8996:475;14681:56;14671:66;;14768:6;14762:13;14784:54;14829:8;14825:2;14818:4;14810:6;14806:17;14784:54;:::i;:::-;14900:66;14860:17;;14886:81;;;14994:1;14983:13;;13976:1026;-1:-1:-1;;;;13976:1026:1:o;15007:::-;15519:66;15514:3;15507:79;15489:3;15615:6;15609:13;15631:62;15686:6;15681:2;15676:3;15672:12;15665:4;15657:6;15653:17;15631:62;:::i;:::-;15712:56;15764:2;15755:6;15750:3;15746:16;15742:25;9073:66;9061:79;;9170:34;9165:2;9156:12;;9149:56;9235:66;9230:2;9221:12;;9214:88;9332:66;9327:2;9318:12;;9311:88;9430:5;9424:3;9415:13;;9408:28;9461:3;9452:13;;8996:475;16038:448;16300:31;16295:3;16288:44;16270:3;16361:6;16355:13;16377:62;16432:6;16427:2;16422:3;16418:12;16411:4;16403:6;16399:17;16377:62;:::i;:::-;16459:16;;;;16477:2;16455:25;;16038:448;-1:-1:-1;;16038:448:1:o;17492:849::-;17814:4;17843:42;17924:2;17916:6;17912:15;17901:9;17894:34;17976:2;17968:6;17964:15;17959:2;17948:9;17944:18;17937:43;;18016:3;18011:2;18000:9;17996:18;17989:31;18043:57;18095:3;18084:9;18080:19;18072:6;18043:57;:::i;:::-;18148:9;18140:6;18136:22;18131:2;18120:9;18116:18;18109:50;18182:44;18219:6;18211;18182:44;:::i;:::-;18168:58;;18275:9;18267:6;18263:22;18257:3;18246:9;18242:19;18235:51;18303:32;18328:6;18320;18303:32;:::i;:::-;18295:40;17492:849;-1:-1:-1;;;;;;;;17492:849:1:o;18346:583::-;18568:4;18597:42;18678:2;18670:6;18666:15;18655:9;18648:34;18730:2;18722:6;18718:15;18713:2;18702:9;18698:18;18691:43;;18770:6;18765:2;18754:9;18750:18;18743:34;18813:6;18808:2;18797:9;18793:18;18786:34;18857:3;18851;18840:9;18836:19;18829:32;18878:45;18918:3;18907:9;18903:19;18895:6;18878:45;:::i;:::-;18870:53;18346:583;-1:-1:-1;;;;;;;18346:583:1:o;19236:261::-;19415:2;19404:9;19397:21;19378:4;19435:56;19487:2;19476:9;19472:18;19464:6;19435:56;:::i;19502:465::-;19759:2;19748:9;19741:21;19722:4;19785:56;19837:2;19826:9;19822:18;19814:6;19785:56;:::i;:::-;19889:9;19881:6;19877:22;19872:2;19861:9;19857:18;19850:50;19917:44;19954:6;19946;19917:44;:::i;20164:219::-;20313:2;20302:9;20295:21;20276:4;20333:44;20373:2;20362:9;20358:18;20350:6;20333:44;:::i;31936:183::-;31996:4;32029:18;32021:6;32018:30;32015:56;;;32051:18;;:::i;:::-;-1:-1:-1;32096:1:1;32092:14;32108:4;32088:25;;31936:183::o;32250:128::-;32290:3;32321:1;32317:6;32314:1;32311:13;32308:39;;;32327:18;;:::i;:::-;-1:-1:-1;32363:9:1;;32250:128::o;32383:120::-;32423:1;32449;32439:35;;32454:18;;:::i;:::-;-1:-1:-1;32488:9:1;;32383:120::o;32508:228::-;32548:7;32674:1;32606:66;32602:74;32599:1;32596:81;32591:1;32584:9;32577:17;32573:105;32570:131;;;32681:18;;:::i;:::-;-1:-1:-1;32721:9:1;;32508:228::o;32741:125::-;32781:4;32809:1;32806;32803:8;32800:34;;;32814:18;;:::i;:::-;-1:-1:-1;32851:9:1;;32741:125::o;32871:195::-;32909:4;32946;32943:1;32939:12;32978:4;32975:1;32971:12;33003:3;32998;32995:12;32992:38;;;33010:18;;:::i;:::-;33047:13;;;32871:195;-1:-1:-1;;;32871:195:1:o;33071:258::-;33143:1;33153:113;33167:6;33164:1;33161:13;33153:113;;;33243:11;;;33237:18;33224:11;;;33217:39;33189:2;33182:10;33153:113;;;33284:6;33281:1;33278:13;33275:48;;;33319:1;33310:6;33305:3;33301:16;33294:27;33275:48;;33071:258;;;:::o;33334:437::-;33413:1;33409:12;;;;33456;;;33477:61;;33531:4;33523:6;33519:17;33509:27;;33477:61;33584:2;33576:6;33573:14;33553:18;33550:38;33547:218;;;33621:77;33618:1;33611:88;33722:4;33719:1;33712:15;33750:4;33747:1;33740:15;33547:218;;33334:437;;;:::o;33776:308::-;33882:66;33877:2;33871:4;33867:13;33863:86;33855:6;33851:99;34016:6;34004:10;34001:22;33980:18;33968:10;33965:34;33962:62;33959:88;;;34027:18;;:::i;:::-;34063:2;34056:22;-1:-1:-1;;33776:308:1:o;34089:195::-;34128:3;34159:66;34152:5;34149:77;34146:103;;;34229:18;;:::i;:::-;-1:-1:-1;34276:1:1;34265:13;;34089:195::o;34289:112::-;34321:1;34347;34337:35;;34352:18;;:::i;:::-;-1:-1:-1;34386:9:1;;34289:112::o;34406:184::-;34458:77;34455:1;34448:88;34555:4;34552:1;34545:15;34579:4;34576:1;34569:15;34595:184;34647:77;34644:1;34637:88;34744:4;34741:1;34734:15;34768:4;34765:1;34758:15;34784:184;34836:77;34833:1;34826:88;34933:4;34930:1;34923:15;34957:4;34954:1;34947:15;34973:184;35025:77;35022:1;35015:88;35122:4;35119:1;35112:15;35146:4;35143:1;35136:15;35162:179;35197:3;35239:1;35221:16;35218:23;35215:120;;;35285:1;35282;35279;35264:23;-1:-1:-1;35322:1:1;35316:8;35311:3;35307:18;35215:120;35162:179;:::o;35346:731::-;35385:3;35427:4;35409:16;35406:26;35403:39;;;35346:731;:::o;35403:39::-;35469:2;35463:9;35491:66;35612:2;35594:16;35590:25;35587:1;35581:4;35566:50;35645:4;35639:11;35669:16;35704:18;35775:2;35768:4;35760:6;35756:17;35753:25;35748:2;35740:6;35737:14;35734:45;35731:58;;;35782:5;;;;;35346:731;:::o;35731:58::-;35819:6;35813:4;35809:17;35798:28;;35855:3;35849:10;35882:2;35874:6;35871:14;35868:27;;;35888:5;;;;;;35346:731;:::o;35868:27::-;35972:2;35953:16;35947:4;35943:27;35939:36;35932:4;35923:6;35918:3;35914:16;35910:27;35907:69;35904:82;;;35979:5;;;;;;35346:731;:::o;35904:82::-;35995:57;36046:4;36037:6;36029;36025:19;36021:30;36015:4;35995:57;:::i;:::-;-1:-1:-1;36068:3:1;;35346:731;-1:-1:-1;;;;;35346:731:1:o;36082:154::-;36168:42;36161:5;36157:54;36150:5;36147:65;36137:93;;36226:1;36223;36216:12;36241:177;36326:66;36319:5;36315:78;36308:5;36305:89;36295:117;;36408:1;36405;36398:12
Swarm Source
ipfs://f558ef904a297907c01590d5af2b3b9c2e94972166bb470d56db1eea4b9dd5e3
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.