Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
WORN3POINTOH
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2021-06-04
*/
/*
█ █░▒█████ ██▀███ ███▄ ██
▓█░ █ ░█▒██▒ ██▓██ ▒ ██▒▒██ ▀█ █
▒█░ █ ░█▒██░ ██▓██ ░▄█ ▒▓██ ▀█ ██▒
░█░ █ ░█▒██ ██▒██▀▀█▄ ▒▓██▒ ▐▌██▒
░░██▒██▓░ ████▓▒░██▓ ▒██▒▒██░ ▓██░
░ ▓░▒ ▒ ░ ▒░▒░▒░░ ▒▓ ░▒▓░░ ▒░ ▒ ▒
▒ ░ ░ ░ ▒ ▒░ ░▒ ░ ▒ ░ ░░ ░ ▒░
░ ░ ░ ░ ░ ▒ ░░ ░ ░ ░ ░
░ ░ ░ ░ ░
by
█ █░██░ ██ ██▄▄▄█████▓█████ ██▓ ██▓ ▄████ ██░ ██▄▄▄█████▓ ██████
▓█░ █ ░█▓██░ ██▓██▓ ██▒ ▓▓█ ▀ ▓██▒ ▓██▒██▒ ▀█▓██░ ██▓ ██▒ ▓▒██ ▒
▒█░ █ ░█▒██▀▀██▒██▒ ▓██░ ▒▒███ ▒██░ ▒██▒██░▄▄▄▒██▀▀██▒ ▓██░ ▒░ ▓██▄
░█░ █ ░█░▓█ ░██░██░ ▓██▓ ░▒▓█ ▄ ▒██░ ░██░▓█ ██░▓█ ░██░ ▓██▓ ░ ▒ ██▒
░░██▒██▓░▓█▒░██░██░ ▒██▒ ░░▒████▒ ░██████░██░▒▓███▀░▓█▒░██▓ ▒██▒ ░▒██████▒▒
░ ▓░▒ ▒ ▒ ░░▒░░▓ ▒ ░░ ░░ ▒░ ░ ░ ▒░▓ ░▓ ░▒ ▒ ▒ ░░▒░▒ ▒ ░░ ▒ ▒▓▒ ▒ ░
▒ ░ ░ ▒ ░▒░ ░▒ ░ ░ ░ ░ ░ ░ ░ ▒ ░▒ ░ ░ ░ ▒ ░▒░ ░ ░ ░ ░▒ ░ ░
░ ░ ░ ░░ ░▒ ░ ░ ░ ░ ░ ▒ ░ ░ ░ ░ ░░ ░ ░ ░ ░ ░
░ ░ ░ ░░ ░ ░ ░ ░░ ░ ░ ░ ░ ░
...
;::::;
;::::; :;
;:::::' :;
;:::::; ;.
,:::::' ; OOO\
::::::; ; OOOOO\
;:::::; ; OOOOOOOO
,;::::::; ;' / OOOOOOO
;:::::::::`. ,,,;. / / DOOOOOO
.';:::::::::::::::::;, / / DOOOO
,::::::;::::::;;;;::::;, / / DOOO
;`::::::`'::::::;;;::::: ,#/ / DOOO
:`:::::::`;::::::;;::: ;::# / DOOO
::`:::::::`;:::::::: ;::::# / DOO
`:`:::::::`;:::::: ;::::::#/ DOO
:::`:::::::`;; ;:::::::::## OO
::::`:::::::`;::::::::;:::# OO
`:::::`::::::::::::;'`:;::# O
`:::::`::::::::;' / / `:#
::::::`:::::;' / / `#
* Copyright 2021
* SPDX-License-Identifier: MIT
A WebGL audiovisual artwork created by White Lights exploring the processes of
burnout and anxiety. Entirely generative, on-chain, and scalable to any
resolution. The waveform of White Lights’ song ‘Worn’ combined with the
viewer’s interactions determine the internal attributes of the piece in
real-time.
Arweave’s blockchain hosts the artwork’s source code on the permaweb, and
Ethereum’s blockchain stores its metadata on-chain within the NFT itself. The
contract additionally implements all of the latest high-security ERC721 and EIP
standards, far exceeding those seen by larger platforms currently. This
technology makes the metadata and content impossible to lose, creating one of
the first genuinely permanent and decentralized generative pieces of 3D artwork.
The owner of this NFT can find the artwork's URL at anytime in numerous ways.
1. Follow the External URL on OpenSea.
2. Find this NFT's contract on Etherscan and then select [Contract ->
Read Contract -> getArtworkURL -> Query]
3. Find this NFT's contract on Etherscan and then select [Contract ->
Read Contract -> externalURL -> Query]
4. Follow the "artwork_url" property of the JSON Data URL returned by
tokenURI(id)
*/
// File: @openzeppelin/contracts/utils/Context.sol
pragma solidity ^0.8.0;
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
// File: @openzeppelin/contracts/access/Ownable.sol
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor () {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), 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 {
emit OwnershipTransferred(_owner, address(0));
_owner = 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");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
// File: @openzeppelin/contracts/utils/introspection/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: @openzeppelin/contracts/token/ERC721/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: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4);
}
// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol
pragma solidity ^0.8.0;
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}
// File: @openzeppelin/contracts/utils/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;
// solhint-disable-next-line no-inline-assembly
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");
// solhint-disable-next-line avoid-low-level-calls, avoid-call-value
(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");
// solhint-disable-next-line avoid-low-level-calls
(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");
// solhint-disable-next-line avoid-low-level-calls
(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");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.delegatecall(data);
return _verifyCallResult(success, returndata, errorMessage);
}
function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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
// solhint-disable-next-line no-inline-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// File: @openzeppelin/contracts/utils/Strings.sol
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant alphabet = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// 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);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = alphabet[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}
// File: @openzeppelin/contracts/utils/introspection/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: @openzeppelin/contracts/token/ERC721/ERC721.sol
pragma solidity ^0.8.0;
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping (uint256 => address) private _owners;
// Mapping owner address to token count
mapping (address => uint256) private _balances;
// Mapping from token ID to approved address
mapping (uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping (address => mapping (address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor (string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return interfaceId == type(IERC721).interfaceId
|| interfaceId == type(IERC721Metadata).interfaceId
|| super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
require(owner != address(0), "ERC721: balance query for the zero address");
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
address owner = _owners[tokenId];
require(owner != address(0), "ERC721: owner query for nonexistent token");
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
string memory baseURI = _baseURI();
return bytes(baseURI).length > 0
? string(abi.encodePacked(baseURI, tokenId.toString()))
: '';
}
/**
* @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
* in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
require(_exists(tokenId), "ERC721: approved query for nonexistent token");
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
require(operator != _msgSender(), "ERC721: approve to caller");
_operatorApprovals[_msgSender()][operator] = approved;
emit ApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(address from, address to, uint256 tokenId) public virtual override {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override {
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_safeTransfer(from, to, tokenId, _data);
}
/**
* @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.
*
* `_data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual {
_transfer(from, to, tokenId);
require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return _owners[tokenId] != address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
require(_exists(tokenId), "ERC721: operator query for nonexistent token");
address owner = ERC721.ownerOf(tokenId);
return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal virtual {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual {
_mint(to, tokenId);
require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId);
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId);
// Clear approvals
_approve(address(0), tokenId);
_balances[owner] -= 1;
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(address from, address to, uint256 tokenId) internal virtual {
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId);
// Clear approvals from the previous owner
_approve(address(0), tokenId);
_balances[from] -= 1;
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data)
private returns (bool)
{
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
return retval == IERC721Receiver(to).onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721: transfer to non ERC721Receiver implementer");
} else {
// solhint-disable-next-line no-inline-assembly
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { }
}
// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol
pragma solidity ^0.8.0;
/**
* @title ERC721 Burnable Token
* @dev ERC721 Token that can be irreversibly burned (destroyed).
*/
abstract contract ERC721Burnable is Context, ERC721 {
/**
* @dev Burns `tokenId`. See {ERC721-_burn}.
*
* Requirements:
*
* - The caller must own `tokenId` or be an approved operator.
*/
function burn(uint256 tokenId) public virtual {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
_burn(tokenId);
}
}
// File: @openzeppelin/contracts/security/Pausable.sol
pragma solidity ^0.8.0;
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
abstract contract Pausable is Context {
/**
* @dev Emitted when the pause is triggered by `account`.
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/
event Unpaused(address account);
bool private _paused;
/**
* @dev Initializes the contract in unpaused state.
*/
constructor () {
_paused = false;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view virtual returns (bool) {
return _paused;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
require(!paused(), "Pausable: paused");
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
require(paused(), "Pausable: not paused");
_;
}
/**
* @dev Triggers stopped state.
*
* Requirements:
*
* - The contract must not be paused.
*/
function _pause() internal virtual whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
}
// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Pausable.sol
pragma solidity ^0.8.0;
/**
* @dev ERC721 token with pausable token transfers, minting and burning.
*
* Useful for scenarios such as preventing trades until the end of an evaluation
* period, or having an emergency switch for freezing all token transfers in the
* event of a large bug.
*/
abstract contract ERC721Pausable is ERC721, Pausable {
/**
* @dev See {ERC721-_beforeTokenTransfer}.
*
* Requirements:
*
* - the contract must not be paused.
*/
function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override {
super._beforeTokenTransfer(from, to, tokenId);
require(!paused(), "ERC721Pausable: token transfer while paused");
}
}
// File: contracts/ERC2981.sol
pragma solidity ^0.8.4;
/**
* @dev https://eips.ethereum.org/EIPS/eip-2981
*/
abstract contract ERC2981 is ERC165 {
/*
* bytes4(keccak256('getFeeBps(uint256)')) == 0x0ebd4c7f
* bytes4(keccak256('getFeeRecipients(uint256)')) == 0xb9c4d9fb
*
* => 0x0ebd4c7f ^ 0xb9c4d9fb == 0xb7799584
*/
bytes4 private constant _INTERFACE_ID_ERC2981 = 0xc155531d;
/// @notice Called with the sale price to determine how much royalty
/// is owed and to whom.
/// @param _tokenId - the NFT asset queried for royalty information
/// @param _value - the sale price of the NFT asset specified by _tokenId
/// @param _data - information used by extensions of this ERC.
/// Must not to be used by implementers of EIP-2981
/// alone.
/// @return _receiver - address of who should be sent the royalty payment
/// @return _royaltyAmount - the royalty payment amount for _value sale price
/// @return _royaltyPaymentData - information used by extensions of this ERC.
/// Must not to be used by implementers of
/// EIP-2981 alone.
function royaltyInfo(uint256 _tokenId, uint256 _value, bytes calldata _data) external virtual returns (address _receiver, uint256 _royaltyAmount, bytes memory _royaltyPaymentData);
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == _INTERFACE_ID_ERC2981
|| super.supportsInterface(interfaceId);
}
}
// File: contracts/HasSecondarySaleFees.sol
pragma solidity ^0.8.4;
/**
* @dev https://docs.rarible.com/asset/creating-an-asset/royalties-schema
*/
abstract contract HasSecondarySaleFees is ERC165 {
event SecondarySaleFees(uint256 tokenId, address[] recipients, uint[] bps);
/*
* bytes4(keccak256('getFeeBps(uint256)')) == 0x0ebd4c7f
* bytes4(keccak256('getFeeRecipients(uint256)')) == 0xb9c4d9fb
*
* => 0x0ebd4c7f ^ 0xb9c4d9fb == 0xb7799584
*/
bytes4 private constant _INTERFACE_ID_FEES = 0xb7799584;
function getFeeRecipients(uint256 id) public view virtual returns (address payable[] memory);
function getFeeBps(uint256 id) public view virtual returns (uint[] memory);
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == _INTERFACE_ID_FEES
|| super.supportsInterface(interfaceId);
}
}
// File: contracts/WORN3POINTOH.sol
pragma solidity ^0.8.4;
/**
* @title The WORN_3.0 NFT smart contract.
*
* @dev The $WORN_3.0 token implements full on-chain metadata in valid JSON
* format. Anyone can retreive the data using the tokenURI() method, which
* returns raw JSON data as a URI-encoded Data URL in UTF8 format. This avoids
* the need for off-chain storage of any JSON metadata. The tradeoff is it
* adds storage costs to this contract. The content of the art itself is stored
* on Arweave --- the permanent or "permaweb" blockchain.
*
* This contract is ERC721 compliant, as well as ERC2981 and ERC165 compliant.
* This contract allows tokens to burned, and transfers to be paused.
* This contract implements FND/Rarible secondary sale fees.
* This contract implements ERC2981 secondary sale fees.
*
*
* @dev white lights is john shankman
* Copyright 2021
*/
contract WORN3POINTOH is ERC721Burnable, ERC721Pausable, ERC2981, HasSecondarySaleFees, Ownable {
address payable public withdrawalAddress;
uint256 internal idToMintNext;
uint256 internal maxNumberOfPieces;
// HasSecondarySaleFees
address payable royaltyRecipient;
uint256 constant valueInBPS = 1000;
// the hash for the artwork on Arweave
string internal arweaveHash;
// the hash for the still image preview on Arweave
string internal arweaveImageHash;
// the hash for the animated preview on Arweave
string internal arweaveAnimationHash;
// the external URL where you can purchase and trade the NFT
string public externalURL;
// Base URL that leads to Arweave, can be changed by Owner
string public arweaveBaseURL;
event Mint(address buyer, uint256 tokenId);
event ArweaveBaseURLUpdated(string newBaseURL);
constructor(
uint256 givenMaxNumberOfPieces,
string memory givenArweaveArtworkId,
string memory givenArweaveImageId,
string memory givenArweaveAnimationId,
address payable givenWithdrawalAddress
) ERC721("WORN_3.0 by White Lights", "WORN_3.0") {
maxNumberOfPieces = givenMaxNumberOfPieces;
withdrawalAddress = givenWithdrawalAddress;
royaltyRecipient = givenWithdrawalAddress;
arweaveHash = givenArweaveArtworkId;
arweaveImageHash = givenArweaveImageId;
arweaveAnimationHash = givenArweaveAnimationId;
arweaveBaseURL = 'https://www.arweave.net/';
externalURL = getArtworkURL();
idToMintNext = 0; // counter starts at 0
mintArtwork();
}
/**
* Supports ERC165, Rarible Secondary Sale Interface, and ERC721
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, HasSecondarySaleFees, ERC2981) returns (bool) {
return super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*
* @param tokenId the token ID
* @return Base64 encoded URL containing the metadata for this token as JSON
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
require(_exists(tokenId), "DNE");
return string(
abi.encodePacked(
'data:application/json;utf8,',
getMetadata(tokenId)
)
);
}
/**
* Returns the base URI for finding assets on Arweave chain.
* This is settable by the owner of the contract.
*
* arweaveBaseURL + an_arweave_hash = functioning URL leading to asset
*
* arweaveBaseURL is NOT A CONSTANT because certain marketplaces don't know how
* to follow a URL using 'arweave://' protocol. For now we allow the owner
* to update and change this in case the 'https://arweave.net/' service dies
* unexexpectedly, changes, or in te best case scenario whereplatforms begin
* properly recognizing 'arweave://' the way 'ipfs://' is currently.
*/
function setArweaveBaseURL(string memory _arweaveBaseURL) external onlyOwner {
arweaveBaseURL = _arweaveBaseURL;
emit ArweaveBaseURLUpdated(_arweaveBaseURL);
}
function setExternalURL(string memory url) external onlyOwner {
externalURL = url;
}
function setWithdrawalAddress(address payable givenWithdrawalAddress) external onlyOwner {
withdrawalAddress = givenWithdrawalAddress;
}
function withdrawFromEscrow() external onlyOwner {
Address.sendValue(withdrawalAddress, address(this).balance);
}
/// @title lazy minting buy function
// function buy() public payable {
// require(msg.value == pricePerPiece, "incorrect price");
// mintArtwork();
// }
/**
* @dev This mints the 1/1 token.
* @notice This will not work while the contract is paused.
*/
function mintArtwork() internal {
require(idToMintNext < maxNumberOfPieces, "sold out");
emit Mint(msg.sender, idToMintNext);
_safeMint(msg.sender, idToMintNext); // emits a Transfer event
idToMintNext += 1;
}
function getArtworkURL() public view returns (string memory metadata) {
return string(
abi.encodePacked(
arweaveBaseURL,
arweaveHash
)
);
}
/**
* @dev Given a token ID, return all on-chain metadata for the
* token as a URI encoded JSON string.
*
* For each NFT, the following on-chain metadata is returned:
* - Name: The title of the art piece
* - Description: Details about the art piece
* - Creator: The creator of this token and art piece
* - External URL: The Arweave URL of the WebGL artwork
* - Image (URL): The Arweave URL location of the image preview
* - Animation (URL_: The Arweave URL location of the video preview
* - Artwork (URL): The Arweave URL of the WebGL artwork
* - Arweave Artwork Hash: Arweave storage hash of the actual WebGL piece
* - I've also included various metadata for the URLs like file format etc.
*
* ATTRIBUTES (OpenSea):
* - Artist name: The artist
* - Editions: Edition related information for the token and overall.
* - Dimensions: The resolution or dimension of the work
* - Duration: The duration length of the work
* - Interactive: Shows up for interactivework
* - Burnout: Superficial
* - Anxiety: Superficial
*
* @notice Strings should be URI encoded UTF8 beforehand.
* @notice arweaveBaseURL is not URI encoded but it works fine.
*
* @param tokenId the token ID
* @return metadata a JSON string of the metadata
*/
function getMetadata(uint256 tokenId) internal view virtual returns (string memory metadata) {
require(_exists(tokenId), "DNE");
return string(
abi.encodePacked(
// Name & Description & Created By
'{"name":"WORN_3.0","created_by":"White%20Lights","description":"WORN_3.0%5Cn%5CnEdition%201%20of%201%5Cn%5CnA%20WebGL%20audiovisual%20artwork%20created%20by%20White%20Lights%20exploring%20the%20processes%20of%20burnout%20and%20anxiety.%20Entirely%20generative%2C%20on-chain%2C%20and%20scalable%20to%20any%20resolution.%20The%20waveform%20of%20White%20Lights%E2%80%99%20song%20%E2%80%98Worn%E2%80%99%20combined%20with%20the%20viewer%E2%80%99s%20interactions%20determine%20the%20internal%20attributes%20of%20the%20piece%20in%20real-time.%5Cn%5CnArweave%E2%80%99s%20blockchain%20hosts%20the%20artwork%E2%80%99s%20source%20code%20on%20the%20permaweb%2C%20and%20Ethereum%E2%80%99s%20blockchain%20stores%20its%20metadata%20on-chain%20within%20the%20NFT%20itself.%20This%20technology%20makes%20it%20one%20of%20the%20first%20genuinely%20permanent%2C%20decentralized%2C%20and%20generative%20pieces%20of%203D%20artwork.%5Cn%5Cn.html%20Format%5Cn%5CnInfinite%20Duration%20and%20Resolution%5Cn%5CnWebGL%2C%20JS%2C%20CSS%2C%20HTML%5Cn%5CnTo%20view%2C%20follow%20the%20External%20Link%20of%20this%20NFT%20when%20viewed%20on%20OpenSea.%20You%20may%20also%20retrieve%20the%20URL%20manually%20via%20public%20contract%20functions%20externalURL%2C%20getArtworkURL%2C%20and%20tokenURI.","external_url":"',
externalURL,
'",',
// Image URL
'"image":"', arweaveBaseURL, arweaveImageHash, '",',
'"image_url":"', arweaveBaseURL, arweaveImageHash, '",',
'"image_format":"png","image_height":3000,"image_width":3000,"image_sha256_checksum":"56dd351c0c949b47dd2d25a55762e770c2ed02b60bd1355d21e3391ac9227786",',
// Animation URL
'"animation":"', arweaveBaseURL, arweaveAnimationHash, '",',
'"animation_url":"', arweaveBaseURL, arweaveAnimationHash, '",',
'"animation_format":"mp4","animation_height":1080,"animation_width":1080,"animation_duration":15,"animation_sha256_checksum":"430b5788f641f5bcf6cea5f13a679ecbeb3e473a7de50956b3cf4e23b92cfc28",',
// // Arweave Artwork Information
'"artwork_arweave_hash":"', arweaveHash, '",',
'"artwork_url":"', arweaveBaseURL, arweaveHash, '",',
'"artwork_format":"html","artwork_sha256_checksum":"56dd351c0c949b47dd2d25a55762e770c2ed02b60bd1355d21e3391ac9227786","background_color":"000000","attributes":[{"trait_type":"Artist","value":"White%20Lights"},{"trait_type":"Edition","display_type":"number","value":1,"max_value":1},{"trait_type":"Dimensions","value":"Responsive"},{"trait_type":"Duration","value":"Infinite"},{"trait_type":"Interactive","value":"Interactive"},{"display_type":"boost_percentage","trait_type":"Burnout","value":100},{"display_type":"boost_percentage","trait_type":"Anxiety","value":100}]',
// End object
"}"
)
);
}
/**
* @dev Pauses all token transfers.
*
* See {ERC721Pausable} and {Pausable-_pause}.
*/
function pause() public virtual onlyOwner {
_pause();
}
/**
* @dev Unpauses all token transfers.
*
* See {ERC721Pausable} and {Pausable-_unpause}.
*/
function unpause() public virtual onlyOwner{
_unpause();
}
/**
* @dev Required for ERC721Pausable
*
* See {ERC721Pausable}
*/
function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override(ERC721, ERC721Pausable) {
super._beforeTokenTransfer(from, to, tokenId);
}
/*
* Rarible/Foundation Royalties Protocol
*/
function getFeeRecipients(uint256 id) public view override returns (address payable[] memory) {
require(_exists(id), "DNE");
address payable[] memory result = new address payable[](1);
result[0] = royaltyRecipient;
return result;
}
function getFeeBps(uint256 id) public view override returns (uint[] memory) {
require(_exists(id), "DNE");
uint[] memory result = new uint[](1);
result[0] = valueInBPS;
return result;
}
/**
* ERC2981 Royalties Standards (Mintable)
*/
function royaltyInfo(uint256 _tokenId, uint256 _value, bytes calldata _data) external view override returns (address _receiver, uint256 _royaltyAmount, bytes memory _royaltyPaymentData) {
return (withdrawalAddress, _value / 10, _data);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"uint256","name":"givenMaxNumberOfPieces","type":"uint256"},{"internalType":"string","name":"givenArweaveArtworkId","type":"string"},{"internalType":"string","name":"givenArweaveImageId","type":"string"},{"internalType":"string","name":"givenArweaveAnimationId","type":"string"},{"internalType":"address payable","name":"givenWithdrawalAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","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":false,"internalType":"string","name":"newBaseURL","type":"string"}],"name":"ArweaveBaseURLUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"buyer","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Mint","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"recipients","type":"address[]"},{"indexed":false,"internalType":"uint256[]","name":"bps","type":"uint256[]"}],"name":"SecondarySaleFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"arweaveBaseURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"externalURL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getArtworkURL","outputs":[{"internalType":"string","name":"metadata","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getFeeBps","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getFeeRecipients","outputs":[{"internalType":"address payable[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_value","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint256","name":"_royaltyAmount","type":"uint256"},{"internalType":"bytes","name":"_royaltyPaymentData","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","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":"string","name":"_arweaveBaseURL","type":"string"}],"name":"setArweaveBaseURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"url","type":"string"}],"name":"setExternalURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"givenWithdrawalAddress","type":"address"}],"name":"setWithdrawalAddress","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":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawFromEscrow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawalAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"}]Contract Creation Code
60806040523480156200001157600080fd5b50604051620060fa380380620060fa833981810160405281019062000037919062000aec565b6040518060400160405280601881526020017f574f524e5f332e30206279205768697465204c696768747300000000000000008152506040518060400160405280600881526020017f574f524e5f332e300000000000000000000000000000000000000000000000008152508160009080519060200190620000bb92919062000959565b508060019080519060200190620000d492919062000959565b5050506000600660006101000a81548160ff0219169083151502179055506000620001046200031060201b60201c565b905080600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3508460098190555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555083600b90805190602001906200024492919062000959565b5082600c90805190602001906200025d92919062000959565b5081600d90805190602001906200027692919062000959565b506040518060400160405280601881526020017f68747470733a2f2f7777772e617277656176652e6e65742f0000000000000000815250600f9080519060200190620002c492919062000959565b50620002d56200031860201b60201c565b600e9080519060200190620002ec92919062000959565b506000600881905550620003056200034560201b60201c565b5050505050620012eb565b600033905090565b6060600f600b6040516020016200033192919062000d6a565b604051602081830303815290604052905090565b600954600854106200038e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003859062000e79565b60405180910390fd5b7f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688533600854604051620003c392919062000de6565b60405180910390a1620003df33600854620003fd60201b60201c565b600160086000828254620003f4919062000f69565b92505081905550565b6200041f8282604051806020016040528060008152506200042360201b60201c565b5050565b6200043583836200049160201b60201c565b6200044a60008484846200067760201b60201c565b6200048c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004839062000e35565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000504576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004fb9062000e9b565b60405180910390fd5b62000515816200083160201b60201c565b1562000558576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200054f9062000e57565b60405180910390fd5b6200056c600083836200089d60201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620005be919062000f69565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620006a58473ffffffffffffffffffffffffffffffffffffffff16620008ba60201b620019431760201c565b1562000824578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620006d76200031060201b60201c565b8786866040518563ffffffff1660e01b8152600401620006fb949392919062000d92565b602060405180830381600087803b1580156200071657600080fd5b505af19250505080156200074a57506040513d601f19601f8201168201806040525081019062000747919062000ac0565b60015b620007d3573d80600081146200077d576040519150601f19603f3d011682016040523d82523d6000602084013e62000782565b606091505b50600081511415620007cb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007c29062000e35565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000829565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b620008b5838383620008cd60201b620019561760201c565b505050565b600080823b905060008111915050919050565b620008e58383836200093d60201b620019ae1760201c565b620008f56200094260201b60201c565b1562000938576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200092f9062000e13565b60405180910390fd5b505050565b505050565b6000600660009054906101000a900460ff16905090565b82805462000967906200107a565b90600052602060002090601f0160209004810192826200098b5760008555620009d7565b82601f10620009a657805160ff1916838001178555620009d7565b82800160010185558215620009d7579182015b82811115620009d6578251825591602001919060010190620009b9565b5b509050620009e69190620009ea565b5090565b5b8082111562000a05576000816000905550600101620009eb565b5090565b600062000a2062000a1a8462000ee6565b62000ebd565b90508281526020810184848401111562000a3957600080fd5b62000a4684828562001044565b509392505050565b60008151905062000a5f816200129d565b92915050565b60008151905062000a7681620012b7565b92915050565b600082601f83011262000a8e57600080fd5b815162000aa084826020860162000a09565b91505092915050565b60008151905062000aba81620012d1565b92915050565b60006020828403121562000ad357600080fd5b600062000ae38482850162000a65565b91505092915050565b600080600080600060a0868803121562000b0557600080fd5b600062000b158882890162000aa9565b955050602086015167ffffffffffffffff81111562000b3357600080fd5b62000b418882890162000a7c565b945050604086015167ffffffffffffffff81111562000b5f57600080fd5b62000b6d8882890162000a7c565b935050606086015167ffffffffffffffff81111562000b8b57600080fd5b62000b998882890162000a7c565b925050608062000bac8882890162000a4e565b9150509295509295909350565b62000bc48162000fc6565b82525050565b600062000bd78262000f31565b62000be3818562000f3c565b935062000bf581856020860162001044565b62000c008162001173565b840191505092915050565b6000815462000c1a816200107a565b62000c26818662000f5e565b9450600182166000811462000c44576001811462000c565762000c8d565b60ff1983168652818601935062000c8d565b62000c618562000f1c565b60005b8381101562000c855781548189015260018201915060208101905062000c64565b838801955050505b50505092915050565b600062000ca5602b8362000f4d565b915062000cb28262001184565b604082019050919050565b600062000ccc60328362000f4d565b915062000cd982620011d3565b604082019050919050565b600062000cf3601c8362000f4d565b915062000d008262001222565b602082019050919050565b600062000d1a60088362000f4d565b915062000d27826200124b565b602082019050919050565b600062000d4160208362000f4d565b915062000d4e8262001274565b602082019050919050565b62000d64816200103a565b82525050565b600062000d78828562000c0b565b915062000d86828462000c0b565b91508190509392505050565b600060808201905062000da9600083018762000bb9565b62000db8602083018662000bb9565b62000dc7604083018562000d59565b818103606083015262000ddb818462000bca565b905095945050505050565b600060408201905062000dfd600083018562000bb9565b62000e0c602083018462000d59565b9392505050565b6000602082019050818103600083015262000e2e8162000c96565b9050919050565b6000602082019050818103600083015262000e508162000cbd565b9050919050565b6000602082019050818103600083015262000e728162000ce4565b9050919050565b6000602082019050818103600083015262000e948162000d0b565b9050919050565b6000602082019050818103600083015262000eb68162000d32565b9050919050565b600062000ec962000edc565b905062000ed78282620010b0565b919050565b6000604051905090565b600067ffffffffffffffff82111562000f045762000f0362001144565b5b62000f0f8262001173565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600062000f76826200103a565b915062000f83836200103a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000fbb5762000fba620010e6565b5b828201905092915050565b600062000fd3826200101a565b9050919050565b600062000fe7826200101a565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200106457808201518184015260208101905062001047565b8381111562001074576000848401525b50505050565b600060028204905060018216806200109357607f821691505b60208210811415620010aa57620010a962001115565b5b50919050565b620010bb8262001173565b810181811067ffffffffffffffff82111715620010dd57620010dc62001144565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008201527f68696c6520706175736564000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b620012a88162000fda565b8114620012b457600080fd5b50565b620012c28162000fee565b8114620012ce57600080fd5b50565b620012dc816200103a565b8114620012e857600080fd5b50565b614dff80620012fb6000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c8063715018a61161010f578063b99edfb2116100a2578063cde78f7c11610071578063cde78f7c14610544578063e985e9c514610562578063f2bcd02214610592578063f2fde38b146105b0576101e5565b8063b99edfb214610494578063b9c4d9fb146104b2578063c155531d146104e2578063c87b56dd14610514576101e5565b8063a22cb465116100de578063a22cb46514610436578063b6eebbd614610452578063b725d6721461046e578063b88d4fde14610478576101e5565b8063715018a6146103e65780638456cb59146103f05780638da5cb5b146103fa57806395d89b4114610418576101e5565b806323b872dd116101875780635a53ad51116101565780635a53ad511461034a5780635c975abb146103685780636352211e1461038657806370a08231146103b6576101e5565b806323b872dd146102ec5780633f4ba83a1461030857806342842e0e1461031257806342966c681461032e576101e5565b8063081812fc116101c3578063081812fc14610254578063095ea7b3146102845780630ebd4c7f146102a057806321b8092e146102d0576101e5565b806301dbcd4a146101ea57806301ffc9a71461020657806306fdde0314610236575b600080fd5b61020460048036038101906101ff9190612a65565b6105cc565b005b610220600480360381019061021b9190612a13565b610662565b60405161022d9190613518565b60405180910390f35b61023e610674565b60405161024b9190613533565b60405180910390f35b61026e60048036038101906102699190612aa6565b610706565b60405161027b9190613414565b60405180910390f35b61029e600480360381019061029991906129d7565b61078b565b005b6102ba60048036038101906102b59190612aa6565b6108a3565b6040516102c791906134f6565b60405180910390f35b6102ea60048036038101906102e5919061286c565b6109b3565b005b610306600480360381019061030191906128d1565b610a73565b005b610310610ad3565b005b61032c600480360381019061032791906128d1565b610b59565b005b61034860048036038101906103439190612aa6565b610b79565b005b610352610bd5565b60405161035f9190613533565b60405180910390f35b610370610c00565b60405161037d9190613518565b60405180910390f35b6103a0600480360381019061039b9190612aa6565b610c17565b6040516103ad9190613414565b60405180910390f35b6103d060048036038101906103cb9190612843565b610cc9565b6040516103dd91906137d5565b60405180910390f35b6103ee610d81565b005b6103f8610ebe565b005b610402610f44565b60405161040f9190613414565b60405180910390f35b610420610f6e565b60405161042d9190613533565b60405180910390f35b610450600480360381019061044b919061299b565b611000565b005b61046c60048036038101906104679190612a65565b611181565b005b61047661124e565b005b610492600480360381019061048d9190612920565b6112f8565b005b61049c61135a565b6040516104a99190613533565b60405180910390f35b6104cc60048036038101906104c79190612aa6565b6113e8565b6040516104d991906134d4565b60405180910390f35b6104fc60048036038101906104f79190612acf565b611546565b60405161050b93929190613496565b60405180910390f35b61052e60048036038101906105299190612aa6565b6115d6565b60405161053b9190613533565b60405180910390f35b61054c61164f565b6040516105599190613533565b60405180910390f35b61057c60048036038101906105779190612895565b6116dd565b6040516105899190613518565b60405180910390f35b61059a611771565b6040516105a7919061342f565b60405180910390f35b6105ca60048036038101906105c59190612843565b611797565b005b6105d46119b3565b73ffffffffffffffffffffffffffffffffffffffff166105f2610f44565b73ffffffffffffffffffffffffffffffffffffffff1614610648576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063f90613715565b60405180910390fd5b80600e908051906020019061065e929190612608565b5050565b600061066d826119bb565b9050919050565b60606000805461068390613acf565b80601f01602080910402602001604051908101604052809291908181526020018280546106af90613acf565b80156106fc5780601f106106d1576101008083540402835291602001916106fc565b820191906000526020600020905b8154815290600101906020018083116106df57829003601f168201915b5050505050905090565b600061071182611a1c565b610750576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610747906136f5565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061079682610c17565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fe90613755565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108266119b3565b73ffffffffffffffffffffffffffffffffffffffff16148061085557506108548161084f6119b3565b6116dd565b5b610894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088b90613695565b60405180910390fd5b61089e8383611a88565b505050565b60606108ae82611a1c565b6108ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e4906137b5565b60405180910390fd5b6000600167ffffffffffffffff811115610930577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561095e5781602001602082028036833780820191505090505b5090506103e88160008151811061099e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b6109bb6119b3565b73ffffffffffffffffffffffffffffffffffffffff166109d9610f44565b73ffffffffffffffffffffffffffffffffffffffff1614610a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2690613715565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610a84610a7e6119b3565b82611b41565b610ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aba90613775565b60405180910390fd5b610ace838383611c1f565b505050565b610adb6119b3565b73ffffffffffffffffffffffffffffffffffffffff16610af9610f44565b73ffffffffffffffffffffffffffffffffffffffff1614610b4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4690613715565b60405180910390fd5b610b57611e7b565b565b610b74838383604051806020016040528060008152506112f8565b505050565b610b8a610b846119b3565b82611b41565b610bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc090613795565b60405180910390fd5b610bd281611f1d565b50565b6060600f600b604051602001610bec92919061324d565b604051602081830303815290604052905090565b6000600660009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb7906136d5565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d31906136b5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d896119b3565b73ffffffffffffffffffffffffffffffffffffffff16610da7610f44565b73ffffffffffffffffffffffffffffffffffffffff1614610dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df490613715565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b610ec66119b3565b73ffffffffffffffffffffffffffffffffffffffff16610ee4610f44565b73ffffffffffffffffffffffffffffffffffffffff1614610f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3190613715565b60405180910390fd5b610f4261202e565b565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610f7d90613acf565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa990613acf565b8015610ff65780601f10610fcb57610100808354040283529160200191610ff6565b820191906000526020600020905b815481529060010190602001808311610fd957829003601f168201915b5050505050905090565b6110086119b3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106d906135f5565b60405180910390fd5b80600560006110836119b3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111306119b3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111759190613518565b60405180910390a35050565b6111896119b3565b73ffffffffffffffffffffffffffffffffffffffff166111a7610f44565b73ffffffffffffffffffffffffffffffffffffffff16146111fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f490613715565b60405180910390fd5b80600f9080519060200190611213929190612608565b507fd343e9fcd18fe47bbad134f8a1d204a350d1d70d400e2df1ac06b664e8ec7582816040516112439190613533565b60405180910390a150565b6112566119b3565b73ffffffffffffffffffffffffffffffffffffffff16611274610f44565b73ffffffffffffffffffffffffffffffffffffffff16146112ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c190613715565b60405180910390fd5b6112f6600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16476120d1565b565b6113096113036119b3565b83611b41565b611348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133f90613775565b60405180910390fd5b611354848484846121c5565b50505050565b600e805461136790613acf565b80601f016020809104026020016040519081016040528092919081815260200182805461139390613acf565b80156113e05780601f106113b5576101008083540402835291602001916113e0565b820191906000526020600020905b8154815290600101906020018083116113c357829003601f168201915b505050505081565b60606113f382611a1c565b611432576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611429906137b5565b60405180910390fd5b6000600167ffffffffffffffff811115611475577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156114a35781602001602082028036833780820191505090505b509050600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600081518110611503577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505080915050919050565b6000806060600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a8761157b91906139a2565b868681818080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050905090509250925092509450945094915050565b60606115e182611a1c565b611620576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611617906137b5565b60405180910390fd5b61162982612221565b6040516020016116399190613271565b6040516020818303038152906040529050919050565b600f805461165c90613acf565b80601f016020809104026020016040519081016040528092919081815260200182805461168890613acf565b80156116d55780601f106116aa576101008083540402835291602001916116d5565b820191906000526020600020905b8154815290600101906020018083116116b857829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61179f6119b3565b73ffffffffffffffffffffffffffffffffffffffff166117bd610f44565b73ffffffffffffffffffffffffffffffffffffffff1614611813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180a90613715565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187a906135b5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080823b905060008111915050919050565b6119618383836119ae565b611969610c00565b156119a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a090613555565b60405180910390fd5b505050565b505050565b600033905090565b600063b779958460e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a155750611a14826122b4565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611afb83610c17565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b4c82611a1c565b611b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8290613655565b60405180910390fd5b6000611b9683610c17565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c0557508373ffffffffffffffffffffffffffffffffffffffff16611bed84610706565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c165750611c1581856116dd565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c3f82610c17565b73ffffffffffffffffffffffffffffffffffffffff1614611c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8c90613735565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfc906135d5565b60405180910390fd5b611d10838383612315565b611d1b600082611a88565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d6b91906139d3565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dc2919061394c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611e83610c00565b611ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb990613575565b60405180910390fd5b6000600660006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611f066119b3565b604051611f139190613414565b60405180910390a1565b6000611f2882610c17565b9050611f3681600084612315565b611f41600083611a88565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f9191906139d3565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b612036610c00565b15612076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206d90613675565b60405180910390fd5b6001600660006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586120ba6119b3565b6040516120c79190613414565b60405180910390a1565b80471015612114576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210b90613635565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161213a906133ff565b60006040518083038185875af1925050503d8060008114612177576040519150601f19603f3d011682016040523d82523d6000602084013e61217c565b606091505b50509050806121c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b790613615565b60405180910390fd5b505050565b6121d0848484611c1f565b6121dc84848484612325565b61221b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221290613595565b60405180910390fd5b50505050565b606061222c82611a1c565b61226b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612262906137b5565b60405180910390fd5b600e600f600c600f600c600f600d600f600d600b600f600b60405160200161229e9c9b9a99989796959493929190613293565b6040516020818303038152906040529050919050565b600063c155531d60e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061230e575061230d826124bc565b5b9050919050565b612320838383611956565b505050565b60006123468473ffffffffffffffffffffffffffffffffffffffff16611943565b156124af578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261236f6119b3565b8786866040518563ffffffff1660e01b8152600401612391949392919061344a565b602060405180830381600087803b1580156123ab57600080fd5b505af19250505080156123dc57506040513d601f19601f820116820180604052508101906123d99190612a3c565b60015b61245f573d806000811461240c576040519150601f19603f3d011682016040523d82523d6000602084013e612411565b606091505b50600081511415612457576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244e90613595565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124b4565b600190505b949350505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061258757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061259757506125968261259e565b5b9050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b82805461261490613acf565b90600052602060002090601f016020900481019282612636576000855561267d565b82601f1061264f57805160ff191683800117855561267d565b8280016001018555821561267d579182015b8281111561267c578251825591602001919060010190612661565b5b50905061268a919061268e565b5090565b5b808211156126a757600081600090555060010161268f565b5090565b60006126be6126b984613815565b6137f0565b9050828152602081018484840111156126d657600080fd5b6126e1848285613a8d565b509392505050565b60006126fc6126f784613846565b6137f0565b90508281526020810184848401111561271457600080fd5b61271f848285613a8d565b509392505050565b60008135905061273681614d56565b92915050565b60008135905061274b81614d6d565b92915050565b60008135905061276081614d84565b92915050565b60008135905061277581614d9b565b92915050565b60008151905061278a81614d9b565b92915050565b60008083601f8401126127a257600080fd5b8235905067ffffffffffffffff8111156127bb57600080fd5b6020830191508360018202830111156127d357600080fd5b9250929050565b600082601f8301126127eb57600080fd5b81356127fb8482602086016126ab565b91505092915050565b600082601f83011261281557600080fd5b81356128258482602086016126e9565b91505092915050565b60008135905061283d81614db2565b92915050565b60006020828403121561285557600080fd5b600061286384828501612727565b91505092915050565b60006020828403121561287e57600080fd5b600061288c8482850161273c565b91505092915050565b600080604083850312156128a857600080fd5b60006128b685828601612727565b92505060206128c785828601612727565b9150509250929050565b6000806000606084860312156128e657600080fd5b60006128f486828701612727565b935050602061290586828701612727565b92505060406129168682870161282e565b9150509250925092565b6000806000806080858703121561293657600080fd5b600061294487828801612727565b945050602061295587828801612727565b93505060406129668782880161282e565b925050606085013567ffffffffffffffff81111561298357600080fd5b61298f878288016127da565b91505092959194509250565b600080604083850312156129ae57600080fd5b60006129bc85828601612727565b92505060206129cd85828601612751565b9150509250929050565b600080604083850312156129ea57600080fd5b60006129f885828601612727565b9250506020612a098582860161282e565b9150509250929050565b600060208284031215612a2557600080fd5b6000612a3384828501612766565b91505092915050565b600060208284031215612a4e57600080fd5b6000612a5c8482850161277b565b91505092915050565b600060208284031215612a7757600080fd5b600082013567ffffffffffffffff811115612a9157600080fd5b612a9d84828501612804565b91505092915050565b600060208284031215612ab857600080fd5b6000612ac68482850161282e565b91505092915050565b60008060008060608587031215612ae557600080fd5b6000612af38782880161282e565b9450506020612b048782880161282e565b935050604085013567ffffffffffffffff811115612b2157600080fd5b612b2d87828801612790565b925092505092959194509250565b6000612b478383612b6b565b60208301905092915050565b6000612b5f838361322f565b60208301905092915050565b612b7481613a19565b82525050565b612b8381613a19565b82525050565b612b9281613a07565b82525050565b6000612ba3826138ac565b612bad81856138f2565b9350612bb883613877565b8060005b83811015612be9578151612bd08882612b3b565b9750612bdb836138d8565b925050600181019050612bbc565b5085935050505092915050565b6000612c01826138b7565b612c0b8185613903565b9350612c1683613887565b8060005b83811015612c47578151612c2e8882612b53565b9750612c39836138e5565b925050600181019050612c1a565b5085935050505092915050565b612c5d81613a2b565b82525050565b6000612c6e826138c2565b612c788185613914565b9350612c88818560208601613a9c565b612c9181613bee565b840191505092915050565b6000612ca7826138cd565b612cb18185613930565b9350612cc1818560208601613a9c565b612cca81613bee565b840191505092915050565b6000612ce0826138cd565b612cea8185613941565b9350612cfa818560208601613a9c565b80840191505092915050565b60008154612d1381613acf565b612d1d8186613941565b94506001821660008114612d385760018114612d4957612d7c565b60ff19831686528186019350612d7c565b612d5285613897565b60005b83811015612d7457815481890152600182019150602081019050612d55565b838801955050505b50505092915050565b6000612d92602b83613930565b9150612d9d82613bff565b604082019050919050565b6000612db5601483613930565b9150612dc082613c4e565b602082019050919050565b6000612dd8603283613930565b9150612de382613c77565b604082019050919050565b6000612dfb602683613930565b9150612e0682613cc6565b604082019050919050565b6000612e1e600283613941565b9150612e2982613d15565b600282019050919050565b6000612e41602483613930565b9150612e4c82613d3e565b604082019050919050565b6000612e64601983613930565b9150612e6f82613d8d565b602082019050919050565b6000612e87601183613941565b9150612e9282613db6565b601182019050919050565b6000612eaa603a83613930565b9150612eb582613ddf565b604082019050919050565b6000612ecd601d83613930565b9150612ed882613e2e565b602082019050919050565b6000612ef0602c83613930565b9150612efb82613e57565b604082019050919050565b6000612f13601083613930565b9150612f1e82613ea6565b602082019050919050565b6000612f36603883613930565b9150612f4182613ecf565b604082019050919050565b6000612f59602a83613930565b9150612f6482613f1e565b604082019050919050565b6000612f7c602983613930565b9150612f8782613f6d565b604082019050919050565b6000612f9f600983613941565b9150612faa82613fbc565b600982019050919050565b6000612fc2600d83613941565b9150612fcd82613fe5565b600d82019050919050565b6000612fe560bf83613941565b9150612ff08261400e565b60bf82019050919050565b6000613008600183613941565b9150613013826140f5565b600182019050919050565b600061302b602c83613930565b91506130368261411e565b604082019050919050565b600061304e601b83613941565b91506130598261416d565b601b82019050919050565b6000613071602083613930565b915061307c82614196565b602082019050919050565b6000613094602983613930565b915061309f826141bf565b604082019050919050565b60006130b861050383613941565b91506130c38261420e565b61050382019050919050565b60006130dd61023883613941565b91506130e882614848565b61023882019050919050565b6000613101602183613930565b915061310c82614b01565b604082019050919050565b6000613124609783613941565b915061312f82614b50565b609782019050919050565b6000613147600083613925565b915061315282614c11565b600082019050919050565b600061316a600d83613941565b915061317582614c14565b600d82019050919050565b600061318d603183613930565b915061319882614c3d565b604082019050919050565b60006131b0601883613941565b91506131bb82614c8c565b601882019050919050565b60006131d3600f83613941565b91506131de82614cb5565b600f82019050919050565b60006131f6603083613930565b915061320182614cde565b604082019050919050565b6000613219600383613930565b915061322482614d2d565b602082019050919050565b61323881613a83565b82525050565b61324781613a83565b82525050565b60006132598285612d06565b91506132658284612d06565b91508190509392505050565b600061327c82613041565b91506132888284612cd5565b915081905092915050565b600061329e826130aa565b91506132aa828f612d06565b91506132b582612e11565b91506132c082612f92565b91506132cc828e612d06565b91506132d8828d612d06565b91506132e382612e11565b91506132ee8261315d565b91506132fa828c612d06565b9150613306828b612d06565b915061331182612e11565b915061331c82613117565b915061332782612fb5565b9150613333828a612d06565b915061333f8289612d06565b915061334a82612e11565b915061335582612e7a565b91506133618288612d06565b915061336d8287612d06565b915061337882612e11565b915061338382612fd8565b915061338e826131a3565b915061339a8286612d06565b91506133a582612e11565b91506133b0826131c6565b91506133bc8285612d06565b91506133c88284612d06565b91506133d382612e11565b91506133de826130cf565b91506133e982612ffb565b91508190509d9c50505050505050505050505050565b600061340a8261313a565b9150819050919050565b60006020820190506134296000830184612b89565b92915050565b60006020820190506134446000830184612b7a565b92915050565b600060808201905061345f6000830187612b89565b61346c6020830186612b89565b613479604083018561323e565b818103606083015261348b8184612c63565b905095945050505050565b60006060820190506134ab6000830186612b89565b6134b8602083018561323e565b81810360408301526134ca8184612c63565b9050949350505050565b600060208201905081810360008301526134ee8184612b98565b905092915050565b600060208201905081810360008301526135108184612bf6565b905092915050565b600060208201905061352d6000830184612c54565b92915050565b6000602082019050818103600083015261354d8184612c9c565b905092915050565b6000602082019050818103600083015261356e81612d85565b9050919050565b6000602082019050818103600083015261358e81612da8565b9050919050565b600060208201905081810360008301526135ae81612dcb565b9050919050565b600060208201905081810360008301526135ce81612dee565b9050919050565b600060208201905081810360008301526135ee81612e34565b9050919050565b6000602082019050818103600083015261360e81612e57565b9050919050565b6000602082019050818103600083015261362e81612e9d565b9050919050565b6000602082019050818103600083015261364e81612ec0565b9050919050565b6000602082019050818103600083015261366e81612ee3565b9050919050565b6000602082019050818103600083015261368e81612f06565b9050919050565b600060208201905081810360008301526136ae81612f29565b9050919050565b600060208201905081810360008301526136ce81612f4c565b9050919050565b600060208201905081810360008301526136ee81612f6f565b9050919050565b6000602082019050818103600083015261370e8161301e565b9050919050565b6000602082019050818103600083015261372e81613064565b9050919050565b6000602082019050818103600083015261374e81613087565b9050919050565b6000602082019050818103600083015261376e816130f4565b9050919050565b6000602082019050818103600083015261378e81613180565b9050919050565b600060208201905081810360008301526137ae816131e9565b9050919050565b600060208201905081810360008301526137ce8161320c565b9050919050565b60006020820190506137ea600083018461323e565b92915050565b60006137fa61380b565b90506138068282613b01565b919050565b6000604051905090565b600067ffffffffffffffff8211156138305761382f613bbf565b5b61383982613bee565b9050602081019050919050565b600067ffffffffffffffff82111561386157613860613bbf565b5b61386a82613bee565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061395782613a83565b915061396283613a83565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561399757613996613b32565b5b828201905092915050565b60006139ad82613a83565b91506139b883613a83565b9250826139c8576139c7613b61565b5b828204905092915050565b60006139de82613a83565b91506139e983613a83565b9250828210156139fc576139fb613b32565b5b828203905092915050565b6000613a1282613a63565b9050919050565b6000613a2482613a63565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613aba578082015181840152602081019050613a9f565b83811115613ac9576000848401525b50505050565b60006002820490506001821680613ae757607f821691505b60208210811415613afb57613afa613b90565b5b50919050565b613b0a82613bee565b810181811067ffffffffffffffff82111715613b2957613b28613bbf565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008201527f68696c6520706175736564000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f222c000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f22616e696d6174696f6e5f75726c223a22000000000000000000000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f22696d616765223a220000000000000000000000000000000000000000000000600082015250565b7f22616e696d6174696f6e223a2200000000000000000000000000000000000000600082015250565b7f22616e696d6174696f6e5f666f726d6174223a226d7034222c22616e696d617460008201527f696f6e5f686569676874223a313038302c22616e696d6174696f6e5f7769647460208201527f68223a313038302c22616e696d6174696f6e5f6475726174696f6e223a31352c60408201527f22616e696d6174696f6e5f7368613235365f636865636b73756d223a2234333060608201527f623537383866363431663562636636636561356631336136373965636265623360808201527f6534373361376465353039353662336366346532336239326366633238222c0060a082015250565b7f7d00000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b757466382c0000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f7b226e616d65223a22574f524e5f332e30222c22637265617465645f6279223a60008201527f2257686974652532304c6967687473222c226465736372697074696f6e223a2260208201527f574f524e5f332e302535436e2535436e45646974696f6e253230312532306f6660408201527f253230312535436e2535436e41253230576562474c253230617564696f76697360608201527f75616c253230617274776f726b2532306372656174656425323062792532305760808201527f686974652532304c69676874732532306578706c6f72696e672532307468652560a08201527f323070726f6365737365732532306f662532306275726e6f7574253230616e6460c08201527f253230616e78696574792e253230456e746972656c7925323067656e6572617460e08201527f6976652532432532306f6e2d636861696e253243253230616e642532307363616101008201527f6c61626c65253230746f253230616e792532307265736f6c7574696f6e2e25326101208201527f3054686525323077617665666f726d2532306f6625323057686974652532304c6101408201527f6967687473254532253830253939253230736f6e6725323025453225383025396101608201527f38576f726e254532253830253939253230636f6d62696e6564253230776974686101808201527f25323074686525323076696577657225453225383025393973253230696e74656101a08201527f72616374696f6e7325323064657465726d696e65253230746865253230696e746101c08201527f65726e616c253230617474726962757465732532306f662532307468652532306101e08201527f7069656365253230696e2532307265616c2d74696d652e2535436e2535436e416102008201527f72776561766525453225383025393973253230626c6f636b636861696e2532306102208201527f686f737473253230746865253230617274776f726b25453225383025393973256102408201527f3230736f75726365253230636f64652532306f6e2532307468652532307065726102608201527f6d61776562253243253230616e64253230457468657265756d254532253830256102808201527f393973253230626c6f636b636861696e25323073746f726573253230697473256102a08201527f32306d657461646174612532306f6e2d636861696e25323077697468696e25326102c08201527f307468652532304e4654253230697473656c662e2532305468697325323074656102e08201527f63686e6f6c6f67792532306d616b657325323069742532306f6e652532306f666103008201527f253230746865253230666972737425323067656e75696e656c792532307065726103208201527f6d616e656e74253243253230646563656e7472616c697a6564253243253230616103408201527f6e6425323067656e657261746976652532307069656365732532306f662532306103608201527f3344253230617274776f726b2e2535436e2535436e2e68746d6c253230466f726103808201527f6d61742535436e2535436e496e66696e6974652532304475726174696f6e25326103a08201527f30616e642532305265736f6c7574696f6e2535436e2535436e576562474c25326103c08201527f432532304a5325324325323043535325324325323048544d4c2535436e2535436103e08201527f6e546f25323076696577253243253230666f6c6c6f77253230746865253230456104008201527f787465726e616c2532304c696e6b2532306f66253230746869732532304e46546104208201527f2532307768656e2532307669657765642532306f6e2532304f70656e5365612e6104408201527f253230596f752532306d6179253230616c736f253230726574726965766525326104608201527f3074686525323055524c2532306d616e75616c6c7925323076696125323070756104808201527f626c6963253230636f6e747261637425323066756e6374696f6e7325323065786104a08201527f7465726e616c55524c253243253230676574417274776f726b55524c253243256104c08201527f3230616e64253230746f6b656e5552492e222c2265787465726e616c5f75726c6104e08201527f223a22000000000000000000000000000000000000000000000000000000000061050082015250565b7f22617274776f726b5f666f726d6174223a2268746d6c222c22617274776f726b60008201527f5f7368613235365f636865636b73756d223a223536646433353163306339343960208201527f623437646432643235613535373632653737306332656430326236306264313360408201527f35356432316533333931616339323237373836222c226261636b67726f756e6460608201527f5f636f6c6f72223a22303030303030222c2261747472696275746573223a5b7b60808201527f2274726169745f74797065223a22417274697374222c2276616c7565223a225760a08201527f686974652532304c6967687473227d2c7b2274726169745f74797065223a224560c08201527f646974696f6e222c22646973706c61795f74797065223a226e756d626572222c60e08201527f2276616c7565223a312c226d61785f76616c7565223a317d2c7b2274726169746101008201527f5f74797065223a2244696d656e73696f6e73222c2276616c7565223a225265736101208201527f706f6e73697665227d2c7b2274726169745f74797065223a224475726174696f6101408201527f6e222c2276616c7565223a22496e66696e697465227d2c7b2274726169745f746101608201527f797065223a22496e746572616374697665222c2276616c7565223a22496e74656101808201527f72616374697665227d2c7b22646973706c61795f74797065223a22626f6f73746101a08201527f5f70657263656e74616765222c2274726169745f74797065223a224275726e6f6101c08201527f7574222c2276616c7565223a3130307d2c7b22646973706c61795f74797065226101e08201527f3a22626f6f73745f70657263656e74616765222c2274726169745f74797065226102008201527f3a22416e7869657479222c2276616c7565223a3130307d5d000000000000000061022082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f22696d6167655f666f726d6174223a22706e67222c22696d6167655f6865696760008201527f6874223a333030302c22696d6167655f7769647468223a333030302c22696d6160208201527f67655f7368613235365f636865636b73756d223a22353664643335316330633960408201527f343962343764643264323561353537363265373730633265643032623630626460608201527f313335356432316533333931616339323237373836222c000000000000000000608082015250565b50565b7f22696d6167655f75726c223a2200000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f22617274776f726b5f617277656176655f68617368223a220000000000000000600082015250565b7f22617274776f726b5f75726c223a220000000000000000000000000000000000600082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f444e450000000000000000000000000000000000000000000000000000000000600082015250565b614d5f81613a07565b8114614d6a57600080fd5b50565b614d7681613a19565b8114614d8157600080fd5b50565b614d8d81613a2b565b8114614d9857600080fd5b50565b614da481613a37565b8114614daf57600080fd5b50565b614dbb81613a83565b8114614dc657600080fd5b5056fea2646970667358221220ac5299095b2be2d16dac7f190b820de87beb27fa544c533a037ae915d3961e3664736f6c63430008040033000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000103c8b5b5b2468f2552f0a1aa30738bf08ada0ca000000000000000000000000000000000000000000000000000000000000002b7438514b497a514749325970596771453761712d6e694f4b476c712d39354b585f75633037744b6a31324d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002b364a585a746f387770315345655931307a6269665431593471416b5f4178564d4c4b5757474d4652354163000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002b6d2d4a4d4843727972374e5455515a6c304566324235495f5f4655545a7a796e7158726746747731465a6b000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101e55760003560e01c8063715018a61161010f578063b99edfb2116100a2578063cde78f7c11610071578063cde78f7c14610544578063e985e9c514610562578063f2bcd02214610592578063f2fde38b146105b0576101e5565b8063b99edfb214610494578063b9c4d9fb146104b2578063c155531d146104e2578063c87b56dd14610514576101e5565b8063a22cb465116100de578063a22cb46514610436578063b6eebbd614610452578063b725d6721461046e578063b88d4fde14610478576101e5565b8063715018a6146103e65780638456cb59146103f05780638da5cb5b146103fa57806395d89b4114610418576101e5565b806323b872dd116101875780635a53ad51116101565780635a53ad511461034a5780635c975abb146103685780636352211e1461038657806370a08231146103b6576101e5565b806323b872dd146102ec5780633f4ba83a1461030857806342842e0e1461031257806342966c681461032e576101e5565b8063081812fc116101c3578063081812fc14610254578063095ea7b3146102845780630ebd4c7f146102a057806321b8092e146102d0576101e5565b806301dbcd4a146101ea57806301ffc9a71461020657806306fdde0314610236575b600080fd5b61020460048036038101906101ff9190612a65565b6105cc565b005b610220600480360381019061021b9190612a13565b610662565b60405161022d9190613518565b60405180910390f35b61023e610674565b60405161024b9190613533565b60405180910390f35b61026e60048036038101906102699190612aa6565b610706565b60405161027b9190613414565b60405180910390f35b61029e600480360381019061029991906129d7565b61078b565b005b6102ba60048036038101906102b59190612aa6565b6108a3565b6040516102c791906134f6565b60405180910390f35b6102ea60048036038101906102e5919061286c565b6109b3565b005b610306600480360381019061030191906128d1565b610a73565b005b610310610ad3565b005b61032c600480360381019061032791906128d1565b610b59565b005b61034860048036038101906103439190612aa6565b610b79565b005b610352610bd5565b60405161035f9190613533565b60405180910390f35b610370610c00565b60405161037d9190613518565b60405180910390f35b6103a0600480360381019061039b9190612aa6565b610c17565b6040516103ad9190613414565b60405180910390f35b6103d060048036038101906103cb9190612843565b610cc9565b6040516103dd91906137d5565b60405180910390f35b6103ee610d81565b005b6103f8610ebe565b005b610402610f44565b60405161040f9190613414565b60405180910390f35b610420610f6e565b60405161042d9190613533565b60405180910390f35b610450600480360381019061044b919061299b565b611000565b005b61046c60048036038101906104679190612a65565b611181565b005b61047661124e565b005b610492600480360381019061048d9190612920565b6112f8565b005b61049c61135a565b6040516104a99190613533565b60405180910390f35b6104cc60048036038101906104c79190612aa6565b6113e8565b6040516104d991906134d4565b60405180910390f35b6104fc60048036038101906104f79190612acf565b611546565b60405161050b93929190613496565b60405180910390f35b61052e60048036038101906105299190612aa6565b6115d6565b60405161053b9190613533565b60405180910390f35b61054c61164f565b6040516105599190613533565b60405180910390f35b61057c60048036038101906105779190612895565b6116dd565b6040516105899190613518565b60405180910390f35b61059a611771565b6040516105a7919061342f565b60405180910390f35b6105ca60048036038101906105c59190612843565b611797565b005b6105d46119b3565b73ffffffffffffffffffffffffffffffffffffffff166105f2610f44565b73ffffffffffffffffffffffffffffffffffffffff1614610648576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063f90613715565b60405180910390fd5b80600e908051906020019061065e929190612608565b5050565b600061066d826119bb565b9050919050565b60606000805461068390613acf565b80601f01602080910402602001604051908101604052809291908181526020018280546106af90613acf565b80156106fc5780601f106106d1576101008083540402835291602001916106fc565b820191906000526020600020905b8154815290600101906020018083116106df57829003601f168201915b5050505050905090565b600061071182611a1c565b610750576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610747906136f5565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061079682610c17565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107fe90613755565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108266119b3565b73ffffffffffffffffffffffffffffffffffffffff16148061085557506108548161084f6119b3565b6116dd565b5b610894576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088b90613695565b60405180910390fd5b61089e8383611a88565b505050565b60606108ae82611a1c565b6108ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e4906137b5565b60405180910390fd5b6000600167ffffffffffffffff811115610930577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561095e5781602001602082028036833780820191505090505b5090506103e88160008151811061099e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b6109bb6119b3565b73ffffffffffffffffffffffffffffffffffffffff166109d9610f44565b73ffffffffffffffffffffffffffffffffffffffff1614610a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2690613715565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610a84610a7e6119b3565b82611b41565b610ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aba90613775565b60405180910390fd5b610ace838383611c1f565b505050565b610adb6119b3565b73ffffffffffffffffffffffffffffffffffffffff16610af9610f44565b73ffffffffffffffffffffffffffffffffffffffff1614610b4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4690613715565b60405180910390fd5b610b57611e7b565b565b610b74838383604051806020016040528060008152506112f8565b505050565b610b8a610b846119b3565b82611b41565b610bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc090613795565b60405180910390fd5b610bd281611f1d565b50565b6060600f600b604051602001610bec92919061324d565b604051602081830303815290604052905090565b6000600660009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb7906136d5565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d31906136b5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d896119b3565b73ffffffffffffffffffffffffffffffffffffffff16610da7610f44565b73ffffffffffffffffffffffffffffffffffffffff1614610dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df490613715565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b610ec66119b3565b73ffffffffffffffffffffffffffffffffffffffff16610ee4610f44565b73ffffffffffffffffffffffffffffffffffffffff1614610f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3190613715565b60405180910390fd5b610f4261202e565b565b6000600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610f7d90613acf565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa990613acf565b8015610ff65780601f10610fcb57610100808354040283529160200191610ff6565b820191906000526020600020905b815481529060010190602001808311610fd957829003601f168201915b5050505050905090565b6110086119b3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106d906135f5565b60405180910390fd5b80600560006110836119b3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166111306119b3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111759190613518565b60405180910390a35050565b6111896119b3565b73ffffffffffffffffffffffffffffffffffffffff166111a7610f44565b73ffffffffffffffffffffffffffffffffffffffff16146111fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f490613715565b60405180910390fd5b80600f9080519060200190611213929190612608565b507fd343e9fcd18fe47bbad134f8a1d204a350d1d70d400e2df1ac06b664e8ec7582816040516112439190613533565b60405180910390a150565b6112566119b3565b73ffffffffffffffffffffffffffffffffffffffff16611274610f44565b73ffffffffffffffffffffffffffffffffffffffff16146112ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c190613715565b60405180910390fd5b6112f6600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16476120d1565b565b6113096113036119b3565b83611b41565b611348576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133f90613775565b60405180910390fd5b611354848484846121c5565b50505050565b600e805461136790613acf565b80601f016020809104026020016040519081016040528092919081815260200182805461139390613acf565b80156113e05780601f106113b5576101008083540402835291602001916113e0565b820191906000526020600020905b8154815290600101906020018083116113c357829003601f168201915b505050505081565b60606113f382611a1c565b611432576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611429906137b5565b60405180910390fd5b6000600167ffffffffffffffff811115611475577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156114a35781602001602082028036833780820191505090505b509050600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600081518110611503577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505080915050919050565b6000806060600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a8761157b91906139a2565b868681818080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050905090509250925092509450945094915050565b60606115e182611a1c565b611620576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611617906137b5565b60405180910390fd5b61162982612221565b6040516020016116399190613271565b6040516020818303038152906040529050919050565b600f805461165c90613acf565b80601f016020809104026020016040519081016040528092919081815260200182805461168890613acf565b80156116d55780601f106116aa576101008083540402835291602001916116d5565b820191906000526020600020905b8154815290600101906020018083116116b857829003601f168201915b505050505081565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61179f6119b3565b73ffffffffffffffffffffffffffffffffffffffff166117bd610f44565b73ffffffffffffffffffffffffffffffffffffffff1614611813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180a90613715565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187a906135b5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080823b905060008111915050919050565b6119618383836119ae565b611969610c00565b156119a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a090613555565b60405180910390fd5b505050565b505050565b600033905090565b600063b779958460e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a155750611a14826122b4565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611afb83610c17565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b4c82611a1c565b611b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8290613655565b60405180910390fd5b6000611b9683610c17565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c0557508373ffffffffffffffffffffffffffffffffffffffff16611bed84610706565b73ffffffffffffffffffffffffffffffffffffffff16145b80611c165750611c1581856116dd565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c3f82610c17565b73ffffffffffffffffffffffffffffffffffffffff1614611c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8c90613735565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfc906135d5565b60405180910390fd5b611d10838383612315565b611d1b600082611a88565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d6b91906139d3565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dc2919061394c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611e83610c00565b611ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb990613575565b60405180910390fd5b6000600660006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611f066119b3565b604051611f139190613414565b60405180910390a1565b6000611f2882610c17565b9050611f3681600084612315565b611f41600083611a88565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f9191906139d3565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b612036610c00565b15612076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206d90613675565b60405180910390fd5b6001600660006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586120ba6119b3565b6040516120c79190613414565b60405180910390a1565b80471015612114576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210b90613635565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161213a906133ff565b60006040518083038185875af1925050503d8060008114612177576040519150601f19603f3d011682016040523d82523d6000602084013e61217c565b606091505b50509050806121c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b790613615565b60405180910390fd5b505050565b6121d0848484611c1f565b6121dc84848484612325565b61221b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221290613595565b60405180910390fd5b50505050565b606061222c82611a1c565b61226b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612262906137b5565b60405180910390fd5b600e600f600c600f600c600f600d600f600d600b600f600b60405160200161229e9c9b9a99989796959493929190613293565b6040516020818303038152906040529050919050565b600063c155531d60e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061230e575061230d826124bc565b5b9050919050565b612320838383611956565b505050565b60006123468473ffffffffffffffffffffffffffffffffffffffff16611943565b156124af578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261236f6119b3565b8786866040518563ffffffff1660e01b8152600401612391949392919061344a565b602060405180830381600087803b1580156123ab57600080fd5b505af19250505080156123dc57506040513d601f19601f820116820180604052508101906123d99190612a3c565b60015b61245f573d806000811461240c576040519150601f19603f3d011682016040523d82523d6000602084013e612411565b606091505b50600081511415612457576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244e90613595565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124b4565b600190505b949350505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061258757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061259757506125968261259e565b5b9050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b82805461261490613acf565b90600052602060002090601f016020900481019282612636576000855561267d565b82601f1061264f57805160ff191683800117855561267d565b8280016001018555821561267d579182015b8281111561267c578251825591602001919060010190612661565b5b50905061268a919061268e565b5090565b5b808211156126a757600081600090555060010161268f565b5090565b60006126be6126b984613815565b6137f0565b9050828152602081018484840111156126d657600080fd5b6126e1848285613a8d565b509392505050565b60006126fc6126f784613846565b6137f0565b90508281526020810184848401111561271457600080fd5b61271f848285613a8d565b509392505050565b60008135905061273681614d56565b92915050565b60008135905061274b81614d6d565b92915050565b60008135905061276081614d84565b92915050565b60008135905061277581614d9b565b92915050565b60008151905061278a81614d9b565b92915050565b60008083601f8401126127a257600080fd5b8235905067ffffffffffffffff8111156127bb57600080fd5b6020830191508360018202830111156127d357600080fd5b9250929050565b600082601f8301126127eb57600080fd5b81356127fb8482602086016126ab565b91505092915050565b600082601f83011261281557600080fd5b81356128258482602086016126e9565b91505092915050565b60008135905061283d81614db2565b92915050565b60006020828403121561285557600080fd5b600061286384828501612727565b91505092915050565b60006020828403121561287e57600080fd5b600061288c8482850161273c565b91505092915050565b600080604083850312156128a857600080fd5b60006128b685828601612727565b92505060206128c785828601612727565b9150509250929050565b6000806000606084860312156128e657600080fd5b60006128f486828701612727565b935050602061290586828701612727565b92505060406129168682870161282e565b9150509250925092565b6000806000806080858703121561293657600080fd5b600061294487828801612727565b945050602061295587828801612727565b93505060406129668782880161282e565b925050606085013567ffffffffffffffff81111561298357600080fd5b61298f878288016127da565b91505092959194509250565b600080604083850312156129ae57600080fd5b60006129bc85828601612727565b92505060206129cd85828601612751565b9150509250929050565b600080604083850312156129ea57600080fd5b60006129f885828601612727565b9250506020612a098582860161282e565b9150509250929050565b600060208284031215612a2557600080fd5b6000612a3384828501612766565b91505092915050565b600060208284031215612a4e57600080fd5b6000612a5c8482850161277b565b91505092915050565b600060208284031215612a7757600080fd5b600082013567ffffffffffffffff811115612a9157600080fd5b612a9d84828501612804565b91505092915050565b600060208284031215612ab857600080fd5b6000612ac68482850161282e565b91505092915050565b60008060008060608587031215612ae557600080fd5b6000612af38782880161282e565b9450506020612b048782880161282e565b935050604085013567ffffffffffffffff811115612b2157600080fd5b612b2d87828801612790565b925092505092959194509250565b6000612b478383612b6b565b60208301905092915050565b6000612b5f838361322f565b60208301905092915050565b612b7481613a19565b82525050565b612b8381613a19565b82525050565b612b9281613a07565b82525050565b6000612ba3826138ac565b612bad81856138f2565b9350612bb883613877565b8060005b83811015612be9578151612bd08882612b3b565b9750612bdb836138d8565b925050600181019050612bbc565b5085935050505092915050565b6000612c01826138b7565b612c0b8185613903565b9350612c1683613887565b8060005b83811015612c47578151612c2e8882612b53565b9750612c39836138e5565b925050600181019050612c1a565b5085935050505092915050565b612c5d81613a2b565b82525050565b6000612c6e826138c2565b612c788185613914565b9350612c88818560208601613a9c565b612c9181613bee565b840191505092915050565b6000612ca7826138cd565b612cb18185613930565b9350612cc1818560208601613a9c565b612cca81613bee565b840191505092915050565b6000612ce0826138cd565b612cea8185613941565b9350612cfa818560208601613a9c565b80840191505092915050565b60008154612d1381613acf565b612d1d8186613941565b94506001821660008114612d385760018114612d4957612d7c565b60ff19831686528186019350612d7c565b612d5285613897565b60005b83811015612d7457815481890152600182019150602081019050612d55565b838801955050505b50505092915050565b6000612d92602b83613930565b9150612d9d82613bff565b604082019050919050565b6000612db5601483613930565b9150612dc082613c4e565b602082019050919050565b6000612dd8603283613930565b9150612de382613c77565b604082019050919050565b6000612dfb602683613930565b9150612e0682613cc6565b604082019050919050565b6000612e1e600283613941565b9150612e2982613d15565b600282019050919050565b6000612e41602483613930565b9150612e4c82613d3e565b604082019050919050565b6000612e64601983613930565b9150612e6f82613d8d565b602082019050919050565b6000612e87601183613941565b9150612e9282613db6565b601182019050919050565b6000612eaa603a83613930565b9150612eb582613ddf565b604082019050919050565b6000612ecd601d83613930565b9150612ed882613e2e565b602082019050919050565b6000612ef0602c83613930565b9150612efb82613e57565b604082019050919050565b6000612f13601083613930565b9150612f1e82613ea6565b602082019050919050565b6000612f36603883613930565b9150612f4182613ecf565b604082019050919050565b6000612f59602a83613930565b9150612f6482613f1e565b604082019050919050565b6000612f7c602983613930565b9150612f8782613f6d565b604082019050919050565b6000612f9f600983613941565b9150612faa82613fbc565b600982019050919050565b6000612fc2600d83613941565b9150612fcd82613fe5565b600d82019050919050565b6000612fe560bf83613941565b9150612ff08261400e565b60bf82019050919050565b6000613008600183613941565b9150613013826140f5565b600182019050919050565b600061302b602c83613930565b91506130368261411e565b604082019050919050565b600061304e601b83613941565b91506130598261416d565b601b82019050919050565b6000613071602083613930565b915061307c82614196565b602082019050919050565b6000613094602983613930565b915061309f826141bf565b604082019050919050565b60006130b861050383613941565b91506130c38261420e565b61050382019050919050565b60006130dd61023883613941565b91506130e882614848565b61023882019050919050565b6000613101602183613930565b915061310c82614b01565b604082019050919050565b6000613124609783613941565b915061312f82614b50565b609782019050919050565b6000613147600083613925565b915061315282614c11565b600082019050919050565b600061316a600d83613941565b915061317582614c14565b600d82019050919050565b600061318d603183613930565b915061319882614c3d565b604082019050919050565b60006131b0601883613941565b91506131bb82614c8c565b601882019050919050565b60006131d3600f83613941565b91506131de82614cb5565b600f82019050919050565b60006131f6603083613930565b915061320182614cde565b604082019050919050565b6000613219600383613930565b915061322482614d2d565b602082019050919050565b61323881613a83565b82525050565b61324781613a83565b82525050565b60006132598285612d06565b91506132658284612d06565b91508190509392505050565b600061327c82613041565b91506132888284612cd5565b915081905092915050565b600061329e826130aa565b91506132aa828f612d06565b91506132b582612e11565b91506132c082612f92565b91506132cc828e612d06565b91506132d8828d612d06565b91506132e382612e11565b91506132ee8261315d565b91506132fa828c612d06565b9150613306828b612d06565b915061331182612e11565b915061331c82613117565b915061332782612fb5565b9150613333828a612d06565b915061333f8289612d06565b915061334a82612e11565b915061335582612e7a565b91506133618288612d06565b915061336d8287612d06565b915061337882612e11565b915061338382612fd8565b915061338e826131a3565b915061339a8286612d06565b91506133a582612e11565b91506133b0826131c6565b91506133bc8285612d06565b91506133c88284612d06565b91506133d382612e11565b91506133de826130cf565b91506133e982612ffb565b91508190509d9c50505050505050505050505050565b600061340a8261313a565b9150819050919050565b60006020820190506134296000830184612b89565b92915050565b60006020820190506134446000830184612b7a565b92915050565b600060808201905061345f6000830187612b89565b61346c6020830186612b89565b613479604083018561323e565b818103606083015261348b8184612c63565b905095945050505050565b60006060820190506134ab6000830186612b89565b6134b8602083018561323e565b81810360408301526134ca8184612c63565b9050949350505050565b600060208201905081810360008301526134ee8184612b98565b905092915050565b600060208201905081810360008301526135108184612bf6565b905092915050565b600060208201905061352d6000830184612c54565b92915050565b6000602082019050818103600083015261354d8184612c9c565b905092915050565b6000602082019050818103600083015261356e81612d85565b9050919050565b6000602082019050818103600083015261358e81612da8565b9050919050565b600060208201905081810360008301526135ae81612dcb565b9050919050565b600060208201905081810360008301526135ce81612dee565b9050919050565b600060208201905081810360008301526135ee81612e34565b9050919050565b6000602082019050818103600083015261360e81612e57565b9050919050565b6000602082019050818103600083015261362e81612e9d565b9050919050565b6000602082019050818103600083015261364e81612ec0565b9050919050565b6000602082019050818103600083015261366e81612ee3565b9050919050565b6000602082019050818103600083015261368e81612f06565b9050919050565b600060208201905081810360008301526136ae81612f29565b9050919050565b600060208201905081810360008301526136ce81612f4c565b9050919050565b600060208201905081810360008301526136ee81612f6f565b9050919050565b6000602082019050818103600083015261370e8161301e565b9050919050565b6000602082019050818103600083015261372e81613064565b9050919050565b6000602082019050818103600083015261374e81613087565b9050919050565b6000602082019050818103600083015261376e816130f4565b9050919050565b6000602082019050818103600083015261378e81613180565b9050919050565b600060208201905081810360008301526137ae816131e9565b9050919050565b600060208201905081810360008301526137ce8161320c565b9050919050565b60006020820190506137ea600083018461323e565b92915050565b60006137fa61380b565b90506138068282613b01565b919050565b6000604051905090565b600067ffffffffffffffff8211156138305761382f613bbf565b5b61383982613bee565b9050602081019050919050565b600067ffffffffffffffff82111561386157613860613bbf565b5b61386a82613bee565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061395782613a83565b915061396283613a83565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561399757613996613b32565b5b828201905092915050565b60006139ad82613a83565b91506139b883613a83565b9250826139c8576139c7613b61565b5b828204905092915050565b60006139de82613a83565b91506139e983613a83565b9250828210156139fc576139fb613b32565b5b828203905092915050565b6000613a1282613a63565b9050919050565b6000613a2482613a63565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613aba578082015181840152602081019050613a9f565b83811115613ac9576000848401525b50505050565b60006002820490506001821680613ae757607f821691505b60208210811415613afb57613afa613b90565b5b50919050565b613b0a82613bee565b810181811067ffffffffffffffff82111715613b2957613b28613bbf565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008201527f68696c6520706175736564000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f222c000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f22616e696d6174696f6e5f75726c223a22000000000000000000000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f22696d616765223a220000000000000000000000000000000000000000000000600082015250565b7f22616e696d6174696f6e223a2200000000000000000000000000000000000000600082015250565b7f22616e696d6174696f6e5f666f726d6174223a226d7034222c22616e696d617460008201527f696f6e5f686569676874223a313038302c22616e696d6174696f6e5f7769647460208201527f68223a313038302c22616e696d6174696f6e5f6475726174696f6e223a31352c60408201527f22616e696d6174696f6e5f7368613235365f636865636b73756d223a2234333060608201527f623537383866363431663562636636636561356631336136373965636265623360808201527f6534373361376465353039353662336366346532336239326366633238222c0060a082015250565b7f7d00000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b757466382c0000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f7b226e616d65223a22574f524e5f332e30222c22637265617465645f6279223a60008201527f2257686974652532304c6967687473222c226465736372697074696f6e223a2260208201527f574f524e5f332e302535436e2535436e45646974696f6e253230312532306f6660408201527f253230312535436e2535436e41253230576562474c253230617564696f76697360608201527f75616c253230617274776f726b2532306372656174656425323062792532305760808201527f686974652532304c69676874732532306578706c6f72696e672532307468652560a08201527f323070726f6365737365732532306f662532306275726e6f7574253230616e6460c08201527f253230616e78696574792e253230456e746972656c7925323067656e6572617460e08201527f6976652532432532306f6e2d636861696e253243253230616e642532307363616101008201527f6c61626c65253230746f253230616e792532307265736f6c7574696f6e2e25326101208201527f3054686525323077617665666f726d2532306f6625323057686974652532304c6101408201527f6967687473254532253830253939253230736f6e6725323025453225383025396101608201527f38576f726e254532253830253939253230636f6d62696e6564253230776974686101808201527f25323074686525323076696577657225453225383025393973253230696e74656101a08201527f72616374696f6e7325323064657465726d696e65253230746865253230696e746101c08201527f65726e616c253230617474726962757465732532306f662532307468652532306101e08201527f7069656365253230696e2532307265616c2d74696d652e2535436e2535436e416102008201527f72776561766525453225383025393973253230626c6f636b636861696e2532306102208201527f686f737473253230746865253230617274776f726b25453225383025393973256102408201527f3230736f75726365253230636f64652532306f6e2532307468652532307065726102608201527f6d61776562253243253230616e64253230457468657265756d254532253830256102808201527f393973253230626c6f636b636861696e25323073746f726573253230697473256102a08201527f32306d657461646174612532306f6e2d636861696e25323077697468696e25326102c08201527f307468652532304e4654253230697473656c662e2532305468697325323074656102e08201527f63686e6f6c6f67792532306d616b657325323069742532306f6e652532306f666103008201527f253230746865253230666972737425323067656e75696e656c792532307065726103208201527f6d616e656e74253243253230646563656e7472616c697a6564253243253230616103408201527f6e6425323067656e657261746976652532307069656365732532306f662532306103608201527f3344253230617274776f726b2e2535436e2535436e2e68746d6c253230466f726103808201527f6d61742535436e2535436e496e66696e6974652532304475726174696f6e25326103a08201527f30616e642532305265736f6c7574696f6e2535436e2535436e576562474c25326103c08201527f432532304a5325324325323043535325324325323048544d4c2535436e2535436103e08201527f6e546f25323076696577253243253230666f6c6c6f77253230746865253230456104008201527f787465726e616c2532304c696e6b2532306f66253230746869732532304e46546104208201527f2532307768656e2532307669657765642532306f6e2532304f70656e5365612e6104408201527f253230596f752532306d6179253230616c736f253230726574726965766525326104608201527f3074686525323055524c2532306d616e75616c6c7925323076696125323070756104808201527f626c6963253230636f6e747261637425323066756e6374696f6e7325323065786104a08201527f7465726e616c55524c253243253230676574417274776f726b55524c253243256104c08201527f3230616e64253230746f6b656e5552492e222c2265787465726e616c5f75726c6104e08201527f223a22000000000000000000000000000000000000000000000000000000000061050082015250565b7f22617274776f726b5f666f726d6174223a2268746d6c222c22617274776f726b60008201527f5f7368613235365f636865636b73756d223a223536646433353163306339343960208201527f623437646432643235613535373632653737306332656430326236306264313360408201527f35356432316533333931616339323237373836222c226261636b67726f756e6460608201527f5f636f6c6f72223a22303030303030222c2261747472696275746573223a5b7b60808201527f2274726169745f74797065223a22417274697374222c2276616c7565223a225760a08201527f686974652532304c6967687473227d2c7b2274726169745f74797065223a224560c08201527f646974696f6e222c22646973706c61795f74797065223a226e756d626572222c60e08201527f2276616c7565223a312c226d61785f76616c7565223a317d2c7b2274726169746101008201527f5f74797065223a2244696d656e73696f6e73222c2276616c7565223a225265736101208201527f706f6e73697665227d2c7b2274726169745f74797065223a224475726174696f6101408201527f6e222c2276616c7565223a22496e66696e697465227d2c7b2274726169745f746101608201527f797065223a22496e746572616374697665222c2276616c7565223a22496e74656101808201527f72616374697665227d2c7b22646973706c61795f74797065223a22626f6f73746101a08201527f5f70657263656e74616765222c2274726169745f74797065223a224275726e6f6101c08201527f7574222c2276616c7565223a3130307d2c7b22646973706c61795f74797065226101e08201527f3a22626f6f73745f70657263656e74616765222c2274726169745f74797065226102008201527f3a22416e7869657479222c2276616c7565223a3130307d5d000000000000000061022082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f22696d6167655f666f726d6174223a22706e67222c22696d6167655f6865696760008201527f6874223a333030302c22696d6167655f7769647468223a333030302c22696d6160208201527f67655f7368613235365f636865636b73756d223a22353664643335316330633960408201527f343962343764643264323561353537363265373730633265643032623630626460608201527f313335356432316533333931616339323237373836222c000000000000000000608082015250565b50565b7f22696d6167655f75726c223a2200000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f22617274776f726b5f617277656176655f68617368223a220000000000000000600082015250565b7f22617274776f726b5f75726c223a220000000000000000000000000000000000600082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f444e450000000000000000000000000000000000000000000000000000000000600082015250565b614d5f81613a07565b8114614d6a57600080fd5b50565b614d7681613a19565b8114614d8157600080fd5b50565b614d8d81613a2b565b8114614d9857600080fd5b50565b614da481613a37565b8114614daf57600080fd5b50565b614dbb81613a83565b8114614dc657600080fd5b5056fea2646970667358221220ac5299095b2be2d16dac7f190b820de87beb27fa544c533a037ae915d3961e3664736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000103c8b5b5b2468f2552f0a1aa30738bf08ada0ca000000000000000000000000000000000000000000000000000000000000002b7438514b497a514749325970596771453761712d6e694f4b476c712d39354b585f75633037744b6a31324d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002b364a585a746f387770315345655931307a6269665431593471416b5f4178564d4c4b5757474d4652354163000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002b6d2d4a4d4843727972374e5455515a6c304566324235495f5f4655545a7a796e7158726746747731465a6b000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : givenMaxNumberOfPieces (uint256): 1
Arg [1] : givenArweaveArtworkId (string): t8QKIzQGI2YpYgqE7aq-niOKGlq-95KX_uc07tKj12M
Arg [2] : givenArweaveImageId (string): 6JXZto8wp1SEeY10zbifT1Y4qAk_AxVMLKWWGMFR5Ac
Arg [3] : givenArweaveAnimationId (string): m-JMHCryr7NTUQZl0Ef2B5I__FUTZzynqXrgFtw1FZk
Arg [4] : givenWithdrawalAddress (address): 0x103c8B5b5b2468F2552f0A1AA30738BF08AdA0Ca
-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 000000000000000000000000103c8b5b5b2468f2552f0a1aa30738bf08ada0ca
Arg [5] : 000000000000000000000000000000000000000000000000000000000000002b
Arg [6] : 7438514b497a514749325970596771453761712d6e694f4b476c712d39354b58
Arg [7] : 5f75633037744b6a31324d000000000000000000000000000000000000000000
Arg [8] : 000000000000000000000000000000000000000000000000000000000000002b
Arg [9] : 364a585a746f387770315345655931307a6269665431593471416b5f4178564d
Arg [10] : 4c4b5757474d4652354163000000000000000000000000000000000000000000
Arg [11] : 000000000000000000000000000000000000000000000000000000000000002b
Arg [12] : 6d2d4a4d4843727972374e5455515a6c304566324235495f5f4655545a7a796e
Arg [13] : 7158726746747731465a6b000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
46257:10138:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49375:92;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47947:186;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28116:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29576:221;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29113:397;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55874:208;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49473:144;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30466:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55212:66;;;:::i;:::-;;30842:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39443:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50281:184;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40768:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27810:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27540:208;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7052:148;;;:::i;:::-;;55030:63;;;:::i;:::-;;6401:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28285:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29869:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49197:172;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49623:121;;;:::i;:::-;;31064:285;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46906:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55614:254;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56147:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;48316:265;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46998:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30235:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46358:40;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7355:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49375:92;6632:12;:10;:12::i;:::-;6621:23;;:7;:5;:7::i;:::-;:23;;;6613:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49458:3:::1;49444:11;:17;;;;;;;;;;;;:::i;:::-;;49375:92:::0;:::o;47947:186::-;48071:4;48091:36;48115:11;48091:23;:36::i;:::-;48084:43;;47947:186;;;:::o;28116:100::-;28170:13;28203:5;28196:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28116:100;:::o;29576:221::-;29652:7;29680:16;29688:7;29680;:16::i;:::-;29672:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;29765:15;:24;29781:7;29765:24;;;;;;;;;;;;;;;;;;;;;29758:31;;29576:221;;;:::o;29113:397::-;29194:13;29210:23;29225:7;29210:14;:23::i;:::-;29194:39;;29258:5;29252:11;;:2;:11;;;;29244:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;29338:5;29322:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;29347:37;29364:5;29371:12;:10;:12::i;:::-;29347:16;:37::i;:::-;29322:62;29314:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;29481:21;29490:2;29494:7;29481:8;:21::i;:::-;29113:397;;;:::o;55874:208::-;55935:13;55965:11;55973:2;55965:7;:11::i;:::-;55957:27;;;;;;;;;;;;:::i;:::-;;;;;;;;;55991:20;56025:1;56014:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55991:36;;46574:4;56034:6;56041:1;56034:9;;;;;;;;;;;;;;;;;;;;;:22;;;;;56070:6;56063:13;;;55874:208;;;:::o;49473:144::-;6632:12;:10;:12::i;:::-;6621:23;;:7;:5;:7::i;:::-;:23;;;6613:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49589:22:::1;49569:17;;:42;;;;;;;;;;;;;;;;;;49473:144:::0;:::o;30466:305::-;30627:41;30646:12;:10;:12::i;:::-;30660:7;30627:18;:41::i;:::-;30619:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;30735:28;30745:4;30751:2;30755:7;30735:9;:28::i;:::-;30466:305;;;:::o;55212:66::-;6632:12;:10;:12::i;:::-;6621:23;;:7;:5;:7::i;:::-;:23;;;6613:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55262:10:::1;:8;:10::i;:::-;55212:66::o:0;30842:151::-;30946:39;30963:4;30969:2;30973:7;30946:39;;;;;;;;;;;;:16;:39::i;:::-;30842:151;;;:::o;39443:245::-;39561:41;39580:12;:10;:12::i;:::-;39594:7;39561:18;:41::i;:::-;39553:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;39666:14;39672:7;39666:5;:14::i;:::-;39443:245;:::o;50281:184::-;50327:22;50407:14;50432:11;50380:72;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50358:101;;50281:184;:::o;40768:86::-;40815:4;40839:7;;;;;;;;;;;40832:14;;40768:86;:::o;27810:239::-;27882:7;27902:13;27918:7;:16;27926:7;27918:16;;;;;;;;;;;;;;;;;;;;;27902:32;;27970:1;27953:19;;:5;:19;;;;27945:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28036:5;28029:12;;;27810:239;;;:::o;27540:208::-;27612:7;27657:1;27640:19;;:5;:19;;;;27632:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;27724:9;:16;27734:5;27724:16;;;;;;;;;;;;;;;;27717:23;;27540:208;;;:::o;7052:148::-;6632:12;:10;:12::i;:::-;6621:23;;:7;:5;:7::i;:::-;:23;;;6613:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7159:1:::1;7122:40;;7143:6;;;;;;;;;;;7122:40;;;;;;;;;;;;7190:1;7173:6;;:19;;;;;;;;;;;;;;;;;;7052:148::o:0;55030:63::-;6632:12;:10;:12::i;:::-;6621:23;;:7;:5;:7::i;:::-;:23;;;6613:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55079:8:::1;:6;:8::i;:::-;55030:63::o:0;6401:87::-;6447:7;6474:6;;;;;;;;;;;6467:13;;6401:87;:::o;28285:104::-;28341:13;28374:7;28367:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28285:104;:::o;29869:295::-;29984:12;:10;:12::i;:::-;29972:24;;:8;:24;;;;29964:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;30084:8;30039:18;:32;30058:12;:10;:12::i;:::-;30039:32;;;;;;;;;;;;;;;:42;30072:8;30039:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;30137:8;30108:48;;30123:12;:10;:12::i;:::-;30108:48;;;30147:8;30108:48;;;;;;:::i;:::-;;;;;;;;29869:295;;:::o;49197:172::-;6632:12;:10;:12::i;:::-;6621:23;;:7;:5;:7::i;:::-;:23;;;6613:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49298:15:::1;49281:14;:32;;;;;;;;;;;;:::i;:::-;;49325:38;49347:15;49325:38;;;;;;:::i;:::-;;;;;;;;49197:172:::0;:::o;49623:121::-;6632:12;:10;:12::i;:::-;6621:23;;:7;:5;:7::i;:::-;:23;;;6613:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49679:59:::1;49697:17;;;;;;;;;;;49716:21;49679:17;:59::i;:::-;49623:121::o:0;31064:285::-;31196:41;31215:12;:10;:12::i;:::-;31229:7;31196:18;:41::i;:::-;31188:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;31302:39;31316:4;31322:2;31326:7;31335:5;31302:13;:39::i;:::-;31064:285;;;;:::o;46906:25::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;55614:254::-;55682:24;55723:11;55731:2;55723:7;:11::i;:::-;55715:27;;;;;;;;;;;;:::i;:::-;;;;;;;;;55749:31;55805:1;55783:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55749:58;;55826:16;;;;;;;;;;;55814:6;55821:1;55814:9;;;;;;;;;;;;;;;;;;;;;:28;;;;;;;;;;;55856:6;55849:13;;;55614:254;;;:::o;56147:245::-;56256:17;56275:22;56299:32;56348:17;;;;;;;;;;;56376:2;56367:6;:11;;;;:::i;:::-;56380:5;;56340:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56147:245;;;;;;;;:::o;48316:265::-;48389:13;48419:16;48427:7;48419;:16::i;:::-;48411:32;;;;;;;;;;;;:::i;:::-;;;;;;;;;48539:20;48551:7;48539:11;:20::i;:::-;48472:96;;;;;;;;:::i;:::-;;;;;;;;;;;;;48450:125;;48316:265;;;:::o;46998:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30235:164::-;30332:4;30356:18;:25;30375:5;30356:25;;;;;;;;;;;;;;;:35;30382:8;30356:35;;;;;;;;;;;;;;;;;;;;;;;;;30349:42;;30235:164;;;;:::o;46358:40::-;;;;;;;;;;;;;:::o;7355:244::-;6632:12;:10;:12::i;:::-;6621:23;;:7;:5;:7::i;:::-;:23;;;6613:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7464:1:::1;7444:22;;:8;:22;;;;7436:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7554:8;7525:38;;7546:6;;;;;;;;;;;7525:38;;;;;;;;;;;;7583:8;7574:6;;:17;;;;;;;;;;;;;;;;;;7355:244:::0;:::o;15567:422::-;15627:4;15835:12;15946:7;15934:20;15926:28;;15980:1;15973:4;:8;15966:15;;;15567:422;;;:::o;42551:241::-;42661:45;42688:4;42694:2;42698:7;42661:26;:45::i;:::-;42728:8;:6;:8::i;:::-;42727:9;42719:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;42551:241;;;:::o;38888:93::-;;;;:::o;4961:98::-;5014:7;5041:10;5034:17;;4961:98;:::o;45131:191::-;45216:4;44936:10;45251:18;;45236:33;;;:11;:33;;;;:80;;;;45280:36;45304:11;45280:23;:36::i;:::-;45236:80;45229:87;;45131:191;;;:::o;32816:127::-;32881:4;32933:1;32905:30;;:7;:16;32913:7;32905:16;;;;;;;;;;;;;;;;;;;;;:30;;;;32898:37;;32816:127;;;:::o;36693:174::-;36795:2;36768:15;:24;36784:7;36768:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36851:7;36847:2;36813:46;;36822:23;36837:7;36822:14;:23::i;:::-;36813:46;;;;;;;;;;;;36693:174;;:::o;33110:348::-;33203:4;33228:16;33236:7;33228;:16::i;:::-;33220:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;33304:13;33320:23;33335:7;33320:14;:23::i;:::-;33304:39;;33373:5;33362:16;;:7;:16;;;:51;;;;33406:7;33382:31;;:20;33394:7;33382:11;:20::i;:::-;:31;;;33362:51;:87;;;;33417:32;33434:5;33441:7;33417:16;:32::i;:::-;33362:87;33354:96;;;33110:348;;;;:::o;36031:544::-;36156:4;36129:31;;:23;36144:7;36129:14;:23::i;:::-;:31;;;36121:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;36239:1;36225:16;;:2;:16;;;;36217:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;36295:39;36316:4;36322:2;36326:7;36295:20;:39::i;:::-;36399:29;36416:1;36420:7;36399:8;:29::i;:::-;36460:1;36441:9;:15;36451:4;36441:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;36489:1;36472:9;:13;36482:2;36472:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;36520:2;36501:7;:16;36509:7;36501:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;36559:7;36555:2;36540:27;;36549:4;36540:27;;;;;;;;;;;;36031:544;;;:::o;41827:120::-;41371:8;:6;:8::i;:::-;41363:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;41896:5:::1;41886:7;;:15;;;;;;;;;;;;;;;;;;41917:22;41926:12;:10;:12::i;:::-;41917:22;;;;;;:::i;:::-;;;;;;;;41827:120::o:0;35334:360::-;35394:13;35410:23;35425:7;35410:14;:23::i;:::-;35394:39;;35446:48;35467:5;35482:1;35486:7;35446:20;:48::i;:::-;35535:29;35552:1;35556:7;35535:8;:29::i;:::-;35597:1;35577:9;:16;35587:5;35577:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;35616:7;:16;35624:7;35616:16;;;;;;;;;;;;35609:23;;;;;;;;;;;35678:7;35674:1;35650:36;;35659:5;35650:36;;;;;;;;;;;;35334:360;;:::o;41568:118::-;41094:8;:6;:8::i;:::-;41093:9;41085:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;41638:4:::1;41628:7;;:14;;;;;;;;;;;;;;;;;;41658:20;41665:12;:10;:12::i;:::-;41658:20;;;;;;:::i;:::-;;;;;;;;41568:118::o:0;16924:397::-;17039:6;17014:21;:31;;17006:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;17171:12;17189:9;:14;;17212:6;17189:35;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17170:54;;;17243:7;17235:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;16924:397;;;:::o;32231:272::-;32345:28;32355:4;32361:2;32365:7;32345:9;:28::i;:::-;32392:48;32415:4;32421:2;32425:7;32434:5;32392:22;:48::i;:::-;32384:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;32231:272;;;;:::o;51859:3056::-;51928:22;51967:16;51975:7;51967;:16::i;:::-;51959:32;;;;;;;;;;;;:::i;:::-;;;;;;;;;53389:11;53463:14;53479:16;53529:14;53545:16;53787:14;53803:20;53861:14;53877:20;54191:11;54238:14;54254:11;52022:2876;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52000:2905;;51859:3056;;;:::o;44197:194::-;44282:4;43205:10;44317:21;;44302:36;;;:11;:36;;;;:83;;;;44349:36;44373:11;44349:23;:36::i;:::-;44302:83;44295:90;;44197:194;;;:::o;55370:181::-;55500:45;55527:4;55533:2;55537:7;55500:26;:45::i;:::-;55370:181;;;:::o;37432:843::-;37553:4;37579:15;:2;:13;;;:15::i;:::-;37575:693;;;37631:2;37615:36;;;37652:12;:10;:12::i;:::-;37666:4;37672:7;37681:5;37615:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37611:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37878:1;37861:6;:13;:18;37857:341;;;37904:60;;;;;;;;;;:::i;:::-;;;;;;;;37857:341;38148:6;38142:13;38133:6;38129:2;38125:15;38118:38;37611:602;37748:45;;;37738:55;;;:6;:55;;;;37731:62;;;;;37575:693;38252:4;38245:11;;37432:843;;;;;;;:::o;27184:292::-;27286:4;27325:25;27310:40;;;:11;:40;;;;:105;;;;27382:33;27367:48;;;:11;:48;;;;27310:105;:158;;;;27432:36;27456:11;27432:23;:36::i;:::-;27310:158;27303:165;;27184:292;;;:::o;25684:157::-;25769:4;25808:25;25793:40;;;:11;:40;;;;25786:47;;25684:157;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:155::-;906:5;944:6;931:20;922:29;;960:41;995:5;960:41;:::i;:::-;912:95;;;;:::o;1013:133::-;1056:5;1094:6;1081:20;1072:29;;1110:30;1134:5;1110:30;:::i;:::-;1062:84;;;;:::o;1152:137::-;1197:5;1235:6;1222:20;1213:29;;1251:32;1277:5;1251:32;:::i;:::-;1203:86;;;;:::o;1295:141::-;1351:5;1382:6;1376:13;1367:22;;1398:32;1424:5;1398:32;:::i;:::-;1357:79;;;;:::o;1455:351::-;1512:8;1522:6;1572:3;1565:4;1557:6;1553:17;1549:27;1539:2;;1590:1;1587;1580:12;1539:2;1626:6;1613:20;1603:30;;1656:18;1648:6;1645:30;1642:2;;;1688:1;1685;1678:12;1642:2;1725:4;1717:6;1713:17;1701:29;;1779:3;1771:4;1763:6;1759:17;1749:8;1745:32;1742:41;1739:2;;;1796:1;1793;1786:12;1739:2;1529:277;;;;;:::o;1825:271::-;1880:5;1929:3;1922:4;1914:6;1910:17;1906:27;1896:2;;1947:1;1944;1937:12;1896:2;1987:6;1974:20;2012:78;2086:3;2078:6;2071:4;2063:6;2059:17;2012:78;:::i;:::-;2003:87;;1886:210;;;;;:::o;2116:273::-;2172:5;2221:3;2214:4;2206:6;2202:17;2198:27;2188:2;;2239:1;2236;2229:12;2188:2;2279:6;2266:20;2304:79;2379:3;2371:6;2364:4;2356:6;2352:17;2304:79;:::i;:::-;2295:88;;2178:211;;;;;:::o;2395:139::-;2441:5;2479:6;2466:20;2457:29;;2495:33;2522:5;2495:33;:::i;:::-;2447:87;;;;:::o;2540:262::-;2599:6;2648:2;2636:9;2627:7;2623:23;2619:32;2616:2;;;2664:1;2661;2654:12;2616:2;2707:1;2732:53;2777:7;2768:6;2757:9;2753:22;2732:53;:::i;:::-;2722:63;;2678:117;2606:196;;;;:::o;2808:278::-;2875:6;2924:2;2912:9;2903:7;2899:23;2895:32;2892:2;;;2940:1;2937;2930:12;2892:2;2983:1;3008:61;3061:7;3052:6;3041:9;3037:22;3008:61;:::i;:::-;2998:71;;2954:125;2882:204;;;;:::o;3092:407::-;3160:6;3168;3217:2;3205:9;3196:7;3192:23;3188:32;3185:2;;;3233:1;3230;3223:12;3185:2;3276:1;3301:53;3346:7;3337:6;3326:9;3322:22;3301:53;:::i;:::-;3291:63;;3247:117;3403:2;3429:53;3474:7;3465:6;3454:9;3450:22;3429:53;:::i;:::-;3419:63;;3374:118;3175:324;;;;;:::o;3505:552::-;3582:6;3590;3598;3647:2;3635:9;3626:7;3622:23;3618:32;3615:2;;;3663:1;3660;3653:12;3615:2;3706:1;3731:53;3776:7;3767:6;3756:9;3752:22;3731:53;:::i;:::-;3721:63;;3677:117;3833:2;3859:53;3904:7;3895:6;3884:9;3880:22;3859:53;:::i;:::-;3849:63;;3804:118;3961:2;3987:53;4032:7;4023:6;4012:9;4008:22;3987:53;:::i;:::-;3977:63;;3932:118;3605:452;;;;;:::o;4063:809::-;4158:6;4166;4174;4182;4231:3;4219:9;4210:7;4206:23;4202:33;4199:2;;;4248:1;4245;4238:12;4199:2;4291:1;4316:53;4361:7;4352:6;4341:9;4337:22;4316:53;:::i;:::-;4306:63;;4262:117;4418:2;4444:53;4489:7;4480:6;4469:9;4465:22;4444:53;:::i;:::-;4434:63;;4389:118;4546:2;4572:53;4617:7;4608:6;4597:9;4593:22;4572:53;:::i;:::-;4562:63;;4517:118;4702:2;4691:9;4687:18;4674:32;4733:18;4725:6;4722:30;4719:2;;;4765:1;4762;4755:12;4719:2;4793:62;4847:7;4838:6;4827:9;4823:22;4793:62;:::i;:::-;4783:72;;4645:220;4189:683;;;;;;;:::o;4878:401::-;4943:6;4951;5000:2;4988:9;4979:7;4975:23;4971:32;4968:2;;;5016:1;5013;5006:12;4968:2;5059:1;5084:53;5129:7;5120:6;5109:9;5105:22;5084:53;:::i;:::-;5074:63;;5030:117;5186:2;5212:50;5254:7;5245:6;5234:9;5230:22;5212:50;:::i;:::-;5202:60;;5157:115;4958:321;;;;;:::o;5285:407::-;5353:6;5361;5410:2;5398:9;5389:7;5385:23;5381:32;5378:2;;;5426:1;5423;5416:12;5378:2;5469:1;5494:53;5539:7;5530:6;5519:9;5515:22;5494:53;:::i;:::-;5484:63;;5440:117;5596:2;5622:53;5667:7;5658:6;5647:9;5643:22;5622:53;:::i;:::-;5612:63;;5567:118;5368:324;;;;;:::o;5698:260::-;5756:6;5805:2;5793:9;5784:7;5780:23;5776:32;5773:2;;;5821:1;5818;5811:12;5773:2;5864:1;5889:52;5933:7;5924:6;5913:9;5909:22;5889:52;:::i;:::-;5879:62;;5835:116;5763:195;;;;:::o;5964:282::-;6033:6;6082:2;6070:9;6061:7;6057:23;6053:32;6050:2;;;6098:1;6095;6088:12;6050:2;6141:1;6166:63;6221:7;6212:6;6201:9;6197:22;6166:63;:::i;:::-;6156:73;;6112:127;6040:206;;;;:::o;6252:375::-;6321:6;6370:2;6358:9;6349:7;6345:23;6341:32;6338:2;;;6386:1;6383;6376:12;6338:2;6457:1;6446:9;6442:17;6429:31;6487:18;6479:6;6476:30;6473:2;;;6519:1;6516;6509:12;6473:2;6547:63;6602:7;6593:6;6582:9;6578:22;6547:63;:::i;:::-;6537:73;;6400:220;6328:299;;;;:::o;6633:262::-;6692:6;6741:2;6729:9;6720:7;6716:23;6712:32;6709:2;;;6757:1;6754;6747:12;6709:2;6800:1;6825:53;6870:7;6861:6;6850:9;6846:22;6825:53;:::i;:::-;6815:63;;6771:117;6699:196;;;;:::o;6901:683::-;6989:6;6997;7005;7013;7062:2;7050:9;7041:7;7037:23;7033:32;7030:2;;;7078:1;7075;7068:12;7030:2;7121:1;7146:53;7191:7;7182:6;7171:9;7167:22;7146:53;:::i;:::-;7136:63;;7092:117;7248:2;7274:53;7319:7;7310:6;7299:9;7295:22;7274:53;:::i;:::-;7264:63;;7219:118;7404:2;7393:9;7389:18;7376:32;7435:18;7427:6;7424:30;7421:2;;;7467:1;7464;7457:12;7421:2;7503:64;7559:7;7550:6;7539:9;7535:22;7503:64;:::i;:::-;7485:82;;;;7347:230;7020:564;;;;;;;:::o;7590:211::-;7675:10;7696:62;7754:3;7746:6;7696:62;:::i;:::-;7790:4;7785:3;7781:14;7767:28;;7686:115;;;;:::o;7807:179::-;7876:10;7897:46;7939:3;7931:6;7897:46;:::i;:::-;7975:4;7970:3;7966:14;7952:28;;7887:99;;;;:::o;7992:132::-;8085:32;8111:5;8085:32;:::i;:::-;8080:3;8073:45;8063:61;;:::o;8130:142::-;8233:32;8259:5;8233:32;:::i;:::-;8228:3;8221:45;8211:61;;:::o;8278:118::-;8365:24;8383:5;8365:24;:::i;:::-;8360:3;8353:37;8343:53;;:::o;8448:796::-;8583:3;8612:62;8668:5;8612:62;:::i;:::-;8690:94;8777:6;8772:3;8690:94;:::i;:::-;8683:101;;8808:64;8866:5;8808:64;:::i;:::-;8895:7;8926:1;8911:308;8936:6;8933:1;8930:13;8911:308;;;9012:6;9006:13;9039:79;9114:3;9099:13;9039:79;:::i;:::-;9032:86;;9141:68;9202:6;9141:68;:::i;:::-;9131:78;;8971:248;8958:1;8955;8951:9;8946:14;;8911:308;;;8915:14;9235:3;9228:10;;8588:656;;;;;;;:::o;9280:732::-;9399:3;9428:54;9476:5;9428:54;:::i;:::-;9498:86;9577:6;9572:3;9498:86;:::i;:::-;9491:93;;9608:56;9658:5;9608:56;:::i;:::-;9687:7;9718:1;9703:284;9728:6;9725:1;9722:13;9703:284;;;9804:6;9798:13;9831:63;9890:3;9875:13;9831:63;:::i;:::-;9824:70;;9917:60;9970:6;9917:60;:::i;:::-;9907:70;;9763:224;9750:1;9747;9743:9;9738:14;;9703:284;;;9707:14;10003:3;9996:10;;9404:608;;;;;;;:::o;10018:109::-;10099:21;10114:5;10099:21;:::i;:::-;10094:3;10087:34;10077:50;;:::o;10133:360::-;10219:3;10247:38;10279:5;10247:38;:::i;:::-;10301:70;10364:6;10359:3;10301:70;:::i;:::-;10294:77;;10380:52;10425:6;10420:3;10413:4;10406:5;10402:16;10380:52;:::i;:::-;10457:29;10479:6;10457:29;:::i;:::-;10452:3;10448:39;10441:46;;10223:270;;;;;:::o;10499:364::-;10587:3;10615:39;10648:5;10615:39;:::i;:::-;10670:71;10734:6;10729:3;10670:71;:::i;:::-;10663:78;;10750:52;10795:6;10790:3;10783:4;10776:5;10772:16;10750:52;:::i;:::-;10827:29;10849:6;10827:29;:::i;:::-;10822:3;10818:39;10811:46;;10591:272;;;;;:::o;10869:377::-;10975:3;11003:39;11036:5;11003:39;:::i;:::-;11058:89;11140:6;11135:3;11058:89;:::i;:::-;11051:96;;11156:52;11201:6;11196:3;11189:4;11182:5;11178:16;11156:52;:::i;:::-;11233:6;11228:3;11224:16;11217:23;;10979:267;;;;;:::o;11276:845::-;11379:3;11416:5;11410:12;11445:36;11471:9;11445:36;:::i;:::-;11497:89;11579:6;11574:3;11497:89;:::i;:::-;11490:96;;11617:1;11606:9;11602:17;11633:1;11628:137;;;;11779:1;11774:341;;;;11595:520;;11628:137;11712:4;11708:9;11697;11693:25;11688:3;11681:38;11748:6;11743:3;11739:16;11732:23;;11628:137;;11774:341;11841:38;11873:5;11841:38;:::i;:::-;11901:1;11915:154;11929:6;11926:1;11923:13;11915:154;;;12003:7;11997:14;11993:1;11988:3;11984:11;11977:35;12053:1;12044:7;12040:15;12029:26;;11951:4;11948:1;11944:12;11939:17;;11915:154;;;12098:6;12093:3;12089:16;12082:23;;11781:334;;11595:520;;11383:738;;;;;;:::o;12127:366::-;12269:3;12290:67;12354:2;12349:3;12290:67;:::i;:::-;12283:74;;12366:93;12455:3;12366:93;:::i;:::-;12484:2;12479:3;12475:12;12468:19;;12273:220;;;:::o;12499:366::-;12641:3;12662:67;12726:2;12721:3;12662:67;:::i;:::-;12655:74;;12738:93;12827:3;12738:93;:::i;:::-;12856:2;12851:3;12847:12;12840:19;;12645:220;;;:::o;12871:366::-;13013:3;13034:67;13098:2;13093:3;13034:67;:::i;:::-;13027:74;;13110:93;13199:3;13110:93;:::i;:::-;13228:2;13223:3;13219:12;13212:19;;13017:220;;;:::o;13243:366::-;13385:3;13406:67;13470:2;13465:3;13406:67;:::i;:::-;13399:74;;13482:93;13571:3;13482:93;:::i;:::-;13600:2;13595:3;13591:12;13584:19;;13389:220;;;:::o;13615:400::-;13775:3;13796:84;13878:1;13873:3;13796:84;:::i;:::-;13789:91;;13889:93;13978:3;13889:93;:::i;:::-;14007:1;14002:3;13998:11;13991:18;;13779:236;;;:::o;14021:366::-;14163:3;14184:67;14248:2;14243:3;14184:67;:::i;:::-;14177:74;;14260:93;14349:3;14260:93;:::i;:::-;14378:2;14373:3;14369:12;14362:19;;14167:220;;;:::o;14393:366::-;14535:3;14556:67;14620:2;14615:3;14556:67;:::i;:::-;14549:74;;14632:93;14721:3;14632:93;:::i;:::-;14750:2;14745:3;14741:12;14734:19;;14539:220;;;:::o;14765:402::-;14925:3;14946:85;15028:2;15023:3;14946:85;:::i;:::-;14939:92;;15040:93;15129:3;15040:93;:::i;:::-;15158:2;15153:3;15149:12;15142:19;;14929:238;;;:::o;15173:366::-;15315:3;15336:67;15400:2;15395:3;15336:67;:::i;:::-;15329:74;;15412:93;15501:3;15412:93;:::i;:::-;15530:2;15525:3;15521:12;15514:19;;15319:220;;;:::o;15545:366::-;15687:3;15708:67;15772:2;15767:3;15708:67;:::i;:::-;15701:74;;15784:93;15873:3;15784:93;:::i;:::-;15902:2;15897:3;15893:12;15886:19;;15691:220;;;:::o;15917:366::-;16059:3;16080:67;16144:2;16139:3;16080:67;:::i;:::-;16073:74;;16156:93;16245:3;16156:93;:::i;:::-;16274:2;16269:3;16265:12;16258:19;;16063:220;;;:::o;16289:366::-;16431:3;16452:67;16516:2;16511:3;16452:67;:::i;:::-;16445:74;;16528:93;16617:3;16528:93;:::i;:::-;16646:2;16641:3;16637:12;16630:19;;16435:220;;;:::o;16661:366::-;16803:3;16824:67;16888:2;16883:3;16824:67;:::i;:::-;16817:74;;16900:93;16989:3;16900:93;:::i;:::-;17018:2;17013:3;17009:12;17002:19;;16807:220;;;:::o;17033:366::-;17175:3;17196:67;17260:2;17255:3;17196:67;:::i;:::-;17189:74;;17272:93;17361:3;17272:93;:::i;:::-;17390:2;17385:3;17381:12;17374:19;;17179:220;;;:::o;17405:366::-;17547:3;17568:67;17632:2;17627:3;17568:67;:::i;:::-;17561:74;;17644:93;17733:3;17644:93;:::i;:::-;17762:2;17757:3;17753:12;17746:19;;17551:220;;;:::o;17777:400::-;17937:3;17958:84;18040:1;18035:3;17958:84;:::i;:::-;17951:91;;18051:93;18140:3;18051:93;:::i;:::-;18169:1;18164:3;18160:11;18153:18;;17941:236;;;:::o;18183:402::-;18343:3;18364:85;18446:2;18441:3;18364:85;:::i;:::-;18357:92;;18458:93;18547:3;18458:93;:::i;:::-;18576:2;18571:3;18567:12;18560:19;;18347:238;;;:::o;18591:404::-;18751:3;18772:86;18854:3;18849;18772:86;:::i;:::-;18765:93;;18867;18956:3;18867:93;:::i;:::-;18985:3;18980;18976:13;18969:20;;18755:240;;;:::o;19001:400::-;19161:3;19182:84;19264:1;19259:3;19182:84;:::i;:::-;19175:91;;19275:93;19364:3;19275:93;:::i;:::-;19393:1;19388:3;19384:11;19377:18;;19165:236;;;:::o;19407:366::-;19549:3;19570:67;19634:2;19629:3;19570:67;:::i;:::-;19563:74;;19646:93;19735:3;19646:93;:::i;:::-;19764:2;19759:3;19755:12;19748:19;;19553:220;;;:::o;19779:402::-;19939:3;19960:85;20042:2;20037:3;19960:85;:::i;:::-;19953:92;;20054:93;20143:3;20054:93;:::i;:::-;20172:2;20167:3;20163:12;20156:19;;19943:238;;;:::o;20187:366::-;20329:3;20350:67;20414:2;20409:3;20350:67;:::i;:::-;20343:74;;20426:93;20515:3;20426:93;:::i;:::-;20544:2;20539:3;20535:12;20528:19;;20333:220;;;:::o;20559:366::-;20701:3;20722:67;20786:2;20781:3;20722:67;:::i;:::-;20715:74;;20798:93;20887:3;20798:93;:::i;:::-;20916:2;20911:3;20907:12;20900:19;;20705:220;;;:::o;20931:406::-;21091:3;21112:87;21194:4;21189:3;21112:87;:::i;:::-;21105:94;;21208:93;21297:3;21208:93;:::i;:::-;21326:4;21321:3;21317:14;21310:21;;21095:242;;;:::o;21343:404::-;21503:3;21524:86;21606:3;21601;21524:86;:::i;:::-;21517:93;;21619;21708:3;21619:93;:::i;:::-;21737:3;21732;21728:13;21721:20;;21507:240;;;:::o;21753:366::-;21895:3;21916:67;21980:2;21975:3;21916:67;:::i;:::-;21909:74;;21992:93;22081:3;21992:93;:::i;:::-;22110:2;22105:3;22101:12;22094:19;;21899:220;;;:::o;22125:404::-;22285:3;22306:86;22388:3;22383;22306:86;:::i;:::-;22299:93;;22401;22490:3;22401:93;:::i;:::-;22519:3;22514;22510:13;22503:20;;22289:240;;;:::o;22535:398::-;22694:3;22715:83;22796:1;22791:3;22715:83;:::i;:::-;22708:90;;22807:93;22896:3;22807:93;:::i;:::-;22925:1;22920:3;22916:11;22909:18;;22698:235;;;:::o;22939:402::-;23099:3;23120:85;23202:2;23197:3;23120:85;:::i;:::-;23113:92;;23214:93;23303:3;23214:93;:::i;:::-;23332:2;23327:3;23323:12;23316:19;;23103:238;;;:::o;23347:366::-;23489:3;23510:67;23574:2;23569:3;23510:67;:::i;:::-;23503:74;;23586:93;23675:3;23586:93;:::i;:::-;23704:2;23699:3;23695:12;23688:19;;23493:220;;;:::o;23719:402::-;23879:3;23900:85;23982:2;23977:3;23900:85;:::i;:::-;23893:92;;23994:93;24083:3;23994:93;:::i;:::-;24112:2;24107:3;24103:12;24096:19;;23883:238;;;:::o;24127:402::-;24287:3;24308:85;24390:2;24385:3;24308:85;:::i;:::-;24301:92;;24402:93;24491:3;24402:93;:::i;:::-;24520:2;24515:3;24511:12;24504:19;;24291:238;;;:::o;24535:366::-;24677:3;24698:67;24762:2;24757:3;24698:67;:::i;:::-;24691:74;;24774:93;24863:3;24774:93;:::i;:::-;24892:2;24887:3;24883:12;24876:19;;24681:220;;;:::o;24907:365::-;25049:3;25070:66;25134:1;25129:3;25070:66;:::i;:::-;25063:73;;25145:93;25234:3;25145:93;:::i;:::-;25263:2;25258:3;25254:12;25247:19;;25053:219;;;:::o;25278:108::-;25355:24;25373:5;25355:24;:::i;:::-;25350:3;25343:37;25333:53;;:::o;25392:118::-;25479:24;25497:5;25479:24;:::i;:::-;25474:3;25467:37;25457:53;;:::o;25516:423::-;25690:3;25712:92;25800:3;25791:6;25712:92;:::i;:::-;25705:99;;25821:92;25909:3;25900:6;25821:92;:::i;:::-;25814:99;;25930:3;25923:10;;25694:245;;;;;:::o;25945:541::-;26178:3;26200:148;26344:3;26200:148;:::i;:::-;26193:155;;26365:95;26456:3;26447:6;26365:95;:::i;:::-;26358:102;;26477:3;26470:10;;26182:304;;;;:::o;26492:6755::-;28936:3;28958:148;29102:3;28958:148;:::i;:::-;28951:155;;29123:92;29211:3;29202:6;29123:92;:::i;:::-;29116:99;;29232:148;29376:3;29232:148;:::i;:::-;29225:155;;29397:148;29541:3;29397:148;:::i;:::-;29390:155;;29562:92;29650:3;29641:6;29562:92;:::i;:::-;29555:99;;29671:92;29759:3;29750:6;29671:92;:::i;:::-;29664:99;;29780:148;29924:3;29780:148;:::i;:::-;29773:155;;29945:148;30089:3;29945:148;:::i;:::-;29938:155;;30110:92;30198:3;30189:6;30110:92;:::i;:::-;30103:99;;30219:92;30307:3;30298:6;30219:92;:::i;:::-;30212:99;;30328:148;30472:3;30328:148;:::i;:::-;30321:155;;30493:148;30637:3;30493:148;:::i;:::-;30486:155;;30658:148;30802:3;30658:148;:::i;:::-;30651:155;;30823:92;30911:3;30902:6;30823:92;:::i;:::-;30816:99;;30932:92;31020:3;31011:6;30932:92;:::i;:::-;30925:99;;31041:148;31185:3;31041:148;:::i;:::-;31034:155;;31206:148;31350:3;31206:148;:::i;:::-;31199:155;;31371:92;31459:3;31450:6;31371:92;:::i;:::-;31364:99;;31480:92;31568:3;31559:6;31480:92;:::i;:::-;31473:99;;31589:148;31733:3;31589:148;:::i;:::-;31582:155;;31754:148;31898:3;31754:148;:::i;:::-;31747:155;;31919:148;32063:3;31919:148;:::i;:::-;31912:155;;32084:92;32172:3;32163:6;32084:92;:::i;:::-;32077:99;;32193:148;32337:3;32193:148;:::i;:::-;32186:155;;32358:148;32502:3;32358:148;:::i;:::-;32351:155;;32523:93;32612:3;32602:7;32523:93;:::i;:::-;32516:100;;32633:93;32722:3;32712:7;32633:93;:::i;:::-;32626:100;;32743:148;32887:3;32743:148;:::i;:::-;32736:155;;32908:148;33052:3;32908:148;:::i;:::-;32901:155;;33073:148;33217:3;33073:148;:::i;:::-;33066:155;;33238:3;33231:10;;28940:4307;;;;;;;;;;;;;;;:::o;33253:379::-;33437:3;33459:147;33602:3;33459:147;:::i;:::-;33452:154;;33623:3;33616:10;;33441:191;;;:::o;33638:222::-;33731:4;33769:2;33758:9;33754:18;33746:26;;33782:71;33850:1;33839:9;33835:17;33826:6;33782:71;:::i;:::-;33736:124;;;;:::o;33866:254::-;33975:4;34013:2;34002:9;33998:18;33990:26;;34026:87;34110:1;34099:9;34095:17;34086:6;34026:87;:::i;:::-;33980:140;;;;:::o;34126:640::-;34321:4;34359:3;34348:9;34344:19;34336:27;;34373:71;34441:1;34430:9;34426:17;34417:6;34373:71;:::i;:::-;34454:72;34522:2;34511:9;34507:18;34498:6;34454:72;:::i;:::-;34536;34604:2;34593:9;34589:18;34580:6;34536:72;:::i;:::-;34655:9;34649:4;34645:20;34640:2;34629:9;34625:18;34618:48;34683:76;34754:4;34745:6;34683:76;:::i;:::-;34675:84;;34326:440;;;;;;;:::o;34772:529::-;34939:4;34977:2;34966:9;34962:18;34954:26;;34990:71;35058:1;35047:9;35043:17;35034:6;34990:71;:::i;:::-;35071:72;35139:2;35128:9;35124:18;35115:6;35071:72;:::i;:::-;35190:9;35184:4;35180:20;35175:2;35164:9;35160:18;35153:48;35218:76;35289:4;35280:6;35218:76;:::i;:::-;35210:84;;34944:357;;;;;;:::o;35307:405::-;35466:4;35504:2;35493:9;35489:18;35481:26;;35553:9;35547:4;35543:20;35539:1;35528:9;35524:17;35517:47;35581:124;35700:4;35691:6;35581:124;:::i;:::-;35573:132;;35471:241;;;;:::o;35718:373::-;35861:4;35899:2;35888:9;35884:18;35876:26;;35948:9;35942:4;35938:20;35934:1;35923:9;35919:17;35912:47;35976:108;36079:4;36070:6;35976:108;:::i;:::-;35968:116;;35866:225;;;;:::o;36097:210::-;36184:4;36222:2;36211:9;36207:18;36199:26;;36235:65;36297:1;36286:9;36282:17;36273:6;36235:65;:::i;:::-;36189:118;;;;:::o;36313:313::-;36426:4;36464:2;36453:9;36449:18;36441:26;;36513:9;36507:4;36503:20;36499:1;36488:9;36484:17;36477:47;36541:78;36614:4;36605:6;36541:78;:::i;:::-;36533:86;;36431:195;;;;:::o;36632:419::-;36798:4;36836:2;36825:9;36821:18;36813:26;;36885:9;36879:4;36875:20;36871:1;36860:9;36856:17;36849:47;36913:131;37039:4;36913:131;:::i;:::-;36905:139;;36803:248;;;:::o;37057:419::-;37223:4;37261:2;37250:9;37246:18;37238:26;;37310:9;37304:4;37300:20;37296:1;37285:9;37281:17;37274:47;37338:131;37464:4;37338:131;:::i;:::-;37330:139;;37228:248;;;:::o;37482:419::-;37648:4;37686:2;37675:9;37671:18;37663:26;;37735:9;37729:4;37725:20;37721:1;37710:9;37706:17;37699:47;37763:131;37889:4;37763:131;:::i;:::-;37755:139;;37653:248;;;:::o;37907:419::-;38073:4;38111:2;38100:9;38096:18;38088:26;;38160:9;38154:4;38150:20;38146:1;38135:9;38131:17;38124:47;38188:131;38314:4;38188:131;:::i;:::-;38180:139;;38078:248;;;:::o;38332:419::-;38498:4;38536:2;38525:9;38521:18;38513:26;;38585:9;38579:4;38575:20;38571:1;38560:9;38556:17;38549:47;38613:131;38739:4;38613:131;:::i;:::-;38605:139;;38503:248;;;:::o;38757:419::-;38923:4;38961:2;38950:9;38946:18;38938:26;;39010:9;39004:4;39000:20;38996:1;38985:9;38981:17;38974:47;39038:131;39164:4;39038:131;:::i;:::-;39030:139;;38928:248;;;:::o;39182:419::-;39348:4;39386:2;39375:9;39371:18;39363:26;;39435:9;39429:4;39425:20;39421:1;39410:9;39406:17;39399:47;39463:131;39589:4;39463:131;:::i;:::-;39455:139;;39353:248;;;:::o;39607:419::-;39773:4;39811:2;39800:9;39796:18;39788:26;;39860:9;39854:4;39850:20;39846:1;39835:9;39831:17;39824:47;39888:131;40014:4;39888:131;:::i;:::-;39880:139;;39778:248;;;:::o;40032:419::-;40198:4;40236:2;40225:9;40221:18;40213:26;;40285:9;40279:4;40275:20;40271:1;40260:9;40256:17;40249:47;40313:131;40439:4;40313:131;:::i;:::-;40305:139;;40203:248;;;:::o;40457:419::-;40623:4;40661:2;40650:9;40646:18;40638:26;;40710:9;40704:4;40700:20;40696:1;40685:9;40681:17;40674:47;40738:131;40864:4;40738:131;:::i;:::-;40730:139;;40628:248;;;:::o;40882:419::-;41048:4;41086:2;41075:9;41071:18;41063:26;;41135:9;41129:4;41125:20;41121:1;41110:9;41106:17;41099:47;41163:131;41289:4;41163:131;:::i;:::-;41155:139;;41053:248;;;:::o;41307:419::-;41473:4;41511:2;41500:9;41496:18;41488:26;;41560:9;41554:4;41550:20;41546:1;41535:9;41531:17;41524:47;41588:131;41714:4;41588:131;:::i;:::-;41580:139;;41478:248;;;:::o;41732:419::-;41898:4;41936:2;41925:9;41921:18;41913:26;;41985:9;41979:4;41975:20;41971:1;41960:9;41956:17;41949:47;42013:131;42139:4;42013:131;:::i;:::-;42005:139;;41903:248;;;:::o;42157:419::-;42323:4;42361:2;42350:9;42346:18;42338:26;;42410:9;42404:4;42400:20;42396:1;42385:9;42381:17;42374:47;42438:131;42564:4;42438:131;:::i;:::-;42430:139;;42328:248;;;:::o;42582:419::-;42748:4;42786:2;42775:9;42771:18;42763:26;;42835:9;42829:4;42825:20;42821:1;42810:9;42806:17;42799:47;42863:131;42989:4;42863:131;:::i;:::-;42855:139;;42753:248;;;:::o;43007:419::-;43173:4;43211:2;43200:9;43196:18;43188:26;;43260:9;43254:4;43250:20;43246:1;43235:9;43231:17;43224:47;43288:131;43414:4;43288:131;:::i;:::-;43280:139;;43178:248;;;:::o;43432:419::-;43598:4;43636:2;43625:9;43621:18;43613:26;;43685:9;43679:4;43675:20;43671:1;43660:9;43656:17;43649:47;43713:131;43839:4;43713:131;:::i;:::-;43705:139;;43603:248;;;:::o;43857:419::-;44023:4;44061:2;44050:9;44046:18;44038:26;;44110:9;44104:4;44100:20;44096:1;44085:9;44081:17;44074:47;44138:131;44264:4;44138:131;:::i;:::-;44130:139;;44028:248;;;:::o;44282:419::-;44448:4;44486:2;44475:9;44471:18;44463:26;;44535:9;44529:4;44525:20;44521:1;44510:9;44506:17;44499:47;44563:131;44689:4;44563:131;:::i;:::-;44555:139;;44453:248;;;:::o;44707:419::-;44873:4;44911:2;44900:9;44896:18;44888:26;;44960:9;44954:4;44950:20;44946:1;44935:9;44931:17;44924:47;44988:131;45114:4;44988:131;:::i;:::-;44980:139;;44878:248;;;:::o;45132:222::-;45225:4;45263:2;45252:9;45248:18;45240:26;;45276:71;45344:1;45333:9;45329:17;45320:6;45276:71;:::i;:::-;45230:124;;;;:::o;45360:129::-;45394:6;45421:20;;:::i;:::-;45411:30;;45450:33;45478:4;45470:6;45450:33;:::i;:::-;45401:88;;;:::o;45495:75::-;45528:6;45561:2;45555:9;45545:19;;45535:35;:::o;45576:307::-;45637:4;45727:18;45719:6;45716:30;45713:2;;;45749:18;;:::i;:::-;45713:2;45787:29;45809:6;45787:29;:::i;:::-;45779:37;;45871:4;45865;45861:15;45853:23;;45642:241;;;:::o;45889:308::-;45951:4;46041:18;46033:6;46030:30;46027:2;;;46063:18;;:::i;:::-;46027:2;46101:29;46123:6;46101:29;:::i;:::-;46093:37;;46185:4;46179;46175:15;46167:23;;45956:241;;;:::o;46203:140::-;46278:4;46301:3;46293:11;;46331:4;46326:3;46322:14;46314:22;;46283:60;;;:::o;46349:132::-;46416:4;46439:3;46431:11;;46469:4;46464:3;46460:14;46452:22;;46421:60;;;:::o;46487:141::-;46536:4;46559:3;46551:11;;46582:3;46579:1;46572:14;46616:4;46613:1;46603:18;46595:26;;46541:87;;;:::o;46634:122::-;46709:6;46743:5;46737:12;46727:22;;46716:40;;;:::o;46762:114::-;46829:6;46863:5;46857:12;46847:22;;46836:40;;;:::o;46882:98::-;46933:6;46967:5;46961:12;46951:22;;46940:40;;;:::o;46986:99::-;47038:6;47072:5;47066:12;47056:22;;47045:40;;;:::o;47091:121::-;47169:4;47201;47196:3;47192:14;47184:22;;47174:38;;;:::o;47218:113::-;47288:4;47320;47315:3;47311:14;47303:22;;47293:38;;;:::o;47337:192::-;47444:11;47478:6;47473:3;47466:19;47518:4;47513:3;47509:14;47494:29;;47456:73;;;;:::o;47535:184::-;47634:11;47668:6;47663:3;47656:19;47708:4;47703:3;47699:14;47684:29;;47646:73;;;;:::o;47725:168::-;47808:11;47842:6;47837:3;47830:19;47882:4;47877:3;47873:14;47858:29;;47820:73;;;;:::o;47899:147::-;48000:11;48037:3;48022:18;;48012:34;;;;:::o;48052:169::-;48136:11;48170:6;48165:3;48158:19;48210:4;48205:3;48201:14;48186:29;;48148:73;;;;:::o;48227:148::-;48329:11;48366:3;48351:18;;48341:34;;;;:::o;48381:305::-;48421:3;48440:20;48458:1;48440:20;:::i;:::-;48435:25;;48474:20;48492:1;48474:20;:::i;:::-;48469:25;;48628:1;48560:66;48556:74;48553:1;48550:81;48547:2;;;48634:18;;:::i;:::-;48547:2;48678:1;48675;48671:9;48664:16;;48425:261;;;;:::o;48692:185::-;48732:1;48749:20;48767:1;48749:20;:::i;:::-;48744:25;;48783:20;48801:1;48783:20;:::i;:::-;48778:25;;48822:1;48812:2;;48827:18;;:::i;:::-;48812:2;48869:1;48866;48862:9;48857:14;;48734:143;;;;:::o;48883:191::-;48923:4;48943:20;48961:1;48943:20;:::i;:::-;48938:25;;48977:20;48995:1;48977:20;:::i;:::-;48972:25;;49016:1;49013;49010:8;49007:2;;;49021:18;;:::i;:::-;49007:2;49066:1;49063;49059:9;49051:17;;48928:146;;;;:::o;49080:96::-;49117:7;49146:24;49164:5;49146:24;:::i;:::-;49135:35;;49125:51;;;:::o;49182:104::-;49227:7;49256:24;49274:5;49256:24;:::i;:::-;49245:35;;49235:51;;;:::o;49292:90::-;49326:7;49369:5;49362:13;49355:21;49344:32;;49334:48;;;:::o;49388:149::-;49424:7;49464:66;49457:5;49453:78;49442:89;;49432:105;;;:::o;49543:126::-;49580:7;49620:42;49613:5;49609:54;49598:65;;49588:81;;;:::o;49675:77::-;49712:7;49741:5;49730:16;;49720:32;;;:::o;49758:154::-;49842:6;49837:3;49832;49819:30;49904:1;49895:6;49890:3;49886:16;49879:27;49809:103;;;:::o;49918:307::-;49986:1;49996:113;50010:6;50007:1;50004:13;49996:113;;;50095:1;50090:3;50086:11;50080:18;50076:1;50071:3;50067:11;50060:39;50032:2;50029:1;50025:10;50020:15;;49996:113;;;50127:6;50124:1;50121:13;50118:2;;;50207:1;50198:6;50193:3;50189:16;50182:27;50118:2;49967:258;;;;:::o;50231:320::-;50275:6;50312:1;50306:4;50302:12;50292:22;;50359:1;50353:4;50349:12;50380:18;50370:2;;50436:4;50428:6;50424:17;50414:27;;50370:2;50498;50490:6;50487:14;50467:18;50464:38;50461:2;;;50517:18;;:::i;:::-;50461:2;50282:269;;;;:::o;50557:281::-;50640:27;50662:4;50640:27;:::i;:::-;50632:6;50628:40;50770:6;50758:10;50755:22;50734:18;50722:10;50719:34;50716:62;50713:2;;;50781:18;;:::i;:::-;50713:2;50821:10;50817:2;50810:22;50600:238;;;:::o;50844:180::-;50892:77;50889:1;50882:88;50989:4;50986:1;50979:15;51013:4;51010:1;51003:15;51030:180;51078:77;51075:1;51068:88;51175:4;51172:1;51165:15;51199:4;51196:1;51189:15;51216:180;51264:77;51261:1;51254:88;51361:4;51358:1;51351:15;51385:4;51382:1;51375:15;51402:180;51450:77;51447:1;51440:88;51547:4;51544:1;51537:15;51571:4;51568:1;51561:15;51588:102;51629:6;51680:2;51676:7;51671:2;51664:5;51660:14;51656:28;51646:38;;51636:54;;;:::o;51696:230::-;51836:34;51832:1;51824:6;51820:14;51813:58;51905:13;51900:2;51892:6;51888:15;51881:38;51802:124;:::o;51932:170::-;52072:22;52068:1;52060:6;52056:14;52049:46;52038:64;:::o;52108:237::-;52248:34;52244:1;52236:6;52232:14;52225:58;52317:20;52312:2;52304:6;52300:15;52293:45;52214:131;:::o;52351:225::-;52491:34;52487:1;52479:6;52475:14;52468:58;52560:8;52555:2;52547:6;52543:15;52536:33;52457:119;:::o;52582:214::-;52722:66;52718:1;52710:6;52706:14;52699:90;52688:108;:::o;52802:223::-;52942:34;52938:1;52930:6;52926:14;52919:58;53011:6;53006:2;52998:6;52994:15;52987:31;52908:117;:::o;53031:175::-;53171:27;53167:1;53159:6;53155:14;53148:51;53137:69;:::o;53212:214::-;53352:66;53348:1;53340:6;53336:14;53329:90;53318:108;:::o;53432:245::-;53572:34;53568:1;53560:6;53556:14;53549:58;53641:28;53636:2;53628:6;53624:15;53617:53;53538:139;:::o;53683:179::-;53823:31;53819:1;53811:6;53807:14;53800:55;53789:73;:::o;53868:231::-;54008:34;54004:1;53996:6;53992:14;53985:58;54077:14;54072:2;54064:6;54060:15;54053:39;53974:125;:::o;54105:166::-;54245:18;54241:1;54233:6;54229:14;54222:42;54211:60;:::o;54277:243::-;54417:34;54413:1;54405:6;54401:14;54394:58;54486:26;54481:2;54473:6;54469:15;54462:51;54383:137;:::o;54526:229::-;54666:34;54662:1;54654:6;54650:14;54643:58;54735:12;54730:2;54722:6;54718:15;54711:37;54632:123;:::o;54761:228::-;54901:34;54897:1;54889:6;54885:14;54878:58;54970:11;54965:2;54957:6;54953:15;54946:36;54867:122;:::o;54995:214::-;55135:66;55131:1;55123:6;55119:14;55112:90;55101:108;:::o;55215:214::-;55355:66;55351:1;55343:6;55339:14;55332:90;55321:108;:::o;55435:689::-;55575:66;55571:1;55563:6;55559:14;55552:90;55676:66;55671:2;55663:6;55659:15;55652:91;55777:66;55772:2;55764:6;55760:15;55753:91;55878:66;55873:2;55865:6;55861:15;55854:91;55980:34;55974:3;55966:6;55962:16;55955:60;56050:66;56044:3;56036:6;56032:16;56025:92;55541:583;:::o;56130:143::-;56266:3;56262:1;56254:6;56250:14;56243:27;56236:37;:::o;56275:219::-;56411:34;56407:1;56399:6;56395:14;56388:58;56476:14;56471:2;56463:6;56459:15;56452:39;56381:113;:::o;56496:169::-;56632:29;56628:1;56620:6;56616:14;56609:53;56602:63;:::o;56667:174::-;56803:34;56799:1;56791:6;56787:14;56780:58;56773:68;:::o;56843:216::-;56979:34;56975:1;56967:6;56963:14;56956:58;57044:11;57039:2;57031:6;57027:15;57020:36;56949:110;:::o;57061:2948::-;57197:66;57193:1;57185:6;57181:14;57174:90;57294:66;57289:2;57281:6;57277:15;57270:91;57391:34;57386:2;57378:6;57374:15;57367:59;57456:34;57451:2;57443:6;57439:15;57432:59;57522:34;57516:3;57508:6;57504:16;57497:60;57588:34;57582:3;57574:6;57570:16;57563:60;57654:34;57648:3;57640:6;57636:16;57629:60;57720:34;57714:3;57706:6;57702:16;57695:60;57786:34;57780:3;57772:6;57768:16;57761:60;57852:34;57846:3;57838:6;57834:16;57827:60;57918:34;57912:3;57904:6;57900:16;57893:60;57984:34;57978:3;57970:6;57966:16;57959:60;58050:34;58044:3;58036:6;58032:16;58025:60;58116:34;58110:3;58102:6;58098:16;58091:60;58182:34;58176:3;58168:6;58164:16;58157:60;58248:34;58242:3;58234:6;58230:16;58223:60;58314:34;58308:3;58300:6;58296:16;58289:60;58380:34;58374:3;58366:6;58362:16;58355:60;58446:34;58440:3;58432:6;58428:16;58421:60;58512:34;58506:3;58498:6;58494:16;58487:60;58578:34;58572:3;58564:6;58560:16;58553:60;58644:34;58638:3;58630:6;58626:16;58619:60;58710:34;58704:3;58696:6;58692:16;58685:60;58776:34;58770:3;58762:6;58758:16;58751:60;58842:34;58836:3;58828:6;58824:16;58817:60;58908:34;58902:3;58894:6;58890:16;58883:60;58974:34;58968:3;58960:6;58956:16;58949:60;59040:34;59034:3;59026:6;59022:16;59015:60;59106:34;59100:3;59092:6;59088:16;59081:60;59172:34;59166:3;59158:6;59154:16;59147:60;59238:34;59232:3;59224:6;59220:16;59213:60;59304:34;59298:3;59290:6;59286:16;59279:60;59371:34;59364:4;59356:6;59352:17;59345:61;59438:34;59431:4;59423:6;59419:17;59412:61;59505:34;59498:4;59490:6;59486:17;59479:61;59572:34;59565:4;59557:6;59553:17;59546:61;59639:34;59632:4;59624:6;59620:17;59613:61;59706:34;59699:4;59691:6;59687:17;59680:61;59773:34;59766:4;59758:6;59754:17;59747:61;59840:66;59833:4;59825:6;59821:17;59814:93;59939:66;59932:4;59924:6;59920:17;59913:93;57167:2842;:::o;60011:1837::-;60147:66;60143:1;60135:6;60131:14;60124:90;60244:66;60239:2;60231:6;60227:15;60220:91;60341:34;60336:2;60328:6;60324:15;60317:59;60406:66;60401:2;60393:6;60389:15;60382:91;60504:66;60498:3;60490:6;60486:16;60479:92;60602:66;60596:3;60588:6;60584:16;60577:92;60700:66;60694:3;60686:6;60682:16;60675:92;60798:66;60792:3;60784:6;60780:16;60773:92;60896:66;60890:3;60882:6;60878:16;60871:92;60994:66;60988:3;60980:6;60976:16;60969:92;61092:66;61086:3;61078:6;61074:16;61067:92;61190:66;61184:3;61176:6;61172:16;61165:92;61288:66;61282:3;61274:6;61270:16;61263:92;61386:66;61380:3;61372:6;61368:16;61361:92;61484:66;61478:3;61470:6;61466:16;61459:92;61582:66;61576:3;61568:6;61564:16;61557:92;61680:66;61674:3;61666:6;61662:16;61655:92;61778:66;61772:3;61764:6;61760:16;61753:92;60117:1731;:::o;61850:208::-;61986:34;61982:1;61974:6;61970:14;61963:58;62051:3;62046:2;62038:6;62034:15;62027:28;61956:102;:::o;62060:563::-;62196:66;62192:1;62184:6;62180:14;62173:90;62293:66;62288:2;62280:6;62276:15;62269:91;62390:66;62385:2;62377:6;62373:15;62366:91;62487:34;62482:2;62474:6;62470:15;62463:59;62553:66;62547:3;62539:6;62535:16;62528:92;62166:457;:::o;62625:110::-;62731:4;:::o;62737:206::-;62873:66;62869:1;62861:6;62857:14;62850:90;62843:100;:::o;62945:224::-;63081:34;63077:1;63069:6;63065:14;63058:58;63146:19;63141:2;63133:6;63129:15;63122:44;63051:118;:::o;63171:206::-;63307:66;63303:1;63295:6;63291:14;63284:90;63277:100;:::o;63379:206::-;63515:66;63511:1;63503:6;63499:14;63492:90;63485:100;:::o;63587:223::-;63723:34;63719:1;63711:6;63707:14;63700:58;63788:18;63783:2;63775:6;63771:15;63764:43;63693:117;:::o;63812:145::-;63948:5;63944:1;63936:6;63932:14;63925:29;63918:39;:::o;63959:114::-;64028:24;64046:5;64028:24;:::i;:::-;64021:5;64018:35;64008:2;;64067:1;64064;64057:12;64008:2;64002:71;:::o;64075:130::-;64152:32;64178:5;64152:32;:::i;:::-;64145:5;64142:43;64132:2;;64199:1;64196;64189:12;64132:2;64126:79;:::o;64207:108::-;64273:21;64288:5;64273:21;:::i;:::-;64266:5;64263:32;64253:2;;64309:1;64306;64299:12;64253:2;64247:68;:::o;64317:112::-;64385:23;64402:5;64385:23;:::i;:::-;64378:5;64375:34;64365:2;;64423:1;64420;64413:12;64365:2;64359:70;:::o;64431:114::-;64500:24;64518:5;64500:24;:::i;:::-;64493:5;64490:35;64480:2;;64539:1;64536;64529:12;64480:2;64474:71;:::o
Swarm Source
ipfs://ac5299095b2be2d16dac7f190b820de87beb27fa544c533a037ae915d3961e36
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.